From aa59142bfad3b1544c19d10c5386b20f8ede147a Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 11 Sep 2023 01:20:39 +0300 Subject: [PATCH 001/240] Kernel: Fix ext2 file write --- kernel/kernel/FS/Ext2/Inode.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/kernel/kernel/FS/Ext2/Inode.cpp b/kernel/kernel/FS/Ext2/Inode.cpp index 236fa6d9..022477d7 100644 --- a/kernel/kernel/FS/Ext2/Inode.cpp +++ b/kernel/kernel/FS/Ext2/Inode.cpp @@ -227,7 +227,7 @@ namespace Kernel const uint8_t* u8buffer = (const uint8_t*)buffer; - size_t written = 0; + size_t to_write = count; // Write partial block if (offset % block_size) @@ -236,7 +236,7 @@ namespace Kernel uint32_t block_offset = offset % block_size; uint32_t data_block_index = TRY(this->data_block_index(block_index)); - uint32_t to_copy = BAN::Math::min(block_size - block_offset, written); + uint32_t to_copy = BAN::Math::min(block_size - block_offset, to_write); m_fs.read_block(data_block_index, block_buffer.span()); memcpy(block_buffer.data() + block_offset, buffer, to_copy); @@ -244,10 +244,10 @@ namespace Kernel u8buffer += to_copy; offset += to_copy; - written -= to_copy; + to_write -= to_copy; } - while (written >= block_size) + while (to_write >= block_size) { uint32_t data_block_index = TRY(this->data_block_index(offset / block_size)); @@ -255,15 +255,15 @@ namespace Kernel u8buffer += block_size; offset += block_size; - written -= block_size; + to_write -= block_size; } - if (written > 0) + if (to_write > 0) { uint32_t data_block_index = TRY(this->data_block_index(offset / block_size)); m_fs.read_block(data_block_index, block_buffer.span()); - memcpy(block_buffer.data(), u8buffer, written); + memcpy(block_buffer.data(), u8buffer, to_write); m_fs.write_block(data_block_index, block_buffer.span()); } From 82b049204d88c66f5f823fbb0cdd141cb7326cc9 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 11 Sep 2023 01:20:55 +0300 Subject: [PATCH 002/240] Kernel: Print stack trace on isr --- kernel/arch/x86_64/IDT.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/arch/x86_64/IDT.cpp b/kernel/arch/x86_64/IDT.cpp index 980d086b..6f5ae8a4 100644 --- a/kernel/arch/x86_64/IDT.cpp +++ b/kernel/arch/x86_64/IDT.cpp @@ -160,6 +160,7 @@ namespace IDT regs->rip, regs->rflags, regs->cr0, regs->cr2, regs->cr3, regs->cr4 ); + Debug::dump_stack_trace(); if (tid) { From b0c22b61ec7b7264b34a2398b9456c22bea42deb Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 11 Sep 2023 01:25:16 +0300 Subject: [PATCH 003/240] Kernel: Writes to disk are not synchronous anymore Implement "proper" DiskCache syncing --- kernel/include/kernel/Storage/DiskCache.h | 7 ++- kernel/include/kernel/Storage/StorageDevice.h | 3 + kernel/kernel/Storage/DiskCache.cpp | 61 ++++++++++++++----- kernel/kernel/Storage/StorageDevice.cpp | 25 ++++++-- 4 files changed, 72 insertions(+), 24 deletions(-) diff --git a/kernel/include/kernel/Storage/DiskCache.h b/kernel/include/kernel/Storage/DiskCache.h index bfce7be1..342a855a 100644 --- a/kernel/include/kernel/Storage/DiskCache.h +++ b/kernel/include/kernel/Storage/DiskCache.h @@ -7,16 +7,18 @@ namespace Kernel { + class StorageDevice; + class DiskCache { public: - DiskCache(size_t sector_size); + DiskCache(size_t sector_size, StorageDevice&); ~DiskCache(); bool read_from_cache(uint64_t sector, uint8_t* buffer); BAN::ErrorOr write_to_cache(uint64_t sector, const uint8_t* buffer, bool dirty); - void sync(); + BAN::ErrorOr sync(); size_t release_clean_pages(size_t); size_t release_pages(size_t); void release_all_pages(); @@ -32,6 +34,7 @@ namespace Kernel private: const size_t m_sector_size; + StorageDevice& m_device; BAN::Vector m_cache; }; diff --git a/kernel/include/kernel/Storage/StorageDevice.h b/kernel/include/kernel/Storage/StorageDevice.h index 17df45d5..fe3edbce 100644 --- a/kernel/include/kernel/Storage/StorageDevice.h +++ b/kernel/include/kernel/Storage/StorageDevice.h @@ -76,12 +76,15 @@ namespace Kernel BAN::Vector& partitions() { return m_partitions; } const BAN::Vector& partitions() const { return m_partitions; } + BAN::ErrorOr sync_disk_cache(); + protected: virtual BAN::ErrorOr read_sectors_impl(uint64_t lba, uint8_t sector_count, uint8_t* buffer) = 0; virtual BAN::ErrorOr write_sectors_impl(uint64_t lba, uint8_t sector_count, const uint8_t* buffer) = 0; void add_disk_cache(); private: + SpinLock m_lock; BAN::Optional m_disk_cache; BAN::Vector m_partitions; diff --git a/kernel/kernel/Storage/DiskCache.cpp b/kernel/kernel/Storage/DiskCache.cpp index 08f81934..9307709e 100644 --- a/kernel/kernel/Storage/DiskCache.cpp +++ b/kernel/kernel/Storage/DiskCache.cpp @@ -8,8 +8,9 @@ namespace Kernel { - DiskCache::DiskCache(size_t sector_size) + DiskCache::DiskCache(size_t sector_size, StorageDevice& device) : m_sector_size(sector_size) + , m_device(device) { ASSERT(PAGE_SIZE % m_sector_size == 0); ASSERT(PAGE_SIZE / m_sector_size <= sizeof(PageCache::sector_mask) * 8); @@ -31,7 +32,6 @@ namespace Kernel LockGuard page_table_locker(page_table); ASSERT(page_table.is_page_free(0)); - CriticalScope _; for (auto& cache : m_cache) { if (cache.first_sector < page_cache_start) @@ -42,6 +42,7 @@ namespace Kernel if (!(cache.sector_mask & (1 << page_cache_offset))) continue; + CriticalScope _; page_table.map_page_at(cache.paddr, 0, PageTable::Flags::Present); memcpy(buffer, (void*)(page_cache_offset * m_sector_size), m_sector_size); page_table.unmap_page(0); @@ -62,8 +63,6 @@ namespace Kernel LockGuard page_table_locker(page_table); ASSERT(page_table.is_page_free(0)); - CriticalScope _; - size_t index = 0; // Search the cache if the have this sector in memory @@ -76,9 +75,12 @@ namespace Kernel if (cache.first_sector > page_cache_start) break; - page_table.map_page_at(cache.paddr, 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); - memcpy((void*)(page_cache_offset * m_sector_size), buffer, m_sector_size); - page_table.unmap_page(0); + { + CriticalScope _; + page_table.map_page_at(cache.paddr, 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); + memcpy((void*)(page_cache_offset * m_sector_size), buffer, m_sector_size); + page_table.unmap_page(0); + } cache.sector_mask |= 1 << page_cache_offset; if (dirty) @@ -104,25 +106,51 @@ namespace Kernel return ret.error(); } - page_table.map_page_at(cache.paddr, 0, PageTable::Flags::Present); - memcpy((void*)(page_cache_offset * m_sector_size), buffer, m_sector_size); - page_table.unmap_page(0); + { + CriticalScope _; + page_table.map_page_at(cache.paddr, 0, PageTable::Flags::Present); + memcpy((void*)(page_cache_offset * m_sector_size), buffer, m_sector_size); + page_table.unmap_page(0); + } return {}; } - void DiskCache::sync() + BAN::ErrorOr DiskCache::sync() { - CriticalScope _; + BAN::Vector sector_buffer; + TRY(sector_buffer.resize(m_sector_size)); + + PageTable& page_table = PageTable::current(); + LockGuard page_table_locker(page_table); + ASSERT(page_table.is_page_free(0)); + for (auto& cache : m_cache) - ASSERT(cache.dirty_mask == 0); + { + for (int i = 0; cache.dirty_mask; i++) + { + if (!(cache.dirty_mask & (1 << i))) + continue; + + { + CriticalScope _; + page_table.map_page_at(cache.paddr, 0, PageTable::Flags::Present); + memcpy(sector_buffer.data(), (void*)(i * m_sector_size), m_sector_size); + page_table.unmap_page(0); + } + + TRY(m_device.write_sectors_impl(cache.first_sector + i, 1, sector_buffer.data())); + cache.dirty_mask &= ~(1 << i); + } + } + + return {}; } size_t DiskCache::release_clean_pages(size_t page_count) { // NOTE: There might not actually be page_count pages after this // function returns. The synchronization must be done elsewhere. - CriticalScope _; size_t released = 0; for (size_t i = 0; i < m_cache.size() && released < page_count;) @@ -147,8 +175,9 @@ namespace Kernel size_t released = release_clean_pages(page_count); if (released >= page_count) return released; - - ASSERT_NOT_REACHED(); + if (!sync().is_error()) + released += release_clean_pages(page_count - released); + return released; } void DiskCache::release_all_pages() diff --git a/kernel/kernel/Storage/StorageDevice.cpp b/kernel/kernel/Storage/StorageDevice.cpp index 01ea322b..93070eab 100644 --- a/kernel/kernel/Storage/StorageDevice.cpp +++ b/kernel/kernel/Storage/StorageDevice.cpp @@ -3,6 +3,7 @@ #include #include #include +#include #include #include #include @@ -257,15 +258,26 @@ namespace Kernel void StorageDevice::add_disk_cache() { + LockGuard _(m_lock); ASSERT(!m_disk_cache.has_value()); - m_disk_cache = DiskCache(sector_size()); + m_disk_cache = DiskCache(sector_size(), *this); + } + + BAN::ErrorOr StorageDevice::sync_disk_cache() + { + LockGuard _(m_lock); + if (m_disk_cache.has_value()) + TRY(m_disk_cache->sync()); + return {}; } BAN::ErrorOr StorageDevice::read_sectors(uint64_t lba, uint8_t sector_count, uint8_t* buffer) { for (uint8_t offset = 0; offset < sector_count; offset++) { - Thread::TerminateBlocker _(Thread::current()); + LockGuard _(m_lock); + Thread::TerminateBlocker blocker(Thread::current()); + uint8_t* buffer_ptr = buffer + offset * sector_size(); if (m_disk_cache.has_value()) if (m_disk_cache->read_from_cache(lba + offset, buffer_ptr)) @@ -283,11 +295,12 @@ namespace Kernel // TODO: use disk cache for dirty pages. I don't wanna think about how to do it safely now for (uint8_t offset = 0; offset < sector_count; offset++) { - Thread::TerminateBlocker _(Thread::current()); + LockGuard _(m_lock); + Thread::TerminateBlocker blocker(Thread::current()); + const uint8_t* buffer_ptr = buffer + offset * sector_size(); - TRY(write_sectors_impl(lba + offset, 1, buffer_ptr)); - if (m_disk_cache.has_value()) - (void)m_disk_cache->write_to_cache(lba + offset, buffer_ptr, false); + if (!m_disk_cache.has_value() || m_disk_cache->write_to_cache(lba + offset, buffer_ptr, true).is_error()) + TRY(write_sectors_impl(lba + offset, 1, buffer_ptr)); } return {}; From 5fae3cec2a95365b31e65291c8469c0a8901c839 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 11 Sep 2023 01:26:27 +0300 Subject: [PATCH 004/240] Kernel: Implement SYS_SYNC and add sync executable to userspace You can (and have to) manually sync disk after writes to it. --- kernel/include/kernel/Device/Device.h | 1 + kernel/include/kernel/FS/DevFS/FileSystem.h | 1 + kernel/include/kernel/FS/RamFS/FileSystem.h | 3 ++- kernel/include/kernel/Process.h | 2 ++ kernel/include/kernel/Storage/StorageDevice.h | 1 + kernel/kernel/FS/DevFS/FileSystem.cpp | 15 ++++++++++++++ kernel/kernel/FS/RamFS/FileSystem.cpp | 11 ++++++++-- kernel/kernel/Process.cpp | 20 +++++++++++++++++++ kernel/kernel/Syscall.cpp | 3 +++ libc/include/sys/syscall.h | 1 + libc/unistd.cpp | 5 +++++ userspace/CMakeLists.txt | 1 + userspace/sync/CMakeLists.txt | 17 ++++++++++++++++ userspace/sync/main.cpp | 6 ++++++ 14 files changed, 84 insertions(+), 3 deletions(-) create mode 100644 userspace/sync/CMakeLists.txt create mode 100644 userspace/sync/main.cpp diff --git a/kernel/include/kernel/Device/Device.h b/kernel/include/kernel/Device/Device.h index f05f4be9..6211c1e0 100644 --- a/kernel/include/kernel/Device/Device.h +++ b/kernel/include/kernel/Device/Device.h @@ -13,6 +13,7 @@ namespace Kernel virtual bool is_device() const override { return true; } virtual bool is_partition() const { return false; } + virtual bool is_storage_device() const { return false; } virtual dev_t rdev() const override = 0; diff --git a/kernel/include/kernel/FS/DevFS/FileSystem.h b/kernel/include/kernel/FS/DevFS/FileSystem.h index e9b9b522..ae10e2c7 100644 --- a/kernel/include/kernel/FS/DevFS/FileSystem.h +++ b/kernel/include/kernel/FS/DevFS/FileSystem.h @@ -15,6 +15,7 @@ namespace Kernel void initialize_device_updater(); void add_device(BAN::StringView path, BAN::RefPtr); + void for_each_device(const BAN::Function& callback); dev_t get_next_dev(); diff --git a/kernel/include/kernel/FS/RamFS/FileSystem.h b/kernel/include/kernel/FS/RamFS/FileSystem.h index 78772fad..cbc36fc1 100644 --- a/kernel/include/kernel/FS/RamFS/FileSystem.h +++ b/kernel/include/kernel/FS/RamFS/FileSystem.h @@ -1,6 +1,7 @@ #pragma once #include +#include #include #include @@ -25,7 +26,7 @@ namespace Kernel blksize_t blksize() const { return m_blksize; } ino_t next_ino() { return m_next_ino++; } - void for_each_inode(void (*callback)(BAN::RefPtr)); + void for_each_inode(const BAN::Function)>& callback); protected: RamFileSystem(size_t size) diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index 660f178c..ffab05d1 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -109,6 +109,8 @@ namespace Kernel BAN::ErrorOr sys_fstatat(int fd, const char* path, struct stat* buf, int flag); BAN::ErrorOr sys_stat(const char* path, struct stat* buf, int flag); + BAN::ErrorOr sys_sync(); + BAN::ErrorOr mount(BAN::StringView source, BAN::StringView target); BAN::ErrorOr sys_read_dir_entries(int fd, DirectoryEntryList* buffer, size_t buffer_size); diff --git a/kernel/include/kernel/Storage/StorageDevice.h b/kernel/include/kernel/Storage/StorageDevice.h index fe3edbce..487c0013 100644 --- a/kernel/include/kernel/Storage/StorageDevice.h +++ b/kernel/include/kernel/Storage/StorageDevice.h @@ -77,6 +77,7 @@ namespace Kernel const BAN::Vector& partitions() const { return m_partitions; } BAN::ErrorOr sync_disk_cache(); + virtual bool is_storage_device() const override { return true; } protected: virtual BAN::ErrorOr read_sectors_impl(uint64_t lba, uint8_t sector_count, uint8_t* buffer) = 0; diff --git a/kernel/kernel/FS/DevFS/FileSystem.cpp b/kernel/kernel/FS/DevFS/FileSystem.cpp index 9409d6db..cb9b8199 100644 --- a/kernel/kernel/FS/DevFS/FileSystem.cpp +++ b/kernel/kernel/FS/DevFS/FileSystem.cpp @@ -44,6 +44,7 @@ namespace Kernel { if (inode->is_device()) ((Device*)inode.ptr())->update(); + return BAN::Iteration::Continue; } ); s_instance->m_device_lock.unlock(); @@ -60,8 +61,22 @@ namespace Kernel MUST(reinterpret_cast(root_inode().ptr())->add_inode(path, device)); } + void DevFileSystem::for_each_device(const BAN::Function& callback) + { + LockGuard _(m_device_lock); + for_each_inode( + [&](BAN::RefPtr inode) + { + if (!inode->is_device()) + return BAN::Iteration::Continue; + return callback((Device*)inode.ptr()); + } + ); + } + dev_t DevFileSystem::get_next_dev() { + LockGuard _(m_device_lock); static dev_t next_dev = 1; return next_dev++; } diff --git a/kernel/kernel/FS/RamFS/FileSystem.cpp b/kernel/kernel/FS/RamFS/FileSystem.cpp index 0fe660ba..4616a09b 100644 --- a/kernel/kernel/FS/RamFS/FileSystem.cpp +++ b/kernel/kernel/FS/RamFS/FileSystem.cpp @@ -48,11 +48,18 @@ namespace Kernel return m_inodes[ino]; } - void RamFileSystem::for_each_inode(void (*callback)(BAN::RefPtr)) + void RamFileSystem::for_each_inode(const BAN::Function)>& callback) { LockGuard _(m_lock); for (auto& [_, inode] : m_inodes) - callback(inode); + { + auto decision = callback(inode); + if (decision == BAN::Iteration::Break) + break; + if (decision == BAN::Iteration::Continue) + continue; + ASSERT_NOT_REACHED(); + } } } \ No newline at end of file diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index db205256..db2e9abc 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -1,6 +1,7 @@ #include #include #include +#include #include #include #include @@ -8,6 +9,7 @@ #include #include #include +#include #include #include #include @@ -752,6 +754,24 @@ namespace Kernel return 0; } + BAN::ErrorOr Process::sys_sync() + { + BAN::ErrorOr ret = 0; + DevFileSystem::get().for_each_device( + [&](Device* device) + { + if (device->is_storage_device()) + { + auto success = ((StorageDevice*)device)->sync_disk_cache(); + if (success.is_error()) + ret = success.release_error(); + } + return BAN::Iteration::Continue; + } + ); + return ret; + } + BAN::ErrorOr Process::sys_read_dir_entries(int fd, DirectoryEntryList* list, size_t list_size) { LockGuard _(m_lock); diff --git a/kernel/kernel/Syscall.cpp b/kernel/kernel/Syscall.cpp index b60cd323..f95aa910 100644 --- a/kernel/kernel/Syscall.cpp +++ b/kernel/kernel/Syscall.cpp @@ -191,6 +191,9 @@ namespace Kernel case SYS_STAT: ret = Process::current().sys_stat((const char*)arg1, (struct stat*)arg2, (int)arg3); break; + case SYS_SYNC: + ret = Process::current().sys_sync(); + break; default: dwarnln("Unknown syscall {}", syscall); break; diff --git a/libc/include/sys/syscall.h b/libc/include/sys/syscall.h index 9d16a1c2..67b05641 100644 --- a/libc/include/sys/syscall.h +++ b/libc/include/sys/syscall.h @@ -54,6 +54,7 @@ __BEGIN_DECLS #define SYS_NANOSLEEP 47 #define SYS_FSTATAT 48 #define SYS_STAT 49 // stat/lstat +#define SYS_SYNC 50 __END_DECLS diff --git a/libc/unistd.cpp b/libc/unistd.cpp index 8a6f1667..65256cd0 100644 --- a/libc/unistd.cpp +++ b/libc/unistd.cpp @@ -183,6 +183,11 @@ int chdir(const char* path) return syscall(SYS_SET_PWD, path); } +void sync(void) +{ + syscall(SYS_SYNC); +} + pid_t getpid(void) { return syscall(SYS_GET_PID); diff --git a/userspace/CMakeLists.txt b/userspace/CMakeLists.txt index 9c999277..eddccd65 100644 --- a/userspace/CMakeLists.txt +++ b/userspace/CMakeLists.txt @@ -12,6 +12,7 @@ set(USERSPACE_PROJECTS Shell snake stat + sync tee test touch diff --git a/userspace/sync/CMakeLists.txt b/userspace/sync/CMakeLists.txt new file mode 100644 index 00000000..236e313a --- /dev/null +++ b/userspace/sync/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 3.26) + +project(sync CXX) + +set(SOURCES + main.cpp +) + +add_executable(sync ${SOURCES}) +target_compile_options(sync PUBLIC -O2 -g) +target_link_libraries(sync PUBLIC libc) + +add_custom_target(sync-install + COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/sync ${BANAN_BIN}/ + DEPENDS sync + USES_TERMINAL +) diff --git a/userspace/sync/main.cpp b/userspace/sync/main.cpp new file mode 100644 index 00000000..964b808f --- /dev/null +++ b/userspace/sync/main.cpp @@ -0,0 +1,6 @@ +#include + +int main() +{ + sync(); +} From 14a608effdbceae264b98704052f576cf88f3ed7 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 13 Sep 2023 19:09:12 +0300 Subject: [PATCH 005/240] 1000th COMMIT: Kernel: Add basic E1000 driver This driver is only capable to read mac address and enable and read link status --- kernel/CMakeLists.txt | 1 + kernel/include/kernel/Networking/E1000.h | 58 +++ .../include/kernel/Networking/NetworkDriver.h | 20 + kernel/include/kernel/PCI.h | 13 + kernel/kernel/Networking/E1000.cpp | 381 ++++++++++++++++++ kernel/kernel/PCI.cpp | 45 ++- 6 files changed, 517 insertions(+), 1 deletion(-) create mode 100644 kernel/include/kernel/Networking/E1000.h create mode 100644 kernel/include/kernel/Networking/NetworkDriver.h create mode 100644 kernel/kernel/Networking/E1000.cpp diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index 84064de2..02706efe 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -38,6 +38,7 @@ set(KERNEL_SOURCES kernel/Memory/kmalloc.cpp kernel/Memory/PhysicalRange.cpp kernel/Memory/VirtualRange.cpp + kernel/Networking/E1000.cpp kernel/OpenFileDescriptorSet.cpp kernel/Panic.cpp kernel/PCI.cpp diff --git a/kernel/include/kernel/Networking/E1000.h b/kernel/include/kernel/Networking/E1000.h new file mode 100644 index 00000000..9ed171df --- /dev/null +++ b/kernel/include/kernel/Networking/E1000.h @@ -0,0 +1,58 @@ +#pragma once + +#include +#include +#include + +#define E1000_NUM_RX_DESC 32 +#define E1000_NUM_TX_DESC 8 + +namespace Kernel +{ + + class E1000 final : public NetworkDriver + { + public: + static BAN::ErrorOr> create(const PCIDevice&); + ~E1000(); + + virtual uint8_t* get_mac_address() override { return m_mac_address; } + virtual BAN::ErrorOr send_packet(const void* data, uint16_t len) override; + + virtual bool link_up() override { return m_link_up; } + virtual int link_speed() override; + + private: + E1000() = default; + BAN::ErrorOr initialize(const PCIDevice&); + + static void interrupt_handler(); + + void write32(uint16_t reg, uint32_t value); + uint32_t read32(uint16_t reg); + + void detect_eeprom(); + uint32_t eeprom_read(uint8_t addr); + BAN::ErrorOr read_mac_address(); + + void initialize_rx(); + void initialize_tx(); + + void enable_link(); + void enable_interrupts(); + + void handle_receive(); + + private: + PCIDevice::BarType m_bar_type {}; + uint64_t m_bar_addr {}; + bool m_has_eerprom { false }; + uint8_t m_mac_address[6] {}; + uint16_t m_rx_current {}; + uint16_t m_tx_current {}; + struct e1000_rx_desc* m_rx_descs[E1000_NUM_RX_DESC] {}; + struct e1000_tx_desc* m_tx_descs[E1000_NUM_TX_DESC] {}; + bool m_link_up { false }; + }; + +} diff --git a/kernel/include/kernel/Networking/NetworkDriver.h b/kernel/include/kernel/Networking/NetworkDriver.h new file mode 100644 index 00000000..23a2c929 --- /dev/null +++ b/kernel/include/kernel/Networking/NetworkDriver.h @@ -0,0 +1,20 @@ +#pragma once + +#include + +namespace Kernel +{ + + class NetworkDriver + { + public: + virtual ~NetworkDriver() {} + + virtual uint8_t* get_mac_address() = 0; + virtual BAN::ErrorOr send_packet(const void* data, uint16_t len) = 0; + + virtual bool link_up() = 0; + virtual int link_speed() = 0; + }; + +} \ No newline at end of file diff --git a/kernel/include/kernel/PCI.h b/kernel/include/kernel/PCI.h index 78cccef4..d5db2960 100644 --- a/kernel/include/kernel/PCI.h +++ b/kernel/include/kernel/PCI.h @@ -7,6 +7,14 @@ namespace Kernel class PCIDevice { + public: + enum class BarType + { + INVAL, + MEM, + IO, + }; + public: PCIDevice(uint8_t, uint8_t, uint8_t); @@ -24,6 +32,9 @@ namespace Kernel uint8_t subclass() const { return m_subclass; } uint8_t prog_if() const { return m_prog_if; } + BarType read_bar_type(uint8_t) const; + uint64_t read_bar_address(uint8_t) const; + void enable_bus_mastering() const; void disable_bus_mastering() const; @@ -41,6 +52,8 @@ namespace Kernel uint8_t m_class_code; uint8_t m_subclass; uint8_t m_prog_if; + + uint8_t m_header_type; }; class PCI diff --git a/kernel/kernel/Networking/E1000.cpp b/kernel/kernel/Networking/E1000.cpp new file mode 100644 index 00000000..5e5b1a9b --- /dev/null +++ b/kernel/kernel/Networking/E1000.cpp @@ -0,0 +1,381 @@ +#include +#include +#include +#include +#include +#include + +#define E1000_GENERAL_MEM_SIZE (128 * 1024) + +#define E1000_REG_CTRL 0x0000 +#define E1000_REG_STATUS 0x0008 +#define E1000_REG_EEPROM 0x0014 +#define E1000_REG_INT_CAUSE_READ 0x00C0 +#define E1000_REG_INT_RATE 0x00C4 +#define E1000_REG_INT_MASK_SET 0x00D0 +#define E1000_REG_INT_MASK_CLEAR 0x00D8 +#define E1000_REG_RCTRL 0x0100 +#define E1000_REG_RXDESCLO 0x2800 +#define E1000_REG_RXDESCHI 0x2804 +#define E1000_REG_RXDESCLEN 0x2808 +#define E1000_REG_RXDESCHEAD 0x2810 +#define E1000_REG_RXDESCTAIL 0x2818 +#define E1000_REG_TXDESCLO 0x3800 +#define E1000_REG_TXDESCHI 0x3804 +#define E1000_REG_TXDESCLEN 0x3808 +#define E1000_REG_TXDESCHEAD 0x3810 +#define E1000_REG_TXDESCTAIL 0x3818 +#define E1000_REG_TCTRL 0x0400 +#define E1000_REG_TIPG 0x0410 + +#define E1000_STATUS_LINK_UP 0x02 +#define E1000_STATUS_SPEED_MASK 0xC0 +#define E1000_STATUS_SPEED_10MB 0x00 +#define E1000_STATUS_SPEED_100MB 0x40 +#define E1000_STATUS_SPEED_1000MB1 0x80 +#define E1000_STATUS_SPEED_1000MB2 0xC0 + +#define E1000_CTRL_SET_LINK_UP 0x40 + +#define E1000_INT_TXDW (1 << 0) +#define E1000_INT_TXQE (1 << 1) +#define E1000_INT_LSC (1 << 2) +#define E1000_INT_RXSEQ (1 << 3) +#define E1000_INT_RXDMT0 (1 << 4) +#define E1000_INT_RXO (1 << 6) +#define E1000_INT_RXT0 (1 << 7) +#define E1000_INT_MDAC (1 << 9) +#define E1000_INT_RXCFG (1 << 10) +#define E1000_INT_PHYINT (1 << 12) +#define E1000_INT_TXD_LOW (1 << 15) +#define E1000_INT_SRPD (1 << 16) + + +#define E1000_TCTL_EN (1 << 1) +#define E1000_TCTL_PSP (1 << 3) +#define E1000_TCTL_CT_SHIFT 4 +#define E1000_TCTL_COLD_SHIFT 12 +#define E1000_TCTL_SWXOFF (1 << 22) +#define E1000_TCTL_RTLC (1 << 24) + +#define E1000_RCTL_EN (1 << 1) +#define E1000_RCTL_SBP (1 << 2) +#define E1000_RCTL_UPE (1 << 3) +#define E1000_RCTL_MPE (1 << 4) +#define E1000_RCTL_LPE (1 << 5) +#define E1000_RCTL_LBM_NONE (0 << 6) +#define E1000_RCTL_LBM_PHY (3 << 6) +#define E1000_RTCL_RDMTS_HALF (0 << 8) +#define E1000_RTCL_RDMTS_QUARTER (1 << 8) +#define E1000_RTCL_RDMTS_EIGHTH (2 << 8) +#define E1000_RCTL_MO_36 (0 << 12) +#define E1000_RCTL_MO_35 (1 << 12) +#define E1000_RCTL_MO_34 (2 << 12) +#define E1000_RCTL_MO_32 (3 << 12) +#define E1000_RCTL_BAM (1 << 15) +#define E1000_RCTL_VFE (1 << 18) +#define E1000_RCTL_CFIEN (1 << 19) +#define E1000_RCTL_CFI (1 << 20) +#define E1000_RCTL_DPF (1 << 22) +#define E1000_RCTL_PMCF (1 << 23) +#define E1000_RCTL_SECRC (1 << 26) + +#define E1000_RCTL_BSIZE_256 (3 << 16) +#define E1000_RCTL_BSIZE_512 (2 << 16) +#define E1000_RCTL_BSIZE_1024 (1 << 16) +#define E1000_RCTL_BSIZE_2048 (0 << 16) +#define E1000_RCTL_BSIZE_4096 ((3 << 16) | (1 << 25)) +#define E1000_RCTL_BSIZE_8192 ((2 << 16) | (1 << 25)) +#define E1000_RCTL_BSIZE_16384 ((1 << 16) | (1 << 25)) + +namespace Kernel +{ + + struct e1000_rx_desc + { + volatile uint64_t addr; + volatile uint16_t length; + volatile uint16_t checksum; + volatile uint8_t status; + volatile uint8_t errors; + volatile uint16_t special; + } __attribute__((packed)); + + struct e1000_tx_desc + { + volatile uint64_t addr; + volatile uint16_t length; + volatile uint8_t cso; + volatile uint8_t cmd; + volatile uint8_t status; + volatile uint8_t css; + volatile uint16_t special; + } __attribute__((packed)); + + BAN::ErrorOr> E1000::create(const PCIDevice& pci_device) + { + E1000* e1000 = new E1000(); + ASSERT(e1000); + if (auto ret = e1000->initialize(pci_device); ret.is_error()) + { + delete e1000; + return ret.release_error(); + } + return BAN::UniqPtr::adopt(e1000); + } + + E1000::~E1000() + { + if (m_bar_type == PCIDevice::BarType::MEM && m_bar_addr) + PageTable::kernel().unmap_range(m_bar_addr & PAGE_ADDR_MASK, E1000_GENERAL_MEM_SIZE); + } + + BAN::ErrorOr E1000::initialize(const PCIDevice& pci_device) + { + m_bar_type = pci_device.read_bar_type(0); + if (m_bar_type == PCIDevice::BarType::INVAL) + { + dwarnln("invalid bar0 type"); + return BAN::Error::from_errno(EINVAL); + } + + if (m_bar_type == PCIDevice::BarType::MEM) + { + uint64_t bar_addr = pci_device.read_bar_address(0); + + vaddr_t page_vaddr = PageTable::kernel().reserve_free_contiguous_pages(E1000_GENERAL_MEM_SIZE / PAGE_SIZE, KERNEL_OFFSET); + paddr_t page_paddr = bar_addr & PAGE_ADDR_MASK; + PageTable::kernel().map_range_at(page_paddr, page_vaddr, E1000_GENERAL_MEM_SIZE, PageTable::Flags::CacheDisable | PageTable::Flags::ReadWrite | PageTable::Flags::Present); + + m_bar_addr = page_vaddr + (bar_addr % PAGE_SIZE); + } + else if (m_bar_type == PCIDevice::BarType::IO) + { + m_bar_addr = pci_device.read_bar_address(0); + } + + pci_device.enable_bus_mastering(); + + detect_eeprom(); + + TRY(read_mac_address()); + + dprintln("E1000 at PCI {}:{}.{}", pci_device.bus(), pci_device.dev(), pci_device.func()); + + dprintln(" MAC: {2H}:{2H}:{2H}:{2H}:{2H}:{2H}", + m_mac_address[0], + m_mac_address[1], + m_mac_address[2], + m_mac_address[3], + m_mac_address[4], + m_mac_address[5] + ); + + initialize_rx(); + initialize_tx(); + + enable_link(); + enable_interrupts(); + + dprintln(" link up: {}", link_up()); + if (link_up()) + dprintln(" link speed: {} Mbps", link_speed()); + + return {}; + } + + void E1000::write32(uint16_t reg, uint32_t value) + { + switch (m_bar_type) + { + case PCIDevice::BarType::MEM: + MMIO::write32(m_bar_addr + reg, value); + break; + case PCIDevice::BarType::IO: + IO::outl(m_bar_addr, reg); + IO::outl(m_bar_addr + 4, value); + break; + default: + ASSERT_NOT_REACHED(); + } + } + + uint32_t E1000::read32(uint16_t reg) + { + uint32_t result = 0; + switch (m_bar_type) + { + case PCIDevice::BarType::MEM: + result = MMIO::read32(m_bar_addr + reg); + break; + case PCIDevice::BarType::IO: + IO::outl(m_bar_addr, reg); + result = IO::inl(m_bar_addr + 4); + break; + default: + ASSERT_NOT_REACHED(); + } + return result; + } + + void E1000::detect_eeprom() + { + m_has_eerprom = false; + write32(E1000_REG_EEPROM, 0x01); + for (int i = 0; i < 1000 && !m_has_eerprom; i++) + if (read32(E1000_REG_EEPROM) & 0x10) + m_has_eerprom = true; + } + + uint32_t E1000::eeprom_read(uint8_t address) + { + uint32_t tmp = 0; + if (m_has_eerprom) + { + write32(E1000_REG_EEPROM, ((uint32_t)address << 8) | 1); + while (!((tmp = read32(E1000_REG_EEPROM)) & (1 << 4))) + continue; + } + else + { + write32(E1000_REG_EEPROM, ((uint32_t)address << 2) | 1); + while (!((tmp = read32(E1000_REG_EEPROM)) & (1 << 1))) + continue; + } + return (tmp >> 16) & 0xFFFF; + } + + BAN::ErrorOr E1000::read_mac_address() + { + if (m_has_eerprom) + { + uint32_t temp = eeprom_read(0); + m_mac_address[0] = temp; + m_mac_address[1] = temp >> 8; + + temp = eeprom_read(1); + m_mac_address[2] = temp; + m_mac_address[3] = temp >> 8; + + temp = eeprom_read(2); + m_mac_address[4] = temp; + m_mac_address[5] = temp >> 8; + + return {}; + } + + if (read32(0x5400) == 0) + { + dwarnln("no mac address"); + return BAN::Error::from_errno(EINVAL); + } + + for (int i = 0; i < 6; i++) + m_mac_address[i] = (uint8_t)read32(0x5400 + i * 8); + + return {}; + } + + void E1000::initialize_rx() + { + uint8_t* ptr = (uint8_t*)kmalloc(sizeof(e1000_rx_desc) * E1000_NUM_RX_DESC + 16, 16, true); + ASSERT(ptr); + + e1000_rx_desc* descs = (e1000_rx_desc*)ptr; + for (int i = 0; i < E1000_NUM_RX_DESC; i++) + { + // FIXME + m_rx_descs[i] = &descs[i]; + m_rx_descs[i]->addr = 0; + m_rx_descs[i]->status = 0; + } + + write32(E1000_REG_RXDESCLO, (uintptr_t)ptr >> 32); + write32(E1000_REG_RXDESCHI, (uintptr_t)ptr & 0xFFFFFFFF); + write32(E1000_REG_RXDESCLEN, E1000_NUM_RX_DESC * sizeof(e1000_rx_desc)); + write32(E1000_REG_RXDESCHEAD, 0); + write32(E1000_REG_RXDESCTAIL, E1000_NUM_RX_DESC - 1); + + m_rx_current = 0; + + uint32_t rctrl = 0; + rctrl |= E1000_RCTL_EN; + rctrl |= E1000_RCTL_SBP; + rctrl |= E1000_RCTL_UPE; + rctrl |= E1000_RCTL_MPE; + rctrl |= E1000_RCTL_LBM_NONE; + rctrl |= E1000_RTCL_RDMTS_HALF; + rctrl |= E1000_RCTL_BAM; + rctrl |= E1000_RCTL_SECRC; + rctrl |= E1000_RCTL_BSIZE_8192; + + write32(E1000_REG_RCTRL, rctrl); + } + + void E1000::initialize_tx() + { + auto* ptr = (uint8_t*)kmalloc(sizeof(e1000_tx_desc) * E1000_NUM_TX_DESC + 16, 16, true); + ASSERT(ptr); + + auto* descs = (e1000_tx_desc*)ptr; + for(int i = 0; i < E1000_NUM_TX_DESC; i++) + { + // FIXME + m_tx_descs[i] = &descs[i]; + m_tx_descs[i]->addr = 0; + m_tx_descs[i]->cmd = 0; + } + + write32(E1000_REG_TXDESCHI, (uintptr_t)ptr >> 32); + write32(E1000_REG_TXDESCLO, (uintptr_t)ptr & 0xFFFFFFFF); + write32(E1000_REG_TXDESCLEN, E1000_NUM_TX_DESC * sizeof(e1000_tx_desc)); + write32(E1000_REG_TXDESCHEAD, 0); + write32(E1000_REG_TXDESCTAIL, 0); + + m_tx_current = 0; + + write32(E1000_REG_TCTRL, read32(E1000_REG_TCTRL) | E1000_TCTL_EN | E1000_TCTL_PSP); + write32(E1000_REG_TIPG, 0x0060200A); + } + + void E1000::enable_link() + { + write32(E1000_REG_CTRL, read32(E1000_REG_CTRL) | E1000_CTRL_SET_LINK_UP); + m_link_up = !!(read32(E1000_REG_STATUS) & E1000_STATUS_LINK_UP); + } + + int E1000::link_speed() + { + if (!link_up()) + return 0; + uint32_t speed = read32(E1000_REG_STATUS) & E1000_STATUS_SPEED_MASK; + if (speed == E1000_STATUS_SPEED_10MB) + return 10; + if (speed == E1000_STATUS_SPEED_100MB) + return 100; + if (speed == E1000_STATUS_SPEED_1000MB1) + return 1000; + if (speed == E1000_STATUS_SPEED_1000MB2) + return 1000; + return 0; + } + + void E1000::enable_interrupts() + { + write32(E1000_REG_INT_RATE, 6000); + write32(E1000_REG_INT_MASK_SET, E1000_INT_LSC | E1000_INT_RXT0 | E1000_INT_RXO); + read32(E1000_REG_INT_CAUSE_READ); + + // FIXME: implement PCI interrupt allocation + //IDT::register_irq_handler(irq, E1000::interrupt_handler); + //InterruptController::enable_irq(irq); + } + + BAN::ErrorOr E1000::send_packet(const void* data, uint16_t len) + { + (void)data; + (void)len; + return BAN::Error::from_errno(ENOTSUP); + } + +} diff --git a/kernel/kernel/PCI.cpp b/kernel/kernel/PCI.cpp index f378abea..73400f33 100644 --- a/kernel/kernel/PCI.cpp +++ b/kernel/kernel/PCI.cpp @@ -1,4 +1,5 @@ #include +#include #include #include @@ -105,7 +106,7 @@ namespace Kernel { case 0x01: if (auto res = ATAController::create(pci_device); res.is_error()) - dprintln("{}", res.error()); + dprintln("ATA: {}", res.error()); break; default: dprintln("unsupported storage device (pci {2H}.{2H}.{2H})", pci_device.class_code(), pci_device.subclass(), pci_device.prog_if()); @@ -113,6 +114,20 @@ namespace Kernel } break; } + case 0x02: + { + switch (pci_device.subclass()) + { + case 0x00: + if (auto res = E1000::create(pci_device); res.is_error()) + dprintln("E1000: {}", res.error()); + break; + default: + dprintln("unsupported ethernet device (pci {2H}.{2H}.{2H})", pci_device.class_code(), pci_device.subclass(), pci_device.prog_if()); + break; + } + break; + } default: break; } @@ -126,6 +141,7 @@ namespace Kernel m_class_code = (uint8_t)(type >> 8); m_subclass = (uint8_t)(type); m_prog_if = read_byte(0x09); + m_header_type = read_byte(0x0E); } uint32_t PCIDevice::read_dword(uint8_t offset) const @@ -153,6 +169,33 @@ namespace Kernel write_config_dword(m_bus, m_dev, m_func, offset, value); } + PCIDevice::BarType PCIDevice::read_bar_type(uint8_t bar) const + { + ASSERT(m_header_type == 0x00); + ASSERT(bar <= 5); + + uint32_t type = read_dword(0x10 + bar * 4) & 0b111; + if (type & 1) + return BarType::IO; + type >>= 1; + if (type == 0x0 || type == 0x2) + return BarType::MEM; + return BarType::INVAL; + } + + uint64_t PCIDevice::read_bar_address(uint8_t bar) const + { + ASSERT(m_header_type == 0x00); + ASSERT(bar <= 5); + + uint64_t address = read_dword(0x10 + bar * 4); + if (address & 1) + return address & 0xFFFFFFFC; + if ((address & 0b110) == 0b100) + address |= (uint64_t)read_dword(0x10 + bar * 4 + 4) << 32; + return address & 0xFFFFFFFFFFFFFFF0; + } + void PCIDevice::enable_bus_mastering() const { write_dword(0x04, read_dword(0x04) | 1u << 2); From 7774f56ab6aeddc6db7424b86140864f834e0172 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 18 Sep 2023 13:53:10 +0300 Subject: [PATCH 006/240] Kernel: PCI devices can now create region for BAR This creates either MEM or IO region for read/write access to PCI device. --- kernel/include/kernel/Networking/E1000.h | 9 +- kernel/include/kernel/PCI.h | 94 +++++-- kernel/include/kernel/Storage/ATAController.h | 4 +- kernel/kernel/Networking/E1000.cpp | 76 +---- kernel/kernel/PCI.cpp | 262 ++++++++++++++---- kernel/kernel/Storage/ATAController.cpp | 4 +- kernel/kernel/kernel.cpp | 2 +- 7 files changed, 296 insertions(+), 155 deletions(-) diff --git a/kernel/include/kernel/Networking/E1000.h b/kernel/include/kernel/Networking/E1000.h index 9ed171df..dad29613 100644 --- a/kernel/include/kernel/Networking/E1000.h +++ b/kernel/include/kernel/Networking/E1000.h @@ -13,7 +13,7 @@ namespace Kernel class E1000 final : public NetworkDriver { public: - static BAN::ErrorOr> create(const PCIDevice&); + static BAN::ErrorOr> create(PCI::Device&); ~E1000(); virtual uint8_t* get_mac_address() override { return m_mac_address; } @@ -24,12 +24,12 @@ namespace Kernel private: E1000() = default; - BAN::ErrorOr initialize(const PCIDevice&); + BAN::ErrorOr initialize(PCI::Device&); static void interrupt_handler(); - void write32(uint16_t reg, uint32_t value); uint32_t read32(uint16_t reg); + void write32(uint16_t reg, uint32_t value); void detect_eeprom(); uint32_t eeprom_read(uint8_t addr); @@ -44,8 +44,7 @@ namespace Kernel void handle_receive(); private: - PCIDevice::BarType m_bar_type {}; - uint64_t m_bar_addr {}; + BAN::UniqPtr m_bar_region; bool m_has_eerprom { false }; uint8_t m_mac_address[6] {}; uint16_t m_rx_current {}; diff --git a/kernel/include/kernel/PCI.h b/kernel/include/kernel/PCI.h index d5db2960..1041c07e 100644 --- a/kernel/include/kernel/PCI.h +++ b/kernel/include/kernel/PCI.h @@ -1,28 +1,63 @@ #pragma once +#include #include +#include -namespace Kernel +namespace Kernel::PCI { - class PCIDevice + enum class BarType { - public: - enum class BarType - { - INVAL, - MEM, - IO, - }; + INVALID, + MEM, + IO, + }; + + class Device; + + class BarRegion + { + BAN_NON_COPYABLE(BarRegion); public: - PCIDevice(uint8_t, uint8_t, uint8_t); + static BAN::ErrorOr> create(PCI::Device&, uint8_t bar_num); + ~BarRegion(); + + BarType type() const { return m_type; } + vaddr_t vaddr() const { return m_vaddr; } + paddr_t paddr() const { return m_paddr; } + size_t size() const { return m_size; } + + void write8(off_t, uint8_t); + void write16(off_t, uint16_t); + void write32(off_t, uint32_t); + + uint8_t read8(off_t); + uint16_t read16(off_t); + uint32_t read32(off_t); + + private: + BarRegion(BarType, paddr_t, size_t); + BAN::ErrorOr initialize(); + + private: + const BarType m_type {}; + const paddr_t m_paddr {}; + const size_t m_size {}; + vaddr_t m_vaddr {}; + }; + + class Device + { + public: + Device(uint8_t, uint8_t, uint8_t); uint32_t read_dword(uint8_t) const; uint16_t read_word(uint8_t) const; uint8_t read_byte(uint8_t) const; - void write_dword(uint8_t, uint32_t) const; + void write_dword(uint8_t, uint32_t); uint8_t bus() const { return m_bus; } uint8_t dev() const { return m_dev; } @@ -32,17 +67,24 @@ namespace Kernel uint8_t subclass() const { return m_subclass; } uint8_t prog_if() const { return m_prog_if; } - BarType read_bar_type(uint8_t) const; - uint64_t read_bar_address(uint8_t) const; + uint8_t header_type() const { return m_header_type; } - void enable_bus_mastering() const; - void disable_bus_mastering() const; + BAN::ErrorOr> allocate_bar_region(uint8_t bar_num); - void enable_memory_space() const; - void disable_memory_space() const; + void enable_bus_mastering(); + void disable_bus_mastering(); - void enable_pin_interrupts() const; - void disable_pin_interrupts() const; + void enable_memory_space(); + void disable_memory_space(); + + void enable_io_space(); + void disable_io_space(); + + void enable_pin_interrupts(); + void disable_pin_interrupts(); + + private: + void enumerate_capabilites(); private: uint8_t m_bus; @@ -56,19 +98,19 @@ namespace Kernel uint8_t m_header_type; }; - class PCI + class PCIManager { - BAN_NON_COPYABLE(PCI); - BAN_NON_MOVABLE(PCI); + BAN_NON_COPYABLE(PCIManager); + BAN_NON_MOVABLE(PCIManager); public: static void initialize(); - static PCI& get(); + static PCIManager& get(); - const BAN::Vector& devices() const { return m_devices; } + const BAN::Vector& devices() const { return m_devices; } private: - PCI() = default; + PCIManager() = default; void check_function(uint8_t bus, uint8_t dev, uint8_t func); void check_device(uint8_t bus, uint8_t dev); void check_bus(uint8_t bus); @@ -76,7 +118,7 @@ namespace Kernel void initialize_devices(); private: - BAN::Vector m_devices; + BAN::Vector m_devices; }; } \ No newline at end of file diff --git a/kernel/include/kernel/Storage/ATAController.h b/kernel/include/kernel/Storage/ATAController.h index 433d98f2..c8de79e9 100644 --- a/kernel/include/kernel/Storage/ATAController.h +++ b/kernel/include/kernel/Storage/ATAController.h @@ -11,13 +11,13 @@ namespace Kernel class ATAController final : public StorageController { public: - static BAN::ErrorOr> create(const PCIDevice&); + static BAN::ErrorOr> create(const PCI::Device&); virtual BAN::Vector> devices() override; private: ATAController(); - BAN::ErrorOr initialize(const PCIDevice& device); + BAN::ErrorOr initialize(const PCI::Device& device); private: ATABus* m_buses[2] { nullptr, nullptr }; diff --git a/kernel/kernel/Networking/E1000.cpp b/kernel/kernel/Networking/E1000.cpp index 5e5b1a9b..be45183e 100644 --- a/kernel/kernel/Networking/E1000.cpp +++ b/kernel/kernel/Networking/E1000.cpp @@ -5,7 +5,7 @@ #include #include -#define E1000_GENERAL_MEM_SIZE (128 * 1024) +#define DEBUG_E1000 1 #define E1000_REG_CTRL 0x0000 #define E1000_REG_STATUS 0x0008 @@ -112,7 +112,7 @@ namespace Kernel volatile uint16_t special; } __attribute__((packed)); - BAN::ErrorOr> E1000::create(const PCIDevice& pci_device) + BAN::ErrorOr> E1000::create(PCI::Device& pci_device) { E1000* e1000 = new E1000(); ASSERT(e1000); @@ -126,42 +126,26 @@ namespace Kernel E1000::~E1000() { - if (m_bar_type == PCIDevice::BarType::MEM && m_bar_addr) - PageTable::kernel().unmap_range(m_bar_addr & PAGE_ADDR_MASK, E1000_GENERAL_MEM_SIZE); } - BAN::ErrorOr E1000::initialize(const PCIDevice& pci_device) + BAN::ErrorOr E1000::initialize(PCI::Device& pci_device) { - m_bar_type = pci_device.read_bar_type(0); - if (m_bar_type == PCIDevice::BarType::INVAL) - { - dwarnln("invalid bar0 type"); - return BAN::Error::from_errno(EINVAL); - } - - if (m_bar_type == PCIDevice::BarType::MEM) - { - uint64_t bar_addr = pci_device.read_bar_address(0); - - vaddr_t page_vaddr = PageTable::kernel().reserve_free_contiguous_pages(E1000_GENERAL_MEM_SIZE / PAGE_SIZE, KERNEL_OFFSET); - paddr_t page_paddr = bar_addr & PAGE_ADDR_MASK; - PageTable::kernel().map_range_at(page_paddr, page_vaddr, E1000_GENERAL_MEM_SIZE, PageTable::Flags::CacheDisable | PageTable::Flags::ReadWrite | PageTable::Flags::Present); - - m_bar_addr = page_vaddr + (bar_addr % PAGE_SIZE); - } - else if (m_bar_type == PCIDevice::BarType::IO) - { - m_bar_addr = pci_device.read_bar_address(0); - } - + m_bar_region = TRY(pci_device.allocate_bar_region(0)); pci_device.enable_bus_mastering(); detect_eeprom(); TRY(read_mac_address()); - dprintln("E1000 at PCI {}:{}.{}", pci_device.bus(), pci_device.dev(), pci_device.func()); + initialize_rx(); + initialize_tx(); + + enable_link(); + enable_interrupts(); + +#if DEBUG_E1000 + dprintln("E1000 at PCI {}:{}.{}", pci_device.bus(), pci_device.dev(), pci_device.func()); dprintln(" MAC: {2H}:{2H}:{2H}:{2H}:{2H}:{2H}", m_mac_address[0], m_mac_address[1], @@ -170,52 +154,22 @@ namespace Kernel m_mac_address[4], m_mac_address[5] ); - - initialize_rx(); - initialize_tx(); - - enable_link(); - enable_interrupts(); - dprintln(" link up: {}", link_up()); if (link_up()) dprintln(" link speed: {} Mbps", link_speed()); +#endif return {}; } void E1000::write32(uint16_t reg, uint32_t value) { - switch (m_bar_type) - { - case PCIDevice::BarType::MEM: - MMIO::write32(m_bar_addr + reg, value); - break; - case PCIDevice::BarType::IO: - IO::outl(m_bar_addr, reg); - IO::outl(m_bar_addr + 4, value); - break; - default: - ASSERT_NOT_REACHED(); - } + m_bar_region->write32(reg, value); } uint32_t E1000::read32(uint16_t reg) { - uint32_t result = 0; - switch (m_bar_type) - { - case PCIDevice::BarType::MEM: - result = MMIO::read32(m_bar_addr + reg); - break; - case PCIDevice::BarType::IO: - IO::outl(m_bar_addr, reg); - result = IO::inl(m_bar_addr + 4); - break; - default: - ASSERT_NOT_REACHED(); - } - return result; + return m_bar_region->read32(reg); } void E1000::detect_eeprom() diff --git a/kernel/kernel/PCI.cpp b/kernel/kernel/PCI.cpp index 73400f33..9dd8b012 100644 --- a/kernel/kernel/PCI.cpp +++ b/kernel/kernel/PCI.cpp @@ -1,33 +1,22 @@ #include +#include +#include #include #include #include -#define INVALID 0xFFFF +#define INVALID_VENDOR 0xFFFF #define MULTI_FUNCTION 0x80 #define CONFIG_ADDRESS 0xCF8 #define CONFIG_DATA 0xCFC -namespace Kernel +#define DEBUG_PCI 1 + +namespace Kernel::PCI { - static PCI* s_instance = nullptr; - - void PCI::initialize() - { - ASSERT(s_instance == nullptr); - s_instance = new PCI(); - ASSERT(s_instance); - s_instance->check_all_buses(); - s_instance->initialize_devices(); - } - - PCI& PCI::get() - { - ASSERT(s_instance); - return *s_instance; - } + static PCIManager* s_instance = nullptr; static uint32_t read_config_dword(uint8_t bus, uint8_t dev, uint8_t func, uint8_t offset) { @@ -55,7 +44,22 @@ namespace Kernel return (dword >> 16) & 0xFF; } - void PCI::check_function(uint8_t bus, uint8_t dev, uint8_t func) + void PCIManager::initialize() + { + ASSERT(s_instance == nullptr); + s_instance = new PCIManager(); + ASSERT(s_instance); + s_instance->check_all_buses(); + s_instance->initialize_devices(); + } + + PCIManager& PCIManager::get() + { + ASSERT(s_instance); + return *s_instance; + } + + void PCIManager::check_function(uint8_t bus, uint8_t dev, uint8_t func) { MUST(m_devices.emplace_back(bus, dev, func)); auto& device = m_devices.back(); @@ -63,29 +67,29 @@ namespace Kernel check_bus(device.read_byte(0x19)); } - void PCI::check_device(uint8_t bus, uint8_t dev) + void PCIManager::check_device(uint8_t bus, uint8_t dev) { - if (get_vendor_id(bus, dev, 0) == INVALID) + if (get_vendor_id(bus, dev, 0) == INVALID_VENDOR) return; check_function(bus, dev, 0); if (get_header_type(bus, dev, 0) & MULTI_FUNCTION) for (uint8_t func = 1; func < 8; func++) - if (get_vendor_id(bus, dev, func) != INVALID) + if (get_vendor_id(bus, dev, func) != INVALID_VENDOR) check_function(bus, dev, func); } - void PCI::check_bus(uint8_t bus) + void PCIManager::check_bus(uint8_t bus) { for (uint8_t dev = 0; dev < 32; dev++) check_device(bus, dev); } - void PCI::check_all_buses() + void PCIManager::check_all_buses() { if (get_header_type(0, 0, 0) & MULTI_FUNCTION) { - for (int func = 0; func < 8 && get_vendor_id(0, 0, func) != INVALID; func++) + for (int func = 0; func < 8 && get_vendor_id(0, 0, func) != INVALID_VENDOR; func++) check_bus(func); } else @@ -94,9 +98,9 @@ namespace Kernel } } - void PCI::initialize_devices() + void PCIManager::initialize_devices() { - for (const auto& pci_device : PCI::get().devices()) + for (auto& pci_device : m_devices) { switch (pci_device.class_code()) { @@ -134,7 +138,144 @@ namespace Kernel } } - PCIDevice::PCIDevice(uint8_t bus, uint8_t dev, uint8_t func) + BAN::ErrorOr> BarRegion::create(PCI::Device& device, uint8_t bar_num) + { + ASSERT(device.header_type() == 0x00); + + uint32_t command_status = device.read_dword(0x04); + + // disable io/mem space while reading bar + device.write_dword(0x04, command_status & ~3); + + uint8_t offset = 0x10 + bar_num * 8; + + uint64_t addr = device.read_dword(offset); + + device.write_dword(offset, 0xFFFFFFFF); + uint32_t size = device.read_dword(0x10 + bar_num * 8); + size = ~size + 1; + device.write_dword(offset, addr); + + // determine bar type + BarType type = BarType::INVALID; + if (addr & 1) + { + type = BarType::IO; + addr &= 0xFFFFFFFC; + } + else if ((addr & 0b110) == 0b000) + { + type = BarType::MEM; + addr &= 0xFFFFFFF0; + } + else if ((addr & 0b110) == 0b100) + { + type = BarType::MEM; + addr &= 0xFFFFFFF0; + addr |= (uint64_t)device.read_dword(offset + 8) << 32; + } + + if (type == BarType::INVALID) + { + dwarnln("invalid pci device bar"); + return BAN::Error::from_errno(EINVAL); + } + + auto* region_ptr = new BarRegion(type, addr, size); + ASSERT(region_ptr); + + auto region = BAN::UniqPtr::adopt(region_ptr); + TRY(region->initialize()); + + // restore old command register and enable correct IO/MEM + command_status |= (type == BarType::IO) ? 1 : 2; + device.write_dword(0x04, command_status); + +#if DEBUG_PCI + dprintln("created BAR region for PCI {}:{}.{}", + device.bus(), + device.dev(), + device.func() + ); + dprintln(" type: {}", region->type() == BarType::IO ? "IO" : "MEM"); + dprintln(" paddr {}", (void*)region->paddr()); + dprintln(" vaddr {}", (void*)region->vaddr()); + dprintln(" size {}", region->size()); +#endif + + return region; + } + + BarRegion::BarRegion(BarType type, paddr_t paddr, size_t size) + : m_type(type) + , m_paddr(paddr) + , m_size(size) + { } + + BarRegion::~BarRegion() + { + if (m_type == BarType::MEM && m_vaddr) + PageTable::kernel().unmap_range(m_vaddr, m_size); + m_vaddr = 0; + } + + BAN::ErrorOr BarRegion::initialize() + { + if (m_type == BarType::IO) + return {}; + + size_t needed_pages = BAN::Math::div_round_up(m_size, PAGE_SIZE); + m_vaddr = PageTable::kernel().reserve_free_contiguous_pages(needed_pages, KERNEL_OFFSET); + if (m_vaddr == 0) + return BAN::Error::from_errno(ENOMEM); + PageTable::kernel().map_range_at(m_paddr, m_vaddr, m_size, PageTable::Flags::CacheDisable | PageTable::Flags::ReadWrite | PageTable::Flags::Present); + + return {}; + } + + void BarRegion::write8(off_t reg, uint8_t val) + { + if (m_type == BarType::IO) + return IO::outb(m_vaddr + reg, val); + MMIO::write8(m_vaddr + reg, val); + } + + void BarRegion::write16(off_t reg, uint16_t val) + { + if (m_type == BarType::IO) + return IO::outw(m_vaddr + reg, val); + MMIO::write16(m_vaddr + reg, val); + } + + void BarRegion::write32(off_t reg, uint32_t val) + { + if (m_type == BarType::IO) + return IO::outl(m_vaddr + reg, val); + MMIO::write32(m_vaddr + reg, val); + } + + uint8_t BarRegion::read8(off_t reg) + { + if (m_type == BarType::IO) + return IO::inb(m_vaddr + reg); + return MMIO::read8(m_vaddr + reg); + } + + uint16_t BarRegion::read16(off_t reg) + { + if (m_type == BarType::IO) + return IO::inw(m_vaddr + reg); + return MMIO::read16(m_vaddr + reg); + } + + uint32_t BarRegion::read32(off_t reg) + { + if (m_type == BarType::IO) + return IO::inl(m_vaddr + reg); + return MMIO::read32(m_vaddr + reg); + } + + PCI::Device::Device(uint8_t bus, uint8_t dev, uint8_t func) : m_bus(bus), m_dev(dev), m_func(func) { uint32_t type = read_word(0x0A); @@ -142,87 +283,92 @@ namespace Kernel m_subclass = (uint8_t)(type); m_prog_if = read_byte(0x09); m_header_type = read_byte(0x0E); + + enumerate_capabilites(); } - uint32_t PCIDevice::read_dword(uint8_t offset) const + uint32_t PCI::Device::read_dword(uint8_t offset) const { ASSERT((offset & 0x03) == 0); return read_config_dword(m_bus, m_dev, m_func, offset); } - uint16_t PCIDevice::read_word(uint8_t offset) const + uint16_t PCI::Device::read_word(uint8_t offset) const { ASSERT((offset & 0x01) == 0); uint32_t dword = read_config_dword(m_bus, m_dev, m_func, offset & 0xFC); return (uint16_t)(dword >> (8 * (offset & 0x03))); } - uint8_t PCIDevice::read_byte(uint8_t offset) const + uint8_t PCI::Device::read_byte(uint8_t offset) const { uint32_t dword = read_config_dword(m_bus, m_dev, m_func, offset & 0xFC); return (uint8_t)(dword >> (8 * (offset & 0x03))); } - void PCIDevice::write_dword(uint8_t offset, uint32_t value) const + void PCI::Device::write_dword(uint8_t offset, uint32_t value) { ASSERT((offset & 0x03) == 0); write_config_dword(m_bus, m_dev, m_func, offset, value); } - PCIDevice::BarType PCIDevice::read_bar_type(uint8_t bar) const + BAN::ErrorOr> PCI::Device::allocate_bar_region(uint8_t bar_num) { - ASSERT(m_header_type == 0x00); - ASSERT(bar <= 5); - - uint32_t type = read_dword(0x10 + bar * 4) & 0b111; - if (type & 1) - return BarType::IO; - type >>= 1; - if (type == 0x0 || type == 0x2) - return BarType::MEM; - return BarType::INVAL; + return BarRegion::create(*this, bar_num); } - uint64_t PCIDevice::read_bar_address(uint8_t bar) const + void PCI::Device::enumerate_capabilites() { - ASSERT(m_header_type == 0x00); - ASSERT(bar <= 5); + uint16_t status = read_word(0x06); + if (!(status & (1 << 4))) + return; - uint64_t address = read_dword(0x10 + bar * 4); - if (address & 1) - return address & 0xFFFFFFFC; - if ((address & 0b110) == 0b100) - address |= (uint64_t)read_dword(0x10 + bar * 4 + 4) << 32; - return address & 0xFFFFFFFFFFFFFFF0; + uint8_t capabilities = read_byte(0x34) & 0xFC; + while (capabilities) + { + uint16_t next = read_word(capabilities); + dprintln(" cap {2H}", next & 0xFF); + capabilities = (next >> 8) & 0xFC; + } } - void PCIDevice::enable_bus_mastering() const + void PCI::Device::enable_bus_mastering() { write_dword(0x04, read_dword(0x04) | 1u << 2); } - void PCIDevice::disable_bus_mastering() const + void PCI::Device::disable_bus_mastering() { write_dword(0x04, read_dword(0x04) & ~(1u << 2)); } - void PCIDevice::enable_memory_space() const + void PCI::Device::enable_memory_space() { write_dword(0x04, read_dword(0x04) | 1u << 1); } - void PCIDevice::disable_memory_space() const + void PCI::Device::disable_memory_space() { write_dword(0x04, read_dword(0x04) & ~(1u << 1)); } - void PCIDevice::enable_pin_interrupts() const + void PCI::Device::enable_io_space() + { + write_dword(0x04, read_dword(0x04) | 1u << 0); + } + + void PCI::Device::disable_io_space() + { + write_dword(0x04, read_dword(0x04) & ~(1u << 0)); + } + + void PCI::Device::enable_pin_interrupts() { write_dword(0x04, read_dword(0x04) | 1u << 10); } - void PCIDevice::disable_pin_interrupts() const + void PCI::Device::disable_pin_interrupts() { write_dword(0x04, read_dword(0x04) & ~(1u << 10)); } diff --git a/kernel/kernel/Storage/ATAController.cpp b/kernel/kernel/Storage/ATAController.cpp index 2b7d4ed2..a4a481f3 100644 --- a/kernel/kernel/Storage/ATAController.cpp +++ b/kernel/kernel/Storage/ATAController.cpp @@ -11,7 +11,7 @@ namespace Kernel { - BAN::ErrorOr> ATAController::create(const PCIDevice& device) + BAN::ErrorOr> ATAController::create(const PCI::Device& device) { ATAController* controller = new ATAController(); if (controller == nullptr) @@ -50,7 +50,7 @@ namespace Kernel : m_rdev(makedev(DevFileSystem::get().get_next_dev(), 0)) { } - BAN::ErrorOr ATAController::initialize(const PCIDevice& pci_device) + BAN::ErrorOr ATAController::initialize(const PCI::Device& pci_device) { struct Bus { diff --git a/kernel/kernel/kernel.cpp b/kernel/kernel/kernel.cpp index 8e6c50e1..da9e3965 100644 --- a/kernel/kernel/kernel.cpp +++ b/kernel/kernel/kernel.cpp @@ -167,7 +167,7 @@ static void init2(void*) DevFileSystem::get().initialize_device_updater(); - PCI::initialize(); + PCI::PCIManager::initialize(); dprintln("PCI initialized"); VirtualFileSystem::initialize(cmdline.root); From 3a9c6fc51a4809aab920e4c6d6084994c31d98b1 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 18 Sep 2023 13:54:24 +0300 Subject: [PATCH 007/240] General: remove linecount.sh --- linecount.sh | 3 --- 1 file changed, 3 deletions(-) delete mode 100755 linecount.sh diff --git a/linecount.sh b/linecount.sh deleted file mode 100755 index 8b181448..00000000 --- a/linecount.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -find . | grep -vE '(build|toolchain)' | grep -E '\.(cpp|h|S)$' | xargs wc -l | sort -n From bc1087f5a7f87cd9a68343549b5d498a41632e5d Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 18 Sep 2023 21:37:37 +0300 Subject: [PATCH 008/240] Kernel: Add pointer validation API to page table --- kernel/arch/x86_64/PageTable.cpp | 7 +++++++ kernel/include/kernel/Memory/PageTable.h | 4 +++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/kernel/arch/x86_64/PageTable.cpp b/kernel/arch/x86_64/PageTable.cpp index fd6c9d3d..fca738bc 100644 --- a/kernel/arch/x86_64/PageTable.cpp +++ b/kernel/arch/x86_64/PageTable.cpp @@ -110,6 +110,13 @@ namespace Kernel return *s_current; } + bool PageTable::is_valid_pointer(uintptr_t pointer) + { + if (!is_canonical(pointer)) + return false; + return true; + } + static uint64_t* allocate_zeroed_page_aligned_page() { void* page = kmalloc(PAGE_SIZE, PAGE_SIZE, true); diff --git a/kernel/include/kernel/Memory/PageTable.h b/kernel/include/kernel/Memory/PageTable.h index 55456df7..a0f434ad 100644 --- a/kernel/include/kernel/Memory/PageTable.h +++ b/kernel/include/kernel/Memory/PageTable.h @@ -29,13 +29,15 @@ namespace Kernel static PageTable& kernel(); static PageTable& current(); + static bool is_valid_pointer(uintptr_t); + static BAN::ErrorOr create_userspace(); ~PageTable(); void unmap_page(vaddr_t); void unmap_range(vaddr_t, size_t bytes); - void map_range_at(paddr_t, vaddr_t, size_t, flags_t); + void map_range_at(paddr_t, vaddr_t, size_t bytes, flags_t); void map_page_at(paddr_t, vaddr_t, flags_t); paddr_t physical_address_of(vaddr_t) const; From 0d67e46041b49d9cb5498f565eca4886f81de20e Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 18 Sep 2023 21:39:09 +0300 Subject: [PATCH 009/240] Kernel: Add config read/write api to PCI --- kernel/include/kernel/PCI.h | 10 ++++++ kernel/kernel/PCI.cpp | 69 ++++++++++++++++++++++++++++++------- 2 files changed, 66 insertions(+), 13 deletions(-) diff --git a/kernel/include/kernel/PCI.h b/kernel/include/kernel/PCI.h index 1041c07e..b18d84ed 100644 --- a/kernel/include/kernel/PCI.h +++ b/kernel/include/kernel/PCI.h @@ -58,6 +58,8 @@ namespace Kernel::PCI uint8_t read_byte(uint8_t) const; void write_dword(uint8_t, uint32_t); + void write_word(uint8_t, uint16_t); + void write_byte(uint8_t, uint8_t); uint8_t bus() const { return m_bus; } uint8_t dev() const { return m_dev; } @@ -109,6 +111,14 @@ namespace Kernel::PCI const BAN::Vector& devices() const { return m_devices; } + static uint32_t read_config_dword(uint8_t bus, uint8_t dev, uint8_t func, uint8_t offset); + static uint16_t read_config_word(uint8_t bus, uint8_t dev, uint8_t func, uint8_t offset); + static uint8_t read_config_byte(uint8_t bus, uint8_t dev, uint8_t func, uint8_t offset); + + static void write_config_dword(uint8_t bus, uint8_t dev, uint8_t func, uint8_t offset, uint32_t value); + static void write_config_word(uint8_t bus, uint8_t dev, uint8_t func, uint8_t offset, uint16_t value); + static void write_config_byte(uint8_t bus, uint8_t dev, uint8_t func, uint8_t offset, uint8_t value); + private: PCIManager() = default; void check_function(uint8_t bus, uint8_t dev, uint8_t func); diff --git a/kernel/kernel/PCI.cpp b/kernel/kernel/PCI.cpp index 9dd8b012..9a5ea1f1 100644 --- a/kernel/kernel/PCI.cpp +++ b/kernel/kernel/PCI.cpp @@ -18,29 +18,63 @@ namespace Kernel::PCI static PCIManager* s_instance = nullptr; - static uint32_t read_config_dword(uint8_t bus, uint8_t dev, uint8_t func, uint8_t offset) + uint32_t PCIManager::read_config_dword(uint8_t bus, uint8_t dev, uint8_t func, uint8_t offset) { + ASSERT(offset % 4 == 0); uint32_t config_addr = 0x80000000 | ((uint32_t)bus << 16) | ((uint32_t)dev << 11) | ((uint32_t)func << 8) | offset; IO::outl(CONFIG_ADDRESS, config_addr); return IO::inl(CONFIG_DATA); } - static void write_config_dword(uint8_t bus, uint8_t dev, uint8_t func, uint8_t offset, uint32_t value) + uint16_t PCIManager::read_config_word(uint8_t bus, uint8_t dev, uint8_t func, uint8_t offset) { + ASSERT(offset % 2 == 0); + uint32_t dword = read_config_dword(bus, dev, func, offset & ~3); + return (dword >> ((offset & 3) * 8)) & 0xFFFF; + } + + uint8_t PCIManager::read_config_byte(uint8_t bus, uint8_t dev, uint8_t func, uint8_t offset) + { + uint32_t dword = read_config_dword(bus, dev, func, offset & ~3); + return (dword >> ((offset & 3) * 8)) & 0xFF; + } + + void PCIManager::write_config_dword(uint8_t bus, uint8_t dev, uint8_t func, uint8_t offset, uint32_t value) + { + ASSERT(offset % 4 == 0); uint32_t config_addr = 0x80000000 | ((uint32_t)bus << 16) | ((uint32_t)dev << 11) | ((uint32_t)func << 8) | offset; IO::outl(CONFIG_ADDRESS, config_addr); IO::outl(CONFIG_DATA, value); } + void PCIManager::write_config_word(uint8_t bus, uint8_t dev, uint8_t func, uint8_t offset, uint16_t value) + { + ASSERT(offset % 2 == 0); + uint32_t byte = (offset & 3) * 8; + uint32_t temp = read_config_dword(bus, dev, func, offset & ~3); + temp &= ~(0xFFFF << byte); + temp |= (uint32_t)value << byte; + write_config_dword(bus, dev, func, offset & ~3, temp); + } + + void PCIManager::write_config_byte(uint8_t bus, uint8_t dev, uint8_t func, uint8_t offset, uint8_t value) + { + uint32_t byte = (offset & 3) * 8; + uint32_t temp = read_config_dword(bus, dev, func, offset & ~3); + temp &= ~(0xFF << byte); + temp |= (uint32_t)value << byte; + write_config_dword(bus, dev, func, offset, temp); + } + static uint16_t get_vendor_id(uint8_t bus, uint8_t dev, uint8_t func) { - uint32_t dword = read_config_dword(bus, dev, func, 0x00); + uint32_t dword = PCIManager::read_config_dword(bus, dev, func, 0x00); return dword & 0xFFFF; } static uint8_t get_header_type(uint8_t bus, uint8_t dev, uint8_t func) { - uint32_t dword = read_config_dword(bus, dev, func, 0x0C); + uint32_t dword = PCIManager::read_config_dword(bus, dev, func, 0x0C); return (dword >> 16) & 0xFF; } @@ -289,27 +323,36 @@ namespace Kernel::PCI uint32_t PCI::Device::read_dword(uint8_t offset) const { - ASSERT((offset & 0x03) == 0); - return read_config_dword(m_bus, m_dev, m_func, offset); + ASSERT(offset % 4 == 0); + return PCIManager::read_config_dword(m_bus, m_dev, m_func, offset); } uint16_t PCI::Device::read_word(uint8_t offset) const { - ASSERT((offset & 0x01) == 0); - uint32_t dword = read_config_dword(m_bus, m_dev, m_func, offset & 0xFC); - return (uint16_t)(dword >> (8 * (offset & 0x03))); + ASSERT(offset % 2 == 0); + return PCIManager::read_config_word(m_bus, m_dev, m_func, offset); } uint8_t PCI::Device::read_byte(uint8_t offset) const { - uint32_t dword = read_config_dword(m_bus, m_dev, m_func, offset & 0xFC); - return (uint8_t)(dword >> (8 * (offset & 0x03))); + return PCIManager::read_config_byte(m_bus, m_dev, m_func, offset); } void PCI::Device::write_dword(uint8_t offset, uint32_t value) { - ASSERT((offset & 0x03) == 0); - write_config_dword(m_bus, m_dev, m_func, offset, value); + ASSERT(offset % 4 == 0); + PCIManager::write_config_dword(m_bus, m_dev, m_func, offset, value); + } + + void PCI::Device::write_word(uint8_t offset, uint16_t value) + { + ASSERT(offset % 2 == 0); + PCIManager::write_config_word(m_bus, m_dev, m_func, offset, value); + } + + void PCI::Device::write_byte(uint8_t offset, uint8_t value) + { + PCIManager::write_config_byte(m_bus, m_dev, m_func, offset, value); } BAN::ErrorOr> PCI::Device::allocate_bar_region(uint8_t bar_num) From 8136248a67c0184a8edc9747588f1b64e8296209 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 18 Sep 2023 21:43:32 +0300 Subject: [PATCH 010/240] Kernel: Fix timer includes --- kernel/include/kernel/Timer/Timer.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/include/kernel/Timer/Timer.h b/kernel/include/kernel/Timer/Timer.h index 4ab412e7..f4c0f49b 100644 --- a/kernel/include/kernel/Timer/Timer.h +++ b/kernel/include/kernel/Timer/Timer.h @@ -4,6 +4,8 @@ #include #include +#include + namespace Kernel { From c9e09b840eb02f76587ed63d30b14b47dc35dda6 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 18 Sep 2023 21:48:37 +0300 Subject: [PATCH 011/240] Kernel: Add LAI as a dependency I did not feel like implementing AML interpreter now, and wanted everything AML has to offer. I will be writing my own AML interperter at some point. --- .gitmodules | 4 + CMakeLists.txt | 3 + kernel/CMakeLists.txt | 17 +++- kernel/include/kernel/ACPI.h | 19 ++++- kernel/include/kernel/Arch.h | 4 + kernel/kernel/ACPI.cpp | 106 ++++++++++++++++--------- kernel/kernel/lai_host.cpp | 150 +++++++++++++++++++++++++++++++++++ kernel/lai | 1 + 8 files changed, 258 insertions(+), 46 deletions(-) create mode 100644 .gitmodules create mode 100644 kernel/kernel/lai_host.cpp create mode 160000 kernel/lai diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..30d88028 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,4 @@ +[submodule "kernel/lai"] + path = kernel/lai + url = https://github.com/managarm/lai.git + ignore = untracked diff --git a/CMakeLists.txt b/CMakeLists.txt index 5526a851..27b9ae21 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,6 +13,9 @@ set(CMAKE_CXX_STANDARD_REQUIRED True) set(CMAKE_CXX_COMPILER ${TOOLCHAIN_PREFIX}/bin/${BANAN_ARCH}-banan_os-g++) set(CMAKE_CXX_COMPILER_WORKS True) +set(CMAKE_C_COMPILER ${TOOLCHAIN_PREFIX}/bin/${BANAN_ARCH}-banan_os-gcc) +set(CMAKE_C_COMPILER_WORKS True) + if(NOT EXISTS ${CMAKE_CXX_COMPILER}) set(CMAKE_CXX_COMPILER g++) endif() diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index 02706efe..3801e43b 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.26) -project(kernel CXX ASM) +project(kernel CXX C ASM) if("${BANAN_ARCH}" STREQUAL "x86_64") set(ELF_FORMAT elf64-x86-64) @@ -98,6 +98,14 @@ else() message(FATAL_ERROR "unsupported architecure ${BANAN_ARCH}") endif() +file(GLOB_RECURSE LAI_SOURCES + lai/*.c +) +set(LAI_SOURCES + ${LAI_SOURCES} + kernel/lai_host.cpp +) + set(BAN_SOURCES ../BAN/BAN/New.cpp ../BAN/BAN/String.cpp @@ -116,6 +124,7 @@ set(LIBELF_SOURCES set(KERNEL_SOURCES ${KERNEL_SOURCES} + ${LAI_SOURCES} ${BAN_SOURCES} ${LIBC_SOURCES} ${LIBELF_SOURCES} @@ -128,10 +137,9 @@ target_compile_definitions(kernel PUBLIC __is_kernel) target_compile_definitions(kernel PUBLIC __arch=${BANAN_ARCH}) target_compile_options(kernel PUBLIC -O2 -g) -target_compile_options(kernel PUBLIC -Wno-literal-suffix) -target_compile_options(kernel PUBLIC -fno-rtti -fno-exceptions) +target_compile_options(kernel PUBLIC $<$:-Wno-literal-suffix -fno-rtti -fno-exceptions>) target_compile_options(kernel PUBLIC -fmacro-prefix-map=${CMAKE_CURRENT_SOURCE_DIR}=.) -target_compile_options(kernel PUBLIC -fstack-protector -ffreestanding -Wall -Wextra -Werror=return-type -Wstack-usage=1024 -fno-omit-frame-pointer -mgeneral-regs-only) +target_compile_options(kernel PUBLIC -fstack-protector -ffreestanding -Wall -Werror=return-type -Wstack-usage=1024 -fno-omit-frame-pointer -mgeneral-regs-only) if(ENABLE_KERNEL_UBSAN) target_compile_options(kernel PUBLIC -fsanitize=undefined) @@ -160,6 +168,7 @@ add_custom_command( add_custom_target(kernel-headers COMMAND sudo rsync -a ${CMAKE_CURRENT_SOURCE_DIR}/include/ ${BANAN_INCLUDE}/ + COMMAND sudo rsync -a ${CMAKE_CURRENT_SOURCE_DIR}/lai/include/ ${BANAN_INCLUDE}/ DEPENDS sysroot USES_TERMINAL ) diff --git a/kernel/include/kernel/ACPI.h b/kernel/include/kernel/ACPI.h index 2af66f29..4937a6af 100644 --- a/kernel/include/kernel/ACPI.h +++ b/kernel/include/kernel/ACPI.h @@ -114,20 +114,31 @@ namespace Kernel ACPI() = default; BAN::ErrorOr initialize_impl(); - const SDTHeader* get_header_from_index(size_t); - private: paddr_t m_header_table_paddr = 0; vaddr_t m_header_table_vaddr = 0; uint32_t m_entry_size = 0; - uint32_t m_entry_count = 0; struct MappedPage { Kernel::paddr_t paddr; Kernel::vaddr_t vaddr; + + SDTHeader* as_header() { return (SDTHeader*)vaddr; } }; BAN::Vector m_mapped_headers; }; -} \ No newline at end of file +} + +namespace BAN::Formatter +{ + template + void print_argument(F putc, const Kernel::ACPI::SDTHeader& header, const ValueFormat& format) + { + putc(header.signature[0]); + putc(header.signature[1]); + putc(header.signature[2]); + putc(header.signature[3]); + } +} diff --git a/kernel/include/kernel/Arch.h b/kernel/include/kernel/Arch.h index 0a31be74..068ebdd5 100644 --- a/kernel/include/kernel/Arch.h +++ b/kernel/include/kernel/Arch.h @@ -21,4 +21,8 @@ #include +#ifdef __cplusplus extern "C" uintptr_t read_rip(); +#else +extern uintptr_t read_rip(); +#endif diff --git a/kernel/kernel/ACPI.cpp b/kernel/kernel/ACPI.cpp index ecb443eb..ae447ce3 100644 --- a/kernel/kernel/ACPI.cpp +++ b/kernel/kernel/ACPI.cpp @@ -3,6 +3,8 @@ #include #include +#include + #define RSPD_SIZE 20 #define RSPDv2_SIZE 36 @@ -43,6 +45,7 @@ namespace Kernel if (s_instance == nullptr) return BAN::Error::from_errno(ENOMEM); TRY(s_instance->initialize_impl()); + lai_create_namespace(); return {}; } @@ -101,6 +104,9 @@ namespace Kernel const RSDP* rsdp = locate_rsdp(); if (rsdp == nullptr) return BAN::Error::from_error_code(ErrorCode::ACPI_NoRootSDT); + lai_set_acpi_revision(rsdp->revision); + + uint32_t root_entry_count = 0; if (rsdp->revision >= 2) { @@ -115,7 +121,7 @@ namespace Kernel m_header_table_paddr = (paddr_t)xsdt->entries + (rsdp->rsdt_address & PAGE_ADDR_MASK); m_entry_size = 8; - m_entry_count = (xsdt->length - sizeof(SDTHeader)) / 8; + root_entry_count = (xsdt->length - sizeof(SDTHeader)) / 8; } else { @@ -130,10 +136,10 @@ namespace Kernel m_header_table_paddr = (paddr_t)rsdt->entries + (rsdp->rsdt_address & PAGE_ADDR_MASK); m_entry_size = 4; - m_entry_count = (rsdt->length - sizeof(SDTHeader)) / 4; + root_entry_count = (rsdt->length - sizeof(SDTHeader)) / 4; } - size_t needed_pages = range_page_count(m_header_table_paddr, m_entry_count * m_entry_size); + size_t needed_pages = range_page_count(m_header_table_paddr, root_entry_count * m_entry_size); m_header_table_vaddr = PageTable::kernel().reserve_free_contiguous_pages(needed_pages, KERNEL_OFFSET); ASSERT(m_header_table_vaddr); @@ -146,61 +152,85 @@ namespace Kernel PageTable::Flags::Present ); - for (uint32_t i = 0; i < m_entry_count; i++) + auto map_header = + [](paddr_t header_paddr) -> vaddr_t + { + PageTable::kernel().map_page_at(header_paddr & PAGE_ADDR_MASK, 0, PageTable::Flags::Present); + size_t header_length = ((SDTHeader*)(header_paddr % PAGE_SIZE))->length; + PageTable::kernel().unmap_page(0); + + size_t needed_pages = range_page_count(header_paddr, header_length); + vaddr_t page_vaddr = PageTable::kernel().reserve_free_contiguous_pages(needed_pages, KERNEL_OFFSET); + ASSERT(page_vaddr); + + PageTable::kernel().map_range_at( + header_paddr & PAGE_ADDR_MASK, + page_vaddr, + needed_pages * PAGE_SIZE, + PageTable::Flags::Present + ); + + auto* header = (SDTHeader*)(page_vaddr + (header_paddr % PAGE_SIZE)); + if (!is_valid_std_header(header)) + { + PageTable::kernel().unmap_range(page_vaddr, needed_pages * PAGE_SIZE); + return 0; + } + + return page_vaddr + (header_paddr % PAGE_SIZE); + }; + + for (uint32_t i = 0; i < root_entry_count; i++) { paddr_t header_paddr = (m_entry_size == 4) ? ((uint32_t*)m_header_table_vaddr)[i] : ((uint64_t*)m_header_table_vaddr)[i]; - PageTable::kernel().map_page_at(header_paddr & PAGE_ADDR_MASK, 0, PageTable::Flags::Present); - size_t header_length = ((SDTHeader*)(header_paddr % PAGE_SIZE))->length; - PageTable::kernel().unmap_page(0); - - size_t needed_pages = range_page_count(header_paddr, header_length); - vaddr_t page_vaddr = PageTable::kernel().reserve_free_contiguous_pages(needed_pages, KERNEL_OFFSET); - ASSERT(page_vaddr); - - PageTable::kernel().map_range_at( - header_paddr & PAGE_ADDR_MASK, - page_vaddr, - needed_pages * PAGE_SIZE, - PageTable::Flags::Present - ); + vaddr_t header_vaddr = map_header(header_paddr); + if (header_vaddr == 0) + continue; MUST(m_mapped_headers.push_back({ .paddr = header_paddr, - .vaddr = page_vaddr + (header_paddr % PAGE_SIZE) + .vaddr = header_vaddr })); } + for (size_t i = 0; i < m_mapped_headers.size(); i++) + { + auto* header = m_mapped_headers[i].as_header(); + dprintln("found header {}", *header); + + if (memcmp(header->signature, "FACP", 4) == 0) + { + auto* fadt = (FADT*)header; + paddr_t dsdt_paddr = fadt->x_dsdt; + if (dsdt_paddr == 0 || !PageTable::is_valid_pointer(dsdt_paddr)) + dsdt_paddr = fadt->dsdt; + + vaddr_t dsdt_vaddr = map_header(dsdt_paddr); + if (dsdt_vaddr == 0) + continue; + + MUST(m_mapped_headers.push_back({ + .paddr = dsdt_paddr, + .vaddr = dsdt_vaddr + })); + } + } + return {}; } const ACPI::SDTHeader* ACPI::get_header(const char signature[4]) { - for (uint32_t i = 0; i < m_entry_count; i++) + for (auto& mapped_header : m_mapped_headers) { - const SDTHeader* header = get_header_from_index(i); - if (is_valid_std_header(header) && memcmp(header->signature, signature, 4) == 0) + auto* header = mapped_header.as_header(); + if (memcmp(header->signature, signature, 4) == 0) return header; } return nullptr; } - const ACPI::SDTHeader* ACPI::get_header_from_index(size_t index) - { - ASSERT(index < m_entry_count); - ASSERT(m_entry_size == 4 || m_entry_size == 8); - - paddr_t header_paddr = (m_entry_size == 4) ? - ((uint32_t*)m_header_table_vaddr)[index] : - ((uint64_t*)m_header_table_vaddr)[index]; - - for (const auto& page : m_mapped_headers) - if (page.paddr == header_paddr) - return (SDTHeader*)page.vaddr; - - ASSERT_NOT_REACHED(); - } - } \ No newline at end of file diff --git a/kernel/kernel/lai_host.cpp b/kernel/kernel/lai_host.cpp new file mode 100644 index 00000000..3b3eba9d --- /dev/null +++ b/kernel/kernel/lai_host.cpp @@ -0,0 +1,150 @@ +#include +#include +#include +#include +#include +#include + +#include + +using namespace Kernel; + +void* laihost_malloc(size_t size) +{ + return kmalloc(size); +} + +void* laihost_realloc(void* ptr, size_t newsize, size_t oldsize) +{ + if (ptr == nullptr) + return laihost_malloc(newsize); + + void* new_ptr = laihost_malloc(newsize); + if (new_ptr == nullptr) + return nullptr; + + memcpy(new_ptr, ptr, BAN::Math::min(newsize, oldsize)); + kfree(ptr); + + return new_ptr; +} + +void laihost_free(void* ptr, size_t) +{ + kfree(ptr); +} + +void laihost_log(int level, const char* msg) +{ + if (level == LAI_DEBUG_LOG) + dprintln(msg); + else if (level == LAI_WARN_LOG) + dwarnln(msg); + else + ASSERT_NOT_REACHED(); +} + +void laihost_panic(const char* msg) +{ + Kernel::panic(msg); +} + +void* laihost_scan(const char* sig, size_t index) +{ + ASSERT(index == 0); + return (void*)ACPI::get().get_header(sig); +} + +void* laihost_map(size_t address, size_t count) +{ + size_t needed_pages = range_page_count(address, count); + vaddr_t vaddr = PageTable::kernel().reserve_free_contiguous_pages(needed_pages, KERNEL_OFFSET); + ASSERT(vaddr); + + PageTable::kernel().map_range_at(address & PAGE_ADDR_MASK, vaddr, needed_pages * PAGE_SIZE, PageTable::Flags::ReadWrite | PageTable::Flags::Present); + + return (void*)(vaddr + (address % PAGE_SIZE)); +} + +void laihost_unmap(void* ptr, size_t count) +{ + PageTable::kernel().unmap_range((vaddr_t)ptr, count); +} + +void laihost_outb(uint16_t port, uint8_t val) +{ + IO::outb(port, val); +} + +void laihost_outw(uint16_t port, uint16_t val) +{ + IO::outw(port, val); +} + +void laihost_outd(uint16_t port, uint32_t val) +{ + IO::outl(port, val); +} + +uint8_t laihost_inb(uint16_t port) +{ + return IO::inb(port); +} + +uint16_t laihost_inw(uint16_t port) +{ + return IO::inw(port); +} + +uint32_t laihost_ind(uint16_t port) +{ + return IO::inl(port); +} + +void laihost_pci_writeb(uint16_t seg, uint8_t bus, uint8_t slot, uint8_t fun, uint16_t offset, uint8_t val) +{ + ASSERT(seg == 0); + PCI::PCIManager::write_config_byte(bus, slot, fun, offset, val); +} + +void laihost_pci_writew(uint16_t seg, uint8_t bus, uint8_t slot, uint8_t fun, uint16_t offset, uint16_t val) +{ + ASSERT(seg == 0); + PCI::PCIManager::write_config_word(bus, slot, fun, offset, val); +} + +void laihost_pci_writed(uint16_t seg, uint8_t bus, uint8_t slot, uint8_t fun, uint16_t offset, uint32_t val) +{ + ASSERT(seg == 0); + PCI::PCIManager::write_config_dword(bus, slot, fun, offset, val); +} + +uint8_t laihost_pci_readb(uint16_t seg, uint8_t bus, uint8_t slot, uint8_t fun, uint16_t offset) +{ + ASSERT(seg == 0); + return PCI::PCIManager::read_config_byte(bus, slot, fun, offset); +} + +uint16_t laihost_pci_readw(uint16_t seg, uint8_t bus, uint8_t slot, uint8_t fun, uint16_t offset) +{ + ASSERT(seg == 0); + return PCI::PCIManager::read_config_word(bus, slot, fun, offset); + +} + +uint32_t laihost_pci_readd(uint16_t seg, uint8_t bus, uint8_t slot, uint8_t fun, uint16_t offset) +{ + ASSERT(seg == 0); + return PCI::PCIManager::read_config_dword(bus, slot, fun, offset); +} + +void laihost_sleep(uint64_t ms) +{ + SystemTimer::get().sleep(ms); +} + +uint64_t laihost_timer(void) +{ + auto time = SystemTimer::get().time_since_boot(); + return (1'000'000'000ull * time.tv_sec + time.tv_nsec) / 100; +} diff --git a/kernel/lai b/kernel/lai new file mode 160000 index 00000000..a2284653 --- /dev/null +++ b/kernel/lai @@ -0,0 +1 @@ +Subproject commit a228465314ee3a542f62d4bdefeb8fbe2b48da41 From 9a3286ad571d75905ce7603b14b1657a3c1c730e Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 20 Sep 2023 19:55:27 +0300 Subject: [PATCH 012/240] Kernel: Add constexpr conditional debug prints --- kernel/include/kernel/Debug.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/kernel/include/kernel/Debug.h b/kernel/include/kernel/Debug.h index 086f0f37..13721edd 100644 --- a/kernel/include/kernel/Debug.h +++ b/kernel/include/kernel/Debug.h @@ -29,6 +29,24 @@ Debug::DebugLock::unlock(); \ } while(false) +#define dprintln_if(cond, ...) \ + do { \ + if constexpr(cond) \ + dprintln(__VA_ARGS__); \ + } while(false) + +#define dwarnln_if(cond, ...) \ + do { \ + if constexpr(cond) \ + dwarnln(__VA_ARGS__); \ + } while(false) + +#define derrorln_if(cond, ...) \ + do { \ + if constexpr(cond) \ + derrorln(__VA_ARGS__); \ + } while(false) + #define BOCHS_BREAK() asm volatile("xchgw %bx, %bx") namespace Debug From 971eb737c1c59805dfd42c71c96274d48a3d91ea Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 20 Sep 2023 20:22:02 +0300 Subject: [PATCH 013/240] BAN: Fix LinkedList::pop_back() --- BAN/include/BAN/LinkedList.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BAN/include/BAN/LinkedList.h b/BAN/include/BAN/LinkedList.h index a7cca31f..319a685c 100644 --- a/BAN/include/BAN/LinkedList.h +++ b/BAN/include/BAN/LinkedList.h @@ -195,7 +195,7 @@ namespace BAN template void LinkedList::pop_back() { - return remove(m_last); + remove(iterator(m_last, false)); } template From 4818c6e3dd5b4a30c026798892004b16b96e5f19 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 20 Sep 2023 21:07:21 +0300 Subject: [PATCH 014/240] BuildSystem: Add cmake target for debugging qemu --- CMakeLists.txt | 8 +++++++- qemu.sh | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 27b9ae21..f31e35f5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -87,7 +87,13 @@ add_custom_target(check-fs ) add_custom_target(qemu - COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" ${CMAKE_SOURCE_DIR}/qemu.sh + COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" ${CMAKE_SOURCE_DIR}/qemu.sh -accel kvm + DEPENDS image + USES_TERMINAL +) + +add_custom_target(qemu-debug + COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" ${CMAKE_SOURCE_DIR}/qemu.sh -d int -no-reboot DEPENDS image USES_TERMINAL ) diff --git a/qemu.sh b/qemu.sh index de68e47c..17aa3791 100755 --- a/qemu.sh +++ b/qemu.sh @@ -6,4 +6,4 @@ qemu-system-$BANAN_ARCH \ -smp 2 \ -drive format=raw,media=disk,file=${DISK_IMAGE_PATH} \ -serial stdio \ - -accel kvm \ + $@ \ From fee3677fb93c6f571b10dda35475a7c2bc2e27e1 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 22 Sep 2023 15:41:05 +0300 Subject: [PATCH 015/240] Kernel/LibC: add mmap for private anonymous mappings This will be used by the userspace to get more memory. Currently kernel handles all allocations, which is not preferable. --- kernel/include/kernel/Process.h | 6 +++ kernel/kernel/Process.cpp | 69 +++++++++++++++++++++++++++++++++ kernel/kernel/Syscall.cpp | 6 +++ libc/CMakeLists.txt | 1 + libc/include/sys/mman.h | 10 +++++ libc/include/sys/syscall.h | 2 + libc/sys/mman.cpp | 23 +++++++++++ 7 files changed, 117 insertions(+) create mode 100644 libc/sys/mman.cpp diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index ffab05d1..32bb2c18 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -15,6 +15,7 @@ #include #include +#include #include namespace LibELF { class ELF; } @@ -115,6 +116,9 @@ namespace Kernel BAN::ErrorOr sys_read_dir_entries(int fd, DirectoryEntryList* buffer, size_t buffer_size); + BAN::ErrorOr sys_mmap(const sys_mmap_t&); + BAN::ErrorOr sys_munmap(void* addr, size_t len); + BAN::ErrorOr sys_alloc(size_t); BAN::ErrorOr sys_free(void*); @@ -177,6 +181,8 @@ namespace Kernel BAN::String m_working_directory; BAN::Vector m_threads; + BAN::Vector> m_private_anonymous_mappings; + BAN::Vector> m_fixed_width_allocators; BAN::UniqPtr m_general_allocator; diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index db2e9abc..13de5435 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -159,6 +159,7 @@ namespace Kernel ASSERT(m_threads.empty()); ASSERT(m_fixed_width_allocators.empty()); ASSERT(!m_general_allocator); + ASSERT(m_private_anonymous_mappings.empty()); ASSERT(m_mapped_ranges.empty()); ASSERT(m_exit_status.waiting == 0); ASSERT(&PageTable::current() != m_page_table.ptr()); @@ -192,6 +193,7 @@ namespace Kernel m_open_file_descriptors.close_all(); // NOTE: We must unmap ranges while the page table is still alive + m_private_anonymous_mappings.clear(); m_mapped_ranges.clear(); // NOTE: We must clear allocators while the page table is still alive @@ -358,6 +360,11 @@ namespace Kernel OpenFileDescriptorSet open_file_descriptors(m_credentials); TRY(open_file_descriptors.clone_from(m_open_file_descriptors)); + BAN::Vector> private_anonymous_mappings; + TRY(private_anonymous_mappings.reserve(m_private_anonymous_mappings.size())); + for (auto& private_anonymous_mapping : m_private_anonymous_mappings) + MUST(private_anonymous_mappings.push_back(TRY(private_anonymous_mapping->clone(*page_table)))); + BAN::Vector> mapped_ranges; TRY(mapped_ranges.reserve(m_mapped_ranges.size())); for (auto& mapped_range : m_mapped_ranges) @@ -378,6 +385,7 @@ namespace Kernel forked->m_working_directory = BAN::move(working_directory); forked->m_page_table = BAN::move(page_table); forked->m_open_file_descriptors = BAN::move(open_file_descriptors); + forked->m_private_anonymous_mappings = BAN::move(private_anonymous_mappings); forked->m_mapped_ranges = BAN::move(mapped_ranges); forked->m_fixed_width_allocators = BAN::move(fixed_width_allocators); forked->m_general_allocator = BAN::move(general_allocator); @@ -428,6 +436,7 @@ namespace Kernel m_fixed_width_allocators.clear(); m_general_allocator.clear(); + m_private_anonymous_mappings.clear(); m_mapped_ranges.clear(); load_elf_to_memory(*elf); @@ -811,6 +820,66 @@ namespace Kernel return (long)buffer; } + BAN::ErrorOr Process::sys_mmap(const sys_mmap_t& args) + { + if (args.prot != PROT_NONE && args.prot & ~(PROT_READ | PROT_WRITE | PROT_EXEC)) + return BAN::Error::from_errno(EINVAL); + + PageTable::flags_t flags = PageTable::Flags::UserSupervisor; + if (args.prot & PROT_READ) + flags |= PageTable::Flags::Present; + if (args.prot & PROT_WRITE) + flags |= PageTable::Flags::ReadWrite | PageTable::Flags::Present; + if (args.prot & PROT_EXEC) + flags |= PageTable::Flags::Execute | PageTable::Flags::Present; + + if (args.flags == (MAP_ANONYMOUS | MAP_PRIVATE)) + { + if (args.addr != nullptr) + return BAN::Error::from_errno(ENOTSUP); + if (args.off != 0) + return BAN::Error::from_errno(EINVAL); + if (args.len % PAGE_SIZE != 0) + return BAN::Error::from_errno(EINVAL); + + auto range = TRY(VirtualRange::create_to_vaddr_range( + page_table(), + 0x400000, KERNEL_OFFSET, + args.len, + PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present + )); + range->set_zero(); + + LockGuard _(m_lock); + TRY(m_private_anonymous_mappings.push_back(BAN::move(range))); + return m_private_anonymous_mappings.back()->vaddr(); + } + + return BAN::Error::from_errno(ENOTSUP); + } + + BAN::ErrorOr Process::sys_munmap(void* addr, size_t len) + { + if (len == 0) + return BAN::Error::from_errno(EINVAL); + + vaddr_t vaddr = (vaddr_t)addr; + if (vaddr % PAGE_SIZE != 0) + return BAN::Error::from_errno(EINVAL); + + LockGuard _(m_lock); + + for (size_t i = 0; i < m_private_anonymous_mappings.size(); i++) + { + auto& mapping = m_private_anonymous_mappings[i]; + if (vaddr + len < mapping->vaddr() || vaddr >= mapping->vaddr() + mapping->size()) + continue; + m_private_anonymous_mappings.remove(i); + } + + return 0; + } + static constexpr size_t allocator_size_for_allocation(size_t value) { if (value <= 256) { diff --git a/kernel/kernel/Syscall.cpp b/kernel/kernel/Syscall.cpp index f95aa910..05034427 100644 --- a/kernel/kernel/Syscall.cpp +++ b/kernel/kernel/Syscall.cpp @@ -194,6 +194,12 @@ namespace Kernel case SYS_SYNC: ret = Process::current().sys_sync(); break; + case SYS_MMAP: + ret = Process::current().sys_mmap(*(const sys_mmap_t*)arg1); + break; + case SYS_MUNMAP: + ret = Process::current().sys_munmap((void*)arg1, (size_t)arg2); + break; default: dwarnln("Unknown syscall {}", syscall); break; diff --git a/libc/CMakeLists.txt b/libc/CMakeLists.txt index c7d32bf8..f7db3d60 100644 --- a/libc/CMakeLists.txt +++ b/libc/CMakeLists.txt @@ -13,6 +13,7 @@ set(LIBC_SOURCES stdio.cpp stdlib.cpp string.cpp + sys/mman.cpp sys/stat.cpp sys/wait.cpp termios.cpp diff --git a/libc/include/sys/mman.h b/libc/include/sys/mman.h index ee79bc85..9c168fe0 100644 --- a/libc/include/sys/mman.h +++ b/libc/include/sys/mman.h @@ -46,6 +46,16 @@ struct posix_typed_mem_info size_t posix_tmi_length; /* Maximum length which may be allocated from a typed memory object. */ }; +struct sys_mmap_t +{ + void* addr; + size_t len; + int prot; + int flags; + int fildes; + off_t off; +}; + int mlock(const void* addr, size_t len); int mlockall(int flags); void* mmap(void* addr, size_t len, int prot, int flags, int fildes, off_t off); diff --git a/libc/include/sys/syscall.h b/libc/include/sys/syscall.h index 67b05641..ee452d0c 100644 --- a/libc/include/sys/syscall.h +++ b/libc/include/sys/syscall.h @@ -55,6 +55,8 @@ __BEGIN_DECLS #define SYS_FSTATAT 48 #define SYS_STAT 49 // stat/lstat #define SYS_SYNC 50 +#define SYS_MMAP 51 +#define SYS_MUNMAP 52 __END_DECLS diff --git a/libc/sys/mman.cpp b/libc/sys/mman.cpp new file mode 100644 index 00000000..c34e65f2 --- /dev/null +++ b/libc/sys/mman.cpp @@ -0,0 +1,23 @@ +#include +#include +#include + +void* mmap(void* addr, size_t len, int prot, int flags, int fildes, off_t off) +{ + sys_mmap_t args { + .addr = addr, + .len = len, + .prot = prot, + .flags = flags, + .off = off + }; + long ret = syscall(SYS_MMAP, &args); + if (ret == -1) + return nullptr; + return (void*)ret; +} + +int munmap(void* addr, size_t len) +{ + return syscall(SYS_MUNMAP, addr, len); +} From f662aa6da2a699c93bc3464daa1a76a5da5a8459 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 23 Sep 2023 02:26:23 +0300 Subject: [PATCH 016/240] Kernel/LibC: userspace malloc now uses mmap to get memory We could remove syscalls to allocate more memory. This was not something the kernel should have done. --- kernel/kernel/Syscall.cpp | 6 - libc/CMakeLists.txt | 1 + libc/include/sys/syscall.h | 3 - libc/malloc.cpp | 222 +++++++++++++++++++++++++++++++++++++ libc/stdlib.cpp | 36 ------ libc/unistd.cpp | 2 + 6 files changed, 225 insertions(+), 45 deletions(-) create mode 100644 libc/malloc.cpp diff --git a/kernel/kernel/Syscall.cpp b/kernel/kernel/Syscall.cpp index 05034427..3ea7c3df 100644 --- a/kernel/kernel/Syscall.cpp +++ b/kernel/kernel/Syscall.cpp @@ -68,12 +68,6 @@ namespace Kernel case SYS_OPENAT: ret = Process::current().sys_openat((int)arg1, (const char*)arg2, (int)arg3, (mode_t)arg4); break; - case SYS_ALLOC: - ret = Process::current().sys_alloc((size_t)arg1); - break; - case SYS_FREE: - ret = Process::current().sys_free((void*)arg1); - break; case SYS_SEEK: ret = Process::current().sys_seek((int)arg1, (long)arg2, (int)arg3); break; diff --git a/libc/CMakeLists.txt b/libc/CMakeLists.txt index f7db3d60..48f3f628 100644 --- a/libc/CMakeLists.txt +++ b/libc/CMakeLists.txt @@ -7,6 +7,7 @@ set(LIBC_SOURCES ctype.cpp dirent.cpp fcntl.cpp + malloc.cpp printf_impl.cpp pwd.cpp signal.cpp diff --git a/libc/include/sys/syscall.h b/libc/include/sys/syscall.h index ee452d0c..02ce94d3 100644 --- a/libc/include/sys/syscall.h +++ b/libc/include/sys/syscall.h @@ -12,9 +12,6 @@ __BEGIN_DECLS #define SYS_CLOSE 5 #define SYS_OPEN 6 #define SYS_OPENAT 7 -#define SYS_ALLOC 8 -#define SYS_REALLOC 9 -#define SYS_FREE 10 #define SYS_SEEK 11 #define SYS_TELL 12 #define SYS_GET_TERMIOS 13 diff --git a/libc/malloc.cpp b/libc/malloc.cpp new file mode 100644 index 00000000..5c95caff --- /dev/null +++ b/libc/malloc.cpp @@ -0,0 +1,222 @@ +#include +#include +#include +#include +#include +#include +#include + +static consteval size_t log_size_t(size_t value, size_t base) +{ + size_t result = 0; + while (value /= base) + result++; + return result; +} + +static constexpr size_t s_malloc_pool_size_initial = 4096; +static constexpr size_t s_malloc_pool_size_multiplier = 2; +static constexpr size_t s_malloc_pool_count = sizeof(size_t) * 8 - log_size_t(s_malloc_pool_size_initial, s_malloc_pool_size_multiplier); +static constexpr size_t s_malloc_default_align = 16; + +struct malloc_node_t +{ + bool allocated; + size_t size; + uint8_t data[0]; + + size_t data_size() const { return size - sizeof(malloc_node_t); } + malloc_node_t* next() { return (malloc_node_t*)(data + data_size()); } +}; + +struct malloc_pool_t +{ + uint8_t* start; + size_t size; +}; + +static malloc_pool_t s_malloc_pools[s_malloc_pool_count]; + +void init_malloc() +{ + size_t pool_size = s_malloc_pool_size_initial; + for (size_t i = 0; i < s_malloc_pool_count; i++) + { + s_malloc_pools[i].start = nullptr; + s_malloc_pools[i].size = pool_size; + pool_size *= s_malloc_pool_size_multiplier; + } +} + +static bool allocate_pool(size_t pool_index) +{ + auto& pool = s_malloc_pools[pool_index]; + assert(pool.start == nullptr); + + // allocate memory for pool + pool.start = (uint8_t*)mmap(nullptr, pool.size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, -1, 0); + if (pool.start == nullptr) + return false; + + // initialize pool to single unallocated node + auto* node = (malloc_node_t*)pool.start; + node->allocated = false; + node->size = pool.size; + + return true; +} + +static void* allocate_from_pool(size_t pool_index, size_t size) +{ + assert(size % s_malloc_default_align == 0); + + auto& pool = s_malloc_pools[pool_index]; + assert(pool.start != nullptr); + + uint8_t* pool_end = pool.start + pool.size; + + for (auto* node = (malloc_node_t*)pool.start; (uint8_t*)node < pool_end; node = node->next()) + { + if (node->allocated) + continue; + + { + // merge two unallocated nodes next to each other + auto* next = node->next(); + if ((uint8_t*)next < pool_end && !next->allocated) + node->size += next->size; + } + + if (node->data_size() < size) + continue; + + node->allocated = true; + + // shrink node if needed + if (node->data_size() - size > sizeof(malloc_node_t)) + { + uint8_t* node_end = (uint8_t*)node->next(); + + node->size = sizeof(malloc_node_t) + size; + + auto* next = node->next(); + next->allocated = false; + next->size = node_end - (uint8_t*)next; + } + + return node->data; + } + + return nullptr; +} + +static malloc_node_t* node_from_data_pointer(void* data_pointer) +{ + return (malloc_node_t*)((uint8_t*)data_pointer - sizeof(malloc_node_t)); +} + +void* malloc(size_t size) +{ + // align size to s_malloc_default_align boundary + if (size_t ret = size % s_malloc_default_align) + size += s_malloc_default_align - ret; + + // find the first pool with size atleast size + size_t first_usable_pool = 0; + while (s_malloc_pools[first_usable_pool].size < size) + first_usable_pool++; + // first_usable_pool = ceil(log(size/s_malloc_smallest_pool, s_malloc_pool_size_mult)) + + // try to find any already existing pools that we can allocate in + for (size_t i = first_usable_pool; i < s_malloc_pool_count; i++) + if (s_malloc_pools[i].start != nullptr) + if (void* ret = allocate_from_pool(i, size)) + return ret; + + // allocate new pool + for (size_t i = first_usable_pool; i < s_malloc_pool_count; i++) + { + if (s_malloc_pools[i].start != nullptr) + continue; + if (!allocate_pool(i)) + break; + return allocate_from_pool(i, size); + } + + errno = ENOMEM; + return nullptr; +} + +void* realloc(void* ptr, size_t size) +{ + if (ptr == nullptr) + return malloc(size); + + // align size to s_malloc_default_align boundary + if (size_t ret = size % s_malloc_default_align) + size += s_malloc_default_align - ret; + + auto* node = node_from_data_pointer(ptr); + size_t oldsize = node->data_size(); + + if (oldsize == size) + return ptr; + + // shrink allocation if needed + if (oldsize > size) + { + if (node->data_size() - size > sizeof(malloc_node_t)) + { + uint8_t* node_end = (uint8_t*)node->next(); + + node->size = sizeof(malloc_node_t) + size; + + auto* next = node->next(); + next->allocated = false; + next->size = node_end - (uint8_t*)next; + } + return ptr; + } + + // FIXME: try to expand allocation + + // allocate new pointer + void* new_ptr = malloc(size); + if (new_ptr == nullptr) + return nullptr; + + // move data to the new pointer + size_t bytes_to_copy = oldsize < size ? oldsize : size; + memcpy(new_ptr, ptr, bytes_to_copy); + free(ptr); + + return new_ptr; +} + +void free(void* ptr) +{ + if (ptr == nullptr) + return; + + auto* node = node_from_data_pointer(ptr); + + // mark node as unallocated and try to merge with the next node + node->allocated = false; + if (!node->next()->allocated) + node->size += node->next()->size; +} + +void* calloc(size_t nmemb, size_t size) +{ + size_t total = nmemb * size; + if (size != 0 && total / size != nmemb) + { + errno = ENOMEM; + return nullptr; + } + void* ptr = malloc(total); + if (ptr == nullptr) + return nullptr; + memset(ptr, 0, total); + return ptr; +} diff --git a/libc/stdlib.cpp b/libc/stdlib.cpp index b9cb5909..51c51efa 100644 --- a/libc/stdlib.cpp +++ b/libc/stdlib.cpp @@ -169,42 +169,6 @@ int putenv(char* string) return 0; } -void* malloc(size_t bytes) -{ - long res = syscall(SYS_ALLOC, bytes); - if (res < 0) - return nullptr; - return (void*)res; -} - -void* calloc(size_t nmemb, size_t size) -{ - if (nmemb * size < nmemb) - return nullptr; - void* ptr = malloc(nmemb * size); - if (ptr == nullptr) - return nullptr; - memset(ptr, 0, nmemb * size); - return ptr; -} - -void* realloc(void* ptr, size_t size) -{ - if (ptr == nullptr) - return malloc(size); - long ret = syscall(SYS_REALLOC, ptr, size); - if (ret == -1) - return nullptr; - return (void*)ret; -} - -void free(void* ptr) -{ - if (ptr == nullptr) - return; - syscall(SYS_FREE, ptr); -} - // Constants and algorithm from https://en.wikipedia.org/wiki/Permuted_congruential_generator static uint64_t s_rand_state = 0x4d595df4d0f33173; diff --git a/libc/unistd.cpp b/libc/unistd.cpp index 65256cd0..964f517c 100644 --- a/libc/unistd.cpp +++ b/libc/unistd.cpp @@ -11,9 +11,11 @@ char** environ; +extern void init_malloc(); extern "C" void _init_libc(char** _environ) { environ = _environ; + init_malloc(); } void _exit(int status) From fe2dca16f00e41ac755d83d514b696fc5b784c42 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 23 Sep 2023 02:28:25 +0300 Subject: [PATCH 017/240] Kernel/LibC: add flag to enable/disable sse support SSE support is very experimental and causes GP. I decided to make SSE not default until I get to fixing it :) --- CMakeLists.txt | 3 +++ kernel/arch/x86_64/IDT.cpp | 10 ++++++++-- kernel/include/kernel/Thread.h | 4 ++++ kernel/kernel/Syscall.cpp | 5 +++++ libc/printf_impl.cpp | 4 ++++ 5 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f31e35f5..f178e01c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,6 +20,9 @@ if(NOT EXISTS ${CMAKE_CXX_COMPILER}) set(CMAKE_CXX_COMPILER g++) endif() +add_compile_options(-mno-sse -mno-sse2) +add_compile_definitions(__enable_sse=0) + project(banan-os CXX) set(BANAN_BASE_SYSROOT ${CMAKE_SOURCE_DIR}/base-sysroot.tar.gz) diff --git a/kernel/arch/x86_64/IDT.cpp b/kernel/arch/x86_64/IDT.cpp index 6f5ae8a4..9369d933 100644 --- a/kernel/arch/x86_64/IDT.cpp +++ b/kernel/arch/x86_64/IDT.cpp @@ -139,10 +139,11 @@ namespace IDT extern "C" void cpp_isr_handler(uint64_t isr, uint64_t error, Kernel::InterruptStack& interrupt_stack, const Registers* regs) { +#if __enable_sse bool from_userspace = (interrupt_stack.cs & 0b11) == 0b11; - if (from_userspace) Kernel::Thread::current().save_sse(); +#endif pid_t tid = Kernel::Scheduler::current_tid(); pid_t pid = tid ? Kernel::Process::current().pid() : 0; @@ -205,19 +206,22 @@ namespace IDT ASSERT(Kernel::Thread::current().state() != Kernel::Thread::State::Terminated); +#if __enable_sse if (from_userspace) { ASSERT(Kernel::Thread::current().state() == Kernel::Thread::State::Executing); Kernel::Thread::current().load_sse(); } +#endif } extern "C" void cpp_irq_handler(uint64_t irq, Kernel::InterruptStack& interrupt_stack) { +#if __enable_sse bool from_userspace = (interrupt_stack.cs & 0b11) == 0b11; - if (from_userspace) Kernel::Thread::current().save_sse(); +#endif if (Kernel::Scheduler::current_tid()) { @@ -240,11 +244,13 @@ namespace IDT ASSERT(Kernel::Thread::current().state() != Kernel::Thread::State::Terminated); +#if __enable_sse if (from_userspace) { ASSERT(Kernel::Thread::current().state() == Kernel::Thread::State::Executing); Kernel::Thread::current().load_sse(); } +#endif } static void flush_idt() diff --git a/kernel/include/kernel/Thread.h b/kernel/include/kernel/Thread.h index d743d078..c4115098 100644 --- a/kernel/include/kernel/Thread.h +++ b/kernel/include/kernel/Thread.h @@ -82,8 +82,10 @@ namespace Kernel bool is_userspace() const { return m_is_userspace; } +#if __enable_sse void save_sse() { asm volatile("fxsave %0" :: "m"(m_sse_storage)); } void load_sse() { asm volatile("fxrstor %0" :: "m"(m_sse_storage)); } +#endif private: Thread(pid_t tid, Process*); @@ -114,7 +116,9 @@ namespace Kernel uint64_t m_terminate_blockers { 0 }; +#if __enable_sse alignas(16) uint8_t m_sse_storage[512] {}; +#endif friend class Scheduler; }; diff --git a/kernel/kernel/Syscall.cpp b/kernel/kernel/Syscall.cpp index 3ea7c3df..d319e0dc 100644 --- a/kernel/kernel/Syscall.cpp +++ b/kernel/kernel/Syscall.cpp @@ -32,7 +32,9 @@ namespace Kernel return 0; } +#if __enable_sse Thread::current().save_sse(); +#endif asm volatile("sti"); @@ -205,7 +207,10 @@ namespace Kernel Kernel::panic("Kernel error while returning to userspace {}", ret.error()); ASSERT(Kernel::Thread::current().state() == Kernel::Thread::State::Executing); + +#if __enable_sse Thread::current().load_sse(); +#endif if (ret.is_error()) return -ret.error().get_error_code(); diff --git a/libc/printf_impl.cpp b/libc/printf_impl.cpp index 99eaa92c..367edc80 100644 --- a/libc/printf_impl.cpp +++ b/libc/printf_impl.cpp @@ -104,6 +104,7 @@ static void integer_to_string(char* buffer, T value, int base, bool upper, forma buffer[offset++] = '\0'; } +#if __enable_sse template static void floating_point_to_string(char* buffer, T value, bool upper, const format_options_t options) { @@ -227,6 +228,7 @@ static void floating_point_to_exponent_string(char* buffer, T value, bool upper, exponent_options.width = 3; integer_to_string(buffer + offset, exponent, 10, upper, exponent_options); } +#endif extern "C" int printf_impl(const char* format, va_list arguments, int (*putc_fun)(int, void*), void* data) { @@ -349,6 +351,7 @@ extern "C" int printf_impl(const char* format, va_list arguments, int (*putc_fun format++; break; } +#if __enable_sse case 'e': case 'E': { @@ -367,6 +370,7 @@ extern "C" int printf_impl(const char* format, va_list arguments, int (*putc_fun format++; break; } +#endif case 'g': case 'G': // TODO From fc953df2815a8967066c667cd84b4383eecff0e6 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 23 Sep 2023 02:43:02 +0300 Subject: [PATCH 018/240] Kernel/LibC: remove PATH resoltion from kernel I have no idea why I had made PATH environment variable parsing to be part of the kernel. Now the shell does the parsing and environment syscall is no longer needed. --- kernel/include/kernel/Process.h | 4 +-- kernel/kernel/Process.cpp | 61 +++------------------------------ kernel/kernel/Syscall.cpp | 3 -- libc/include/sys/syscall.h | 1 - libc/stdlib.cpp | 15 +++++--- libc/unistd.cpp | 17 ++++++++- userspace/Shell/main.cpp | 41 ++++++++++++++++++++-- userspace/init/main.cpp | 2 ++ 8 files changed, 73 insertions(+), 71 deletions(-) diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index 32bb2c18..124c15ca 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -71,8 +71,6 @@ namespace Kernel BAN::ErrorOr sys_sleep(int seconds); BAN::ErrorOr sys_nanosleep(const timespec* rqtp, timespec* rmtp); - BAN::ErrorOr sys_setenvp(char** envp); - BAN::ErrorOr sys_setpwd(const char* path); BAN::ErrorOr sys_getpwd(char* buffer, size_t size); @@ -147,7 +145,7 @@ namespace Kernel static void register_process(Process*); // Load an elf file to virtual address space of the current page table - static BAN::ErrorOr> load_elf_for_exec(const Credentials&, BAN::StringView file_path, const BAN::String& cwd, const BAN::Vector& path_env); + static BAN::ErrorOr> load_elf_for_exec(const Credentials&, BAN::StringView file_path, const BAN::String& cwd); // Copy an elf file from the current page table to the processes own void load_elf_to_memory(LibELF::ELF&); diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index 13de5435..ad2c7c00 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -99,7 +99,7 @@ namespace Kernel BAN::ErrorOr Process::create_userspace(const Credentials& credentials, BAN::StringView path) { - auto elf = TRY(load_elf_for_exec(credentials, path, "/"sv, {})); + auto elf = TRY(load_elf_for_exec(credentials, path, "/"sv)); auto* process = create_process(credentials, 0); MUST(process->m_working_directory.push_back('/')); @@ -114,7 +114,6 @@ namespace Kernel elf.clear(); char** argv = nullptr; - char** envp = nullptr; { PageTableScope _(process->page_table()); @@ -123,18 +122,11 @@ namespace Kernel memcpy(argv[0], path.data(), path.size()); argv[0][path.size()] = '\0'; argv[1] = nullptr; - - BAN::StringView env1 = "PATH=/bin:/usr/bin"sv; - envp = (char**)MUST(process->sys_alloc(sizeof(char**) * 2)); - envp[0] = (char*)MUST(process->sys_alloc(env1.size() + 1)); - memcpy(envp[0], env1.data(), env1.size()); - envp[0][env1.size()] = '\0'; - envp[1] = nullptr; } process->m_userspace_info.argc = 1; process->m_userspace_info.argv = argv; - process->m_userspace_info.envp = envp; + process->m_userspace_info.envp = nullptr; auto* thread = MUST(Thread::create_userspace(process)); process->add_thread(thread); @@ -275,7 +267,7 @@ namespace Kernel return 0; } - BAN::ErrorOr> Process::load_elf_for_exec(const Credentials& credentials, BAN::StringView file_path, const BAN::String& cwd, const BAN::Vector& path_env) + BAN::ErrorOr> Process::load_elf_for_exec(const Credentials& credentials, BAN::StringView file_path, const BAN::String& cwd) { if (file_path.empty()) return BAN::Error::from_errno(ENOENT); @@ -283,44 +275,13 @@ namespace Kernel BAN::String absolute_path; if (file_path.front() == '/') - { - // We have an absolute path TRY(absolute_path.append(file_path)); - } - else if (file_path.front() == '.' || file_path.contains('/')) + else { - // We have a relative path TRY(absolute_path.append(cwd)); TRY(absolute_path.push_back('/')); TRY(absolute_path.append(file_path)); } - else - { - // We have neither relative or absolute path, - // search from PATH environment - for (auto path_part : path_env) - { - if (path_part.empty()) - continue; - - if (path_part.front() != '/') - { - TRY(absolute_path.append(cwd)); - TRY(absolute_path.push_back('/')); - } - TRY(absolute_path.append(path_part)); - TRY(absolute_path.push_back('/')); - TRY(absolute_path.append(file_path)); - - if (!VirtualFileSystem::get().file_from_absolute_path(credentials, absolute_path, O_EXEC).is_error()) - break; - - absolute_path.clear(); - } - - if (absolute_path.empty()) - return BAN::Error::from_errno(ENOENT); - } auto file = TRY(VirtualFileSystem::get().file_from_absolute_path(credentials, absolute_path, O_EXEC)); @@ -412,14 +373,9 @@ namespace Kernel for (int i = 0; argv && argv[i]; i++) TRY(str_argv.emplace_back(argv[i])); - BAN::Vector path_env; BAN::Vector str_envp; for (int i = 0; envp && envp[i]; i++) - { TRY(str_envp.emplace_back(envp[i])); - if (strncmp(envp[i], "PATH=", 5) == 0) - path_env = TRY(BAN::StringView(envp[i]).substring(5).split(':')); - } BAN::String working_directory; @@ -428,7 +384,7 @@ namespace Kernel TRY(working_directory.append(m_working_directory)); } - auto elf = TRY(load_elf_for_exec(m_credentials, path, working_directory, path_env)); + auto elf = TRY(load_elf_for_exec(m_credentials, path, working_directory)); LockGuard lock_guard(m_lock); @@ -547,13 +503,6 @@ namespace Kernel return 0; } - BAN::ErrorOr Process::sys_setenvp(char** envp) - { - LockGuard _(m_lock); - m_userspace_info.envp = envp; - return 0; - } - void Process::load_elf_to_memory(LibELF::ELF& elf) { ASSERT(elf.is_native()); diff --git a/kernel/kernel/Syscall.cpp b/kernel/kernel/Syscall.cpp index d319e0dc..b8e9b370 100644 --- a/kernel/kernel/Syscall.cpp +++ b/kernel/kernel/Syscall.cpp @@ -97,9 +97,6 @@ namespace Kernel case SYS_FSTAT: ret = Process::current().sys_fstat((int)arg1, (struct stat*)arg2); break; - case SYS_SETENVP: - ret = Process::current().sys_setenvp((char**)arg1); - break; case SYS_READ_DIR_ENTRIES: ret = Process::current().sys_read_dir_entries((int)arg1, (API::DirectoryEntryList*)arg2, (size_t)arg3); break; diff --git a/libc/include/sys/syscall.h b/libc/include/sys/syscall.h index 02ce94d3..dd8052e2 100644 --- a/libc/include/sys/syscall.h +++ b/libc/include/sys/syscall.h @@ -21,7 +21,6 @@ __BEGIN_DECLS #define SYS_SLEEP 17 #define SYS_WAIT 18 #define SYS_FSTAT 19 -#define SYS_SETENVP 20 #define SYS_READ_DIR_ENTRIES 21 #define SYS_SET_UID 22 #define SYS_SET_GID 23 diff --git a/libc/stdlib.cpp b/libc/stdlib.cpp index 51c51efa..4d5e9570 100644 --- a/libc/stdlib.cpp +++ b/libc/stdlib.cpp @@ -124,6 +124,16 @@ int putenv(char* string) return -1; } + if (!environ) + { + environ = (char**)malloc(sizeof(char*) * 2); + if (!environ) + return -1; + environ[0] = string; + environ[1] = nullptr; + return 0; + } + int cnt = 0; for (int i = 0; string[i]; i++) if (string[i] == '=') @@ -151,10 +161,7 @@ int putenv(char* string) char** new_envp = (char**)malloc(sizeof(char*) * (env_count + 2)); if (new_envp == nullptr) - { - errno = ENOMEM; return -1; - } for (int i = 0; i < env_count; i++) new_envp[i] = environ[i]; @@ -164,8 +171,6 @@ int putenv(char* string) free(environ); environ = new_envp; - if (syscall(SYS_SETENVP, environ) == -1) - return -1; return 0; } diff --git a/libc/unistd.cpp b/libc/unistd.cpp index 964f517c..c6eec388 100644 --- a/libc/unistd.cpp +++ b/libc/unistd.cpp @@ -14,8 +14,23 @@ char** environ; extern void init_malloc(); extern "C" void _init_libc(char** _environ) { - environ = _environ; init_malloc(); + + if (!_environ) + return; + + size_t env_count = 0; + while (_environ[env_count]) + env_count++; + + environ = (char**)malloc(sizeof(char*) * env_count + 1); + for (size_t i = 0; i < env_count; i++) + { + size_t bytes = strlen(_environ[i]) + 1; + environ[i] = (char*)malloc(bytes); + memcpy(environ[i], _environ[i], bytes); + } + environ[env_count] = nullptr; } void _exit(int status) diff --git a/userspace/Shell/main.cpp b/userspace/Shell/main.cpp index 2c7df0ba..3a59bcb8 100644 --- a/userspace/Shell/main.cpp +++ b/userspace/Shell/main.cpp @@ -437,6 +437,40 @@ pid_t execute_command_no_wait(BAN::Vector& args, int fd_in, int fd_ MUST(cmd_args.push_back((char*)arg.data())); MUST(cmd_args.push_back(nullptr)); + // do PATH resolution + BAN::String executable_file; + if (!args.front().empty() && args.front().front() != '.' && args.front().front() != '/') + { + char* path_env_cstr = getenv("PATH"); + if (path_env_cstr) + { + auto path_env_list = MUST(BAN::StringView(path_env_cstr).split(':')); + for (auto path_env : path_env_list) + { + BAN::String test_file = path_env; + MUST(test_file.push_back('/')); + MUST(test_file.append(args.front())); + + struct stat st; + if (stat(test_file.data(), &st) == 0) + { + executable_file = BAN::move(test_file); + break; + } + } + + if (executable_file.empty()) + { + fprintf(stderr, "command not found: %s\n", args.front().data()); + return -1; + } + } + } + else + { + executable_file = args.front(); + } + pid_t pid = fork(); if (pid == 0) { @@ -477,11 +511,14 @@ pid_t execute_command_no_wait(BAN::Vector& args, int fd_in, int fd_ setpgid(0, pgrp); } - execv(cmd_args.front(), cmd_args.data()); + execv(executable_file.data(), cmd_args.data()); perror("execv"); exit(1); } + if (pid == -1) + ERROR_RETURN("fork", -1); + return pid; } @@ -489,7 +526,7 @@ int execute_command(BAN::Vector& args, int fd_in, int fd_out) { pid_t pid = execute_command_no_wait(args, fd_in, fd_out, 0); if (pid == -1) - ERROR_RETURN("fork", 1); + return 1; int status; if (waitpid(pid, &status, 0) == -1) diff --git a/userspace/init/main.cpp b/userspace/init/main.cpp index 540d4d7d..72523928 100644 --- a/userspace/init/main.cpp +++ b/userspace/init/main.cpp @@ -74,6 +74,8 @@ int main() if (setuid(pwd->pw_uid) == -1) perror("setuid"); + setenv("PATH", "/bin:/usr/bin", 0); + setenv("HOME", pwd->pw_dir, 1); chdir(pwd->pw_dir); From c0a89e89511ea8560411e6dae4e1f7b101987260 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 23 Sep 2023 03:53:30 +0300 Subject: [PATCH 019/240] Kernel: Fully remove sys_alloc and sys_free I could delete the whole FixedWidthAllocator as it was now obsolete. GeneralAllocator is still used by kmalloc. Kmalloc cannot actually use it since, GeneralAllocator depends on SpinLock and kmalloc runs without interrupts. --- kernel/CMakeLists.txt | 1 - .../kernel/Memory/FixedWidthAllocator.h | 64 ---- kernel/include/kernel/Process.h | 8 - kernel/kernel/Memory/FixedWidthAllocator.cpp | 288 ------------------ kernel/kernel/Process.cpp | 189 ++++-------- 5 files changed, 59 insertions(+), 491 deletions(-) delete mode 100644 kernel/include/kernel/Memory/FixedWidthAllocator.h delete mode 100644 kernel/kernel/Memory/FixedWidthAllocator.cpp diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index 3801e43b..5d9700c2 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -32,7 +32,6 @@ set(KERNEL_SOURCES kernel/Input/PS2Keymap.cpp kernel/InterruptController.cpp kernel/kernel.cpp - kernel/Memory/FixedWidthAllocator.cpp kernel/Memory/GeneralAllocator.cpp kernel/Memory/Heap.cpp kernel/Memory/kmalloc.cpp diff --git a/kernel/include/kernel/Memory/FixedWidthAllocator.h b/kernel/include/kernel/Memory/FixedWidthAllocator.h deleted file mode 100644 index 6fea293c..00000000 --- a/kernel/include/kernel/Memory/FixedWidthAllocator.h +++ /dev/null @@ -1,64 +0,0 @@ -#pragma once - -#include -#include -#include -#include - -namespace Kernel -{ - - class FixedWidthAllocator - { - BAN_NON_COPYABLE(FixedWidthAllocator); - BAN_NON_MOVABLE(FixedWidthAllocator); - - public: - static BAN::ErrorOr> create(PageTable&, uint32_t); - ~FixedWidthAllocator(); - - BAN::ErrorOr> clone(PageTable&); - - vaddr_t allocate(); - bool deallocate(vaddr_t); - - uint32_t allocation_size() const { return m_allocation_size; } - - uint32_t allocations() const { return m_allocations; } - uint32_t max_allocations() const; - - private: - FixedWidthAllocator(PageTable&, uint32_t); - BAN::ErrorOr initialize(); - - bool allocate_page_if_needed(vaddr_t, uint8_t flags); - - struct node - { - node* prev { nullptr }; - node* next { nullptr }; - bool allocated { false }; - }; - vaddr_t address_of_node(const node*) const; - node* node_from_address(vaddr_t) const; - void allocate_page_for_node_if_needed(const node*); - - void allocate_node(node*); - void deallocate_node(node*); - - private: - static constexpr uint32_t m_min_allocation_size = 16; - - PageTable& m_page_table; - const uint32_t m_allocation_size; - - vaddr_t m_nodes_page { 0 }; - vaddr_t m_allocated_pages { 0 }; - - node* m_free_list { nullptr }; - node* m_used_list { nullptr }; - - uint32_t m_allocations { 0 }; - }; - -} \ No newline at end of file diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index 124c15ca..3b1b95cb 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -6,8 +6,6 @@ #include #include #include -#include -#include #include #include #include @@ -117,9 +115,6 @@ namespace Kernel BAN::ErrorOr sys_mmap(const sys_mmap_t&); BAN::ErrorOr sys_munmap(void* addr, size_t len); - BAN::ErrorOr sys_alloc(size_t); - BAN::ErrorOr sys_free(void*); - BAN::ErrorOr sys_signal(int, void (*)(int)); BAN::ErrorOr sys_raise(int signal); static BAN::ErrorOr sys_kill(pid_t pid, int signal); @@ -181,9 +176,6 @@ namespace Kernel BAN::Vector> m_private_anonymous_mappings; - BAN::Vector> m_fixed_width_allocators; - BAN::UniqPtr m_general_allocator; - vaddr_t m_signal_handlers[_SIGMAX + 1] { }; uint64_t m_signal_pending_mask { 0 }; diff --git a/kernel/kernel/Memory/FixedWidthAllocator.cpp b/kernel/kernel/Memory/FixedWidthAllocator.cpp deleted file mode 100644 index a77f2df2..00000000 --- a/kernel/kernel/Memory/FixedWidthAllocator.cpp +++ /dev/null @@ -1,288 +0,0 @@ -#include - -namespace Kernel -{ - - BAN::ErrorOr> FixedWidthAllocator::create(PageTable& page_table, uint32_t allocation_size) - { - auto* allocator_ptr = new FixedWidthAllocator(page_table, allocation_size); - if (allocator_ptr == nullptr) - return BAN::Error::from_errno(ENOMEM); - auto allocator = BAN::UniqPtr::adopt(allocator_ptr); - TRY(allocator->initialize()); - return allocator; - } - - FixedWidthAllocator::FixedWidthAllocator(PageTable& page_table, uint32_t allocation_size) - : m_page_table(page_table) - , m_allocation_size(BAN::Math::max(allocation_size, m_min_allocation_size)) - { - ASSERT(BAN::Math::is_power_of_two(allocation_size)); - } - - BAN::ErrorOr FixedWidthAllocator::initialize() - { - m_nodes_page = (vaddr_t)kmalloc(PAGE_SIZE); - if (!m_nodes_page) - return BAN::Error::from_errno(ENOMEM); - - m_allocated_pages = (vaddr_t)kmalloc(PAGE_SIZE); - if (!m_allocated_pages) - { - kfree((void*)m_nodes_page); - m_nodes_page = 0; - return BAN::Error::from_errno(ENOMEM); - } - - memset((void*)m_nodes_page, 0, PAGE_SIZE); - memset((void*)m_allocated_pages, 0, PAGE_SIZE); - - node* node_table = (node*)m_nodes_page; - for (uint32_t i = 0; i < PAGE_SIZE / sizeof(node); i++) - { - node_table[i].next = &node_table[i + 1]; - node_table[i].prev = &node_table[i - 1]; - } - node_table[0].prev = nullptr; - node_table[PAGE_SIZE / sizeof(node) - 1].next = nullptr; - - m_free_list = node_table; - m_used_list = nullptr; - - return {}; - } - - FixedWidthAllocator::~FixedWidthAllocator() - { - if (m_nodes_page && m_allocated_pages) - { - for (uint32_t page_index = 0; page_index < PAGE_SIZE / sizeof(vaddr_t); page_index++) - { - vaddr_t page_vaddr = ((vaddr_t*)m_allocated_pages)[page_index]; - if (page_vaddr == 0) - continue; - - ASSERT(!m_page_table.is_page_free(page_vaddr)); - Heap::get().release_page(m_page_table.physical_address_of(page_vaddr)); - m_page_table.unmap_page(page_vaddr); - } - } - - if (m_nodes_page) - kfree((void*)m_nodes_page); - if (m_allocated_pages) - kfree((void*)m_allocated_pages); - } - - paddr_t FixedWidthAllocator::allocate() - { - if (m_free_list == nullptr) - return 0; - node* node = m_free_list; - allocate_node(node); - allocate_page_for_node_if_needed(node); - return address_of_node(node); - } - - bool FixedWidthAllocator::deallocate(vaddr_t address) - { - if (address % m_allocation_size) - return false; - if (m_allocations == 0) - return false; - - node* node = node_from_address(address); - if (node == nullptr) - return false; - - if (!node->allocated) - { - dwarnln("deallocate called on unallocated address"); - return true; - } - - deallocate_node(node); - return true; - } - - void FixedWidthAllocator::allocate_node(node* node) - { - ASSERT(!node->allocated); - node->allocated = true; - - if (node == m_free_list) - m_free_list = node->next; - - if (node->prev) - node->prev->next = node->next; - if (node->next) - node->next->prev = node->prev; - - node->next = m_used_list; - node->prev = nullptr; - - if (m_used_list) - m_used_list->prev = node; - m_used_list = node; - - m_allocations++; - } - - void FixedWidthAllocator::deallocate_node(node* node) - { - ASSERT(node->allocated); - node->allocated = false; - - if (node == m_used_list) - m_used_list = node->next; - - if (node->prev) - node->prev->next = node->next; - if (node->next) - node->next->prev = node->prev; - - node->next = m_free_list; - node->prev = nullptr; - - if (m_free_list) - m_free_list->prev = node; - m_free_list = node; - - m_allocations--; - } - - uint32_t FixedWidthAllocator::max_allocations() const - { - return PAGE_SIZE / sizeof(node); - } - - vaddr_t FixedWidthAllocator::address_of_node(const node* node) const - { - uint32_t index = node - (struct node*)m_nodes_page; - - uint32_t page_index = index / (PAGE_SIZE / m_allocation_size); - ASSERT(page_index < PAGE_SIZE / sizeof(vaddr_t)); - - uint32_t offset = index % (PAGE_SIZE / m_allocation_size); - - vaddr_t page_begin = ((vaddr_t*)m_allocated_pages)[page_index]; - ASSERT(page_begin); - - return page_begin + offset * m_allocation_size; - } - - FixedWidthAllocator::node* FixedWidthAllocator::node_from_address(vaddr_t address) const - { - // TODO: This probably should be optimized from O(n) preferably to O(1) but I - // don't want to think about performance now. - - ASSERT(address % m_allocation_size == 0); - - vaddr_t page_begin = address / PAGE_SIZE * PAGE_SIZE; - - for (uint32_t page_index = 0; page_index < PAGE_SIZE / sizeof(vaddr_t); page_index++) - { - vaddr_t vaddr = ((vaddr_t*)m_allocated_pages)[page_index]; - if (vaddr != page_begin) - continue; - - uint32_t offset = (address - page_begin) / m_allocation_size; - - node* result = (node*)m_nodes_page; - result += page_index * PAGE_SIZE / m_allocation_size; - result += offset; - ASSERT(address_of_node(result) == address); - return result; - } - - return nullptr; - } - - void FixedWidthAllocator::allocate_page_for_node_if_needed(const node* node) - { - uint32_t index = node - (struct node*)m_nodes_page; - - uint32_t page_index = index / (PAGE_SIZE / m_allocation_size); - ASSERT(page_index < PAGE_SIZE / sizeof(vaddr_t)); - - vaddr_t& page_vaddr = ((vaddr_t*)m_allocated_pages)[page_index]; - if (page_vaddr) - return; - - paddr_t page_paddr = Heap::get().take_free_page(); - ASSERT(page_paddr); - - page_vaddr = m_page_table.reserve_free_page(0x300000); - ASSERT(page_vaddr); - - m_page_table.map_page_at(page_paddr, page_vaddr, PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present); - } - - bool FixedWidthAllocator::allocate_page_if_needed(vaddr_t vaddr, uint8_t flags) - { - ASSERT(vaddr % PAGE_SIZE == 0); - - // Check if page is already allocated - for (uint32_t page_index = 0; page_index < PAGE_SIZE / sizeof(vaddr_t); page_index++) - { - vaddr_t page_begin = ((vaddr_t*)m_allocated_pages)[page_index]; - if (vaddr == page_begin) - return false; - } - - // Page is not allocated so the vaddr must not be in use - ASSERT(m_page_table.is_page_free(vaddr)); - - // Allocate the vaddr on empty page - for (uint32_t page_index = 0; page_index < PAGE_SIZE / sizeof(vaddr_t); page_index++) - { - vaddr_t& page_begin = ((vaddr_t*)m_allocated_pages)[page_index]; - if (page_begin == 0) - { - paddr_t paddr = Heap::get().take_free_page(); - ASSERT(paddr); - m_page_table.map_page_at(paddr, vaddr, flags); - page_begin = vaddr; - return true; - } - } - - ASSERT_NOT_REACHED(); - } - - BAN::ErrorOr> FixedWidthAllocator::clone(PageTable& new_page_table) - { - auto allocator = TRY(FixedWidthAllocator::create(new_page_table, allocation_size())); - - m_page_table.lock(); - ASSERT(m_page_table.is_page_free(0)); - - for (node* node = m_used_list; node; node = node->next) - { - ASSERT(node->allocated); - - vaddr_t vaddr = address_of_node(node); - vaddr_t page_begin = vaddr & PAGE_ADDR_MASK; - PageTable::flags_t flags = m_page_table.get_page_flags(page_begin); - - // Allocate and copy all data from this allocation to the new one - if (allocator->allocate_page_if_needed(page_begin, flags)) - { - paddr_t paddr = new_page_table.physical_address_of(page_begin); - m_page_table.map_page_at(paddr, 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); - memcpy((void*)0, (void*)page_begin, PAGE_SIZE); - } - - // Now that we are sure the page is allocated, we can access the node - struct node* new_node = allocator->node_from_address(vaddr); - allocator->allocate_node(new_node); - } - - m_page_table.unmap_page(0); - - m_page_table.unlock(); - - return allocator; - } - -} \ No newline at end of file diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index ad2c7c00..7b3c6a27 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -117,11 +117,27 @@ namespace Kernel { PageTableScope _(process->page_table()); - argv = (char**)MUST(process->sys_alloc(sizeof(char**) * 2)); - argv[0] = (char*)MUST(process->sys_alloc(path.size() + 1)); - memcpy(argv[0], path.data(), path.size()); - argv[0][path.size()] = '\0'; - argv[1] = nullptr; + size_t needed_bytes = sizeof(char*) * 2 + path.size() + 1; + if (auto rem = needed_bytes % PAGE_SIZE) + needed_bytes += PAGE_SIZE - rem; + + auto argv_range = MUST(VirtualRange::create_to_vaddr_range( + process->page_table(), + 0x400000, KERNEL_OFFSET, + needed_bytes, + PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present + )); + argv_range->set_zero(); + + uintptr_t temp = argv_range->vaddr() + sizeof(char*) * 2; + argv_range->copy_from(0, (uint8_t*)&temp, sizeof(char*)); + + temp = 0; + argv_range->copy_from(sizeof(char*), (uint8_t*)&temp, sizeof(char*)); + + argv_range->copy_from(sizeof(char*) * 2, (const uint8_t*)path.data(), path.size()); + + MUST(process->m_mapped_ranges.push_back(BAN::move(argv_range))); } process->m_userspace_info.argc = 1; @@ -149,8 +165,6 @@ namespace Kernel Process::~Process() { ASSERT(m_threads.empty()); - ASSERT(m_fixed_width_allocators.empty()); - ASSERT(!m_general_allocator); ASSERT(m_private_anonymous_mappings.empty()); ASSERT(m_mapped_ranges.empty()); ASSERT(m_exit_status.waiting == 0); @@ -187,10 +201,6 @@ namespace Kernel // NOTE: We must unmap ranges while the page table is still alive m_private_anonymous_mappings.clear(); m_mapped_ranges.clear(); - - // NOTE: We must clear allocators while the page table is still alive - m_fixed_width_allocators.clear(); - m_general_allocator.clear(); } void Process::on_thread_exit(Thread& thread) @@ -331,16 +341,6 @@ namespace Kernel for (auto& mapped_range : m_mapped_ranges) MUST(mapped_ranges.push_back(TRY(mapped_range->clone(*page_table)))); - BAN::Vector> fixed_width_allocators; - TRY(fixed_width_allocators.reserve(m_fixed_width_allocators.size())); - for (auto& allocator : m_fixed_width_allocators) - if (allocator->allocations() > 0) - MUST(fixed_width_allocators.push_back(TRY(allocator->clone(*page_table)))); - - BAN::UniqPtr general_allocator; - if (m_general_allocator) - general_allocator = TRY(m_general_allocator->clone(*page_table)); - Process* forked = create_process(m_credentials, m_pid, m_sid, m_pgrp); forked->m_controlling_terminal = m_controlling_terminal; forked->m_working_directory = BAN::move(working_directory); @@ -348,8 +348,6 @@ namespace Kernel forked->m_open_file_descriptors = BAN::move(open_file_descriptors); forked->m_private_anonymous_mappings = BAN::move(private_anonymous_mappings); forked->m_mapped_ranges = BAN::move(mapped_ranges); - forked->m_fixed_width_allocators = BAN::move(fixed_width_allocators); - forked->m_general_allocator = BAN::move(general_allocator); forked->m_is_userspace = m_is_userspace; forked->m_userspace_info = m_userspace_info; forked->m_has_called_exec = false; @@ -390,8 +388,6 @@ namespace Kernel m_open_file_descriptors.close_cloexec(); - m_fixed_width_allocators.clear(); - m_general_allocator.clear(); m_private_anonymous_mappings.clear(); m_mapped_ranges.clear(); @@ -409,27 +405,46 @@ namespace Kernel ASSERT(&Process::current() == this); // allocate memory on the new process for arguments and environment - { - LockGuard _(page_table()); - - m_userspace_info.argv = (char**)MUST(sys_alloc(sizeof(char**) * (str_argv.size() + 1))); - for (size_t i = 0; i < str_argv.size(); i++) + auto create_range = + [&](const auto& container) -> BAN::UniqPtr { - m_userspace_info.argv[i] = (char*)MUST(sys_alloc(str_argv[i].size() + 1)); - memcpy(m_userspace_info.argv[i], str_argv[i].data(), str_argv[i].size()); - m_userspace_info.argv[i][str_argv[i].size()] = '\0'; - } - m_userspace_info.argv[str_argv.size()] = nullptr; + size_t bytes = sizeof(char*); + for (auto& elem : container) + bytes += sizeof(char*) + elem.size() + 1; - m_userspace_info.envp = (char**)MUST(sys_alloc(sizeof(char**) * (str_envp.size() + 1))); - for (size_t i = 0; i < str_envp.size(); i++) - { - m_userspace_info.envp[i] = (char*)MUST(sys_alloc(str_envp[i].size() + 1)); - memcpy(m_userspace_info.envp[i], str_envp[i].data(), str_envp[i].size()); - m_userspace_info.envp[i][str_envp[i].size()] = '\0'; - } - m_userspace_info.envp[str_envp.size()] = nullptr; - } + if (auto rem = bytes % PAGE_SIZE) + bytes += PAGE_SIZE - rem; + + auto range = MUST(VirtualRange::create_to_vaddr_range( + page_table(), + 0x400000, KERNEL_OFFSET, + bytes, + PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present + )); + range->set_zero(); + + size_t data_offset = sizeof(char*) * (container.size() + 1); + for (size_t i = 0; i < container.size(); i++) + { + uintptr_t ptr_addr = range->vaddr() + data_offset; + range->copy_from(sizeof(char*) * i, (const uint8_t*)&ptr_addr, sizeof(char*)); + range->copy_from(data_offset, (const uint8_t*)container[i].data(), container[i].size()); + data_offset += container[i].size() + 1; + } + + uintptr_t null = 0; + range->copy_from(sizeof(char*) * container.size(), (const uint8_t*)&null, sizeof(char*)); + + return BAN::move(range); + }; + + auto argv_range = create_range(str_argv); + m_userspace_info.argv = (char**)argv_range->vaddr(); + MUST(m_mapped_ranges.push_back(BAN::move(argv_range))); + + auto envp_range = create_range(str_envp); + m_userspace_info.envp = (char**)envp_range->vaddr(); + MUST(m_mapped_ranges.push_back(BAN::move(envp_range))); m_userspace_info.argc = str_argv.size(); @@ -829,92 +844,6 @@ namespace Kernel return 0; } - static constexpr size_t allocator_size_for_allocation(size_t value) - { - if (value <= 256) { - if (value <= 64) - return 64; - else - return 256; - } else { - if (value <= 1024) - return 1024; - else - return 4096; - } - } - - BAN::ErrorOr Process::sys_alloc(size_t bytes) - { - vaddr_t address = 0; - - if (bytes <= PAGE_SIZE) - { - // Do fixed width allocation - size_t allocation_size = allocator_size_for_allocation(bytes); - ASSERT(bytes <= allocation_size); - ASSERT(allocation_size <= PAGE_SIZE); - - LockGuard _(m_lock); - - bool needs_new_allocator { true }; - - for (auto& allocator : m_fixed_width_allocators) - { - if (allocator->allocation_size() == allocation_size && allocator->allocations() < allocator->max_allocations()) - { - address = allocator->allocate(); - needs_new_allocator = false; - break; - } - } - - if (needs_new_allocator) - { - auto allocator = TRY(FixedWidthAllocator::create(page_table(), allocation_size)); - TRY(m_fixed_width_allocators.push_back(BAN::move(allocator))); - address = m_fixed_width_allocators.back()->allocate(); - } - } - else - { - LockGuard _(m_lock); - - if (!m_general_allocator) - m_general_allocator = TRY(GeneralAllocator::create(page_table(), 0x400000)); - - address = m_general_allocator->allocate(bytes); - } - - if (address == 0) - return BAN::Error::from_errno(ENOMEM); - return address; - } - - BAN::ErrorOr Process::sys_free(void* ptr) - { - LockGuard _(m_lock); - - for (size_t i = 0; i < m_fixed_width_allocators.size(); i++) - { - auto& allocator = m_fixed_width_allocators[i]; - if (allocator->deallocate((vaddr_t)ptr)) - { - // TODO: This might be too much. Maybe we should only - // remove allocators when we have low memory... ? - if (allocator->allocations() == 0) - m_fixed_width_allocators.remove(i); - return 0; - } - } - - if (m_general_allocator && m_general_allocator->deallocate((vaddr_t)ptr)) - return 0; - - dwarnln("free called on pointer that was not allocated"); - return BAN::Error::from_errno(EINVAL); - } - BAN::ErrorOr Process::sys_termid(char* buffer) const { LockGuard _(m_lock); From 2ef496a24ae607f390036682adbe0deac9505b06 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 23 Sep 2023 23:45:26 +0300 Subject: [PATCH 020/240] Kernel: all mapped ranges are now stored in one container We just now have a flag if a mapping is unmappable --- kernel/include/kernel/Process.h | 10 +++++--- kernel/kernel/Process.cpp | 41 +++++++++++++++------------------ 2 files changed, 25 insertions(+), 26 deletions(-) diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index 3b1b95cb..97f7b619 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -158,11 +158,17 @@ namespace Kernel int waiting { 0 }; }; + struct MappedRange + { + bool can_be_unmapped; + BAN::UniqPtr range; + }; + Credentials m_credentials; OpenFileDescriptorSet m_open_file_descriptors; - BAN::Vector> m_mapped_ranges; + BAN::Vector m_mapped_ranges; pid_t m_sid; pid_t m_pgrp; @@ -174,8 +180,6 @@ namespace Kernel BAN::String m_working_directory; BAN::Vector m_threads; - BAN::Vector> m_private_anonymous_mappings; - vaddr_t m_signal_handlers[_SIGMAX + 1] { }; uint64_t m_signal_pending_mask { 0 }; diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index 7b3c6a27..32acdd9b 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -137,7 +137,7 @@ namespace Kernel argv_range->copy_from(sizeof(char*) * 2, (const uint8_t*)path.data(), path.size()); - MUST(process->m_mapped_ranges.push_back(BAN::move(argv_range))); + MUST(process->m_mapped_ranges.emplace_back(false, BAN::move(argv_range))); } process->m_userspace_info.argc = 1; @@ -165,7 +165,6 @@ namespace Kernel Process::~Process() { ASSERT(m_threads.empty()); - ASSERT(m_private_anonymous_mappings.empty()); ASSERT(m_mapped_ranges.empty()); ASSERT(m_exit_status.waiting == 0); ASSERT(&PageTable::current() != m_page_table.ptr()); @@ -199,7 +198,6 @@ namespace Kernel m_open_file_descriptors.close_all(); // NOTE: We must unmap ranges while the page table is still alive - m_private_anonymous_mappings.clear(); m_mapped_ranges.clear(); } @@ -331,22 +329,16 @@ namespace Kernel OpenFileDescriptorSet open_file_descriptors(m_credentials); TRY(open_file_descriptors.clone_from(m_open_file_descriptors)); - BAN::Vector> private_anonymous_mappings; - TRY(private_anonymous_mappings.reserve(m_private_anonymous_mappings.size())); - for (auto& private_anonymous_mapping : m_private_anonymous_mappings) - MUST(private_anonymous_mappings.push_back(TRY(private_anonymous_mapping->clone(*page_table)))); - - BAN::Vector> mapped_ranges; + BAN::Vector mapped_ranges; TRY(mapped_ranges.reserve(m_mapped_ranges.size())); for (auto& mapped_range : m_mapped_ranges) - MUST(mapped_ranges.push_back(TRY(mapped_range->clone(*page_table)))); + MUST(mapped_ranges.emplace_back(mapped_range.can_be_unmapped, TRY(mapped_range.range->clone(*page_table)))); Process* forked = create_process(m_credentials, m_pid, m_sid, m_pgrp); forked->m_controlling_terminal = m_controlling_terminal; forked->m_working_directory = BAN::move(working_directory); forked->m_page_table = BAN::move(page_table); forked->m_open_file_descriptors = BAN::move(open_file_descriptors); - forked->m_private_anonymous_mappings = BAN::move(private_anonymous_mappings); forked->m_mapped_ranges = BAN::move(mapped_ranges); forked->m_is_userspace = m_is_userspace; forked->m_userspace_info = m_userspace_info; @@ -388,7 +380,6 @@ namespace Kernel m_open_file_descriptors.close_cloexec(); - m_private_anonymous_mappings.clear(); m_mapped_ranges.clear(); load_elf_to_memory(*elf); @@ -440,11 +431,11 @@ namespace Kernel auto argv_range = create_range(str_argv); m_userspace_info.argv = (char**)argv_range->vaddr(); - MUST(m_mapped_ranges.push_back(BAN::move(argv_range))); + MUST(m_mapped_ranges.emplace_back(false, BAN::move(argv_range))); auto envp_range = create_range(str_envp); m_userspace_info.envp = (char**)envp_range->vaddr(); - MUST(m_mapped_ranges.push_back(BAN::move(envp_range))); + MUST(m_mapped_ranges.emplace_back(false, BAN::move(envp_range))); m_userspace_info.argc = str_argv.size(); @@ -556,9 +547,11 @@ namespace Kernel { LockGuard _(m_lock); - MUST(m_mapped_ranges.push_back(MUST(VirtualRange::create_to_vaddr(page_table(), page_start * PAGE_SIZE, page_count * PAGE_SIZE, flags)))); - m_mapped_ranges.back()->set_zero(); - m_mapped_ranges.back()->copy_from(elf_program_header.p_vaddr % PAGE_SIZE, elf.data() + elf_program_header.p_offset, elf_program_header.p_filesz); + auto range = MUST(VirtualRange::create_to_vaddr(page_table(), page_start * PAGE_SIZE, page_count * PAGE_SIZE, flags)); + range->set_zero(); + range->copy_from(elf_program_header.p_vaddr % PAGE_SIZE, elf.data() + elf_program_header.p_offset, elf_program_header.p_filesz); + + MUST(m_mapped_ranges.emplace_back(false, BAN::move(range))); } page_table().unlock(); @@ -815,8 +808,8 @@ namespace Kernel range->set_zero(); LockGuard _(m_lock); - TRY(m_private_anonymous_mappings.push_back(BAN::move(range))); - return m_private_anonymous_mappings.back()->vaddr(); + TRY(m_mapped_ranges.emplace_back(true, BAN::move(range))); + return m_mapped_ranges.back().range->vaddr(); } return BAN::Error::from_errno(ENOTSUP); @@ -833,12 +826,14 @@ namespace Kernel LockGuard _(m_lock); - for (size_t i = 0; i < m_private_anonymous_mappings.size(); i++) + for (size_t i = 0; i < m_mapped_ranges.size(); i++) { - auto& mapping = m_private_anonymous_mappings[i]; - if (vaddr + len < mapping->vaddr() || vaddr >= mapping->vaddr() + mapping->size()) + if (!m_mapped_ranges[i].can_be_unmapped) continue; - m_private_anonymous_mappings.remove(i); + auto& range = m_mapped_ranges[i].range; + if (vaddr + len < range->vaddr() || vaddr >= range->vaddr() + range->size()) + continue; + m_mapped_ranges.remove(i); } return 0; From 8b2bb95b8138933a229be27fd8482a7e30455417 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sun, 24 Sep 2023 01:29:34 +0300 Subject: [PATCH 021/240] Kernel: VirtualRange doesn't store physical addresses of pages This was unnecessarry allocation, since the page table allready contains virtual address -> physical address mappings. --- kernel/include/kernel/Memory/VirtualRange.h | 1 - kernel/kernel/Memory/VirtualRange.cpp | 89 +++++++++------------ 2 files changed, 39 insertions(+), 51 deletions(-) diff --git a/kernel/include/kernel/Memory/VirtualRange.h b/kernel/include/kernel/Memory/VirtualRange.h index c402294e..502a9078 100644 --- a/kernel/include/kernel/Memory/VirtualRange.h +++ b/kernel/include/kernel/Memory/VirtualRange.h @@ -40,7 +40,6 @@ namespace Kernel vaddr_t m_vaddr { 0 }; size_t m_size { 0 }; PageTable::flags_t m_flags { 0 }; - BAN::Vector m_physical_pages; }; } \ No newline at end of file diff --git a/kernel/kernel/Memory/VirtualRange.cpp b/kernel/kernel/Memory/VirtualRange.cpp index a33c4090..2125b4c3 100644 --- a/kernel/kernel/Memory/VirtualRange.cpp +++ b/kernel/kernel/Memory/VirtualRange.cpp @@ -1,4 +1,3 @@ -#include #include #include #include @@ -21,27 +20,25 @@ namespace Kernel result->m_vaddr = vaddr; result->m_size = size; result->m_flags = flags; - TRY(result->m_physical_pages.reserve(size / PAGE_SIZE)); ASSERT(page_table.reserve_range(vaddr, size)); - BAN::ScopeGuard unmapper([vaddr, size, &page_table] { page_table.unmap_range(vaddr, size); }); - TRY(result->m_physical_pages.reserve(size / PAGE_SIZE)); - for (size_t offset = 0; offset < size; offset += PAGE_SIZE) + size_t needed_pages = size / PAGE_SIZE; + + for (size_t i = 0; i < needed_pages; i++) { paddr_t paddr = Heap::get().take_free_page(); if (paddr == 0) { - for (paddr_t release : result->m_physical_pages) - Heap::get().release_page(release); + for (size_t j = 0; j < i; j++) + Heap::get().release_page(page_table.physical_address_of(vaddr + j * PAGE_SIZE)); + page_table.unmap_range(vaddr, size); + result->m_vaddr = 0; return BAN::Error::from_errno(ENOMEM); } - MUST(result->m_physical_pages.push_back(paddr)); - page_table.map_page_at(paddr, vaddr + offset, flags); + page_table.map_page_at(paddr, vaddr + i * PAGE_SIZE, flags); } - unmapper.disable(); - return result; } @@ -49,6 +46,7 @@ namespace Kernel { ASSERT(size % PAGE_SIZE == 0); ASSERT(vaddr_start > 0); + ASSERT(vaddr_start + size <= vaddr_end); // Align vaddr range to page boundaries if (size_t rem = vaddr_start % PAGE_SIZE) @@ -64,37 +62,32 @@ namespace Kernel auto result = BAN::UniqPtr::adopt(result_ptr); result->m_kmalloc = false; + result->m_vaddr = 0; result->m_size = size; result->m_flags = flags; - TRY(result->m_physical_pages.reserve(size / PAGE_SIZE)); vaddr_t vaddr = page_table.reserve_free_contiguous_pages(size / PAGE_SIZE, vaddr_start, vaddr_end); if (vaddr == 0) return BAN::Error::from_errno(ENOMEM); + ASSERT(vaddr + size <= vaddr_end); result->m_vaddr = vaddr; - BAN::ScopeGuard unmapper([vaddr, size, &page_table] { page_table.unmap_range(vaddr, size); }); - if (vaddr + size > vaddr_end) - return BAN::Error::from_errno(ENOMEM); + size_t needed_pages = size / PAGE_SIZE; - result->m_vaddr = vaddr; - - TRY(result->m_physical_pages.reserve(size / PAGE_SIZE)); - for (size_t offset = 0; offset < size; offset += PAGE_SIZE) + for (size_t i = 0; i < needed_pages; i++) { paddr_t paddr = Heap::get().take_free_page(); if (paddr == 0) { - for (paddr_t release : result->m_physical_pages) - Heap::get().release_page(release); + for (size_t j = 0; j < i; j++) + Heap::get().release_page(page_table.physical_address_of(vaddr + j * PAGE_SIZE)); + page_table.unmap_range(vaddr, size); + result->m_vaddr = 0; return BAN::Error::from_errno(ENOMEM); } - MUST(result->m_physical_pages.push_back(paddr)); - page_table.map_page_at(paddr, vaddr + offset, flags); + page_table.map_page_at(paddr, vaddr + i * PAGE_SIZE, flags); } - unmapper.disable(); - return result; } @@ -122,33 +115,34 @@ namespace Kernel VirtualRange::~VirtualRange() { - if (m_kmalloc) - { - kfree((void*)m_vaddr); + if (m_vaddr == 0) return; - } - m_page_table.unmap_range(vaddr(), size()); - for (paddr_t page : m_physical_pages) - Heap::get().release_page(page); + if (m_kmalloc) + kfree((void*)m_vaddr); + else + { + for (size_t offset = 0; offset < size(); offset += PAGE_SIZE) + Heap::get().release_page(m_page_table.physical_address_of(vaddr() + offset)); + m_page_table.unmap_range(vaddr(), size()); + } } BAN::ErrorOr> VirtualRange::clone(PageTable& page_table) { + ASSERT(&PageTable::current() == &m_page_table); + auto result = TRY(create_to_vaddr(page_table, vaddr(), size(), flags())); - m_page_table.lock(); - + LockGuard _(m_page_table); ASSERT(m_page_table.is_page_free(0)); - for (size_t i = 0; i < result->m_physical_pages.size(); i++) + for (size_t offset = 0; offset < size(); offset += PAGE_SIZE) { - m_page_table.map_page_at(result->m_physical_pages[i], 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); - memcpy((void*)0, (void*)(vaddr() + i * PAGE_SIZE), PAGE_SIZE); + m_page_table.map_page_at(result->m_page_table.physical_address_of(vaddr() + offset), 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); + memcpy((void*)0, (void*)(vaddr() + offset), PAGE_SIZE); } m_page_table.unmap_page(0); - m_page_table.unlock(); - return result; } @@ -162,17 +156,14 @@ namespace Kernel return; } - page_table.lock(); + LockGuard _(page_table); ASSERT(page_table.is_page_free(0)); - - for (size_t i = 0; i < m_physical_pages.size(); i++) + for (size_t offset = 0; offset < size(); offset += PAGE_SIZE) { - page_table.map_page_at(m_physical_pages[i], 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); + page_table.map_page_at(m_page_table.physical_address_of(vaddr() + offset), 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); memset((void*)0, 0, PAGE_SIZE); } page_table.unmap_page(0); - - page_table.unlock(); } void VirtualRange::copy_from(size_t offset, const uint8_t* buffer, size_t bytes) @@ -193,14 +184,14 @@ namespace Kernel return; } - page_table.lock(); + LockGuard _(page_table); ASSERT(page_table.is_page_free(0)); size_t off = offset % PAGE_SIZE; size_t i = offset / PAGE_SIZE; // NOTE: we map the first page separately since it needs extra calculations - page_table.map_page_at(m_physical_pages[i], 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); + page_table.map_page_at(m_page_table.physical_address_of(vaddr() + i * PAGE_SIZE), 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); memcpy((void*)off, buffer, PAGE_SIZE - off); @@ -212,7 +203,7 @@ namespace Kernel { size_t len = BAN::Math::min(PAGE_SIZE, bytes); - page_table.map_page_at(m_physical_pages[i], 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); + page_table.map_page_at(m_page_table.physical_address_of(vaddr() + i * PAGE_SIZE), 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); memcpy((void*)0, buffer, len); @@ -221,8 +212,6 @@ namespace Kernel i++; } page_table.unmap_page(0); - - page_table.unlock(); } } \ No newline at end of file From 18d582c6ce70c55a7e0d316f1ce1590e971dd2a6 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 25 Sep 2023 13:13:57 +0300 Subject: [PATCH 022/240] Kernel: Hacky kmalloc quick fix Remove GeneralAllocator from kmalloc as it is not CriticalScope safe. This requires increasing kmalloc memory. --- kernel/kernel/Memory/kmalloc.cpp | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/kernel/kernel/Memory/kmalloc.cpp b/kernel/kernel/Memory/kmalloc.cpp index f9decdb4..7d24da52 100644 --- a/kernel/kernel/Memory/kmalloc.cpp +++ b/kernel/kernel/Memory/kmalloc.cpp @@ -12,9 +12,7 @@ extern uint8_t g_kernel_end[]; static constexpr size_t s_kmalloc_min_align = alignof(max_align_t); -static uint8_t s_kmalloc_storage[2 * MB]; - -static BAN::UniqPtr s_general_allocator; +static uint8_t s_kmalloc_storage[20 * MB]; struct kmalloc_node { @@ -303,19 +301,6 @@ void* kmalloc(size_t size, size_t align, bool force_indentity_map) Kernel::CriticalScope critical; - // FIXME: this is a hack to make more dynamic kmalloc memory - if (size > PAGE_SIZE && !force_indentity_map) - { - using namespace Kernel; - - if (!s_general_allocator) - s_general_allocator = MUST(GeneralAllocator::create(PageTable::kernel(), (vaddr_t)g_kernel_end)); - - auto vaddr = s_general_allocator->allocate(size); - if (vaddr) - return (void*)vaddr; - } - if (size == 0 || size >= info.size) goto no_memory; @@ -350,9 +335,6 @@ void kfree(void* address) Kernel::CriticalScope critical; - if (s_general_allocator && s_general_allocator->deallocate((Kernel::vaddr_t)address)) - return; - if (s_kmalloc_fixed_info.base <= address_uint && address_uint < s_kmalloc_fixed_info.end) { auto& info = s_kmalloc_fixed_info; @@ -414,13 +396,6 @@ BAN::Optional kmalloc_paddr_of(Kernel::vaddr_t vaddr) { using namespace Kernel; - if (s_general_allocator) - { - auto paddr = s_general_allocator->paddr_of(vaddr); - if (paddr.has_value()) - return paddr.value(); - } - if ((vaddr_t)s_kmalloc_storage <= vaddr && vaddr < (vaddr_t)s_kmalloc_storage + sizeof(s_kmalloc_storage)) return V2P(vaddr); From 3ea707c0e746fd606350eac51c3748fbd720e69c Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 25 Sep 2023 13:15:55 +0300 Subject: [PATCH 023/240] BuildSystem: Optimize image creation We now use truncate to create disk image, since it doesn't require writing zeroes to full disk. I also removed creation of third partition as this was not currently used. --- image-full.sh | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/image-full.sh b/image-full.sh index 8c05bceb..934f7556 100755 --- a/image-full.sh +++ b/image-full.sh @@ -4,7 +4,8 @@ set -e DISK_SIZE=$[50 * 1024 * 1024] MOUNT_DIR=/mnt -dd if=/dev/zero of=$DISK_IMAGE_PATH bs=512 count=$[$DISK_SIZE / 512] > /dev/null +truncate -s 0 $DISK_IMAGE_PATH +truncate -s $DISK_SIZE $DISK_IMAGE_PATH sed -e 's/\s*\([-\+[:alnum:]]*\).*/\1/' << EOF | fdisk $DISK_IMAGE_PATH > /dev/null g # gpt @@ -12,10 +13,6 @@ sed -e 's/\s*\([-\+[:alnum:]]*\).*/\1/' << EOF | fdisk $DISK_IMAGE_PATH > /dev/n 1 # partition number 1 # default (from the beginning of the disk) +1MiB # bios boot partiton size - n # new partition - 3 # partition number 3 - # default (right after bios boot partition) - +10Mib# partition size n # new partition 2 # partition number 2 # default (right after bios boot partition) @@ -26,9 +23,6 @@ sed -e 's/\s*\([-\+[:alnum:]]*\).*/\1/' << EOF | fdisk $DISK_IMAGE_PATH > /dev/n t # set type 2 # ... of partition 2 20 # Linux filesystem - t # set type - 3 # ... of partition 3 - 20 # Linux filesystem w # write changes EOF @@ -37,13 +31,11 @@ sudo partprobe $LOOP_DEV PARTITION1=${LOOP_DEV}p1 PARTITION2=${LOOP_DEV}p2 -PARTITION3=${LOOP_DEV}p3 -sudo mkfs.ext2 $PARTITION3 > /dev/null -sudo mkfs.ext2 -d $SYSROOT $PARTITION2 > /dev/null +sudo mkfs.ext2 -d $SYSROOT -b 1024 -q $PARTITION2 sudo mount $PARTITION2 $MOUNT_DIR -sudo grub-install --no-floppy --target=i386-pc --modules="normal ext2 multiboot" --boot-directory=${MOUNT_DIR}/boot $LOOP_DEV > /dev/null +sudo grub-install --no-floppy --target=i386-pc --modules="normal ext2 multiboot" --boot-directory=${MOUNT_DIR}/boot $LOOP_DEV sudo umount $MOUNT_DIR sudo losetup -d $LOOP_DEV From 7bdb428938420e5157f70ba6b4f7b7c1feb54f1a Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 25 Sep 2023 13:17:44 +0300 Subject: [PATCH 024/240] Kernel: Fix ext2 block allocation Redo ext2 block allocation. This is now much "cleaner" although I'm not too fond of the macros. --- kernel/include/kernel/FS/Ext2/Inode.h | 3 +- kernel/kernel/FS/Ext2/Inode.cpp | 261 ++++++++++++++------------ 2 files changed, 141 insertions(+), 123 deletions(-) diff --git a/kernel/include/kernel/FS/Ext2/Inode.h b/kernel/include/kernel/FS/Ext2/Inode.h index 31a3d772..20535474 100644 --- a/kernel/include/kernel/FS/Ext2/Inode.h +++ b/kernel/include/kernel/FS/Ext2/Inode.h @@ -39,9 +39,8 @@ namespace Kernel virtual BAN::ErrorOr truncate_impl(size_t) override; private: - BAN::ErrorOr for_data_block_index(uint32_t, const BAN::Function&, bool allocate); + BAN::ErrorOr fs_block_of_data_block_index(uint32_t data_block_index); - BAN::ErrorOr data_block_index(uint32_t); BAN::ErrorOr allocate_new_block(); BAN::ErrorOr sync(); diff --git a/kernel/kernel/FS/Ext2/Inode.cpp b/kernel/kernel/FS/Ext2/Inode.cpp index 022477d7..9fc40f80 100644 --- a/kernel/kernel/FS/Ext2/Inode.cpp +++ b/kernel/kernel/FS/Ext2/Inode.cpp @@ -38,126 +38,57 @@ namespace Kernel return BAN::RefPtr::adopt(result); } -#define READ_INDIRECT(block, container) \ - if (block) \ - m_fs.read_block(block, block_buffer.span()); \ - else \ - { \ - if (!allocate) \ - return BAN::Error::from_error_code(ErrorCode::Ext2_Corrupted); \ - memset(block_buffer.data(), 0, block_size); \ - block = TRY(m_fs.reserve_free_block(block_group())); \ - m_fs.write_block(container, block_buffer.span()); \ - } +#define VERIFY_AND_READ_BLOCK(expr) do { const uint32_t block_index = expr; ASSERT(block_index); m_fs.read_block(block_index, block_buffer.span()); } while (false) +#define VERIFY_AND_RETURN(expr) ({ const uint32_t result = expr; ASSERT(result); return result; }) -#define READ_INDIRECT_TOP(block) \ - if (block) \ - m_fs.read_block(block, block_buffer.span()); \ - else \ - { \ - if (!allocate) \ - return BAN::Error::from_error_code(ErrorCode::Ext2_Corrupted); \ - memset(block_buffer.data(), 0, block_size); \ - block = TRY(m_fs.reserve_free_block(block_group())); \ - } - - BAN::ErrorOr Ext2Inode::for_data_block_index(uint32_t asked_data_block, const BAN::Function& callback, bool allocate) + BAN::ErrorOr Ext2Inode::fs_block_of_data_block_index(uint32_t data_block_index) { - const uint32_t block_size = blksize(); - const uint32_t data_blocks_count = blocks(); - const uint32_t blocks_per_array = block_size / sizeof(uint32_t); + ASSERT(data_block_index < blocks()); - ASSERT(asked_data_block < data_blocks_count); + const uint32_t indices_per_block = blksize() / sizeof(uint32_t); // Direct block - if (asked_data_block < 12) - { - uint32_t& block = m_inode.block[asked_data_block]; - uint32_t block_copy = block; - callback(block); + if (data_block_index < 12) + VERIFY_AND_RETURN(m_inode.block[data_block_index]); - if (block != block_copy) - TRY(sync()); - - return {}; - } - - asked_data_block -= 12; + data_block_index -= 12; BAN::Vector block_buffer; - TRY(block_buffer.resize(block_size)); + TRY(block_buffer.resize(blksize())); // Singly indirect block - if (asked_data_block < blocks_per_array) + if (data_block_index < indices_per_block) { - READ_INDIRECT_TOP(m_inode.block[12]); - - uint32_t& block = ((uint32_t*)block_buffer.data())[asked_data_block]; - uint32_t block_copy = block; - callback(block); - - if (block != block_copy) - m_fs.write_block(m_inode.block[12], block_buffer.span()); - - return {}; + VERIFY_AND_READ_BLOCK(m_inode.block[12]); + VERIFY_AND_RETURN(((uint32_t*)block_buffer.data())[data_block_index]); } - asked_data_block -= blocks_per_array; + data_block_index -= indices_per_block; // Doubly indirect blocks - if (asked_data_block < blocks_per_array * blocks_per_array) + if (data_block_index < indices_per_block * indices_per_block) { - READ_INDIRECT_TOP(m_inode.block[13]); - - uint32_t& direct_block = ((uint32_t*)block_buffer.data())[asked_data_block / blocks_per_array]; - READ_INDIRECT(direct_block, m_inode.block[13]); - - uint32_t& block = ((uint32_t*)block_buffer.data())[asked_data_block % blocks_per_array]; - uint32_t block_copy = block; - callback(block); - - if (block != block_copy) - m_fs.write_block(direct_block, block_buffer.span()); - - return {}; + VERIFY_AND_READ_BLOCK(m_inode.block[13]); + VERIFY_AND_READ_BLOCK(((uint32_t*)block_buffer.data())[data_block_index / indices_per_block]); + VERIFY_AND_RETURN(((uint32_t*)block_buffer.data())[data_block_index % indices_per_block]); } - asked_data_block -= blocks_per_array * blocks_per_array; + data_block_index -= indices_per_block * indices_per_block; // Triply indirect blocks - if (asked_data_block < blocks_per_array * blocks_per_array * blocks_per_array) + if (data_block_index < indices_per_block * indices_per_block * indices_per_block) { - READ_INDIRECT_TOP(m_inode.block[14]); - - uint32_t& doubly_indirect_block = ((uint32_t*)block_buffer.data())[asked_data_block / (blocks_per_array * blocks_per_array)]; - READ_INDIRECT(doubly_indirect_block, m_inode.block[14]); - - uint32_t& singly_direct_block = ((uint32_t*)block_buffer.data())[(asked_data_block / blocks_per_array) % blocks_per_array]; - READ_INDIRECT(singly_direct_block, doubly_indirect_block); - - uint32_t& block = ((uint32_t*)block_buffer.data())[asked_data_block % blocks_per_array]; - uint32_t block_copy = block; - callback(block); - - if (block != block_copy) - m_fs.write_block(singly_direct_block, block_buffer.span()); - - return {}; + VERIFY_AND_READ_BLOCK(m_inode.block[14]); + VERIFY_AND_READ_BLOCK(((uint32_t*)block_buffer.data())[data_block_index / (indices_per_block * indices_per_block)]); + VERIFY_AND_READ_BLOCK(((uint32_t*)block_buffer.data())[(data_block_index / indices_per_block) % indices_per_block]); + VERIFY_AND_RETURN(((uint32_t*)block_buffer.data())[data_block_index % indices_per_block]); } ASSERT_NOT_REACHED(); } -#undef READ_INDIRECT -#undef READ_INDIRECT_TOP - - BAN::ErrorOr Ext2Inode::data_block_index(uint32_t asked_data_block) - { - uint32_t result; - TRY(for_data_block_index(asked_data_block, [&result] (uint32_t& index) { result = index; }, false)); - ASSERT(result != 0); - return result; - } +#undef VERIFY_AND_READ_BLOCK +#undef VERIFY_AND_RETURN BAN::ErrorOr Ext2Inode::link_target_impl() { @@ -192,9 +123,9 @@ namespace Kernel size_t n_read = 0; - for (uint32_t block = first_block; block < last_block; block++) + for (uint32_t data_block_index = first_block; data_block_index < last_block; data_block_index++) { - uint32_t block_index = TRY(data_block_index(block)); + uint32_t block_index = TRY(fs_block_of_data_block_index(data_block_index)); m_fs.read_block(block_index, block_buffer.span()); uint32_t copy_offset = (offset + n_read) % block_size; @@ -232,15 +163,14 @@ namespace Kernel // Write partial block if (offset % block_size) { - uint32_t block_index = offset / block_size; + uint32_t block_index = TRY(fs_block_of_data_block_index(offset / block_size)); uint32_t block_offset = offset % block_size; - uint32_t data_block_index = TRY(this->data_block_index(block_index)); uint32_t to_copy = BAN::Math::min(block_size - block_offset, to_write); - m_fs.read_block(data_block_index, block_buffer.span()); - memcpy(block_buffer.data() + block_offset, buffer, to_copy); - m_fs.write_block(data_block_index, block_buffer.span()); + m_fs.read_block(block_index, block_buffer.span()); + memcpy(block_buffer.data() + block_offset, u8buffer, to_copy); + m_fs.write_block(block_index, block_buffer.span()); u8buffer += to_copy; offset += to_copy; @@ -249,9 +179,9 @@ namespace Kernel while (to_write >= block_size) { - uint32_t data_block_index = TRY(this->data_block_index(offset / block_size)); + uint32_t block_index = TRY(fs_block_of_data_block_index(offset / block_size)); - m_fs.write_block(data_block_index, BAN::Span(u8buffer, block_size)); + m_fs.write_block(block_index, BAN::Span(u8buffer, block_size)); u8buffer += block_size; offset += block_size; @@ -260,11 +190,11 @@ namespace Kernel if (to_write > 0) { - uint32_t data_block_index = TRY(this->data_block_index(offset / block_size)); + uint32_t block_index = TRY(fs_block_of_data_block_index(offset / block_size)); - m_fs.read_block(data_block_index, block_buffer.span()); + m_fs.read_block(block_index, block_buffer.span()); memcpy(block_buffer.data(), u8buffer, to_write); - m_fs.write_block(data_block_index, block_buffer.span()); + m_fs.write_block(block_index, block_buffer.span()); } return count; @@ -291,7 +221,7 @@ namespace Kernel if (uint32_t rem = m_inode.size % block_size) { - uint32_t last_block_index = TRY(data_block_index(current_data_blocks - 1)); + uint32_t last_block_index = TRY(fs_block_of_data_block_index(current_data_blocks - 1)); m_fs.read_block(last_block_index, block_buffer.span()); memset(block_buffer.data() + rem, 0, block_size - rem); @@ -324,7 +254,7 @@ namespace Kernel } const uint32_t block_size = blksize(); - const uint32_t block_index = TRY(data_block_index(offset)); + const uint32_t block_index = TRY(fs_block_of_data_block_index(offset)); BAN::Vector block_buffer; TRY(block_buffer.resize(block_size)); @@ -462,7 +392,7 @@ namespace Kernel goto needs_new_block; // Try to insert inode to last data block - block_index = TRY(data_block_index(data_block_count - 1)); + block_index = TRY(fs_block_of_data_block_index(data_block_count - 1)); m_fs.read_block(block_index, block_buffer.span()); while (entry_offset < block_size) @@ -502,27 +432,116 @@ needs_new_block: return {}; } +#define READ_OR_ALLOCATE_BASE_BLOCK(index_) \ + do { \ + if (m_inode.block[index_] != 0) \ + m_fs.read_block(m_inode.block[index_], block_buffer.span()); \ + else \ + { \ + m_inode.block[index_] = TRY(m_fs.reserve_free_block(block_group())); \ + memset(block_buffer.data(), 0x00, block_buffer.size()); \ + } \ + } while (false) + +#define READ_OR_ALLOCATE_INDIRECT_BLOCK(result_, buffer_index_, parent_block_) \ + uint32_t result_ = ((uint32_t*)block_buffer.data())[buffer_index_]; \ + if (result_ != 0) \ + m_fs.read_block(result_, block_buffer.span()); \ + else \ + { \ + const uint32_t new_block_ = TRY(m_fs.reserve_free_block(block_group())); \ + \ + ((uint32_t*)block_buffer.data())[buffer_index_] = new_block_; \ + m_fs.write_block(parent_block_, block_buffer.span()); \ + \ + result_ = new_block_; \ + memset(block_buffer.data(), 0x00, block_buffer.size()); \ + } \ + do {} while (false) + +#define WRITE_BLOCK_AND_RETURN(buffer_index_, parent_block_) \ + do { \ + const uint32_t block_ = TRY(m_fs.reserve_free_block(block_group())); \ + \ + ASSERT(((uint32_t*)block_buffer.data())[buffer_index_] == 0); \ + ((uint32_t*)block_buffer.data())[buffer_index_] = block_; \ + m_fs.write_block(parent_block_, block_buffer.span()); \ + \ + m_inode.blocks += blocks_per_fs_block; \ + update_and_sync(); \ + \ + return block_; \ + } while (false) + BAN::ErrorOr Ext2Inode::allocate_new_block() { - uint32_t new_block_index = TRY(m_fs.reserve_free_block(block_group())); - auto set_index_func = [new_block_index] (uint32_t& index) { index = new_block_index; }; + const uint32_t blocks_per_fs_block = blksize() / 512; + const uint32_t indices_per_fs_block = blksize() / sizeof(uint32_t); - const uint32_t blocks_per_data_block = blksize() / 512; + uint32_t block_array_index = blocks(); - m_inode.blocks += blocks_per_data_block; - if (auto res = for_data_block_index(blocks() - 1, set_index_func, true); res.is_error()) + auto update_and_sync = + [&] + { + if (mode().ifdir()) + m_inode.size += blksize(); + MUST(sync()); + }; + + // direct block + if (block_array_index < 12) { - m_inode.blocks -= blocks_per_data_block; - return res.release_error(); + const uint32_t block = TRY(m_fs.reserve_free_block(block_group())); + + ASSERT(m_inode.block[block_array_index] == 0); + m_inode.block[block_array_index] = block; + + m_inode.blocks += blocks_per_fs_block; + update_and_sync(); + return block; } - if (mode().ifdir()) - m_inode.size += blksize(); + block_array_index -= 12; - TRY(sync()); - return new_block_index; + BAN::Vector block_buffer; + TRY(block_buffer.resize(blksize())); + + // singly indirect block + if (block_array_index < indices_per_fs_block) + { + READ_OR_ALLOCATE_BASE_BLOCK(12); + WRITE_BLOCK_AND_RETURN(block_array_index, m_inode.block[12]); + } + + block_array_index -= indices_per_fs_block; + + // doubly indirect block + if (block_array_index < indices_per_fs_block * indices_per_fs_block) + { + READ_OR_ALLOCATE_BASE_BLOCK(13); + READ_OR_ALLOCATE_INDIRECT_BLOCK(direct_block, block_array_index / indices_per_fs_block, m_inode.block[13]); + WRITE_BLOCK_AND_RETURN(block_array_index % indices_per_fs_block, direct_block); + } + + block_array_index -= indices_per_fs_block * indices_per_fs_block; + + // triply indirect block + if (block_array_index < indices_per_fs_block * indices_per_fs_block * indices_per_fs_block) + { + dwarnln("here"); + READ_OR_ALLOCATE_BASE_BLOCK(14); + READ_OR_ALLOCATE_INDIRECT_BLOCK(indirect_block, block_array_index / (indices_per_fs_block * indices_per_fs_block), 14); + READ_OR_ALLOCATE_INDIRECT_BLOCK(direct_block, (block_array_index / indices_per_fs_block) % indices_per_fs_block, indirect_block); + WRITE_BLOCK_AND_RETURN(block_array_index % indices_per_fs_block, direct_block); + } + + ASSERT_NOT_REACHED(); } +#undef READ_OR_ALLOCATE_BASE_BLOCK +#undef READ_OR_ALLOCATE_INDIRECT_BLOCK +#undef WRITE_BLOCK_AND_RETURN + BAN::ErrorOr Ext2Inode::sync() { auto inode_location_or_error = m_fs.locate_inode(ino()); @@ -561,7 +580,7 @@ needs_new_block: for (uint32_t i = 0; i < data_block_count; i++) { - const uint32_t block_index = TRY(data_block_index(i)); + const uint32_t block_index = TRY(fs_block_of_data_block_index(i)); m_fs.read_block(block_index, block_buffer.span()); const uint8_t* block_buffer_end = block_buffer.data() + block_size; From 8caba1e7745bd90b256fbc186600b9eddc020677 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 25 Sep 2023 14:22:32 +0300 Subject: [PATCH 025/240] Kernel: Ext2 filesystem now holds 10 preallocated block buffers Inodes can query blocks from this buffer. This allows allocation of blocks to not fail during normal operations. Also less stress on kmalloc. --- kernel/include/kernel/FS/Ext2/FileSystem.h | 60 ++++++++++- kernel/include/kernel/FS/Ext2/Inode.h | 2 +- kernel/kernel/FS/Ext2/FileSystem.cpp | 85 ++++++++++------ kernel/kernel/FS/Ext2/Inode.cpp | 113 +++++++++------------ 4 files changed, 158 insertions(+), 102 deletions(-) diff --git a/kernel/include/kernel/FS/Ext2/FileSystem.h b/kernel/include/kernel/FS/Ext2/FileSystem.h index 3776032b..79a3276b 100644 --- a/kernel/include/kernel/FS/Ext2/FileSystem.h +++ b/kernel/include/kernel/FS/Ext2/FileSystem.h @@ -9,6 +9,37 @@ namespace Kernel class Ext2FS final : public FileSystem { + public: + class BlockBufferWrapper + { + BAN_NON_COPYABLE(BlockBufferWrapper); + BAN_NON_MOVABLE(BlockBufferWrapper); + + public: + BlockBufferWrapper(BAN::Span buffer, bool& used) + : m_buffer(buffer) + , m_used(used) + { + ASSERT(m_used); + } + ~BlockBufferWrapper() + { + m_used = false; + } + + size_t size() const { return m_buffer.size(); } + + uint8_t* data() { return m_buffer.data(); } + const uint8_t* data() const { return m_buffer.data(); } + + uint8_t& operator[](size_t index) { return m_buffer[index]; } + uint8_t operator[](size_t index) const { return m_buffer[index]; } + + private: + BAN::Span m_buffer; + bool& m_used; + }; + public: static BAN::ErrorOr create(Partition&); @@ -26,10 +57,12 @@ namespace Kernel BAN::ErrorOr delete_inode(uint32_t); BAN::ErrorOr resize_inode(uint32_t, size_t); - void read_block(uint32_t, BAN::Span); - void write_block(uint32_t, BAN::Span); + void read_block(uint32_t, BlockBufferWrapper&); + void write_block(uint32_t, const BlockBufferWrapper&); void sync_superblock(); + BlockBufferWrapper get_block_buffer(); + BAN::ErrorOr reserve_free_block(uint32_t primary_bgd); const Ext2::Superblock& superblock() const { return m_superblock; } @@ -39,11 +72,30 @@ namespace Kernel uint32_t block; uint32_t offset; }; - BAN::ErrorOr locate_inode(uint32_t); + BlockLocation locate_inode(uint32_t); BlockLocation locate_block_group_descriptior(uint32_t); uint32_t block_size() const { return 1024 << superblock().log_block_size; } + class BlockBufferManager + { + public: + BlockBufferManager() = default; + BlockBufferWrapper get_buffer(); + + BAN::ErrorOr initialize(size_t block_size); + + private: + struct BlockBuffer + { + BAN::Vector buffer; + bool used { false }; + }; + + private: + BAN::Array m_buffers; + }; + private: RecursiveSpinLock m_lock; @@ -52,6 +104,8 @@ namespace Kernel BAN::RefPtr m_root_inode; BAN::Vector m_superblock_backups; + BlockBufferManager m_buffer_manager; + Ext2::Superblock m_superblock; friend class Ext2Inode; diff --git a/kernel/include/kernel/FS/Ext2/Inode.h b/kernel/include/kernel/FS/Ext2/Inode.h index 20535474..e5cc01fe 100644 --- a/kernel/include/kernel/FS/Ext2/Inode.h +++ b/kernel/include/kernel/FS/Ext2/Inode.h @@ -39,7 +39,7 @@ namespace Kernel virtual BAN::ErrorOr truncate_impl(size_t) override; private: - BAN::ErrorOr fs_block_of_data_block_index(uint32_t data_block_index); + uint32_t fs_block_of_data_block_index(uint32_t data_block_index); BAN::ErrorOr allocate_new_block(); BAN::ErrorOr sync(); diff --git a/kernel/kernel/FS/Ext2/FileSystem.cpp b/kernel/kernel/FS/Ext2/FileSystem.cpp index d3e9e019..47473965 100644 --- a/kernel/kernel/FS/Ext2/FileSystem.cpp +++ b/kernel/kernel/FS/Ext2/FileSystem.cpp @@ -90,16 +90,17 @@ namespace Kernel dprintln(" inodes/group {}", m_superblock.inodes_per_group); #endif + TRY(m_buffer_manager.initialize(block_size())); + { - BAN::Vector block_buffer; - TRY(block_buffer.resize(block_size())); + auto block_buffer = m_buffer_manager.get_buffer(); if (superblock().rev_level == Ext2::Enum::GOOD_OLD_REV) { // In revision 0 all blockgroups contain superblock backup TRY(m_superblock_backups.reserve(number_of_block_groups - 1)); for (uint32_t i = 1; i < number_of_block_groups; i++) - MUST(block_buffer.push_back(i)); + MUST(m_superblock_backups.push_back(i)); } else { @@ -118,7 +119,7 @@ namespace Kernel for (uint32_t bg : m_superblock_backups) { - read_block(superblock().first_data_block + superblock().blocks_per_group * bg, block_buffer.span()); + read_block(superblock().first_data_block + superblock().blocks_per_group * bg, block_buffer); Ext2::Superblock& superblock_backup = *(Ext2::Superblock*)block_buffer.data(); if (superblock_backup.magic != Ext2::Enum::SUPER_MAGIC) derrorln("superblock backup at block {} is invalid ({4H})", bg, superblock_backup.magic); @@ -145,11 +146,8 @@ namespace Kernel const uint32_t block_size = this->block_size(); - BAN::Vector bgd_buffer; - TRY(bgd_buffer.resize(block_size)); - - BAN::Vector inode_bitmap; - TRY(inode_bitmap.resize(block_size)); + auto bgd_buffer = m_buffer_manager.get_buffer(); + auto inode_bitmap = m_buffer_manager.get_buffer(); uint32_t current_group = -1; BlockLocation bgd_location {}; @@ -165,7 +163,7 @@ namespace Kernel current_group = ino_group; bgd_location = locate_block_group_descriptior(current_group); - read_block(bgd_location.block, bgd_buffer.span()); + read_block(bgd_location.block, bgd_buffer); bgd = (Ext2::BlockGroupDescriptor*)(bgd_buffer.data() + bgd_location.offset); if (bgd->free_inodes_count == 0) @@ -174,7 +172,7 @@ namespace Kernel continue; } - read_block(bgd->inode_bitmap, inode_bitmap.span()); + read_block(bgd->inode_bitmap, inode_bitmap); } const uint32_t ino_bitmap_byte = ino_index / 8; @@ -183,10 +181,10 @@ namespace Kernel continue; inode_bitmap[ino_bitmap_byte] |= 1 << ino_bitmap_bit; - write_block(bgd->inode_bitmap, inode_bitmap.span()); + write_block(bgd->inode_bitmap, inode_bitmap); bgd->free_inodes_count--; - write_block(bgd_location.block, bgd_buffer.span()); + write_block(bgd_location.block, bgd_buffer); const uint32_t inode_table_offset = ino_index * superblock().inode_size; const BlockLocation inode_location @@ -198,11 +196,11 @@ namespace Kernel // NOTE: we don't need inode bitmap anymore, so we can reuse it auto& inode_buffer = inode_bitmap; - read_block(inode_location.block, inode_buffer.span()); + read_block(inode_location.block, inode_buffer); memcpy(inode_buffer.data() + inode_location.offset, &ext2_inode, sizeof(Ext2::Inode)); if (superblock().inode_size > sizeof(Ext2::Inode)) memset(inode_buffer.data() + inode_location.offset + sizeof(Ext2::Inode), 0, superblock().inode_size - sizeof(Ext2::Inode)); - write_block(inode_location.block, inode_buffer.span()); + write_block(inode_location.block, inode_buffer); m_superblock.free_inodes_count--; sync_superblock(); @@ -214,7 +212,7 @@ namespace Kernel return BAN::Error::from_error_code(ErrorCode::Ext2_Corrupted); } - void Ext2FS::read_block(uint32_t block, BAN::Span buffer) + void Ext2FS::read_block(uint32_t block, BlockBufferWrapper& buffer) { LockGuard _(m_lock); @@ -228,7 +226,7 @@ namespace Kernel MUST(m_partition.read_sectors(sectors_before + (block - 2) * sectors_per_block, sectors_per_block, buffer.data())); } - void Ext2FS::write_block(uint32_t block, BAN::Span buffer) + void Ext2FS::write_block(uint32_t block, const BlockBufferWrapper& buffer) { LockGuard _(m_lock); @@ -268,6 +266,13 @@ namespace Kernel } } + + Ext2FS::BlockBufferWrapper Ext2FS::get_block_buffer() + { + LockGuard _(m_lock); + return m_buffer_manager.get_buffer(); + } + BAN::ErrorOr Ext2FS::reserve_free_block(uint32_t primary_bgd) { LockGuard _(m_lock); @@ -275,25 +280,20 @@ namespace Kernel if (m_superblock.r_blocks_count >= m_superblock.free_blocks_count) return BAN::Error::from_errno(ENOSPC); - const uint32_t block_size = this->block_size(); - - BAN::Vector bgd_buffer; - TRY(bgd_buffer.resize(block_size)); - - BAN::Vector block_bitmap; - TRY(block_bitmap.resize(block_size)); + auto bgd_buffer = m_buffer_manager.get_buffer(); + auto block_bitmap = m_buffer_manager.get_buffer(); auto check_block_group = [&](uint32_t block_group) -> uint32_t { auto bgd_location = locate_block_group_descriptior(block_group); - read_block(bgd_location.block, bgd_buffer.span()); + read_block(bgd_location.block, bgd_buffer); auto& bgd = *(Ext2::BlockGroupDescriptor*)(bgd_buffer.data() + bgd_location.offset); if (bgd.free_blocks_count == 0) return 0; - read_block(bgd.block_bitmap, block_bitmap.span()); + read_block(bgd.block_bitmap, block_bitmap); for (uint32_t block_offset = 0; block_offset < m_superblock.blocks_per_group; block_offset++) { const uint32_t fs_block_index = m_superblock.first_data_block + m_superblock.blocks_per_group * block_group + block_offset; @@ -306,10 +306,10 @@ namespace Kernel continue; block_bitmap[byte] |= 1 << bit; - write_block(bgd.block_bitmap, block_bitmap.span()); + write_block(bgd.block_bitmap, block_bitmap); bgd.free_blocks_count--; - write_block(bgd_location.block, bgd_buffer.span()); + write_block(bgd_location.block, bgd_buffer); m_superblock.free_blocks_count--; sync_superblock(); @@ -334,7 +334,7 @@ namespace Kernel return BAN::Error::from_error_code(ErrorCode::Ext2_Corrupted); } - BAN::ErrorOr Ext2FS::locate_inode(uint32_t ino) + Ext2FS::BlockLocation Ext2FS::locate_inode(uint32_t ino) { LockGuard _(m_lock); @@ -342,15 +342,14 @@ namespace Kernel const uint32_t block_size = this->block_size(); - BAN::Vector bgd_buffer; - TRY(bgd_buffer.resize(block_size)); + auto bgd_buffer = m_buffer_manager.get_buffer(); const uint32_t inode_group = (ino - 1) / superblock().inodes_per_group; const uint32_t inode_index = (ino - 1) % superblock().inodes_per_group; auto bgd_location = locate_block_group_descriptior(inode_group); - read_block(bgd_location.block, bgd_buffer.span()); + read_block(bgd_location.block, bgd_buffer); auto& bgd = *(Ext2::BlockGroupDescriptor*)(bgd_buffer.data() + bgd_location.offset); @@ -397,4 +396,26 @@ namespace Kernel }; } + Ext2FS::BlockBufferWrapper Ext2FS::BlockBufferManager::get_buffer() + { + for (auto& buffer : m_buffers) + { + if (buffer.used) + continue; + buffer.used = true; + return Ext2FS::BlockBufferWrapper(buffer.buffer.span(), buffer.used); + } + ASSERT_NOT_REACHED(); + } + + BAN::ErrorOr Ext2FS::BlockBufferManager::initialize(size_t block_size) + { + for (auto& buffer : m_buffers) + { + TRY(buffer.buffer.resize(block_size)); + buffer.used = false; + } + return {}; + } + } \ No newline at end of file diff --git a/kernel/kernel/FS/Ext2/Inode.cpp b/kernel/kernel/FS/Ext2/Inode.cpp index 9fc40f80..31fdefbc 100644 --- a/kernel/kernel/FS/Ext2/Inode.cpp +++ b/kernel/kernel/FS/Ext2/Inode.cpp @@ -23,12 +23,10 @@ namespace Kernel BAN::ErrorOr> Ext2Inode::create(Ext2FS& fs, uint32_t inode_ino) { - auto inode_location = TRY(fs.locate_inode(inode_ino)); + auto inode_location = fs.locate_inode(inode_ino); - BAN::Vector block_buffer; - TRY(block_buffer.resize(fs.block_size())); - - fs.read_block(inode_location.block, block_buffer.span()); + auto block_buffer = fs.get_block_buffer(); + fs.read_block(inode_location.block, block_buffer); auto& inode = *(Ext2::Inode*)(block_buffer.data() + inode_location.offset); @@ -38,10 +36,10 @@ namespace Kernel return BAN::RefPtr::adopt(result); } -#define VERIFY_AND_READ_BLOCK(expr) do { const uint32_t block_index = expr; ASSERT(block_index); m_fs.read_block(block_index, block_buffer.span()); } while (false) +#define VERIFY_AND_READ_BLOCK(expr) do { const uint32_t block_index = expr; ASSERT(block_index); m_fs.read_block(block_index, block_buffer); } while (false) #define VERIFY_AND_RETURN(expr) ({ const uint32_t result = expr; ASSERT(result); return result; }) - BAN::ErrorOr Ext2Inode::fs_block_of_data_block_index(uint32_t data_block_index) + uint32_t Ext2Inode::fs_block_of_data_block_index(uint32_t data_block_index) { ASSERT(data_block_index < blocks()); @@ -53,8 +51,7 @@ namespace Kernel data_block_index -= 12; - BAN::Vector block_buffer; - TRY(block_buffer.resize(blksize())); + auto block_buffer = m_fs.get_block_buffer(); // Singly indirect block if (data_block_index < indices_per_block) @@ -115,8 +112,7 @@ namespace Kernel const uint32_t block_size = blksize(); - BAN::Vector block_buffer; - TRY(block_buffer.resize(block_size)); + auto block_buffer = m_fs.get_block_buffer(); const uint32_t first_block = offset / block_size; const uint32_t last_block = BAN::Math::div_round_up(offset + count, block_size); @@ -125,8 +121,8 @@ namespace Kernel for (uint32_t data_block_index = first_block; data_block_index < last_block; data_block_index++) { - uint32_t block_index = TRY(fs_block_of_data_block_index(data_block_index)); - m_fs.read_block(block_index, block_buffer.span()); + uint32_t block_index = fs_block_of_data_block_index(data_block_index); + m_fs.read_block(block_index, block_buffer); uint32_t copy_offset = (offset + n_read) % block_size; uint32_t to_copy = BAN::Math::min(block_size - copy_offset, count - n_read); @@ -153,8 +149,7 @@ namespace Kernel const uint32_t block_size = blksize(); - BAN::Vector block_buffer; - TRY(block_buffer.resize(block_size)); + auto block_buffer = m_fs.get_block_buffer(); const uint8_t* u8buffer = (const uint8_t*)buffer; @@ -163,14 +158,14 @@ namespace Kernel // Write partial block if (offset % block_size) { - uint32_t block_index = TRY(fs_block_of_data_block_index(offset / block_size)); + uint32_t block_index = fs_block_of_data_block_index(offset / block_size); uint32_t block_offset = offset % block_size; uint32_t to_copy = BAN::Math::min(block_size - block_offset, to_write); - m_fs.read_block(block_index, block_buffer.span()); + m_fs.read_block(block_index, block_buffer); memcpy(block_buffer.data() + block_offset, u8buffer, to_copy); - m_fs.write_block(block_index, block_buffer.span()); + m_fs.write_block(block_index, block_buffer); u8buffer += to_copy; offset += to_copy; @@ -179,9 +174,10 @@ namespace Kernel while (to_write >= block_size) { - uint32_t block_index = TRY(fs_block_of_data_block_index(offset / block_size)); + uint32_t block_index = fs_block_of_data_block_index(offset / block_size); - m_fs.write_block(block_index, BAN::Span(u8buffer, block_size)); + memcpy(block_buffer.data(), u8buffer, block_buffer.size()); + m_fs.write_block(block_index, block_buffer); u8buffer += block_size; offset += block_size; @@ -190,11 +186,11 @@ namespace Kernel if (to_write > 0) { - uint32_t block_index = TRY(fs_block_of_data_block_index(offset / block_size)); + uint32_t block_index = fs_block_of_data_block_index(offset / block_size); - m_fs.read_block(block_index, block_buffer.span()); + m_fs.read_block(block_index, block_buffer); memcpy(block_buffer.data(), u8buffer, to_write); - m_fs.write_block(block_index, block_buffer.span()); + m_fs.write_block(block_index, block_buffer); } return count; @@ -216,23 +212,22 @@ namespace Kernel return {}; } - BAN::Vector block_buffer; - TRY(block_buffer.resize(block_size)); + auto block_buffer = m_fs.get_block_buffer(); if (uint32_t rem = m_inode.size % block_size) { - uint32_t last_block_index = TRY(fs_block_of_data_block_index(current_data_blocks - 1)); + uint32_t last_block_index = fs_block_of_data_block_index(current_data_blocks - 1); - m_fs.read_block(last_block_index, block_buffer.span()); + m_fs.read_block(last_block_index, block_buffer); memset(block_buffer.data() + rem, 0, block_size - rem); - m_fs.write_block(last_block_index, block_buffer.span()); + m_fs.write_block(last_block_index, block_buffer); } memset(block_buffer.data(), 0, block_size); while (blocks() < needed_data_blocks) { uint32_t block_index = TRY(allocate_new_block()); - m_fs.write_block(block_index, block_buffer.span()); + m_fs.write_block(block_index, block_buffer); } m_inode.size = new_size; @@ -254,12 +249,11 @@ namespace Kernel } const uint32_t block_size = blksize(); - const uint32_t block_index = TRY(fs_block_of_data_block_index(offset)); + const uint32_t block_index = fs_block_of_data_block_index(offset); - BAN::Vector block_buffer; - TRY(block_buffer.resize(block_size)); + auto block_buffer = m_fs.get_block_buffer(); - m_fs.read_block(block_index, block_buffer.span()); + m_fs.read_block(block_index, block_buffer); // First determine if we have big enough list { @@ -356,8 +350,8 @@ namespace Kernel const uint32_t inode_index = TRY(m_fs.create_inode(ext2_inode)); const uint32_t block_size = m_fs.block_size(); - BAN::Vector block_buffer; - TRY(block_buffer.resize(block_size)); + + auto block_buffer = m_fs.get_block_buffer(); auto write_inode = [&](uint32_t entry_offset, uint32_t entry_rec_len) { @@ -392,8 +386,8 @@ namespace Kernel goto needs_new_block; // Try to insert inode to last data block - block_index = TRY(fs_block_of_data_block_index(data_block_count - 1)); - m_fs.read_block(block_index, block_buffer.span()); + block_index = fs_block_of_data_block_index(data_block_count - 1); + m_fs.read_block(block_index, block_buffer); while (entry_offset < block_size) { @@ -406,7 +400,7 @@ namespace Kernel if (entry.inode == 0 && needed_entry_len <= entry.rec_len) { write_inode(entry_offset, entry.rec_len); - m_fs.write_block(block_index, block_buffer.span()); + m_fs.write_block(block_index, block_buffer); return {}; } else if (needed_entry_len <= entry.rec_len - entry_min_rec_len) @@ -415,7 +409,7 @@ namespace Kernel entry.rec_len = entry_min_rec_len; write_inode(entry_offset + entry.rec_len, new_rec_len); - m_fs.write_block(block_index, block_buffer.span()); + m_fs.write_block(block_index, block_buffer); return {}; } @@ -425,9 +419,9 @@ namespace Kernel needs_new_block: block_index = TRY(allocate_new_block()); - m_fs.read_block(block_index, block_buffer.span()); + m_fs.read_block(block_index, block_buffer); write_inode(0, block_size); - m_fs.write_block(block_index, block_buffer.span()); + m_fs.write_block(block_index, block_buffer); return {}; } @@ -435,7 +429,7 @@ needs_new_block: #define READ_OR_ALLOCATE_BASE_BLOCK(index_) \ do { \ if (m_inode.block[index_] != 0) \ - m_fs.read_block(m_inode.block[index_], block_buffer.span()); \ + m_fs.read_block(m_inode.block[index_], block_buffer); \ else \ { \ m_inode.block[index_] = TRY(m_fs.reserve_free_block(block_group())); \ @@ -446,13 +440,13 @@ needs_new_block: #define READ_OR_ALLOCATE_INDIRECT_BLOCK(result_, buffer_index_, parent_block_) \ uint32_t result_ = ((uint32_t*)block_buffer.data())[buffer_index_]; \ if (result_ != 0) \ - m_fs.read_block(result_, block_buffer.span()); \ + m_fs.read_block(result_, block_buffer); \ else \ { \ const uint32_t new_block_ = TRY(m_fs.reserve_free_block(block_group())); \ \ ((uint32_t*)block_buffer.data())[buffer_index_] = new_block_; \ - m_fs.write_block(parent_block_, block_buffer.span()); \ + m_fs.write_block(parent_block_, block_buffer); \ \ result_ = new_block_; \ memset(block_buffer.data(), 0x00, block_buffer.size()); \ @@ -465,7 +459,7 @@ needs_new_block: \ ASSERT(((uint32_t*)block_buffer.data())[buffer_index_] == 0); \ ((uint32_t*)block_buffer.data())[buffer_index_] = block_; \ - m_fs.write_block(parent_block_, block_buffer.span()); \ + m_fs.write_block(parent_block_, block_buffer); \ \ m_inode.blocks += blocks_per_fs_block; \ update_and_sync(); \ @@ -503,8 +497,7 @@ needs_new_block: block_array_index -= 12; - BAN::Vector block_buffer; - TRY(block_buffer.resize(blksize())); + auto block_buffer = m_fs.get_block_buffer(); // singly indirect block if (block_array_index < indices_per_fs_block) @@ -544,25 +537,14 @@ needs_new_block: BAN::ErrorOr Ext2Inode::sync() { - auto inode_location_or_error = m_fs.locate_inode(ino()); - if (inode_location_or_error.is_error()) - { - dwarnln("Open inode not found from filesystem"); - return BAN::Error::from_error_code(ErrorCode::Ext2_Corrupted); - } + auto inode_location = m_fs.locate_inode(ino()); + auto block_buffer = m_fs.get_block_buffer(); - auto inode_location = inode_location_or_error.release_value(); - - const uint32_t block_size = blksize(); - - BAN::Vector block_buffer; - TRY(block_buffer.resize(block_size)); - - m_fs.read_block(inode_location.block, block_buffer.span()); + m_fs.read_block(inode_location.block, block_buffer); if (memcmp(block_buffer.data() + inode_location.offset, &m_inode, sizeof(Ext2::Inode))) { memcpy(block_buffer.data() + inode_location.offset, &m_inode, sizeof(Ext2::Inode)); - m_fs.write_block(inode_location.block, block_buffer.span()); + m_fs.write_block(inode_location.block, block_buffer); } return {}; @@ -575,13 +557,12 @@ needs_new_block: const uint32_t block_size = blksize(); const uint32_t data_block_count = blocks(); - BAN::Vector block_buffer; - TRY(block_buffer.resize(block_size)); + auto block_buffer = m_fs.get_block_buffer(); for (uint32_t i = 0; i < data_block_count; i++) { - const uint32_t block_index = TRY(fs_block_of_data_block_index(i)); - m_fs.read_block(block_index, block_buffer.span()); + const uint32_t block_index = fs_block_of_data_block_index(i); + m_fs.read_block(block_index, block_buffer); const uint8_t* block_buffer_end = block_buffer.data() + block_size; const uint8_t* entry_addr = block_buffer.data(); From b62186441b264afe519bb6c1df141448d9f49f5c Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 25 Sep 2023 19:22:43 +0300 Subject: [PATCH 026/240] BAN: Implement basic WeakPtr This can be constructed from classes that inherit from Weakable --- BAN/include/BAN/WeakPtr.h | 107 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 BAN/include/BAN/WeakPtr.h diff --git a/BAN/include/BAN/WeakPtr.h b/BAN/include/BAN/WeakPtr.h new file mode 100644 index 00000000..687f4204 --- /dev/null +++ b/BAN/include/BAN/WeakPtr.h @@ -0,0 +1,107 @@ +#pragma once + +#include + +namespace BAN +{ + + template + class Weakable; + + template + class WeakPtr; + + template + class WeakLink : public RefCounted> + { + public: + RefPtr lock() { ASSERT(m_ptr); return raw_ptr(); } + T* raw_ptr() { return m_ptr; } + + bool valid() const { return m_ptr; } + void invalidate() { m_ptr = nullptr; } + + private: + WeakLink(T* ptr) : m_ptr(ptr) {} + + private: + T* m_ptr; + + friend class RefPtr>; + }; + + template + class Weakable + { + public: + ~Weakable() + { + if (m_link) + m_link->invalidate(); + } + + ErrorOr> get_weak_ptr() const + { + if (!m_link) + m_link = TRY(RefPtr>::create((T*)this)); + return WeakPtr(m_link); + } + + private: + mutable RefPtr> m_link; + }; + + template + class WeakPtr + { + public: + WeakPtr() = default; + WeakPtr(WeakPtr&& other) { *this = move(other); } + WeakPtr(const WeakPtr& other) { *this = other; } + WeakPtr(const RefPtr& other) { *this = other; } + + WeakPtr& operator=(WeakPtr&& other) + { + clear(); + m_link = move(other.m_link); + return *this; + } + WeakPtr& operator=(const WeakPtr& other) + { + clear(); + m_link = other.m_link; + return *this; + } + WeakPtr& operator=(const RefPtr& other) + { + clear(); + if (other) + m_link = MUST(other->get_weak_ptr()).move_link(); + return *this; + } + + RefPtr lock() + { + if (m_link->valid()) + return m_link->lock(); + return nullptr; + } + + void clear() { m_link.clear(); } + + bool valid() const { return m_link && m_link->valid(); } + + private: + WeakPtr(const RefPtr>& link) + : m_link(link) + { } + + RefPtr>&& move_link() { return move(m_link); } + + private: + RefPtr> m_link; + + friend class Weakable; + }; + +} \ No newline at end of file From 55d30a7cc3c4cc1f78a163f2fb971492b59dd585 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 25 Sep 2023 20:31:40 +0300 Subject: [PATCH 027/240] Kernel: Ext2 inodes are now stored in cache This allows faster inode access and ensures working inodes when opened in multiple places. --- kernel/include/kernel/FS/Ext2/FileSystem.h | 5 +++++ kernel/kernel/FS/Ext2/Inode.cpp | 11 ++++++++--- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/kernel/include/kernel/FS/Ext2/FileSystem.h b/kernel/include/kernel/FS/Ext2/FileSystem.h index 79a3276b..1d162271 100644 --- a/kernel/include/kernel/FS/Ext2/FileSystem.h +++ b/kernel/include/kernel/FS/Ext2/FileSystem.h @@ -1,5 +1,6 @@ #pragma once +#include #include #include #include @@ -65,6 +66,8 @@ namespace Kernel BAN::ErrorOr reserve_free_block(uint32_t primary_bgd); + BAN::HashMap>& inode_cache() { return m_inode_cache; } + const Ext2::Superblock& superblock() const { return m_superblock; } struct BlockLocation @@ -104,6 +107,8 @@ namespace Kernel BAN::RefPtr m_root_inode; BAN::Vector m_superblock_backups; + BAN::HashMap> m_inode_cache; + BlockBufferManager m_buffer_manager; Ext2::Superblock m_superblock; diff --git a/kernel/kernel/FS/Ext2/Inode.cpp b/kernel/kernel/FS/Ext2/Inode.cpp index 31fdefbc..ade4789c 100644 --- a/kernel/kernel/FS/Ext2/Inode.cpp +++ b/kernel/kernel/FS/Ext2/Inode.cpp @@ -23,6 +23,9 @@ namespace Kernel BAN::ErrorOr> Ext2Inode::create(Ext2FS& fs, uint32_t inode_ino) { + if (fs.inode_cache().contains(inode_ino)) + return fs.inode_cache()[inode_ino]; + auto inode_location = fs.locate_inode(inode_ino); auto block_buffer = fs.get_block_buffer(); @@ -30,10 +33,12 @@ namespace Kernel auto& inode = *(Ext2::Inode*)(block_buffer.data() + inode_location.offset); - Ext2Inode* result = new Ext2Inode(fs, inode, inode_ino); - if (result == nullptr) + Ext2Inode* result_ptr = new Ext2Inode(fs, inode, inode_ino); + if (result_ptr == nullptr) return BAN::Error::from_errno(ENOMEM); - return BAN::RefPtr::adopt(result); + auto result = BAN::RefPtr::adopt(result_ptr); + TRY(fs.inode_cache().insert(inode_ino, result)); + return result; } #define VERIFY_AND_READ_BLOCK(expr) do { const uint32_t block_index = expr; ASSERT(block_index); m_fs.read_block(block_index, block_buffer); } while (false) From b4e4f7a6cc5be909f55f2d2844027bfb9a929277 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 25 Sep 2023 20:33:07 +0300 Subject: [PATCH 028/240] Kernel: Print more detailed output on ISR --- kernel/arch/x86_64/IDT.cpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/kernel/arch/x86_64/IDT.cpp b/kernel/arch/x86_64/IDT.cpp index 9369d933..23f739c0 100644 --- a/kernel/arch/x86_64/IDT.cpp +++ b/kernel/arch/x86_64/IDT.cpp @@ -148,6 +148,31 @@ namespace IDT pid_t tid = Kernel::Scheduler::current_tid(); pid_t pid = tid ? Kernel::Process::current().pid() : 0; + if (tid) + { + auto start = Kernel::Thread::current().stack_base(); + auto end = start + Kernel::Thread::current().stack_size(); + if (interrupt_stack.rsp < start) + derrorln("Stack overflow"); + if (interrupt_stack.rsp >= end) + derrorln("Stack underflow"); + } + + if (Kernel::PageTable::current().get_page_flags(interrupt_stack.rip & PAGE_ADDR_MASK) & Kernel::PageTable::Flags::Present) + { + uint8_t* machine_code = (uint8_t*)interrupt_stack.rip; + dwarnln("While executing: {2H}{2H}{2H}{2H}{2H}{2H}{2H}{2H}", + machine_code[0], + machine_code[1], + machine_code[2], + machine_code[3], + machine_code[4], + machine_code[5], + machine_code[6], + machine_code[7] + ); + } + dwarnln( "{} (error code: 0x{16H}), pid {}, tid {}\r\n" "Register dump\r\n" @@ -161,6 +186,8 @@ namespace IDT regs->rip, regs->rflags, regs->cr0, regs->cr2, regs->cr3, regs->cr4 ); + if (isr == ISR::PageFault) + Kernel::PageTable::current().debug_dump(); Debug::dump_stack_trace(); if (tid) From 1d470fb5baa61adb6050f838cccfdb473461e6e9 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 25 Sep 2023 22:07:12 +0300 Subject: [PATCH 029/240] Kernel: All syscalls now validate users pointers We now validate pointers passed by the user, to forbid arbitary memory read/write. Now the user is only allowed to pass in pointers in their own mapped memory space (or null). --- kernel/include/kernel/Process.h | 14 +-- kernel/kernel/Font.cpp | 12 ++- kernel/kernel/Process.cpp | 149 +++++++++++++++++++++++++++----- kernel/kernel/Syscall.cpp | 2 +- kernel/kernel/Terminal/TTY.cpp | 6 +- 5 files changed, 144 insertions(+), 39 deletions(-) diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index 97f7b619..e53c2e1c 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -87,8 +87,9 @@ namespace Kernel BAN::ErrorOr sys_getpgid(pid_t); BAN::ErrorOr create_file(BAN::StringView name, mode_t mode); - BAN::ErrorOr sys_open(BAN::StringView, int, mode_t = 0); - BAN::ErrorOr sys_openat(int, BAN::StringView, int, mode_t = 0); + BAN::ErrorOr open_file(BAN::StringView path, int, mode_t = 0); + BAN::ErrorOr sys_open(const char* path, int, mode_t); + BAN::ErrorOr sys_openat(int, const char* path, int, mode_t); BAN::ErrorOr sys_close(int fd); BAN::ErrorOr sys_read(int fd, void* buffer, size_t count); BAN::ErrorOr sys_write(int fd, const void* buffer, size_t count); @@ -112,7 +113,7 @@ namespace Kernel BAN::ErrorOr sys_read_dir_entries(int fd, DirectoryEntryList* buffer, size_t buffer_size); - BAN::ErrorOr sys_mmap(const sys_mmap_t&); + BAN::ErrorOr sys_mmap(const sys_mmap_t*); BAN::ErrorOr sys_munmap(void* addr, size_t len); BAN::ErrorOr sys_signal(int, void (*)(int)); @@ -121,9 +122,9 @@ namespace Kernel BAN::ErrorOr sys_tcsetpgrp(int fd, pid_t pgid); - BAN::ErrorOr sys_termid(char*) const; + BAN::ErrorOr sys_termid(char*); - BAN::ErrorOr sys_clock_gettime(clockid_t, timespec*) const; + BAN::ErrorOr sys_clock_gettime(clockid_t, timespec*); TTY& tty() { ASSERT(m_controlling_terminal); return *m_controlling_terminal; } @@ -149,6 +150,9 @@ namespace Kernel BAN::ErrorOr absolute_path_of(BAN::StringView) const; + void validate_string_access(const char*); + void validate_pointer_access(const void*, size_t); + private: struct ExitStatus { diff --git a/kernel/kernel/Font.cpp b/kernel/kernel/Font.cpp index f1ebf47c..d7c210bc 100644 --- a/kernel/kernel/Font.cpp +++ b/kernel/kernel/Font.cpp @@ -2,6 +2,7 @@ #include #include #include +#include #include #include @@ -37,15 +38,12 @@ namespace Kernel BAN::ErrorOr Font::load(BAN::StringView path) { - int fd = TRY(Process::current().sys_open(path, O_RDONLY)); - BAN::ScopeGuard _([fd] { MUST(Process::current().sys_close(fd)); }); - - struct stat st; - TRY(Process::current().sys_fstat(fd, &st)); + auto inode = TRY(VirtualFileSystem::get().file_from_absolute_path({ 0, 0, 0, 0 }, path, O_RDONLY)).inode; BAN::Vector file_data; - TRY(file_data.resize(st.st_size)); - TRY(Process::current().sys_read(fd, file_data.data(), st.st_size)); + TRY(file_data.resize(inode->size())); + + inode->read(0, file_data.data(), file_data.size()); if (file_data.size() < 4) return BAN::Error::from_error_code(ErrorCode::Font_FileTooSmall); diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index 32acdd9b..35474a7c 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -247,6 +247,8 @@ namespace Kernel { LockGuard _(m_lock); + validate_pointer_access(termios, sizeof(::termios)); + if (!m_controlling_terminal) return BAN::Error::from_errno(ENOTTY); @@ -264,6 +266,8 @@ namespace Kernel { LockGuard _(m_lock); + validate_pointer_access(termios, sizeof(::termios)); + if (!m_controlling_terminal) return BAN::Error::from_errno(ENOTTY); @@ -360,12 +364,25 @@ namespace Kernel // NOTE: We scope everything for automatic deletion { BAN::Vector str_argv; - for (int i = 0; argv && argv[i]; i++) - TRY(str_argv.emplace_back(argv[i])); - BAN::Vector str_envp; - for (int i = 0; envp && envp[i]; i++) - TRY(str_envp.emplace_back(envp[i])); + + { + LockGuard _(m_lock); + + for (int i = 0; argv && argv[i]; i++) + { + validate_pointer_access(argv + i, sizeof(char*)); + validate_string_access(argv[i]); + TRY(str_argv.emplace_back(argv[i])); + } + + for (int i = 0; envp && envp[i]; i++) + { + validate_pointer_access(envp + 1, sizeof(char*)); + validate_string_access(envp[i]); + TRY(str_envp.emplace_back(envp[i])); + } + } BAN::String working_directory; @@ -471,6 +488,11 @@ namespace Kernel { Process* target = nullptr; + { + LockGuard _(m_lock); + validate_pointer_access(stat_loc, sizeof(int)); + } + // FIXME: support options if (options) return BAN::Error::from_errno(EINVAL); @@ -504,7 +526,12 @@ namespace Kernel BAN::ErrorOr Process::sys_nanosleep(const timespec* rqtp, timespec* rmtp) { - (void)rmtp; + { + LockGuard _(m_lock); + validate_pointer_access(rqtp, sizeof(timespec)); + validate_pointer_access(rmtp, sizeof(timespec)); + } + // TODO: rmtp SystemTimer::get().sleep(rqtp->tv_sec * 1000 + BAN::Math::div_round_up(rqtp->tv_nsec, 1'000'000)); return 0; } @@ -586,9 +613,8 @@ namespace Kernel return {}; } - BAN::ErrorOr Process::sys_open(BAN::StringView path, int flags, mode_t mode) + BAN::ErrorOr Process::open_file(BAN::StringView path, int flags, mode_t mode) { - LockGuard _(m_lock); BAN::String absolute_path = TRY(absolute_path_of(path)); if (flags & O_CREAT) @@ -616,9 +642,18 @@ namespace Kernel return fd; } - BAN::ErrorOr Process::sys_openat(int fd, BAN::StringView path, int flags, mode_t mode) + BAN::ErrorOr Process::sys_open(const char* path, int flags, mode_t mode) { LockGuard _(m_lock); + validate_string_access(path); + return open_file(path, flags, mode); + } + + BAN::ErrorOr Process::sys_openat(int fd, const char* path, int flags, mode_t mode) + { + LockGuard _(m_lock); + + validate_string_access(path); // FIXME: handle O_SEARCH in fd @@ -627,7 +662,7 @@ namespace Kernel TRY(absolute_path.push_back('/')); TRY(absolute_path.append(path)); - return sys_open(absolute_path, flags, mode); + return open_file(absolute_path, flags, mode); } BAN::ErrorOr Process::sys_close(int fd) @@ -640,18 +675,21 @@ namespace Kernel BAN::ErrorOr Process::sys_read(int fd, void* buffer, size_t count) { LockGuard _(m_lock); + validate_pointer_access(buffer, count); return TRY(m_open_file_descriptors.read(fd, buffer, count)); } BAN::ErrorOr Process::sys_write(int fd, const void* buffer, size_t count) { LockGuard _(m_lock); + validate_pointer_access(buffer, count); return TRY(m_open_file_descriptors.write(fd, buffer, count)); } BAN::ErrorOr Process::sys_pipe(int fildes[2]) { LockGuard _(m_lock); + validate_pointer_access(fildes, sizeof(int) * 2); TRY(m_open_file_descriptors.pipe(fildes)); return 0; } @@ -699,16 +737,18 @@ namespace Kernel return {}; } - BAN::ErrorOr Process::sys_fstat(int fd, struct stat* out) + BAN::ErrorOr Process::sys_fstat(int fd, struct stat* buf) { LockGuard _(m_lock); - TRY(m_open_file_descriptors.fstat(fd, out)); + validate_pointer_access(buf, sizeof(struct stat)); + TRY(m_open_file_descriptors.fstat(fd, buf)); return 0; } BAN::ErrorOr Process::sys_fstatat(int fd, const char* path, struct stat* buf, int flag) { LockGuard _(m_lock); + validate_pointer_access(buf, sizeof(struct stat)); TRY(m_open_file_descriptors.fstatat(fd, path, buf, flag)); return 0; } @@ -716,6 +756,7 @@ namespace Kernel BAN::ErrorOr Process::sys_stat(const char* path, struct stat* buf, int flag) { LockGuard _(m_lock); + validate_pointer_access(buf, sizeof(struct stat)); TRY(m_open_file_descriptors.stat(TRY(absolute_path_of(path)), buf, flag)); return 0; } @@ -741,6 +782,7 @@ namespace Kernel BAN::ErrorOr Process::sys_read_dir_entries(int fd, DirectoryEntryList* list, size_t list_size) { LockGuard _(m_lock); + validate_pointer_access(list, list_size); TRY(m_open_file_descriptors.read_dir_entries(fd, list, list_size)); return 0; } @@ -751,6 +793,7 @@ namespace Kernel { LockGuard _(m_lock); + validate_string_access(path); absolute_path = TRY(absolute_path_of(path)); } @@ -768,6 +811,8 @@ namespace Kernel { LockGuard _(m_lock); + validate_pointer_access(buffer, size); + if (size < m_working_directory.size() + 1) return BAN::Error::from_errno(ERANGE); @@ -777,32 +822,37 @@ namespace Kernel return (long)buffer; } - BAN::ErrorOr Process::sys_mmap(const sys_mmap_t& args) + BAN::ErrorOr Process::sys_mmap(const sys_mmap_t* args) { - if (args.prot != PROT_NONE && args.prot & ~(PROT_READ | PROT_WRITE | PROT_EXEC)) + { + LockGuard _(m_lock); + validate_pointer_access(args, sizeof(sys_mmap_t)); + } + + if (args->prot != PROT_NONE && args->prot & ~(PROT_READ | PROT_WRITE | PROT_EXEC)) return BAN::Error::from_errno(EINVAL); PageTable::flags_t flags = PageTable::Flags::UserSupervisor; - if (args.prot & PROT_READ) + if (args->prot & PROT_READ) flags |= PageTable::Flags::Present; - if (args.prot & PROT_WRITE) + if (args->prot & PROT_WRITE) flags |= PageTable::Flags::ReadWrite | PageTable::Flags::Present; - if (args.prot & PROT_EXEC) + if (args->prot & PROT_EXEC) flags |= PageTable::Flags::Execute | PageTable::Flags::Present; - if (args.flags == (MAP_ANONYMOUS | MAP_PRIVATE)) + if (args->flags == (MAP_ANONYMOUS | MAP_PRIVATE)) { - if (args.addr != nullptr) + if (args->addr != nullptr) return BAN::Error::from_errno(ENOTSUP); - if (args.off != 0) + if (args->off != 0) return BAN::Error::from_errno(EINVAL); - if (args.len % PAGE_SIZE != 0) + if (args->len % PAGE_SIZE != 0) return BAN::Error::from_errno(EINVAL); auto range = TRY(VirtualRange::create_to_vaddr_range( page_table(), 0x400000, KERNEL_OFFSET, - args.len, + args->len, PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present )); range->set_zero(); @@ -839,10 +889,12 @@ namespace Kernel return 0; } - BAN::ErrorOr Process::sys_termid(char* buffer) const + BAN::ErrorOr Process::sys_termid(char* buffer) { LockGuard _(m_lock); + validate_string_access(buffer); + auto& tty = m_controlling_terminal; if (!tty) @@ -857,8 +909,13 @@ namespace Kernel return 0; } - BAN::ErrorOr Process::sys_clock_gettime(clockid_t clock_id, timespec* tp) const + BAN::ErrorOr Process::sys_clock_gettime(clockid_t clock_id, timespec* tp) { + { + LockGuard _(m_lock); + validate_pointer_access(tp, sizeof(timespec)); + } + switch (clock_id) { case CLOCK_MONOTONIC: @@ -882,6 +939,11 @@ namespace Kernel if (signal < _SIGMIN || signal > _SIGMAX) return BAN::Error::from_errno(EINVAL); + { + LockGuard _(m_lock); + validate_pointer_access((void*)handler, sizeof(handler)); + } + CriticalScope _; m_signal_handlers[signal] = (vaddr_t)handler; return 0; @@ -1264,4 +1326,43 @@ namespace Kernel return absolute_path; } + void Process::validate_string_access(const char* str) + { + // NOTE: we will page fault here, if str is not actually mapped + // outcome is still the same; SIGSEGV + validate_pointer_access(str, strlen(str) + 1); + } + + void Process::validate_pointer_access(const void* ptr, size_t size) + { + ASSERT(&Process::current() == this); + auto& thread = Thread::current(); + + vaddr_t vaddr = (vaddr_t)ptr; + + // NOTE: detect overflow + if (vaddr + size < vaddr) + goto unauthorized_access; + + // trying to access kernel space memory + if (vaddr + size > KERNEL_OFFSET) + goto unauthorized_access; + + if (vaddr == 0) + return; + + if (vaddr >= thread.stack_base() && vaddr + size <= thread.stack_base() + thread.stack_size()) + return; + + // FIXME: should we allow cross mapping access? + for (auto& mapped_range : m_mapped_ranges) + if (vaddr >= mapped_range.range->vaddr() && vaddr + size <= mapped_range.range->vaddr() + mapped_range.range->size()) + return; + +unauthorized_access: + dwarnln("process {}, thread {} attempted to make an invalid pointer access", pid(), Thread::current().tid()); + Debug::dump_stack_trace(); + MUST(sys_raise(SIGSEGV)); + } + } \ No newline at end of file diff --git a/kernel/kernel/Syscall.cpp b/kernel/kernel/Syscall.cpp index b8e9b370..d4114ca5 100644 --- a/kernel/kernel/Syscall.cpp +++ b/kernel/kernel/Syscall.cpp @@ -188,7 +188,7 @@ namespace Kernel ret = Process::current().sys_sync(); break; case SYS_MMAP: - ret = Process::current().sys_mmap(*(const sys_mmap_t*)arg1); + ret = Process::current().sys_mmap((const sys_mmap_t*)arg1); break; case SYS_MUNMAP: ret = Process::current().sys_munmap((void*)arg1, (size_t)arg2); diff --git a/kernel/kernel/Terminal/TTY.cpp b/kernel/kernel/Terminal/TTY.cpp index 2a7f1734..44d475e4 100644 --- a/kernel/kernel/Terminal/TTY.cpp +++ b/kernel/kernel/Terminal/TTY.cpp @@ -3,6 +3,7 @@ #include #include #include +#include #include #include #include @@ -49,11 +50,12 @@ namespace Kernel Process::create_kernel( [](void*) { - int fd = MUST(Process::current().sys_open("/dev/input0"sv, O_RDONLY)); + auto inode = MUST(VirtualFileSystem::get().file_from_absolute_path({ 0, 0, 0, 0 }, "/dev/input0"sv, O_RDONLY)).inode; while (true) { Input::KeyEvent event; - ASSERT(MUST(Process::current().sys_read(fd, &event, sizeof(event))) == sizeof(event)); + size_t read = MUST(inode->read(0, &event, sizeof(event))); + ASSERT(read == sizeof(event)); TTY::current()->on_key_event(event); } }, nullptr From 09c1aa44d8719d8423c22a0c66e67f609b7d0b41 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 27 Sep 2023 00:29:45 +0300 Subject: [PATCH 030/240] Kernel: Allow creationg of empty processes and manual registration You can now create kernel processes without any threads, add the needed threads and only then register the process and its threads to the scheduler. --- kernel/include/kernel/Process.h | 3 ++- kernel/kernel/Process.cpp | 20 +++++++++++++------- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index e53c2e1c..532e9613 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -38,11 +38,13 @@ namespace Kernel }; public: + static Process* create_kernel(); static Process* create_kernel(entry_t, void*); static BAN::ErrorOr create_userspace(const Credentials&, BAN::StringView); ~Process(); void cleanup_function(); + void register_to_scheduler(); void exit(int status, int signal); static void for_each_process(const BAN::Function& callback); @@ -138,7 +140,6 @@ namespace Kernel private: Process(const Credentials&, pid_t pid, pid_t parent, pid_t sid, pid_t pgrp); static Process* create_process(const Credentials&, pid_t parent, pid_t sid = 0, pid_t pgrp = 0); - static void register_process(Process*); // Load an elf file to virtual address space of the current page table static BAN::ErrorOr> load_elf_for_exec(const Credentials&, BAN::StringView file_path, const BAN::String& cwd); diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index 35474a7c..64334ffb 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -78,22 +78,29 @@ namespace Kernel return process; } - void Process::register_process(Process* process) + void Process::register_to_scheduler() { s_process_lock.lock(); - MUST(s_processes.push_back(process)); + MUST(s_processes.push_back(this)); s_process_lock.unlock(); - for (auto* thread : process->m_threads) + for (auto* thread : m_threads) MUST(Scheduler::get().add_thread(thread)); } + Process* Process::create_kernel() + { + auto* process = create_process({ 0, 0, 0, 0 }, 0); + MUST(process->m_working_directory.push_back('/')); + return process; + } + Process* Process::create_kernel(entry_t entry, void* data) { auto* process = create_process({ 0, 0, 0, 0 }, 0); MUST(process->m_working_directory.push_back('/')); auto* thread = MUST(Thread::create_kernel(entry, data, process)); process->add_thread(thread); - register_process(process); + process->register_to_scheduler(); return process; } @@ -146,7 +153,7 @@ namespace Kernel auto* thread = MUST(Thread::create_userspace(process)); process->add_thread(thread); - register_process(process); + process->register_to_scheduler(); return process; } @@ -353,8 +360,7 @@ namespace Kernel // FIXME: this should be able to fail Thread* thread = MUST(Thread::current().clone(forked, rsp, rip)); forked->add_thread(thread); - - register_process(forked); + forked->register_to_scheduler(); return forked->pid(); } From b924c8566917cf571a55caab6cba8da07f7d3ce9 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 27 Sep 2023 00:32:13 +0300 Subject: [PATCH 031/240] Kernel: DiskCache now requires sync to be called from kernel thread This disables the scenario where user interrupts sync operation possibly leaving the syncing in invalid state. --- kernel/include/kernel/Storage/DiskCache.h | 1 + kernel/kernel/Storage/DiskCache.cpp | 54 +++++++++++++++-------- kernel/kernel/Storage/StorageDevice.cpp | 2 +- 3 files changed, 38 insertions(+), 19 deletions(-) diff --git a/kernel/include/kernel/Storage/DiskCache.h b/kernel/include/kernel/Storage/DiskCache.h index 342a855a..99b88ce4 100644 --- a/kernel/include/kernel/Storage/DiskCache.h +++ b/kernel/include/kernel/Storage/DiskCache.h @@ -36,6 +36,7 @@ namespace Kernel const size_t m_sector_size; StorageDevice& m_device; BAN::Vector m_cache; + BAN::Array m_sync_cache; }; } \ No newline at end of file diff --git a/kernel/kernel/Storage/DiskCache.cpp b/kernel/kernel/Storage/DiskCache.cpp index 9307709e..3ec008e0 100644 --- a/kernel/kernel/Storage/DiskCache.cpp +++ b/kernel/kernel/Storage/DiskCache.cpp @@ -118,30 +118,48 @@ namespace Kernel BAN::ErrorOr DiskCache::sync() { - BAN::Vector sector_buffer; - TRY(sector_buffer.resize(m_sector_size)); - - PageTable& page_table = PageTable::current(); - LockGuard page_table_locker(page_table); - ASSERT(page_table.is_page_free(0)); + ASSERT(&PageTable::current() == &PageTable::kernel()); + auto& page_table = PageTable::kernel(); for (auto& cache : m_cache) { - for (int i = 0; cache.dirty_mask; i++) + if (cache.dirty_mask == 0) + continue; + { - if (!(cache.dirty_mask & (1 << i))) - continue; + LockGuard _(page_table); + ASSERT(page_table.is_page_free(0)); - { - CriticalScope _; - page_table.map_page_at(cache.paddr, 0, PageTable::Flags::Present); - memcpy(sector_buffer.data(), (void*)(i * m_sector_size), m_sector_size); - page_table.unmap_page(0); - } - - TRY(m_device.write_sectors_impl(cache.first_sector + i, 1, sector_buffer.data())); - cache.dirty_mask &= ~(1 << i); + page_table.map_page_at(cache.paddr, 0, PageTable::Flags::Present); + memcpy(m_sync_cache.data(), (void*)0, PAGE_SIZE); + page_table.unmap_page(0); } + + uint8_t sector_start = 0; + uint8_t sector_count = 0; + + while (sector_start + sector_count <= PAGE_SIZE / m_sector_size) + { + if (cache.dirty_mask & (1 << (sector_start + sector_count))) + sector_count++; + else if (sector_count == 0) + sector_start++; + else + { + dprintln("syncing {}->{}", cache.first_sector + sector_start, cache.first_sector + sector_start + sector_count); + TRY(m_device.write_sectors_impl(cache.first_sector + sector_start, sector_count, m_sync_cache.data() + sector_start * m_sector_size)); + sector_start += sector_count + 1; + sector_count = 0; + } + } + + if (sector_count > 0) + { + dprintln("syncing {}->{}", cache.first_sector + sector_start, cache.first_sector + sector_start + sector_count); + TRY(m_device.write_sectors_impl(cache.first_sector + sector_start, sector_count, m_sync_cache.data() + sector_start * m_sector_size)); + } + + cache.dirty_mask = 0; } return {}; diff --git a/kernel/kernel/Storage/StorageDevice.cpp b/kernel/kernel/Storage/StorageDevice.cpp index 93070eab..a545b7be 100644 --- a/kernel/kernel/Storage/StorageDevice.cpp +++ b/kernel/kernel/Storage/StorageDevice.cpp @@ -260,7 +260,7 @@ namespace Kernel { LockGuard _(m_lock); ASSERT(!m_disk_cache.has_value()); - m_disk_cache = DiskCache(sector_size(), *this); + m_disk_cache.emplace(sector_size(), *this); } BAN::ErrorOr StorageDevice::sync_disk_cache() From 05e57801e7cdd221362cf7903a64a2f70569e90b Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 27 Sep 2023 00:34:00 +0300 Subject: [PATCH 032/240] Kernel: SYS_SYNC now schedules sync to happen soon You can pass non-zero argument to the syscall to block until the sync has finished. --- kernel/include/kernel/FS/DevFS/FileSystem.h | 7 +++ kernel/include/kernel/Process.h | 2 +- kernel/kernel/FS/DevFS/FileSystem.cpp | 62 +++++++++++++++++++++ kernel/kernel/Process.cpp | 18 +----- kernel/kernel/Syscall.cpp | 2 +- 5 files changed, 74 insertions(+), 17 deletions(-) diff --git a/kernel/include/kernel/FS/DevFS/FileSystem.h b/kernel/include/kernel/FS/DevFS/FileSystem.h index ae10e2c7..4006bc98 100644 --- a/kernel/include/kernel/FS/DevFS/FileSystem.h +++ b/kernel/include/kernel/FS/DevFS/FileSystem.h @@ -2,6 +2,7 @@ #include #include +#include namespace Kernel { @@ -19,6 +20,8 @@ namespace Kernel dev_t get_next_dev(); + void initiate_sync(bool should_block); + private: DevFileSystem(size_t size) : RamFileSystem(size) @@ -26,6 +29,10 @@ namespace Kernel private: SpinLock m_device_lock; + + Semaphore m_sync_done; + Semaphore m_sync_semaphore; + volatile bool m_should_sync { false }; }; } \ No newline at end of file diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index 532e9613..62e6de54 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -109,7 +109,7 @@ namespace Kernel BAN::ErrorOr sys_fstatat(int fd, const char* path, struct stat* buf, int flag); BAN::ErrorOr sys_stat(const char* path, struct stat* buf, int flag); - BAN::ErrorOr sys_sync(); + BAN::ErrorOr sys_sync(bool should_block); BAN::ErrorOr mount(BAN::StringView source, BAN::StringView target); diff --git a/kernel/kernel/FS/DevFS/FileSystem.cpp b/kernel/kernel/FS/DevFS/FileSystem.cpp index cb9b8199..db4d64ac 100644 --- a/kernel/kernel/FS/DevFS/FileSystem.cpp +++ b/kernel/kernel/FS/DevFS/FileSystem.cpp @@ -5,6 +5,7 @@ #include #include #include +#include #include namespace Kernel @@ -53,6 +54,67 @@ namespace Kernel } }, nullptr ); + + auto* sync_process = Process::create_kernel(); + + sync_process->add_thread(MUST(Thread::create_kernel( + [](void*) + { + // NOTE: we lock the device lock here and unlock + // it only while semaphore is blocking + s_instance->m_device_lock.lock(); + + while (true) + { + while (!s_instance->m_should_sync) + { + s_instance->m_device_lock.unlock(); + s_instance->m_sync_semaphore.block(); + s_instance->m_device_lock.lock(); + } + + s_instance->for_each_inode( + [](BAN::RefPtr inode) + { + if (inode->is_device()) + if (((Device*)inode.ptr())->is_storage_device()) + if (auto ret = ((StorageDevice*)inode.ptr())->sync_disk_cache(); ret.is_error()) + dwarnln("disk sync: {}", ret.error()); + return BAN::Iteration::Continue; + } + ); + s_instance->m_should_sync = false; + s_instance->m_sync_done.unblock(); + } + }, nullptr, sync_process + ))); + + sync_process->add_thread(MUST(Kernel::Thread::create_kernel( + [](void*) + { + while (true) + { + SystemTimer::get().sleep(10000); + + LockGuard _(s_instance->m_device_lock); + s_instance->m_should_sync = true; + s_instance->m_sync_semaphore.unblock(); + } + }, nullptr, sync_process + ))); + + sync_process->register_to_scheduler(); + } + + void DevFileSystem::initiate_sync(bool should_block) + { + { + LockGuard _(m_device_lock); + m_should_sync = true; + m_sync_semaphore.unblock(); + } + if (should_block) + m_sync_done.block(); } void DevFileSystem::add_device(BAN::StringView path, BAN::RefPtr device) diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index 64334ffb..47149c5b 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -767,22 +767,10 @@ namespace Kernel return 0; } - BAN::ErrorOr Process::sys_sync() + BAN::ErrorOr Process::sys_sync(bool should_block) { - BAN::ErrorOr ret = 0; - DevFileSystem::get().for_each_device( - [&](Device* device) - { - if (device->is_storage_device()) - { - auto success = ((StorageDevice*)device)->sync_disk_cache(); - if (success.is_error()) - ret = success.release_error(); - } - return BAN::Iteration::Continue; - } - ); - return ret; + DevFileSystem::get().initiate_sync(should_block); + return 0; } BAN::ErrorOr Process::sys_read_dir_entries(int fd, DirectoryEntryList* list, size_t list_size) diff --git a/kernel/kernel/Syscall.cpp b/kernel/kernel/Syscall.cpp index d4114ca5..f48f0ee5 100644 --- a/kernel/kernel/Syscall.cpp +++ b/kernel/kernel/Syscall.cpp @@ -185,7 +185,7 @@ namespace Kernel ret = Process::current().sys_stat((const char*)arg1, (struct stat*)arg2, (int)arg3); break; case SYS_SYNC: - ret = Process::current().sys_sync(); + ret = Process::current().sys_sync((bool)arg1); break; case SYS_MMAP: ret = Process::current().sys_mmap((const sys_mmap_t*)arg1); From 6cb8bda6e19805dc5ddfd09cf1429a42bbcb31d6 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 27 Sep 2023 00:35:36 +0300 Subject: [PATCH 033/240] LibC: add syncsync() to unistd.h This is my own WELL NAMED (:D) function that takes a paramemeter to make the sync operation synchronous. --- libc/include/unistd.h | 1 + libc/unistd.cpp | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/libc/include/unistd.h b/libc/include/unistd.h index 8d47566e..374033f8 100644 --- a/libc/include/unistd.h +++ b/libc/include/unistd.h @@ -196,6 +196,7 @@ void swab(const void* __restrict src, void* __restrict dest, ssize_t nbytes); int symlink(const char* path1, const char* path2); int symlinkat(const char* path1, int fd, const char* path2); void sync(void); +void syncsync(int should_block); long sysconf(int name); pid_t tcgetpgrp(int fildes); int tcsetpgrp(int fildes, pid_t pgid_id); diff --git a/libc/unistd.cpp b/libc/unistd.cpp index c6eec388..b334b4d4 100644 --- a/libc/unistd.cpp +++ b/libc/unistd.cpp @@ -202,7 +202,12 @@ int chdir(const char* path) void sync(void) { - syscall(SYS_SYNC); + syscall(SYS_SYNC, false); +} + +void syncsync(int should_block) +{ + syscall(SYS_SYNC, should_block); } pid_t getpid(void) From ec2baeb276a2209e4e8dd51e0be552d9285ad8b5 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 27 Sep 2023 00:37:23 +0300 Subject: [PATCH 034/240] Sync: Add some argument parsing to sync(1) You can specify --block to make the program wait until sync is complete. --- userspace/sync/main.cpp | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/userspace/sync/main.cpp b/userspace/sync/main.cpp index 964b808f..2aa438bd 100644 --- a/userspace/sync/main.cpp +++ b/userspace/sync/main.cpp @@ -1,6 +1,29 @@ +#include +#include #include -int main() +void usage(int ret, char* cmd) { - sync(); + FILE* fout = (ret == 0) ? stdout : stderr; + fprintf(fout, "usage: %s [OPTION]...\n", cmd); + fprintf(fout, "Tells the kernel to start a disk sync as soon as possible\n"); + fprintf(fout, " -b, --block return only after sync is complete\n"); + fprintf(fout, " -h, --help show this message and exit\n"); + exit(ret); +} + +int main(int argc, char** argv) +{ + bool block = false; + for (int i = 1; i < argc; i++) + { + if (strcmp(argv[i], "-b") == 0 || strcmp(argv[i], "--block") == 0) + block = true; + else if (strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "--help") == 0) + usage(0, argv[0]); + else + usage(1, argv[0]); + } + syncsync(block); + return 0; } From 6e1825d6b47fe3f7decd01cf9f7a7beaaa81f5e3 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 27 Sep 2023 00:49:53 +0300 Subject: [PATCH 035/240] Kernel: Add missing TRY() to font loading --- kernel/kernel/Font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/kernel/Font.cpp b/kernel/kernel/Font.cpp index d7c210bc..93750a84 100644 --- a/kernel/kernel/Font.cpp +++ b/kernel/kernel/Font.cpp @@ -43,7 +43,7 @@ namespace Kernel BAN::Vector file_data; TRY(file_data.resize(inode->size())); - inode->read(0, file_data.data(), file_data.size()); + TRY(inode->read(0, file_data.data(), file_data.size())); if (file_data.size() < 4) return BAN::Error::from_error_code(ErrorCode::Font_FileTooSmall); From f9b347f9d9a736ae36155006a2b0ec8e73689828 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 27 Sep 2023 13:49:01 +0300 Subject: [PATCH 036/240] BuildSystem: Rework calling qemu I change always manually the serial/graphical. When running cmake you can define variable QEMU_ACCEL that will be used as accelerator. Also ninja has the following targets for running qemu 1. qemu: Run graphical qemu environment 2. qemu-nographic: Run qemu without graphical screen. You should select 'serial only' from grub menu. 3. qemu-debug: Run qemu without accelerator and interrupt debugger. --- CMakeLists.txt | 14 ++++++++++++-- PreLoad.cmake | 1 + README.md | 6 ++++-- qemu.sh | 1 - 4 files changed, 17 insertions(+), 5 deletions(-) create mode 100644 PreLoad.cmake diff --git a/CMakeLists.txt b/CMakeLists.txt index f178e01c..5da27514 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,6 +20,10 @@ if(NOT EXISTS ${CMAKE_CXX_COMPILER}) set(CMAKE_CXX_COMPILER g++) endif() +if(DEFINED QEMU_ACCEL) + set(QEMU_ACCEL -accel ${QEMU_ACCEL}) +endif() + add_compile_options(-mno-sse -mno-sse2) add_compile_definitions(__enable_sse=0) @@ -90,13 +94,19 @@ add_custom_target(check-fs ) add_custom_target(qemu - COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" ${CMAKE_SOURCE_DIR}/qemu.sh -accel kvm + COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" ${CMAKE_SOURCE_DIR}/qemu.sh -serial stdio ${QEMU_ACCEL} + DEPENDS image + USES_TERMINAL +) + +add_custom_target(qemu-nographic + COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" ${CMAKE_SOURCE_DIR}/qemu.sh -nographic ${QEMU_ACCEL} DEPENDS image USES_TERMINAL ) add_custom_target(qemu-debug - COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" ${CMAKE_SOURCE_DIR}/qemu.sh -d int -no-reboot + COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" ${CMAKE_SOURCE_DIR}/qemu.sh -serial stdio -d int -no-reboot DEPENDS image USES_TERMINAL ) diff --git a/PreLoad.cmake b/PreLoad.cmake new file mode 100644 index 00000000..94a06cf8 --- /dev/null +++ b/PreLoad.cmake @@ -0,0 +1 @@ +set(CMAKE_GENERATOR "Ninja" CACHE INTERNAL "" FORCE) diff --git a/README.md b/README.md index e5da495f..438df7e3 100644 --- a/README.md +++ b/README.md @@ -14,18 +14,20 @@ Each major component and library has its own subdirectory (kernel, userspace, li There does not exist a complete list of needed packages for building. From the top of my head I can say that *cmake*, *ninja*, *make*, *grub*, *rsync* and emulator (*qemu* or *bochs*) are needed. +You can and *should* pass cmake variable QEMU_ACCEL set to proper accelerator to cmake commands. For example on Linux this means adding -DQEMU_ACCEL=kvm to the end of all cmake commands. + Create the build directory and cofigure cmake ```sh mkdir build cd build -cmake -G Ninja .. +cmake .. ``` To build the toolchain for this os. You can run the following command. > ***NOTE:*** The following step has to be done only once. This might take a long time since we are compiling binutils and gcc. ```sh ninja toolchain -cmake -G Ninja --fresh .. # We need to reconfigure cmake to use the new compiler +cmake --fresh .. # We need to reconfigure cmake to use the new compiler ninja libstdc++ ``` diff --git a/qemu.sh b/qemu.sh index 17aa3791..00b38fba 100755 --- a/qemu.sh +++ b/qemu.sh @@ -5,5 +5,4 @@ qemu-system-$BANAN_ARCH \ -m 128 \ -smp 2 \ -drive format=raw,media=disk,file=${DISK_IMAGE_PATH} \ - -serial stdio \ $@ \ From feafc57b635d9388e295a00f8165258616878ad4 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 27 Sep 2023 14:12:21 +0300 Subject: [PATCH 037/240] Kernel: Disable DiskCache sync messages --- kernel/kernel/Storage/DiskCache.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/kernel/kernel/Storage/DiskCache.cpp b/kernel/kernel/Storage/DiskCache.cpp index 3ec008e0..afcc5675 100644 --- a/kernel/kernel/Storage/DiskCache.cpp +++ b/kernel/kernel/Storage/DiskCache.cpp @@ -5,6 +5,8 @@ #include #include +#define DEBUG_SYNC 0 + namespace Kernel { @@ -146,7 +148,7 @@ namespace Kernel sector_start++; else { - dprintln("syncing {}->{}", cache.first_sector + sector_start, cache.first_sector + sector_start + sector_count); + dprintln_if(DEBUG_SYNC, "syncing {}->{}", cache.first_sector + sector_start, cache.first_sector + sector_start + sector_count); TRY(m_device.write_sectors_impl(cache.first_sector + sector_start, sector_count, m_sync_cache.data() + sector_start * m_sector_size)); sector_start += sector_count + 1; sector_count = 0; @@ -155,7 +157,7 @@ namespace Kernel if (sector_count > 0) { - dprintln("syncing {}->{}", cache.first_sector + sector_start, cache.first_sector + sector_start + sector_count); + dprintln_if(DEBUG_SYNC, "syncing {}->{}", cache.first_sector + sector_start, cache.first_sector + sector_start + sector_count); TRY(m_device.write_sectors_impl(cache.first_sector + sector_start, sector_count, m_sync_cache.data() + sector_start * m_sector_size)); } From 8d5369fafe48c3ab7baa80e7fdcec157455e4422 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 27 Sep 2023 15:44:05 +0300 Subject: [PATCH 038/240] Kernel: Add some functionality to disable TTY input/output Userspace programs can call tty_ctrl() to disable/enable tty from handling input and displaying output. This API is probably going to change in the future to ioctl calls but I'm not sure how ioctl is used and what functionality should it have. I decided to create whole new function and syscall for now. Next I will expose framebuffer in /dev/fb0 and then I can start work on graphical environment! :D --- kernel/include/kernel/Process.h | 2 ++ kernel/include/kernel/Terminal/Serial.h | 2 +- kernel/include/kernel/Terminal/TTY.h | 13 ++++++- kernel/include/kernel/Terminal/VirtualTTY.h | 2 +- kernel/kernel/Process.cpp | 13 +++++++ kernel/kernel/Syscall.cpp | 3 ++ kernel/kernel/Terminal/Serial.cpp | 2 +- kernel/kernel/Terminal/TTY.cpp | 39 +++++++++++++++++++++ kernel/kernel/Terminal/VirtualTTY.cpp | 2 +- libc/CMakeLists.txt | 1 + libc/include/sys/banan-os.h | 25 +++++++++++++ libc/include/sys/syscall.h | 1 + libc/sys/banan-os.cpp | 8 +++++ 13 files changed, 108 insertions(+), 5 deletions(-) create mode 100644 libc/include/sys/banan-os.h create mode 100644 libc/sys/banan-os.cpp diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index 62e6de54..f91cd54f 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -118,6 +118,8 @@ namespace Kernel BAN::ErrorOr sys_mmap(const sys_mmap_t*); BAN::ErrorOr sys_munmap(void* addr, size_t len); + BAN::ErrorOr sys_tty_ctrl(int fildes, int command, int flags); + BAN::ErrorOr sys_signal(int, void (*)(int)); BAN::ErrorOr sys_raise(int signal); static BAN::ErrorOr sys_kill(pid_t pid, int signal); diff --git a/kernel/include/kernel/Terminal/Serial.h b/kernel/include/kernel/Terminal/Serial.h index 41cb7dd0..b53310aa 100644 --- a/kernel/include/kernel/Terminal/Serial.h +++ b/kernel/include/kernel/Terminal/Serial.h @@ -41,7 +41,7 @@ namespace Kernel virtual uint32_t width() const override; virtual uint32_t height() const override; - virtual void putchar(uint8_t) override; + virtual void putchar_impl(uint8_t) override; virtual void update() override; diff --git a/kernel/include/kernel/Terminal/TTY.h b/kernel/include/kernel/Terminal/TTY.h index f98268c6..0cb81bef 100644 --- a/kernel/include/kernel/Terminal/TTY.h +++ b/kernel/include/kernel/Terminal/TTY.h @@ -21,6 +21,8 @@ namespace Kernel void set_foreground_pgrp(pid_t pgrp) { m_foreground_pgrp = pgrp; } pid_t foreground_pgrp() const { return m_foreground_pgrp; } + BAN::ErrorOr tty_ctrl(int command, int flags); + // for kprint static void putchar_current(uint8_t ch); static bool is_initialized(); @@ -35,7 +37,8 @@ namespace Kernel virtual uint32_t height() const = 0; virtual uint32_t width() const = 0; - virtual void putchar(uint8_t ch) = 0; + void putchar(uint8_t ch); + virtual void putchar_impl(uint8_t ch) = 0; bool has_data() const; @@ -62,6 +65,14 @@ namespace Kernel private: pid_t m_foreground_pgrp { 0 }; + struct tty_ctrl_t + { + bool draw_graphics { true }; + bool receive_input { true }; + Semaphore semaphore; + }; + tty_ctrl_t m_tty_ctrl; + struct Buffer { BAN::Array buffer; diff --git a/kernel/include/kernel/Terminal/VirtualTTY.h b/kernel/include/kernel/Terminal/VirtualTTY.h index ac9879ee..3f3fdbf4 100644 --- a/kernel/include/kernel/Terminal/VirtualTTY.h +++ b/kernel/include/kernel/Terminal/VirtualTTY.h @@ -21,7 +21,7 @@ namespace Kernel virtual uint32_t height() const override { return m_height; } virtual uint32_t width() const override { return m_width; } - virtual void putchar(uint8_t ch) override; + virtual void putchar_impl(uint8_t ch) override; protected: virtual BAN::StringView name() const override { return m_name; } diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index 47149c5b..76c6a333 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -883,6 +883,19 @@ namespace Kernel return 0; } + BAN::ErrorOr Process::sys_tty_ctrl(int fildes, int command, int flags) + { + LockGuard _(m_lock); + + auto inode = TRY(m_open_file_descriptors.inode_of(fildes)); + if (!inode->is_tty()) + return BAN::Error::from_errno(ENOTTY); + + TRY(((TTY*)inode.ptr())->tty_ctrl(command, flags)); + + return 0; + } + BAN::ErrorOr Process::sys_termid(char* buffer) { LockGuard _(m_lock); diff --git a/kernel/kernel/Syscall.cpp b/kernel/kernel/Syscall.cpp index f48f0ee5..68bcd575 100644 --- a/kernel/kernel/Syscall.cpp +++ b/kernel/kernel/Syscall.cpp @@ -193,6 +193,9 @@ namespace Kernel case SYS_MUNMAP: ret = Process::current().sys_munmap((void*)arg1, (size_t)arg2); break; + case SYS_TTY_CTRL: + ret = Process::current().sys_tty_ctrl((int)arg1, (int)arg2, (int)arg3); + break; default: dwarnln("Unknown syscall {}", syscall); break; diff --git a/kernel/kernel/Terminal/Serial.cpp b/kernel/kernel/Terminal/Serial.cpp index fd2109a7..ec71c97b 100644 --- a/kernel/kernel/Terminal/Serial.cpp +++ b/kernel/kernel/Terminal/Serial.cpp @@ -286,7 +286,7 @@ namespace Kernel return m_serial.height(); } - void SerialTTY::putchar(uint8_t ch) + void SerialTTY::putchar_impl(uint8_t ch) { m_serial.putchar(ch); } diff --git a/kernel/kernel/Terminal/TTY.cpp b/kernel/kernel/Terminal/TTY.cpp index 44d475e4..e2c50884 100644 --- a/kernel/kernel/Terminal/TTY.cpp +++ b/kernel/kernel/Terminal/TTY.cpp @@ -10,6 +10,7 @@ #include #include +#include #include namespace Kernel @@ -42,6 +43,35 @@ namespace Kernel MUST(((RamSymlinkInode*)inode.ptr())->set_link_target(name())); } + BAN::ErrorOr TTY::tty_ctrl(int command, int flags) + { + if (flags & ~(TTY_FLAG_ENABLE_INPUT | TTY_FLAG_ENABLE_OUTPUT)) + return BAN::Error::from_errno(EINVAL); + + switch (command) + { + case TTY_CMD_SET: + if ((flags & TTY_FLAG_ENABLE_INPUT) && !m_tty_ctrl.receive_input) + { + m_tty_ctrl.receive_input = true; + m_tty_ctrl.semaphore.unblock(); + } + if (flags & TTY_FLAG_ENABLE_OUTPUT) + m_tty_ctrl.draw_graphics = true; + break; + case TTY_CMD_UNSET: + if ((flags & TTY_FLAG_ENABLE_INPUT) && m_tty_ctrl.receive_input) + m_tty_ctrl.receive_input = false; + if (flags & TTY_FLAG_ENABLE_OUTPUT) + m_tty_ctrl.draw_graphics = false; + break; + default: + return BAN::Error::from_errno(EINVAL); + } + + return {}; + } + void TTY::initialize_devices() { static bool initialized = false; @@ -53,6 +83,9 @@ namespace Kernel auto inode = MUST(VirtualFileSystem::get().file_from_absolute_path({ 0, 0, 0, 0 }, "/dev/input0"sv, O_RDONLY)).inode; while (true) { + while (!TTY::current()->m_tty_ctrl.receive_input) + TTY::current()->m_tty_ctrl.semaphore.block(); + Input::KeyEvent event; size_t read = MUST(inode->read(0, &event, sizeof(event))); ASSERT(read == sizeof(event)); @@ -251,6 +284,12 @@ namespace Kernel } } + void TTY::putchar(uint8_t ch) + { + if (m_tty_ctrl.draw_graphics) + putchar_impl(ch); + } + BAN::ErrorOr TTY::read_impl(off_t, void* buffer, size_t count) { LockGuard _(m_lock); diff --git a/kernel/kernel/Terminal/VirtualTTY.cpp b/kernel/kernel/Terminal/VirtualTTY.cpp index d8896c54..a5fe142b 100644 --- a/kernel/kernel/Terminal/VirtualTTY.cpp +++ b/kernel/kernel/Terminal/VirtualTTY.cpp @@ -304,7 +304,7 @@ namespace Kernel m_terminal_driver->putchar_at(codepoint, x, y, m_foreground, m_background); } - void VirtualTTY::putchar(uint8_t ch) + void VirtualTTY::putchar_impl(uint8_t ch) { ASSERT(m_lock.is_locked()); diff --git a/libc/CMakeLists.txt b/libc/CMakeLists.txt index 48f3f628..76c4f766 100644 --- a/libc/CMakeLists.txt +++ b/libc/CMakeLists.txt @@ -14,6 +14,7 @@ set(LIBC_SOURCES stdio.cpp stdlib.cpp string.cpp + sys/banan-os.cpp sys/mman.cpp sys/stat.cpp sys/wait.cpp diff --git a/libc/include/sys/banan-os.h b/libc/include/sys/banan-os.h new file mode 100644 index 00000000..9db8b93c --- /dev/null +++ b/libc/include/sys/banan-os.h @@ -0,0 +1,25 @@ +#ifndef _SYS_BANAN_OS_H +#define _SYS_BANAN_OS_H 1 + +#include + +__BEGIN_DECLS + +#define TTY_CMD_SET 0x01 +#define TTY_CMD_UNSET 0x02 + +#define TTY_FLAG_ENABLE_OUTPUT 1 +#define TTY_FLAG_ENABLE_INPUT 2 + +/* +fildes: refers to valid tty device +command: one of TTY_CMD_* definitions +flags: bitwise or of TTY_FLAG_* definitions + +return value: 0 on success, -1 on failure and errno set to the error +*/ +int tty_ctrl(int fildes, int command, int flags); + +__END_DECLS + +#endif diff --git a/libc/include/sys/syscall.h b/libc/include/sys/syscall.h index dd8052e2..a0f97ea1 100644 --- a/libc/include/sys/syscall.h +++ b/libc/include/sys/syscall.h @@ -53,6 +53,7 @@ __BEGIN_DECLS #define SYS_SYNC 50 #define SYS_MMAP 51 #define SYS_MUNMAP 52 +#define SYS_TTY_CTRL 53 __END_DECLS diff --git a/libc/sys/banan-os.cpp b/libc/sys/banan-os.cpp new file mode 100644 index 00000000..cc471928 --- /dev/null +++ b/libc/sys/banan-os.cpp @@ -0,0 +1,8 @@ +#include +#include +#include + +int tty_ctrl(int fildes, int command, int flags) +{ + return syscall(SYS_TTY_CTRL, fildes, command, flags); +} From 27adb9486bd4a13c992e08b38cc3a0b9ed69a3a1 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 27 Sep 2023 22:33:38 +0300 Subject: [PATCH 039/240] BAN: Update Endiannes API Add functions to swap endiannes or convert host to big/little endian This code should be very compiler friendly and should be optimized to single bswap instruction on x86. --- BAN/include/BAN/Endianness.h | 67 +++++++++++++++++++++++++++--------- 1 file changed, 51 insertions(+), 16 deletions(-) diff --git a/BAN/include/BAN/Endianness.h b/BAN/include/BAN/Endianness.h index a28d2b49..0a39be7e 100644 --- a/BAN/include/BAN/Endianness.h +++ b/BAN/include/BAN/Endianness.h @@ -7,20 +7,62 @@ namespace BAN { + template + constexpr T swap_endianness(T value) + { + if constexpr(sizeof(T) == 1) + return value; + if constexpr(sizeof(T) == 2) + return (((value >> 8) & 0xFF) << 0) + | (((value >> 0) & 0xFF) << 8); + if constexpr(sizeof(T) == 4) + return (((value >> 24) & 0xFF) << 0) + | (((value >> 16) & 0xFF) << 8) + | (((value >> 8) & 0xFF) << 16) + | (((value >> 0) & 0xFF) << 24); + if constexpr(sizeof(T) == 8) + return (((value >> 56) & 0xFF) << 0) + | (((value >> 48) & 0xFF) << 8) + | (((value >> 40) & 0xFF) << 16) + | (((value >> 32) & 0xFF) << 24) + | (((value >> 24) & 0xFF) << 32) + | (((value >> 16) & 0xFF) << 40) + | (((value >> 8) & 0xFF) << 48) + | (((value >> 0) & 0xFF) << 56); + T result { 0 }; + for (size_t i = 0; i < sizeof(T); i++) + result |= ((value >> (i * 8)) & 0xFF) << ((sizeof(T) - i - 1) * 8); + return result; + } + + template + constexpr T host_to_little_endian(T value) + { +#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ + return value; +#else + return swap_endianness(value); +#endif + } + + template + constexpr T host_to_big_endian(T value) + { +#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ + return value; +#else + return swap_endianness(value); +#endif + } + template struct LittleEndian { constexpr operator T() const { -#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ - return raw; -#else - T result { 0 }; - for (size_t i = 0; i < sizeof(T); i++) - result = (result << 8) | ((raw >> (sizeof(T) - i - 1) * 8) & 0xFF); - return result; -#endif + return host_to_little_endian(raw); } + private: T raw; }; @@ -29,14 +71,7 @@ namespace BAN { constexpr operator T() const { -#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ - return raw; -#else - T result { 0 }; - for (size_t i = 0; i < sizeof(T); i++) - result = (result << 8) | ((raw >> (i * 8)) & 0xFF); - return result; -#endif + return host_to_big_endian(raw); } private: T raw; From c84b66d078bb03f51736c250ad042eaa15d49b8d Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 28 Sep 2023 10:28:49 +0300 Subject: [PATCH 040/240] Shell: String leading and trailing whitespace from commands This fixes a bug of inserting empty argument if command had trailing whitespace --- userspace/Shell/main.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/userspace/Shell/main.cpp b/userspace/Shell/main.cpp index 3a59bcb8..b4036763 100644 --- a/userspace/Shell/main.cpp +++ b/userspace/Shell/main.cpp @@ -159,6 +159,21 @@ BAN::Optional parse_dollar(BAN::StringView command, size_t& i) return "$"sv; } +BAN::StringView strip_whitespace(BAN::StringView sv) +{ + size_t leading = 0; + while (leading < sv.size() && isspace(sv[leading])) + leading++; + sv = sv.substring(leading); + + size_t trailing = 0; + while (trailing < sv.size() && isspace(sv[sv.size() - trailing - 1])) + trailing++; + sv = sv.substring(0, sv.size() - trailing); + + return sv; +} + BAN::Vector> parse_command(BAN::StringView command_view) { enum class State @@ -168,6 +183,8 @@ BAN::Vector> parse_command(BAN::StringView command_view DoubleQuote, }; + command_view = strip_whitespace(command_view); + BAN::Vector> result; BAN::Vector command_args; From 1cd12b5f1636e9175c6162bc6f11f83a3e977cff Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 28 Sep 2023 11:42:57 +0300 Subject: [PATCH 041/240] LibC: Implement length modifiers to printf --- libc/printf_impl.cpp | 173 +++++++++++++++++++++++++++++++++++++++---- 1 file changed, 157 insertions(+), 16 deletions(-) diff --git a/libc/printf_impl.cpp b/libc/printf_impl.cpp index 367edc80..76791dab 100644 --- a/libc/printf_impl.cpp +++ b/libc/printf_impl.cpp @@ -15,6 +15,19 @@ written++; \ } while (false) +enum class length_t +{ + none, + hh, + h, + l, + ll, + j, + z, + t, + L, +}; + struct format_options_t { bool alternate_form { false }; @@ -24,6 +37,7 @@ struct format_options_t bool show_plus_sign { false }; int width { -1 }; int percision { -1 }; + length_t length { length_t::none }; }; template @@ -308,45 +322,157 @@ extern "C" int printf_impl(const char* format, va_list arguments, int (*putc_fun options.percision = percision; } - // TODO: Lenght modifier + // PARSE LENGTH + if (*format == 'h') + { + if (*(format + 1) == 'h') + { + format++; + options.length = length_t::hh; + } + else + options.length = length_t::h; + } + else if (*format == 'l') + { + if (*(format + 1) == 'l') + { + format++; + options.length = length_t::ll; + } + else + options.length = length_t::l; + } + else if (*format == 'j') + options.length = length_t::j; + else if (*format == 'z') + options.length = length_t::z; + else if (*format == 't') + options.length = length_t::t; + else if (*format == 'L') + options.length = length_t::L; + else + format--; + format++; char conversion[128]; const char* string = nullptr; int length = -1; +#define PARSE_INT_CASE(length, type) \ + case length_t::length: integer_to_string(conversion, va_arg(arguments, type), BASE_, UPPER_, options); break + +#define PARSE_INT_CASE_CAST(length, cast, type) \ + case length_t::length: integer_to_string(conversion, va_arg(arguments, type), BASE_, UPPER_, options); break + +#define PARSE_INT_DEFAULT(type) \ + default: integer_to_string(conversion, va_arg(arguments, type), BASE_, UPPER_, options); break + switch (*format) { case 'd': case 'i': { - int value = va_arg(arguments, int); - integer_to_string(conversion, value, 10, false, options); + switch (options.length) + { +#define BASE_ 10 +#define UPPER_ false + PARSE_INT_CASE_CAST(hh, signed char, int); + PARSE_INT_CASE_CAST(h, short, int); + PARSE_INT_CASE(l, long); + PARSE_INT_CASE(ll, long long); + PARSE_INT_CASE(j, intmax_t); + PARSE_INT_CASE(z, ssize_t); + PARSE_INT_CASE(t, ptrdiff_t); + PARSE_INT_DEFAULT(int); +#undef BASE_ +#undef UPPER_ + } string = conversion; format++; break; } case 'o': { - unsigned int value = va_arg(arguments, unsigned int); - integer_to_string(conversion, value, 8, false, options); + switch (options.length) + { +#define BASE_ 8 +#define UPPER_ false + PARSE_INT_CASE_CAST(hh, unsigned char, unsigned int); + PARSE_INT_CASE_CAST(h, unsigned short, unsigned int); + PARSE_INT_CASE(l, unsigned long); + PARSE_INT_CASE(ll, unsigned long long); + PARSE_INT_CASE(j, uintmax_t); + PARSE_INT_CASE(z, size_t); + PARSE_INT_CASE(t, uintptr_t); + PARSE_INT_DEFAULT(unsigned int); +#undef BASE_ +#undef UPPER_ + } string = conversion; format++; break; } case 'u': { - unsigned int value = va_arg(arguments, unsigned int); - integer_to_string(conversion, value, 10, false, options); + switch (options.length) + { +#define BASE_ 10 +#define UPPER_ false + PARSE_INT_CASE_CAST(hh, unsigned char, unsigned int); + PARSE_INT_CASE_CAST(h, unsigned short, unsigned int); + PARSE_INT_CASE(l, unsigned long); + PARSE_INT_CASE(ll, unsigned long long); + PARSE_INT_CASE(j, uintmax_t); + PARSE_INT_CASE(z, size_t); + PARSE_INT_CASE(t, uintptr_t); + PARSE_INT_DEFAULT(unsigned int); +#undef BASE_ +#undef UPPER_ + } string = conversion; format++; break; } case 'x': + { + switch (options.length) + { +#define BASE_ 16 +#define UPPER_ false + PARSE_INT_CASE_CAST(hh, unsigned char, unsigned int); + PARSE_INT_CASE_CAST(h, unsigned short, unsigned int); + PARSE_INT_CASE(l, unsigned long); + PARSE_INT_CASE(ll, unsigned long long); + PARSE_INT_CASE(j, uintmax_t); + PARSE_INT_CASE(z, size_t); + PARSE_INT_CASE(t, uintptr_t); + PARSE_INT_DEFAULT(unsigned int); +#undef BASE_ +#undef UPPER_ + } + string = conversion; + format++; + break; + } case 'X': { - unsigned int value = va_arg(arguments, unsigned int); - integer_to_string(conversion, value, 16, *format == 'X', options); + switch (options.length) + { +#define BASE_ 16 +#define UPPER_ true + PARSE_INT_CASE_CAST(hh, unsigned char, unsigned int); + PARSE_INT_CASE_CAST(h, unsigned short, unsigned int); + PARSE_INT_CASE(l, unsigned long); + PARSE_INT_CASE(ll, unsigned long long); + PARSE_INT_CASE(j, uintmax_t); + PARSE_INT_CASE(z, size_t); + PARSE_INT_CASE(t, uintptr_t); + PARSE_INT_DEFAULT(unsigned int); +#undef BASE_ +#undef UPPER_ + } string = conversion; format++; break; @@ -355,8 +481,11 @@ extern "C" int printf_impl(const char* format, va_list arguments, int (*putc_fun case 'e': case 'E': { - double value = va_arg(arguments, double); - floating_point_to_exponent_string(conversion, value, *format == 'E', options); + switch (options.length) + { + case length_t::L: floating_point_to_exponent_string (conversion, va_arg(arguments, long double), *format == 'E', options); break; + default: floating_point_to_exponent_string (conversion, va_arg(arguments, double), *format == 'E', options); break; + } string = conversion; format++; break; @@ -364,13 +493,15 @@ extern "C" int printf_impl(const char* format, va_list arguments, int (*putc_fun case 'f': case 'F': { - double value = va_arg(arguments, double); - floating_point_to_string(conversion, value, *format == 'F', options); + switch (options.length) + { + case length_t::L: floating_point_to_string (conversion, va_arg(arguments, long double), *format == 'F', options); break; + default: floating_point_to_string (conversion, va_arg(arguments, double), *format == 'F', options); break; + } string = conversion; format++; break; } -#endif case 'g': case 'G': // TODO @@ -379,6 +510,7 @@ extern "C" int printf_impl(const char* format, va_list arguments, int (*putc_fun case 'A': // TODO break; +#endif case 'c': { conversion[0] = va_arg(arguments, int); @@ -416,8 +548,17 @@ extern "C" int printf_impl(const char* format, va_list arguments, int (*putc_fun } case 'n': { - int* target = va_arg(arguments, int*); - *target = written; + switch (options.length) + { + case length_t::hh: *va_arg(arguments, signed char*) = written; break; + case length_t::h: *va_arg(arguments, short*) = written; break; + case length_t::l: *va_arg(arguments, long*) = written; break; + case length_t::ll: *va_arg(arguments, long long*) = written; break; + case length_t::j: *va_arg(arguments, intmax_t*) = written; break; + case length_t::z: *va_arg(arguments, ssize_t*) = written; break; + case length_t::t: *va_arg(arguments, ptrdiff_t*) = written; break; + default: *va_arg(arguments, int*) = written; break; + } format++; break; } From 85b1252b9e411c0f240a55ea3c5bf58542b81670 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 28 Sep 2023 11:49:31 +0300 Subject: [PATCH 042/240] Userspace: Use printf length modifiers when printing --- userspace/dd/main.cpp | 4 ++-- userspace/stat/main.cpp | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/userspace/dd/main.cpp b/userspace/dd/main.cpp index cbc8d036..0b574b21 100644 --- a/userspace/dd/main.cpp +++ b/userspace/dd/main.cpp @@ -26,11 +26,11 @@ int parse_int(const char* val) return result; } -void print_time(uint64_t start_ns, uint64_t end_ns, int transfered) +void print_time(uint64_t start_ns, uint64_t end_ns, size_t transfered) { static bool first = true; uint64_t duration_ns = end_ns - start_ns; - printf("%s%d bytes copied, %d.%09d s\e[K\n", (first ? "" : "\e[F"), transfered, (int)(duration_ns / 1'000'000'000), (int)(duration_ns % 1'000'000'000)); + printf("%s%zu bytes copied, %d.%09d s\e[K\n", (first ? "" : "\e[F"), transfered, (int)(duration_ns / 1'000'000'000), (int)(duration_ns % 1'000'000'000)); first = false; } diff --git a/userspace/stat/main.cpp b/userspace/stat/main.cpp index 7d72f81e..d26fc341 100644 --- a/userspace/stat/main.cpp +++ b/userspace/stat/main.cpp @@ -65,9 +65,9 @@ int main(int argc, char** argv) access[10] = '\0'; printf(" File: %s\n", argv[i]); - printf(" Size: %-15d Blocks: %-10d IO Block: %-6d %s\n", (int)st.st_size, (int)st.st_blocks, (int)st.st_blksize, type); - printf("Device: %d,%-5d Inode: %-11d Links: %-5d Device type: %d,%d\n", (int)major(st.st_dev), (int)minor(st.st_dev), (int)st.st_ino, (int)st.st_nlink, (int)major(st.st_rdev), (int)minor(st.st_rdev)); - printf("Access: (%04o/%s) Uid: %5d Gid: %5d\n", (int)(st.st_mode & S_IRWXMASK), access, (int)st.st_uid, (int)st.st_gid); + printf(" Size: %-15ld Blocks: %-10ld IO Block: %-6ld %s\n", st.st_size, st.st_blocks, st.st_blksize, type); + printf("Device: %lu,%-5lu Inode: %-11lu Links: %-5lu Device type: %lu,%lu\n", major(st.st_dev), minor(st.st_dev), st.st_ino, st.st_nlink, major(st.st_rdev), minor(st.st_rdev)); + printf("Access: (%04o/%s) Uid: %5d Gid: %5d\n", st.st_mode & S_IRWXMASK, access, st.st_uid, st.st_gid); printf("Access: "); print_timestamp(st.st_atim); printf("\n"); printf("Modify: "); print_timestamp(st.st_mtim); printf("\n"); printf("Change: "); print_timestamp(st.st_ctim); printf("\n"); From f7097398caaac52756d5cf400b125fb9a319e782 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 28 Sep 2023 11:54:12 +0300 Subject: [PATCH 043/240] Kernel: Make tty overload correct has_data() function This allows snake game to work again :) --- kernel/include/kernel/Terminal/TTY.h | 2 +- kernel/kernel/Terminal/TTY.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/include/kernel/Terminal/TTY.h b/kernel/include/kernel/Terminal/TTY.h index 0cb81bef..f6761a8e 100644 --- a/kernel/include/kernel/Terminal/TTY.h +++ b/kernel/include/kernel/Terminal/TTY.h @@ -40,7 +40,7 @@ namespace Kernel void putchar(uint8_t ch); virtual void putchar_impl(uint8_t ch) = 0; - bool has_data() const; + virtual bool has_data_impl() const override; protected: TTY(mode_t mode, uid_t uid, gid_t gid) diff --git a/kernel/kernel/Terminal/TTY.cpp b/kernel/kernel/Terminal/TTY.cpp index e2c50884..cdd9f3f6 100644 --- a/kernel/kernel/Terminal/TTY.cpp +++ b/kernel/kernel/Terminal/TTY.cpp @@ -328,7 +328,7 @@ namespace Kernel return count; } - bool TTY::has_data() const + bool TTY::has_data_impl() const { LockGuard _(m_lock); return m_output.flush; From 0b11d765769517b32a97052332a09840e340b553 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 28 Sep 2023 12:06:17 +0300 Subject: [PATCH 044/240] LibC: Add errno for unknown error --- libc/include/errno.h | 2 ++ libc/include/sys/banan-os.h | 3 +++ libc/string.cpp | 2 ++ 3 files changed, 7 insertions(+) diff --git a/libc/include/errno.h b/libc/include/errno.h index a2408110..2dcc3e57 100644 --- a/libc/include/errno.h +++ b/libc/include/errno.h @@ -91,6 +91,8 @@ __BEGIN_DECLS #define ENOTBLK 82 #define EEXISTS 83 +#define EUNKNOWN 0xFF + #define errno __errno extern int __errno; diff --git a/libc/include/sys/banan-os.h b/libc/include/sys/banan-os.h index 9db8b93c..cb2a41cf 100644 --- a/libc/include/sys/banan-os.h +++ b/libc/include/sys/banan-os.h @@ -11,6 +11,9 @@ __BEGIN_DECLS #define TTY_FLAG_ENABLE_OUTPUT 1 #define TTY_FLAG_ENABLE_INPUT 2 +#define POWER_SHUTDOWN 0 +#define POWER_REBOOT 1 + /* fildes: refers to valid tty device command: one of TTY_CMD_* definitions diff --git a/libc/string.cpp b/libc/string.cpp index f51d3110..3f4ba105 100644 --- a/libc/string.cpp +++ b/libc/string.cpp @@ -173,6 +173,7 @@ const char* strerrorname_np(int error) case EXDEV: return "EXDEV"; case EEXISTS: return "EEXISTS"; case ENOTBLK: return "ENOTBLK"; + case EUNKNOWN: return "EUNKNOWN"; } errno = EINVAL; @@ -267,6 +268,7 @@ const char* strerrordesc_np(int error) case EXDEV: return "Cross-device link."; case EEXISTS: return "File exists"; case ENOTBLK: return "Block device required"; + case EUNKNOWN: return "Unknown error"; } errno = EINVAL; From fcdc922343700200ce56ae891aafeaa78f89857c Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 28 Sep 2023 12:30:27 +0300 Subject: [PATCH 045/240] Kernel: Enter ACPI mode with lai --- kernel/include/kernel/InterruptController.h | 5 +++++ kernel/include/kernel/Thread.h | 2 +- kernel/kernel/InterruptController.cpp | 23 ++++++++++++++++++--- kernel/kernel/kernel.cpp | 2 ++ 4 files changed, 28 insertions(+), 4 deletions(-) diff --git a/kernel/include/kernel/InterruptController.h b/kernel/include/kernel/InterruptController.h index 40514f0d..b2a160ec 100644 --- a/kernel/include/kernel/InterruptController.h +++ b/kernel/include/kernel/InterruptController.h @@ -16,6 +16,11 @@ public: static void initialize(bool force_pic); static InterruptController& get(); + + void enter_acpi_mode(); + +private: + bool m_using_apic { false }; }; bool interrupts_enabled(); \ No newline at end of file diff --git a/kernel/include/kernel/Thread.h b/kernel/include/kernel/Thread.h index c4115098..c6a0b5b4 100644 --- a/kernel/include/kernel/Thread.h +++ b/kernel/include/kernel/Thread.h @@ -94,7 +94,7 @@ namespace Kernel void validate_stack() const; private: - static constexpr size_t m_kernel_stack_size = PAGE_SIZE * 1; + static constexpr size_t m_kernel_stack_size = PAGE_SIZE * 4; static constexpr size_t m_userspace_stack_size = PAGE_SIZE * 2; static constexpr size_t m_interrupt_stack_size = PAGE_SIZE * 2; BAN::UniqPtr m_interrupt_stack; diff --git a/kernel/kernel/InterruptController.cpp b/kernel/kernel/InterruptController.cpp index 7dc1206a..45fd79a4 100644 --- a/kernel/kernel/InterruptController.cpp +++ b/kernel/kernel/InterruptController.cpp @@ -3,6 +3,8 @@ #include #include +#include + static InterruptController* s_instance = nullptr; InterruptController& InterruptController::get() @@ -19,11 +21,26 @@ void InterruptController::initialize(bool force_pic) PIC::remap(); if (!force_pic) + { s_instance = APIC::create(); - if (s_instance) - return; + if (s_instance) + { + s_instance->m_using_apic = true; + return; + } + } + dprintln("Using PIC instead of APIC"); s_instance = PIC::create(); + ASSERT(s_instance); + + s_instance->m_using_apic = false; +} + +void InterruptController::enter_acpi_mode() +{ + if (lai_enable_acpi(m_using_apic ? 1 : 0) != 0) + dwarnln("could not enter acpi mode"); } bool interrupts_enabled() @@ -31,4 +48,4 @@ bool interrupts_enabled() uintptr_t flags; asm volatile("pushf; pop %0" : "=r"(flags) :: "memory"); return flags & (1 << 9); -} \ No newline at end of file +} diff --git a/kernel/kernel/kernel.cpp b/kernel/kernel/kernel.cpp index da9e3965..633d0ecc 100644 --- a/kernel/kernel/kernel.cpp +++ b/kernel/kernel/kernel.cpp @@ -161,6 +161,8 @@ static void init2(void*) dprintln("Scheduler started"); + InterruptController::get().enter_acpi_mode(); + auto console = MUST(DevFileSystem::get().root_inode()->find_inode(cmdline.console)); ASSERT(console->is_tty()); ((TTY*)console.ptr())->set_as_current(); From 79851394b3eae2a7f7c8a0e636debb8fd4aa7459 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 28 Sep 2023 12:36:47 +0300 Subject: [PATCH 046/240] Kernel/LibC/Userspace: Add SYS_POWEROFF + cli tool You can now shutdown/reboot banan-os with the poweroff cli tool. Reboot doesn't seem to work on qemu. --- kernel/include/kernel/Process.h | 2 ++ kernel/kernel/Process.cpp | 30 ++++++++++++++++++++++++ kernel/kernel/Syscall.cpp | 3 +++ libc/include/sys/banan-os.h | 5 ++-- libc/include/sys/syscall.h | 1 + libc/sys/banan-os.cpp | 5 ++++ userspace/CMakeLists.txt | 1 + userspace/poweroff/CMakeLists.txt | 17 ++++++++++++++ userspace/poweroff/main.cpp | 38 +++++++++++++++++++++++++++++++ 9 files changed, 100 insertions(+), 2 deletions(-) create mode 100644 userspace/poweroff/CMakeLists.txt create mode 100644 userspace/poweroff/main.cpp diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index f91cd54f..1323906b 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -111,6 +111,8 @@ namespace Kernel BAN::ErrorOr sys_sync(bool should_block); + BAN::ErrorOr sys_poweroff(int command); + BAN::ErrorOr mount(BAN::StringView source, BAN::StringView target); BAN::ErrorOr sys_read_dir_entries(int fd, DirectoryEntryList* buffer, size_t buffer_size); diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index 76c6a333..1c196819 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -14,8 +14,11 @@ #include #include +#include + #include #include +#include #include #include @@ -773,6 +776,33 @@ namespace Kernel return 0; } + BAN::ErrorOr Process::sys_poweroff(int command) + { + if (command != POWEROFF_REBOOT && command != POWEROFF_SHUTDOWN) + return BAN::Error::from_errno(EINVAL); + + // FIXME: gracefully kill all processes + + DevFileSystem::get().initiate_sync(true); + + lai_api_error_t error; + switch (command) + { + case POWEROFF_REBOOT: + error = lai_acpi_reset(); + break; + case POWEROFF_SHUTDOWN: + error = lai_enter_sleep(5); + break; + default: + ASSERT_NOT_REACHED(); + } + + // If we reach here, there was an error + dprintln("{}", lai_api_error_to_string(error)); + return BAN::Error::from_errno(EUNKNOWN); + } + BAN::ErrorOr Process::sys_read_dir_entries(int fd, DirectoryEntryList* list, size_t list_size) { LockGuard _(m_lock); diff --git a/kernel/kernel/Syscall.cpp b/kernel/kernel/Syscall.cpp index 68bcd575..93f4c010 100644 --- a/kernel/kernel/Syscall.cpp +++ b/kernel/kernel/Syscall.cpp @@ -196,6 +196,9 @@ namespace Kernel case SYS_TTY_CTRL: ret = Process::current().sys_tty_ctrl((int)arg1, (int)arg2, (int)arg3); break; + case SYS_POWEROFF: + ret = Process::current().sys_poweroff((int)arg1); + break; default: dwarnln("Unknown syscall {}", syscall); break; diff --git a/libc/include/sys/banan-os.h b/libc/include/sys/banan-os.h index cb2a41cf..08fe6a38 100644 --- a/libc/include/sys/banan-os.h +++ b/libc/include/sys/banan-os.h @@ -11,8 +11,8 @@ __BEGIN_DECLS #define TTY_FLAG_ENABLE_OUTPUT 1 #define TTY_FLAG_ENABLE_INPUT 2 -#define POWER_SHUTDOWN 0 -#define POWER_REBOOT 1 +#define POWEROFF_SHUTDOWN 0 +#define POWEROFF_REBOOT 1 /* fildes: refers to valid tty device @@ -22,6 +22,7 @@ flags: bitwise or of TTY_FLAG_* definitions return value: 0 on success, -1 on failure and errno set to the error */ int tty_ctrl(int fildes, int command, int flags); +int poweroff(int command); __END_DECLS diff --git a/libc/include/sys/syscall.h b/libc/include/sys/syscall.h index a0f97ea1..797f8475 100644 --- a/libc/include/sys/syscall.h +++ b/libc/include/sys/syscall.h @@ -54,6 +54,7 @@ __BEGIN_DECLS #define SYS_MMAP 51 #define SYS_MUNMAP 52 #define SYS_TTY_CTRL 53 +#define SYS_POWEROFF 54 __END_DECLS diff --git a/libc/sys/banan-os.cpp b/libc/sys/banan-os.cpp index cc471928..d37d7060 100644 --- a/libc/sys/banan-os.cpp +++ b/libc/sys/banan-os.cpp @@ -6,3 +6,8 @@ int tty_ctrl(int fildes, int command, int flags) { return syscall(SYS_TTY_CTRL, fildes, command, flags); } + +int poweroff(int command) +{ + return syscall(SYS_POWEROFF, command); +} diff --git a/userspace/CMakeLists.txt b/userspace/CMakeLists.txt index eddccd65..a704ceb1 100644 --- a/userspace/CMakeLists.txt +++ b/userspace/CMakeLists.txt @@ -9,6 +9,7 @@ set(USERSPACE_PROJECTS id init ls + poweroff Shell snake stat diff --git a/userspace/poweroff/CMakeLists.txt b/userspace/poweroff/CMakeLists.txt new file mode 100644 index 00000000..a9e65e2d --- /dev/null +++ b/userspace/poweroff/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 3.26) + +project(poweroff CXX) + +set(SOURCES + main.cpp +) + +add_executable(poweroff ${SOURCES}) +target_compile_options(poweroff PUBLIC -O2 -g) +target_link_libraries(poweroff PUBLIC libc) + +add_custom_target(poweroff-install + COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/poweroff ${BANAN_BIN}/ + DEPENDS poweroff + USES_TERMINAL +) diff --git a/userspace/poweroff/main.cpp b/userspace/poweroff/main.cpp new file mode 100644 index 00000000..797281bf --- /dev/null +++ b/userspace/poweroff/main.cpp @@ -0,0 +1,38 @@ +#include +#include +#include +#include + +void usage(int ret, char* arg0) +{ + FILE* fout = (ret == 0) ? stdout : stderr; + fprintf(fout, "usage: %s [OPTIONS]...\n"); + fprintf(fout, " -s, --shutdown Shutdown the system (default)\n"); + fprintf(fout, " -r, --reboot Reboot the system\n"); + fprintf(fout, " -h, --help Show this message\n"); + exit(ret); +} + +int main(int argc, char** argv) +{ + int operation = POWEROFF_SHUTDOWN; + for (int i = 1; i < argc; i++) + { + if (strcmp(argv[i], "-s") == 0 || strcmp(argv[i], "--shutdown") == 0) + operation = POWEROFF_SHUTDOWN; + else if (strcmp(argv[i], "-r") == 0 || strcmp(argv[i], "--reboot") == 0) + operation = POWEROFF_REBOOT; + else if (strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "--help") == 0) + usage(0, argv[0]); + else + usage(1, argv[0]); + } + + if (poweroff(operation) == -1) + { + perror("poweroff"); + return 1; + } + + return 0; +} From 547eabb403cf2f587b44548d567031ffd00d4499 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 28 Sep 2023 12:48:52 +0300 Subject: [PATCH 047/240] Kernel: Reboot will now always succeed If acpi reset fails, we forcefully trigger a triple fault to restart the system. --- kernel/arch/x86_64/IDT.cpp | 10 ++++++++++ kernel/include/kernel/IDT.h | 1 + kernel/kernel/Process.cpp | 15 ++++++++++++++- 3 files changed, 25 insertions(+), 1 deletion(-) diff --git a/kernel/arch/x86_64/IDT.cpp b/kernel/arch/x86_64/IDT.cpp index 23f739c0..b7392734 100644 --- a/kernel/arch/x86_64/IDT.cpp +++ b/kernel/arch/x86_64/IDT.cpp @@ -424,4 +424,14 @@ namespace IDT flush_idt(); } + [[noreturn]] void force_triple_fault() + { + // load 0 sized IDT and trigger an interrupt to force triple fault + asm volatile("cli"); + s_idtr.size = 0; + flush_idt(); + asm volatile("int $0x00"); + ASSERT_NOT_REACHED(); + } + } \ No newline at end of file diff --git a/kernel/include/kernel/IDT.h b/kernel/include/kernel/IDT.h index f69fb91a..679442e4 100644 --- a/kernel/include/kernel/IDT.h +++ b/kernel/include/kernel/IDT.h @@ -9,5 +9,6 @@ namespace IDT void initialize(); void register_irq_handler(uint8_t irq, void(*f)()); + [[noreturn]] void force_triple_fault(); } \ No newline at end of file diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index 1c196819..509ccdc0 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -3,6 +3,7 @@ #include #include #include +#include #include #include #include @@ -776,6 +777,18 @@ namespace Kernel return 0; } + [[noreturn]] static void reset_system() + { + lai_acpi_reset(); + + // acpi reset did not work + + dwarnln("Could not reset with ACPI, crashing the cpu"); + + // reset through triple fault + IDT::force_triple_fault(); + } + BAN::ErrorOr Process::sys_poweroff(int command) { if (command != POWEROFF_REBOOT && command != POWEROFF_SHUTDOWN) @@ -789,7 +802,7 @@ namespace Kernel switch (command) { case POWEROFF_REBOOT: - error = lai_acpi_reset(); + reset_system(); break; case POWEROFF_SHUTDOWN: error = lai_enter_sleep(5); From a66c3bdae5190aed2cd82ff1458f208fd7c11118 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 28 Sep 2023 13:59:49 +0300 Subject: [PATCH 048/240] Kernel: Remove duplicate code in VirtualRange::create_to_vaddr_range --- kernel/kernel/Memory/VirtualRange.cpp | 31 +++------------------------ 1 file changed, 3 insertions(+), 28 deletions(-) diff --git a/kernel/kernel/Memory/VirtualRange.cpp b/kernel/kernel/Memory/VirtualRange.cpp index 2125b4c3..f9b106ce 100644 --- a/kernel/kernel/Memory/VirtualRange.cpp +++ b/kernel/kernel/Memory/VirtualRange.cpp @@ -56,39 +56,14 @@ namespace Kernel ASSERT(vaddr_start < vaddr_end); ASSERT(vaddr_end - vaddr_start + 1 >= size / PAGE_SIZE); - VirtualRange* result_ptr = new VirtualRange(page_table); - if (result_ptr == nullptr) - return BAN::Error::from_errno(ENOMEM); - auto result = BAN::UniqPtr::adopt(result_ptr); - - result->m_kmalloc = false; - result->m_vaddr = 0; - result->m_size = size; - result->m_flags = flags; - vaddr_t vaddr = page_table.reserve_free_contiguous_pages(size / PAGE_SIZE, vaddr_start, vaddr_end); if (vaddr == 0) return BAN::Error::from_errno(ENOMEM); ASSERT(vaddr + size <= vaddr_end); - result->m_vaddr = vaddr; - size_t needed_pages = size / PAGE_SIZE; - - for (size_t i = 0; i < needed_pages; i++) - { - paddr_t paddr = Heap::get().take_free_page(); - if (paddr == 0) - { - for (size_t j = 0; j < i; j++) - Heap::get().release_page(page_table.physical_address_of(vaddr + j * PAGE_SIZE)); - page_table.unmap_range(vaddr, size); - result->m_vaddr = 0; - return BAN::Error::from_errno(ENOMEM); - } - page_table.map_page_at(paddr, vaddr + i * PAGE_SIZE, flags); - } - - return result; + LockGuard _(page_table); + page_table.unmap_range(vaddr, size); // We have to unmap here to allow reservation in create_to_vaddr() + return create_to_vaddr(page_table, vaddr, size, flags); } BAN::ErrorOr> VirtualRange::create_kmalloc(size_t size) From 49d941ad65b4b4b23bed807eb6d5e0904822e3f8 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 28 Sep 2023 21:03:43 +0300 Subject: [PATCH 049/240] LibC: Fix a bug in malloc You could not allocate with size equal to one of the pool sizes. --- libc/malloc.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libc/malloc.cpp b/libc/malloc.cpp index 5c95caff..c1ac4eb6 100644 --- a/libc/malloc.cpp +++ b/libc/malloc.cpp @@ -123,7 +123,7 @@ void* malloc(size_t size) // find the first pool with size atleast size size_t first_usable_pool = 0; - while (s_malloc_pools[first_usable_pool].size < size) + while (s_malloc_pools[first_usable_pool].size - sizeof(malloc_node_t) < size) first_usable_pool++; // first_usable_pool = ceil(log(size/s_malloc_smallest_pool, s_malloc_pool_size_mult)) @@ -140,6 +140,7 @@ void* malloc(size_t size) continue; if (!allocate_pool(i)) break; + // NOTE: always works since we just created the pool return allocate_from_pool(i, size); } From b51d2f5295caa1d17e50bdf6a969d2e05f8a0501 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 28 Sep 2023 21:07:14 +0300 Subject: [PATCH 050/240] Kernel: mmap regions are now demand paged mmap will not actually take any memory unless you use the given memory. --- kernel/arch/x86_64/IDT.cpp | 46 ++++++++++++++ kernel/include/kernel/Memory/VirtualRange.h | 16 +++-- kernel/include/kernel/Process.h | 5 ++ kernel/include/kernel/Thread.h | 1 + kernel/kernel/Memory/VirtualRange.cpp | 68 ++++++++++++++++----- kernel/kernel/Process.cpp | 38 +++++++++--- kernel/kernel/Thread.cpp | 4 +- 7 files changed, 149 insertions(+), 29 deletions(-) diff --git a/kernel/arch/x86_64/IDT.cpp b/kernel/arch/x86_64/IDT.cpp index b7392734..4e6fef64 100644 --- a/kernel/arch/x86_64/IDT.cpp +++ b/kernel/arch/x86_64/IDT.cpp @@ -101,6 +101,29 @@ namespace IDT UnkownException0x1F, }; + struct PageFaultError + { + union + { + uint32_t raw; + struct + { + uint32_t present : 1; + uint32_t write : 1; + uint32_t userspace : 1; + uint32_t reserved_write : 1; + uint32_t instruction : 1; + uint32_t protection_key : 1; + uint32_t shadow_stack : 1; + uint32_t reserved1 : 8; + uint32_t sgx_violation : 1; + uint32_t reserved2 : 16; + }; + }; + + }; + static_assert(sizeof(PageFaultError) == 4); + static const char* isr_exceptions[] = { "Division Error", @@ -148,6 +171,29 @@ namespace IDT pid_t tid = Kernel::Scheduler::current_tid(); pid_t pid = tid ? Kernel::Process::current().pid() : 0; + if (pid && isr == ISR::PageFault) + { + PageFaultError page_fault_error; + page_fault_error.raw = error; + + // Try demand paging on non present pages + if (!page_fault_error.present) + { + asm volatile("sti"); + auto result = Kernel::Process::current().allocate_page_for_demand_paging(regs->cr2); + asm volatile("cli"); + + if (!result.is_error() && result.value()) + return; + + if (result.is_error()) + { + dwarnln("Demand paging: {}", result.error()); + Kernel::Thread::current().handle_signal(SIGTERM); + } + } + } + if (tid) { auto start = Kernel::Thread::current().stack_base(); diff --git a/kernel/include/kernel/Memory/VirtualRange.h b/kernel/include/kernel/Memory/VirtualRange.h index 502a9078..849fcbb7 100644 --- a/kernel/include/kernel/Memory/VirtualRange.h +++ b/kernel/include/kernel/Memory/VirtualRange.h @@ -15,9 +15,9 @@ namespace Kernel public: // Create virtual range to fixed virtual address - static BAN::ErrorOr> create_to_vaddr(PageTable&, vaddr_t, size_t, PageTable::flags_t flags); + static BAN::ErrorOr> create_to_vaddr(PageTable&, vaddr_t, size_t, PageTable::flags_t flags, bool preallocate_pages); // Create virtual range to virtual address range - static BAN::ErrorOr> create_to_vaddr_range(PageTable&, vaddr_t vaddr_start, vaddr_t vaddr_end, size_t, PageTable::flags_t flags); + static BAN::ErrorOr> create_to_vaddr_range(PageTable&, vaddr_t vaddr_start, vaddr_t vaddr_end, size_t, PageTable::flags_t flags, bool preallocate_pages); // Create virtual range in kernel memory with kmalloc static BAN::ErrorOr> create_kmalloc(size_t); ~VirtualRange(); @@ -28,15 +28,21 @@ namespace Kernel size_t size() const { return m_size; } PageTable::flags_t flags() const { return m_flags; } - void set_zero(); + bool contains(vaddr_t address) const { return vaddr() <= address && address < vaddr() + size(); } + + BAN::ErrorOr allocate_page_for_demand_paging(vaddr_t address); + void copy_from(size_t offset, const uint8_t* buffer, size_t bytes); private: - VirtualRange(PageTable&); + VirtualRange(PageTable&, bool preallocated, bool kmalloc); + + void set_zero(); private: PageTable& m_page_table; - bool m_kmalloc { false }; + const bool m_preallocated; + const bool m_kmalloc; vaddr_t m_vaddr { 0 }; size_t m_size { 0 }; PageTable::flags_t m_flags { 0 }; diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index 1323906b..5f8e980b 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -141,6 +141,11 @@ namespace Kernel bool is_userspace() const { return m_is_userspace; } const userspace_info_t& userspace_info() const { return m_userspace_info; } + // Returns error if page could not be allocated + // Returns true if the page was allocated successfully + // Return false if access was page violation (segfault) + BAN::ErrorOr allocate_page_for_demand_paging(vaddr_t addr); + private: Process(const Credentials&, pid_t pid, pid_t parent, pid_t sid, pid_t pgrp); static Process* create_process(const Credentials&, pid_t parent, pid_t sid = 0, pid_t pgrp = 0); diff --git a/kernel/include/kernel/Thread.h b/kernel/include/kernel/Thread.h index c6a0b5b4..ff6f77a3 100644 --- a/kernel/include/kernel/Thread.h +++ b/kernel/include/kernel/Thread.h @@ -70,6 +70,7 @@ namespace Kernel vaddr_t stack_base() const { return m_stack->vaddr(); } size_t stack_size() const { return m_stack->size(); } + VirtualRange& stack() { return *m_stack; } vaddr_t interrupt_stack_base() const { return m_interrupt_stack ? m_interrupt_stack->vaddr() : 0; } size_t interrupt_stack_size() const { return m_interrupt_stack ? m_interrupt_stack->size() : 0; } diff --git a/kernel/kernel/Memory/VirtualRange.cpp b/kernel/kernel/Memory/VirtualRange.cpp index f9b106ce..5bcc176b 100644 --- a/kernel/kernel/Memory/VirtualRange.cpp +++ b/kernel/kernel/Memory/VirtualRange.cpp @@ -5,26 +5,27 @@ namespace Kernel { - BAN::ErrorOr> VirtualRange::create_to_vaddr(PageTable& page_table, vaddr_t vaddr, size_t size, PageTable::flags_t flags) + BAN::ErrorOr> VirtualRange::create_to_vaddr(PageTable& page_table, vaddr_t vaddr, size_t size, PageTable::flags_t flags, bool preallocate_pages) { ASSERT(size % PAGE_SIZE == 0); ASSERT(vaddr % PAGE_SIZE == 0); ASSERT(vaddr > 0); - VirtualRange* result_ptr = new VirtualRange(page_table); + VirtualRange* result_ptr = new VirtualRange(page_table, preallocate_pages, false); if (result_ptr == nullptr) return BAN::Error::from_errno(ENOMEM); - auto result = BAN::UniqPtr::adopt(result_ptr); - result->m_kmalloc = false; + auto result = BAN::UniqPtr::adopt(result_ptr); result->m_vaddr = vaddr; result->m_size = size; result->m_flags = flags; ASSERT(page_table.reserve_range(vaddr, size)); - size_t needed_pages = size / PAGE_SIZE; + if (!preallocate_pages) + return result; + size_t needed_pages = size / PAGE_SIZE; for (size_t i = 0; i < needed_pages; i++) { paddr_t paddr = Heap::get().take_free_page(); @@ -39,10 +40,12 @@ namespace Kernel page_table.map_page_at(paddr, vaddr + i * PAGE_SIZE, flags); } + result->set_zero(); + return result; } - BAN::ErrorOr> VirtualRange::create_to_vaddr_range(PageTable& page_table, vaddr_t vaddr_start, vaddr_t vaddr_end, size_t size, PageTable::flags_t flags) + BAN::ErrorOr> VirtualRange::create_to_vaddr_range(PageTable& page_table, vaddr_t vaddr_start, vaddr_t vaddr_end, size_t size, PageTable::flags_t flags, bool preallocate_pages) { ASSERT(size % PAGE_SIZE == 0); ASSERT(vaddr_start > 0); @@ -58,20 +61,22 @@ namespace Kernel vaddr_t vaddr = page_table.reserve_free_contiguous_pages(size / PAGE_SIZE, vaddr_start, vaddr_end); if (vaddr == 0) + { + dprintln("no free {} byte area", size); return BAN::Error::from_errno(ENOMEM); + } ASSERT(vaddr + size <= vaddr_end); LockGuard _(page_table); page_table.unmap_range(vaddr, size); // We have to unmap here to allow reservation in create_to_vaddr() - return create_to_vaddr(page_table, vaddr, size, flags); + return create_to_vaddr(page_table, vaddr, size, flags, preallocate_pages); } BAN::ErrorOr> VirtualRange::create_kmalloc(size_t size) { - VirtualRange* result = new VirtualRange(PageTable::kernel()); + VirtualRange* result = new VirtualRange(PageTable::kernel(), false, true); ASSERT(result); - result->m_kmalloc = true; result->m_size = size; result->m_flags = PageTable::Flags::ReadWrite | PageTable::Flags::Present; result->m_vaddr = (vaddr_t)kmalloc(size); @@ -81,11 +86,15 @@ namespace Kernel return BAN::Error::from_errno(ENOMEM); } + result->set_zero(); + return BAN::UniqPtr::adopt(result); } - VirtualRange::VirtualRange(PageTable& page_table) + VirtualRange::VirtualRange(PageTable& page_table, bool preallocated, bool kmalloc) : m_page_table(page_table) + , m_preallocated(preallocated) + , m_kmalloc(kmalloc) { } VirtualRange::~VirtualRange() @@ -98,7 +107,11 @@ namespace Kernel else { for (size_t offset = 0; offset < size(); offset += PAGE_SIZE) - Heap::get().release_page(m_page_table.physical_address_of(vaddr() + offset)); + { + paddr_t paddr = m_page_table.physical_address_of(vaddr() + offset); + if (paddr) + Heap::get().release_page(paddr); + } m_page_table.unmap_range(vaddr(), size()); } } @@ -107,12 +120,19 @@ namespace Kernel { ASSERT(&PageTable::current() == &m_page_table); - auto result = TRY(create_to_vaddr(page_table, vaddr(), size(), flags())); + auto result = TRY(create_to_vaddr(page_table, vaddr(), size(), flags(), m_preallocated)); LockGuard _(m_page_table); ASSERT(m_page_table.is_page_free(0)); for (size_t offset = 0; offset < size(); offset += PAGE_SIZE) { + if (!m_preallocated && m_page_table.physical_address_of(vaddr() + offset)) + { + paddr_t paddr = Heap::get().take_free_page(); + if (paddr == 0) + return BAN::Error::from_errno(ENOMEM); + result->m_page_table.map_page_at(paddr, vaddr() + offset, m_flags); + } m_page_table.map_page_at(result->m_page_table.physical_address_of(vaddr() + offset), 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); memcpy((void*)0, (void*)(vaddr() + offset), PAGE_SIZE); } @@ -121,11 +141,31 @@ namespace Kernel return result; } + BAN::ErrorOr VirtualRange::allocate_page_for_demand_paging(vaddr_t address) + { + ASSERT(!m_kmalloc); + ASSERT(!m_preallocated); + ASSERT(contains(address)); + ASSERT(&PageTable::current() == &m_page_table); + + vaddr_t vaddr = address & PAGE_ADDR_MASK; + ASSERT(m_page_table.physical_address_of(vaddr) == 0); + + paddr_t paddr = Heap::get().take_free_page(); + if (paddr == 0) + return BAN::Error::from_errno(ENOMEM); + + m_page_table.map_page_at(paddr, vaddr, m_flags); + memset((void*)vaddr, 0x00, PAGE_SIZE); + + return {}; + } + void VirtualRange::set_zero() { PageTable& page_table = PageTable::current(); - if (&page_table == &m_page_table) + if (m_kmalloc || &page_table == &m_page_table) { memset((void*)vaddr(), 0, size()); return; @@ -153,7 +193,7 @@ namespace Kernel PageTable& page_table = PageTable::current(); - if (&page_table == &m_page_table) + if (m_kmalloc || &page_table == &m_page_table) { memcpy((void*)(vaddr() + offset), buffer, bytes); return; diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index 509ccdc0..8776ed5d 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -136,9 +136,9 @@ namespace Kernel process->page_table(), 0x400000, KERNEL_OFFSET, needed_bytes, - PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present + PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present, + true )); - argv_range->set_zero(); uintptr_t temp = argv_range->vaddr() + sizeof(char*) * 2; argv_range->copy_from(0, (uint8_t*)&temp, sizeof(char*)); @@ -437,9 +437,9 @@ namespace Kernel page_table(), 0x400000, KERNEL_OFFSET, bytes, - PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present + PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present, + true )); - range->set_zero(); size_t data_offset = sizeof(char*) * (container.size() + 1); for (size_t i = 0; i < container.size(); i++) @@ -584,8 +584,7 @@ namespace Kernel { LockGuard _(m_lock); - auto range = MUST(VirtualRange::create_to_vaddr(page_table(), page_start * PAGE_SIZE, page_count * PAGE_SIZE, flags)); - range->set_zero(); + auto range = MUST(VirtualRange::create_to_vaddr(page_table(), page_start * PAGE_SIZE, page_count * PAGE_SIZE, flags, true)); range->copy_from(elf_program_header.p_vaddr % PAGE_SIZE, elf.data() + elf_program_header.p_offset, elf_program_header.p_filesz); MUST(m_mapped_ranges.emplace_back(false, BAN::move(range))); @@ -623,6 +622,29 @@ namespace Kernel return {}; } + BAN::ErrorOr Process::allocate_page_for_demand_paging(vaddr_t addr) + { + ASSERT(&Process::current() == this); + + LockGuard _(m_lock); + + if (Thread::current().stack().contains(addr)) + { + TRY(Thread::current().stack().allocate_page_for_demand_paging(addr)); + return true; + } + + for (auto& mapped_range : m_mapped_ranges) + { + if (!mapped_range.range->contains(addr)) + continue; + TRY(mapped_range.range->allocate_page_for_demand_paging(addr)); + return true; + } + + return false; + } + BAN::ErrorOr Process::open_file(BAN::StringView path, int flags, mode_t mode) { BAN::String absolute_path = TRY(absolute_path_of(path)); @@ -890,9 +912,9 @@ namespace Kernel page_table(), 0x400000, KERNEL_OFFSET, args->len, - PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present + PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present, + false )); - range->set_zero(); LockGuard _(m_lock); TRY(m_mapped_ranges.emplace_back(true, BAN::move(range))); diff --git a/kernel/kernel/Thread.cpp b/kernel/kernel/Thread.cpp index 927ddb4d..e0437b58 100644 --- a/kernel/kernel/Thread.cpp +++ b/kernel/kernel/Thread.cpp @@ -122,8 +122,8 @@ namespace Kernel thread->m_is_userspace = true; - thread->m_stack = TRY(VirtualRange::create_to_vaddr_range(process->page_table(), 0x300000, KERNEL_OFFSET, m_userspace_stack_size, PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present)); - thread->m_interrupt_stack = TRY(VirtualRange::create_to_vaddr_range(process->page_table(), 0x300000, KERNEL_OFFSET, m_interrupt_stack_size, PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present)); + thread->m_stack = TRY(VirtualRange::create_to_vaddr_range(process->page_table(), 0x300000, KERNEL_OFFSET, m_userspace_stack_size, PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present, true)); + thread->m_interrupt_stack = TRY(VirtualRange::create_to_vaddr_range(process->page_table(), 0x300000, KERNEL_OFFSET, m_interrupt_stack_size, PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present, true)); thread->setup_exec(); From 6cf7e01fe9f0464133b397d72777b302dde2b187 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 28 Sep 2023 21:58:24 +0300 Subject: [PATCH 051/240] Kernel: Don't map interrupt stack as userspace accessable --- kernel/kernel/Thread.cpp | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/kernel/kernel/Thread.cpp b/kernel/kernel/Thread.cpp index e0437b58..7ef49f91 100644 --- a/kernel/kernel/Thread.cpp +++ b/kernel/kernel/Thread.cpp @@ -122,8 +122,21 @@ namespace Kernel thread->m_is_userspace = true; - thread->m_stack = TRY(VirtualRange::create_to_vaddr_range(process->page_table(), 0x300000, KERNEL_OFFSET, m_userspace_stack_size, PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present, true)); - thread->m_interrupt_stack = TRY(VirtualRange::create_to_vaddr_range(process->page_table(), 0x300000, KERNEL_OFFSET, m_interrupt_stack_size, PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present, true)); + thread->m_stack = TRY(VirtualRange::create_to_vaddr_range( + process->page_table(), + 0x300000, KERNEL_OFFSET, + m_userspace_stack_size, + PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present, + true + )); + + thread->m_interrupt_stack = TRY(VirtualRange::create_to_vaddr_range( + process->page_table(), + 0x300000, KERNEL_OFFSET, + m_interrupt_stack_size, + PageTable::Flags::ReadWrite | PageTable::Flags::Present, + true + )); thread->setup_exec(); From f4049be975f5b0ad51a0f522a239d85ead3b19e1 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 29 Sep 2023 01:56:15 +0300 Subject: [PATCH 052/240] Kernel: Fix off by one error when calculating pages in range --- kernel/include/kernel/Memory/PageTable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/include/kernel/Memory/PageTable.h b/kernel/include/kernel/Memory/PageTable.h index a0f434ad..18a21bc2 100644 --- a/kernel/include/kernel/Memory/PageTable.h +++ b/kernel/include/kernel/Memory/PageTable.h @@ -75,7 +75,7 @@ namespace Kernel { size_t first_page = start / PAGE_SIZE; size_t last_page = BAN::Math::div_round_up(start + bytes, PAGE_SIZE); - return last_page - first_page + 1; + return last_page - first_page; } } From 9943edad5a26cc37cca9d27936b938d3adf86e18 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 29 Sep 2023 01:56:57 +0300 Subject: [PATCH 053/240] LibELF: Add types for native executable --- LibELF/include/LibELF/Types.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/LibELF/include/LibELF/Types.h b/LibELF/include/LibELF/Types.h index 577c52d0..cc0351d0 100644 --- a/LibELF/include/LibELF/Types.h +++ b/LibELF/include/LibELF/Types.h @@ -1,5 +1,7 @@ #pragma once +#include + #include namespace LibELF @@ -153,4 +155,35 @@ namespace LibELF Elf64Xword p_align; }; + +#if ARCH(i386) + using ElfNativeAddr = Elf32Addr; + using ElfNativeOff = Elf32Off; + using ElfNativeHalf = Elf32Half; + using ElfNativeWord = Elf32Word; + using ElfNativeSword = Elf32Sword; + using ElfNativeXword = Elf32Xword; + using ElfNativeSxword = Elf32Sxword; + using ElfNativeFileHeader = Elf32FileHeader; + using ElfNativeSectionHeader = Elf32SectionHeader; + using ElfNativeSymbol = Elf32Symbol; + using ElfNativeRelocation = Elf32Relocation; + using ElfNativeRelocationA = Elf32RelocationA; + using ElfNativeProgramHeader = Elf32ProgramHeader; +#elif ARCH(x86_64) + using ElfNativeAddr = Elf64Addr; + using ElfNativeOff = Elf64Off; + using ElfNativeHalf = Elf64Half; + using ElfNativeWord = Elf64Word; + using ElfNativeSword = Elf64Sword; + using ElfNativeXword = Elf64Xword; + using ElfNativeSxword = Elf64Sxword; + using ElfNativeFileHeader = Elf64FileHeader; + using ElfNativeSectionHeader = Elf64SectionHeader; + using ElfNativeSymbol = Elf64Symbol; + using ElfNativeRelocation = Elf64Relocation; + using ElfNativeRelocationA = Elf64RelocationA; + using ElfNativeProgramHeader = Elf64ProgramHeader; +#endif + } \ No newline at end of file From be131205543c8731cf13a0dd5ce9c0534ebb6c9a Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 29 Sep 2023 01:58:03 +0300 Subject: [PATCH 054/240] LibELF: Implement new ELF structure This structure is used for demand pagable execution. It handles all memory allocation and file reading. --- LibELF/LibELF/LoadableELF.cpp | 290 ++++++++++++++++++++++++++++ LibELF/include/LibELF/LoadableELF.h | 47 +++++ 2 files changed, 337 insertions(+) create mode 100644 LibELF/LibELF/LoadableELF.cpp create mode 100644 LibELF/include/LibELF/LoadableELF.h diff --git a/LibELF/LibELF/LoadableELF.cpp b/LibELF/LibELF/LoadableELF.cpp new file mode 100644 index 00000000..d25860bd --- /dev/null +++ b/LibELF/LibELF/LoadableELF.cpp @@ -0,0 +1,290 @@ +#include +#include +#include +#include +#include + +namespace LibELF +{ + + using namespace Kernel; + + BAN::ErrorOr> LoadableELF::load_from_inode(PageTable& page_table, BAN::RefPtr inode) + { + auto* elf_ptr = new LoadableELF(page_table, inode); + if (elf_ptr == nullptr) + return BAN::Error::from_errno(ENOMEM); + auto elf = BAN::UniqPtr::adopt(elf_ptr); + TRY(elf->initialize()); + return BAN::move(elf); + } + + LoadableELF::LoadableELF(PageTable& page_table, BAN::RefPtr inode) + : m_inode(inode) + , m_page_table(page_table) + { + } + + LoadableELF::~LoadableELF() + { + for (const auto& program_header : m_program_headers) + { + switch (program_header.p_type) + { + case PT_NULL: + continue; + case PT_LOAD: + { + vaddr_t start = program_header.p_vaddr & PAGE_ADDR_MASK; + size_t pages = range_page_count(program_header.p_vaddr, program_header.p_memsz); + for (size_t i = 0; i < pages; i++) + { + paddr_t paddr = m_page_table.physical_address_of(start + i * PAGE_SIZE); + if (paddr != 0) + Heap::get().release_page(paddr); + } + m_page_table.unmap_range(start, pages * PAGE_SIZE); + break; + } + default: + ASSERT_NOT_REACHED(); + } + } + } + + BAN::ErrorOr LoadableELF::initialize() + { + if ((size_t)m_inode->size() < sizeof(ElfNativeFileHeader)) + { + dprintln("Too small file"); + return BAN::Error::from_errno(ENOEXEC); + } + + size_t nread = TRY(m_inode->read(0, &m_file_header, sizeof(m_file_header))); + ASSERT(nread == sizeof(m_file_header)); + + if (m_file_header.e_ident[EI_MAG0] != ELFMAG0 || + m_file_header.e_ident[EI_MAG1] != ELFMAG1 || + m_file_header.e_ident[EI_MAG2] != ELFMAG2 || + m_file_header.e_ident[EI_MAG3] != ELFMAG3) + { + dprintln("Invalid magic in header"); + return BAN::Error::from_errno(ENOEXEC); + } + + if (m_file_header.e_ident[EI_DATA] != ELFDATA2LSB) + { + dprintln("Only little-endian is supported"); + return BAN::Error::from_errno(ENOEXEC); + } + + if (m_file_header.e_ident[EI_VERSION] != EV_CURRENT) + { + dprintln("Invalid version"); + return BAN::Error::from_errno(ENOEXEC); + } + +#if ARCH(i386) + if (m_file_header.e_ident[EI_CLASS] != ELFCLASS32) +#elif ARCH(x86_64) + if (m_file_header.e_ident[EI_CLASS] != ELFCLASS64) +#endif + { + dprintln("Not in native format"); + return BAN::Error::from_errno(EINVAL); + } + + if (m_file_header.e_type != ET_EXEC) + { + dprintln("Only executable files are supported"); + return BAN::Error::from_errno(EINVAL); + } + + if (m_file_header.e_version != EV_CURRENT) + { + dprintln("Unsupported version"); + return BAN::Error::from_errno(EINVAL); + } + + ASSERT(m_file_header.e_phentsize <= sizeof(ElfNativeProgramHeader)); + + TRY(m_program_headers.resize(m_file_header.e_phnum)); + for (size_t i = 0; i < m_file_header.e_phnum; i++) + { + TRY(m_inode->read(m_file_header.e_phoff + m_file_header.e_phentsize * i, &m_program_headers[i], m_file_header.e_phentsize)); + + const auto& pheader = m_program_headers[i]; + if (pheader.p_type != PT_NULL && pheader.p_type != PT_LOAD) + { + dprintln("Unsupported program header type {}", pheader.p_type); + return BAN::Error::from_errno(ENOTSUP); + } + if (pheader.p_memsz < pheader.p_filesz) + { + dprintln("Invalid program header"); + return BAN::Error::from_errno(EINVAL); + } + } + + return {}; + } + + vaddr_t LoadableELF::entry_point() const + { + return m_file_header.e_entry; + } + + bool LoadableELF::contains(vaddr_t address) const + { + for (const auto& program_header : m_program_headers) + { + switch (program_header.p_type) + { + case PT_NULL: + continue; + case PT_LOAD: + if (program_header.p_vaddr <= address && address < program_header.p_vaddr + program_header.p_memsz) + return true; + break; + default: + ASSERT_NOT_REACHED(); + } + } + return false; + } + + void LoadableELF::reserve_address_space() + { + for (const auto& program_header : m_program_headers) + { + switch (program_header.p_type) + { + case PT_NULL: + break; + case PT_LOAD: + { + vaddr_t page_vaddr = program_header.p_vaddr & PAGE_ADDR_MASK; + size_t pages = range_page_count(program_header.p_vaddr, program_header.p_memsz); + ASSERT(m_page_table.reserve_range(page_vaddr, pages * PAGE_SIZE)); + break; + } + default: + ASSERT_NOT_REACHED(); + } + } + } + + BAN::ErrorOr LoadableELF::load_page_to_memory(vaddr_t address) + { + for (const auto& program_header : m_program_headers) + { + switch (program_header.p_type) + { + case PT_NULL: + break; + case PT_LOAD: + { + if (!(program_header.p_vaddr <= address && address < program_header.p_vaddr + program_header.p_memsz)) + continue; + + PageTable::flags_t flags = PageTable::Flags::UserSupervisor | PageTable::Flags::Present; + if (program_header.p_flags & LibELF::PF_W) + flags |= PageTable::Flags::ReadWrite; + if (program_header.p_flags & LibELF::PF_X) + flags |= PageTable::Flags::Execute; + + vaddr_t vaddr = address & PAGE_ADDR_MASK; + paddr_t paddr = Heap::get().take_free_page(); + if (paddr == 0) + return BAN::Error::from_errno(ENOMEM); + + m_page_table.map_page_at(paddr, vaddr, flags); + + memset((void*)vaddr, 0x00, PAGE_SIZE); + + if (vaddr / PAGE_SIZE < BAN::Math::div_round_up(program_header.p_vaddr + program_header.p_filesz, PAGE_SIZE)) + { + size_t vaddr_offset = 0; + if (vaddr < program_header.p_vaddr) + vaddr_offset = program_header.p_vaddr - vaddr; + + size_t file_offset = 0; + if (vaddr > program_header.p_vaddr) + file_offset = vaddr - program_header.p_vaddr; + + size_t bytes = BAN::Math::min(PAGE_SIZE - vaddr_offset, program_header.p_filesz - file_offset); + TRY(m_inode->read(program_header.p_offset + file_offset, (void*)(vaddr + vaddr_offset), bytes)); + } + + return {}; + } + default: + ASSERT_NOT_REACHED(); + } + } + ASSERT_NOT_REACHED(); + } + + + BAN::ErrorOr> LoadableELF::clone(Kernel::PageTable& new_page_table) + { + auto* elf_ptr = new LoadableELF(new_page_table, m_inode); + if (elf_ptr == nullptr) + return BAN::Error::from_errno(ENOMEM); + auto elf = BAN::UniqPtr::adopt(elf_ptr); + + memcpy(&elf->m_file_header, &m_file_header, sizeof(ElfNativeFileHeader)); + + TRY(elf->m_program_headers.resize(m_program_headers.size())); + memcpy(elf->m_program_headers.data(), m_program_headers.data(), m_program_headers.size() * sizeof(ElfNativeProgramHeader)); + + elf->reserve_address_space(); + + ASSERT(&PageTable::current() == &m_page_table); + LockGuard _(m_page_table); + ASSERT(m_page_table.is_page_free(0)); + + for (const auto& program_header : m_program_headers) + { + switch (program_header.p_type) + { + case PT_NULL: + break; + case PT_LOAD: + { + PageTable::flags_t flags = PageTable::Flags::UserSupervisor | PageTable::Flags::Present; + if (program_header.p_flags & LibELF::PF_W) + flags |= PageTable::Flags::ReadWrite; + if (program_header.p_flags & LibELF::PF_X) + flags |= PageTable::Flags::Execute; + + vaddr_t start = program_header.p_vaddr & PAGE_ADDR_MASK; + size_t pages = range_page_count(program_header.p_vaddr, program_header.p_memsz); + + for (size_t i = 0; i < pages; i++) + { + if (m_page_table.physical_address_of(start + i * PAGE_SIZE) == 0) + continue; + + paddr_t paddr = Heap::get().take_free_page(); + if (paddr == 0) + return BAN::Error::from_errno(ENOMEM); + + m_page_table.map_page_at(paddr, 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); + memcpy((void*)0, (void*)(start + i * PAGE_SIZE), PAGE_SIZE); + m_page_table.unmap_page(0); + + new_page_table.map_page_at(paddr, start + i * PAGE_SIZE, flags); + } + + break; + } + default: + ASSERT_NOT_REACHED(); + } + } + + return elf; + } + +} diff --git a/LibELF/include/LibELF/LoadableELF.h b/LibELF/include/LibELF/LoadableELF.h new file mode 100644 index 00000000..a11aa863 --- /dev/null +++ b/LibELF/include/LibELF/LoadableELF.h @@ -0,0 +1,47 @@ +#pragma once + +#ifndef __is_kernel +#error "This is kernel only header" +#endif + +#include +#include + +#include +#include + +#include + +namespace LibELF +{ + + class LoadableELF + { + BAN_NON_COPYABLE(LoadableELF); + BAN_NON_MOVABLE(LoadableELF); + + public: + static BAN::ErrorOr> load_from_inode(Kernel::PageTable&, BAN::RefPtr); + ~LoadableELF(); + + Kernel::vaddr_t entry_point() const; + + bool contains(Kernel::vaddr_t address) const; + void reserve_address_space(); + + BAN::ErrorOr load_page_to_memory(Kernel::vaddr_t address); + + BAN::ErrorOr> clone(Kernel::PageTable&); + + private: + LoadableELF(Kernel::PageTable&, BAN::RefPtr); + BAN::ErrorOr initialize(); + + private: + BAN::RefPtr m_inode; + Kernel::PageTable& m_page_table; + ElfNativeFileHeader m_file_header; + BAN::Vector m_program_headers; + }; + +} \ No newline at end of file From c11e84b2487e4fe6e4170e09412b40c82681fa26 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 29 Sep 2023 02:00:10 +0300 Subject: [PATCH 055/240] Kernel: Use the new on demand ELF structure All executable files are now read from disk and paged on demand. This was a big rewrite of the old ELF library but in the end everything seems much cleaner, since all the old functionality was not actually needed for execution. I have to do some measurements, but I feel like memory usage dropped quite a bit after this change. --- kernel/CMakeLists.txt | 2 +- kernel/include/kernel/Process.h | 18 +-- kernel/kernel/Process.cpp | 193 +++++++++----------------------- 3 files changed, 61 insertions(+), 152 deletions(-) diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index 5d9700c2..18844367 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -118,7 +118,7 @@ set(LIBC_SOURCES ) set(LIBELF_SOURCES - ../LibELF/LibELF/ELF.cpp + ../LibELF/LibELF/LoadableELF.cpp ) set(KERNEL_SOURCES diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index 5f8e980b..10b33c9c 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -16,7 +16,7 @@ #include #include -namespace LibELF { class ELF; } +namespace LibELF { class LoadableELF; } namespace Kernel { @@ -150,11 +150,8 @@ namespace Kernel Process(const Credentials&, pid_t pid, pid_t parent, pid_t sid, pid_t pgrp); static Process* create_process(const Credentials&, pid_t parent, pid_t sid = 0, pid_t pgrp = 0); - // Load an elf file to virtual address space of the current page table - static BAN::ErrorOr> load_elf_for_exec(const Credentials&, BAN::StringView file_path, const BAN::String& cwd); - - // Copy an elf file from the current page table to the processes own - void load_elf_to_memory(LibELF::ELF&); + // Load elf from a file + static BAN::ErrorOr> load_elf_for_exec(const Credentials&, BAN::StringView file_path, const BAN::String& cwd, Kernel::PageTable&); int block_until_exit(); @@ -172,17 +169,12 @@ namespace Kernel int waiting { 0 }; }; - struct MappedRange - { - bool can_be_unmapped; - BAN::UniqPtr range; - }; - Credentials m_credentials; OpenFileDescriptorSet m_open_file_descriptors; - BAN::Vector m_mapped_ranges; + BAN::UniqPtr m_loadable_elf; + BAN::Vector> m_mapped_ranges; pid_t m_sid; pid_t m_pgrp; diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index 8776ed5d..3e62bc2d 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -12,8 +12,8 @@ #include #include #include -#include -#include + +#include #include @@ -110,19 +110,15 @@ namespace Kernel BAN::ErrorOr Process::create_userspace(const Credentials& credentials, BAN::StringView path) { - auto elf = TRY(load_elf_for_exec(credentials, path, "/"sv)); - auto* process = create_process(credentials, 0); MUST(process->m_working_directory.push_back('/')); - process->m_page_table = BAN::UniqPtr::adopt(MUST(PageTable::create_userspace()));; + process->m_page_table = BAN::UniqPtr::adopt(MUST(PageTable::create_userspace())); - process->load_elf_to_memory(*elf); + process->m_loadable_elf = TRY(load_elf_for_exec(credentials, path, "/"sv, process->page_table())); + process->m_loadable_elf->reserve_address_space(); process->m_is_userspace = true; - process->m_userspace_info.entry = elf->file_header_native().e_entry; - - // NOTE: we clear the elf since we don't need the memory anymore - elf.clear(); + process->m_userspace_info.entry = process->m_loadable_elf->entry_point(); char** argv = nullptr; { @@ -148,7 +144,7 @@ namespace Kernel argv_range->copy_from(sizeof(char*) * 2, (const uint8_t*)path.data(), path.size()); - MUST(process->m_mapped_ranges.emplace_back(false, BAN::move(argv_range))); + MUST(process->m_mapped_ranges.push_back(BAN::move(argv_range))); } process->m_userspace_info.argc = 1; @@ -290,7 +286,7 @@ namespace Kernel return 0; } - BAN::ErrorOr> Process::load_elf_for_exec(const Credentials& credentials, BAN::StringView file_path, const BAN::String& cwd) + BAN::ErrorOr> Process::load_elf_for_exec(const Credentials& credentials, BAN::StringView file_path, const BAN::String& cwd, PageTable& page_table) { if (file_path.empty()) return BAN::Error::from_errno(ENOENT); @@ -307,29 +303,7 @@ namespace Kernel } auto file = TRY(VirtualFileSystem::get().file_from_absolute_path(credentials, absolute_path, O_EXEC)); - - auto elf_or_error = LibELF::ELF::load_from_file(file.inode); - if (elf_or_error.is_error()) - { - if (elf_or_error.error().get_error_code() == EINVAL) - return BAN::Error::from_errno(ENOEXEC); - return elf_or_error.error(); - } - - auto elf = elf_or_error.release_value(); - if (!elf->is_native()) - { - derrorln("ELF has invalid architecture"); - return BAN::Error::from_errno(EINVAL); - } - - if (elf->file_header_native().e_type != LibELF::ET_EXEC) - { - derrorln("Not an executable"); - return BAN::Error::from_errno(ENOEXEC); - } - - return BAN::move(elf); + return TRY(LibELF::LoadableELF::load_from_inode(page_table, file.inode)); } BAN::ErrorOr Process::sys_fork(uintptr_t rsp, uintptr_t rip) @@ -344,10 +318,12 @@ namespace Kernel OpenFileDescriptorSet open_file_descriptors(m_credentials); TRY(open_file_descriptors.clone_from(m_open_file_descriptors)); - BAN::Vector mapped_ranges; + BAN::Vector> mapped_ranges; TRY(mapped_ranges.reserve(m_mapped_ranges.size())); for (auto& mapped_range : m_mapped_ranges) - MUST(mapped_ranges.emplace_back(mapped_range.can_be_unmapped, TRY(mapped_range.range->clone(*page_table)))); + MUST(mapped_ranges.push_back(TRY(mapped_range->clone(*page_table)))); + + auto loadable_elf = TRY(m_loadable_elf->clone(*page_table)); Process* forked = create_process(m_credentials, m_pid, m_sid, m_pgrp); forked->m_controlling_terminal = m_controlling_terminal; @@ -355,6 +331,7 @@ namespace Kernel forked->m_page_table = BAN::move(page_table); forked->m_open_file_descriptors = BAN::move(open_file_descriptors); forked->m_mapped_ranges = BAN::move(mapped_ranges); + forked->m_loadable_elf = BAN::move(loadable_elf); forked->m_is_userspace = m_is_userspace; forked->m_userspace_info = m_userspace_info; forked->m_has_called_exec = false; @@ -373,52 +350,39 @@ namespace Kernel { // NOTE: We scope everything for automatic deletion { + LockGuard _(m_lock); + BAN::Vector str_argv; + for (int i = 0; argv && argv[i]; i++) + { + validate_pointer_access(argv + i, sizeof(char*)); + validate_string_access(argv[i]); + TRY(str_argv.emplace_back(argv[i])); + } + BAN::Vector str_envp; - + for (int i = 0; envp && envp[i]; i++) { - LockGuard _(m_lock); - - for (int i = 0; argv && argv[i]; i++) - { - validate_pointer_access(argv + i, sizeof(char*)); - validate_string_access(argv[i]); - TRY(str_argv.emplace_back(argv[i])); - } - - for (int i = 0; envp && envp[i]; i++) - { - validate_pointer_access(envp + 1, sizeof(char*)); - validate_string_access(envp[i]); - TRY(str_envp.emplace_back(envp[i])); - } + validate_pointer_access(envp + 1, sizeof(char*)); + validate_string_access(envp[i]); + TRY(str_envp.emplace_back(envp[i])); } - BAN::String working_directory; - - { - LockGuard _(m_lock); - TRY(working_directory.append(m_working_directory)); - } - - auto elf = TRY(load_elf_for_exec(m_credentials, path, working_directory)); - - LockGuard lock_guard(m_lock); + BAN::String executable_path; + TRY(executable_path.append(path)); m_open_file_descriptors.close_cloexec(); m_mapped_ranges.clear(); + m_loadable_elf.clear(); - load_elf_to_memory(*elf); - - m_userspace_info.entry = elf->file_header_native().e_entry; + m_loadable_elf = TRY(load_elf_for_exec(m_credentials, executable_path, m_working_directory, page_table())); + m_loadable_elf->reserve_address_space(); + m_userspace_info.entry = m_loadable_elf->entry_point(); for (size_t i = 0; i < sizeof(m_signal_handlers) / sizeof(*m_signal_handlers); i++) m_signal_handlers[i] = (vaddr_t)SIG_DFL; - // NOTE: we clear the elf since we don't need the memory anymore - elf.clear(); - ASSERT(m_threads.size() == 1); ASSERT(&Process::current() == this); @@ -458,17 +422,19 @@ namespace Kernel auto argv_range = create_range(str_argv); m_userspace_info.argv = (char**)argv_range->vaddr(); - MUST(m_mapped_ranges.emplace_back(false, BAN::move(argv_range))); + MUST(m_mapped_ranges.push_back(BAN::move(argv_range))); auto envp_range = create_range(str_envp); m_userspace_info.envp = (char**)envp_range->vaddr(); - MUST(m_mapped_ranges.emplace_back(false, BAN::move(envp_range))); + MUST(m_mapped_ranges.push_back(BAN::move(envp_range))); m_userspace_info.argc = str_argv.size(); asm volatile("cli"); } + m_has_called_exec = true; + m_threads.front()->setup_exec(); Scheduler::get().execute_current_thread(); ASSERT_NOT_REACHED(); @@ -546,62 +512,6 @@ namespace Kernel return 0; } - void Process::load_elf_to_memory(LibELF::ELF& elf) - { - ASSERT(elf.is_native()); - - auto& elf_file_header = elf.file_header_native(); - for (size_t i = 0; i < elf_file_header.e_phnum; i++) - { - auto& elf_program_header = elf.program_header_native(i); - - switch (elf_program_header.p_type) - { - case LibELF::PT_NULL: - break; - case LibELF::PT_LOAD: - { - PageTable::flags_t flags = PageTable::Flags::UserSupervisor | PageTable::Flags::Present; - if (elf_program_header.p_flags & LibELF::PF_W) - flags |= PageTable::Flags::ReadWrite; - if (elf_program_header.p_flags & LibELF::PF_X) - flags |= PageTable::Flags::Execute; - - size_t page_start = elf_program_header.p_vaddr / PAGE_SIZE; - size_t page_end = BAN::Math::div_round_up(elf_program_header.p_vaddr + elf_program_header.p_memsz, PAGE_SIZE); - size_t page_count = page_end - page_start; - - page_table().lock(); - - if (!page_table().is_range_free(page_start * PAGE_SIZE, page_count * PAGE_SIZE)) - { - page_table().debug_dump(); - Kernel::panic("vaddr {8H}-{8H} not free {8H}-{8H}", - page_start * PAGE_SIZE, - page_start * PAGE_SIZE + page_count * PAGE_SIZE - ); - } - - { - LockGuard _(m_lock); - auto range = MUST(VirtualRange::create_to_vaddr(page_table(), page_start * PAGE_SIZE, page_count * PAGE_SIZE, flags, true)); - range->copy_from(elf_program_header.p_vaddr % PAGE_SIZE, elf.data() + elf_program_header.p_offset, elf_program_header.p_filesz); - - MUST(m_mapped_ranges.emplace_back(false, BAN::move(range))); - } - - page_table().unlock(); - - break; - } - default: - ASSERT_NOT_REACHED(); - } - } - - m_has_called_exec = true; - } - BAN::ErrorOr Process::create_file(BAN::StringView path, mode_t mode) { LockGuard _(m_lock); @@ -622,23 +532,29 @@ namespace Kernel return {}; } - BAN::ErrorOr Process::allocate_page_for_demand_paging(vaddr_t addr) + BAN::ErrorOr Process::allocate_page_for_demand_paging(vaddr_t address) { ASSERT(&Process::current() == this); LockGuard _(m_lock); - if (Thread::current().stack().contains(addr)) + if (Thread::current().stack().contains(address)) { - TRY(Thread::current().stack().allocate_page_for_demand_paging(addr)); + TRY(Thread::current().stack().allocate_page_for_demand_paging(address)); return true; } for (auto& mapped_range : m_mapped_ranges) { - if (!mapped_range.range->contains(addr)) + if (!mapped_range->contains(address)) continue; - TRY(mapped_range.range->allocate_page_for_demand_paging(addr)); + TRY(mapped_range->allocate_page_for_demand_paging(address)); + return true; + } + + if (m_loadable_elf && m_loadable_elf->contains(address)) + { + TRY(m_loadable_elf->load_page_to_memory(address)); return true; } @@ -917,8 +833,8 @@ namespace Kernel )); LockGuard _(m_lock); - TRY(m_mapped_ranges.emplace_back(true, BAN::move(range))); - return m_mapped_ranges.back().range->vaddr(); + TRY(m_mapped_ranges.push_back(BAN::move(range))); + return m_mapped_ranges.back()->vaddr(); } return BAN::Error::from_errno(ENOTSUP); @@ -937,9 +853,7 @@ namespace Kernel for (size_t i = 0; i < m_mapped_ranges.size(); i++) { - if (!m_mapped_ranges[i].can_be_unmapped) - continue; - auto& range = m_mapped_ranges[i].range; + auto& range = m_mapped_ranges[i]; if (vaddr + len < range->vaddr() || vaddr >= range->vaddr() + range->size()) continue; m_mapped_ranges.remove(i); @@ -1428,9 +1342,12 @@ namespace Kernel // FIXME: should we allow cross mapping access? for (auto& mapped_range : m_mapped_ranges) - if (vaddr >= mapped_range.range->vaddr() && vaddr + size <= mapped_range.range->vaddr() + mapped_range.range->size()) + if (vaddr >= mapped_range->vaddr() && vaddr + size <= mapped_range->vaddr() + mapped_range->size()) return; + if (m_loadable_elf->contains(vaddr)) + return; + unauthorized_access: dwarnln("process {}, thread {} attempted to make an invalid pointer access", pid(), Thread::current().tid()); Debug::dump_stack_trace(); From 603fc200e68c17e2933e5ed82279e305892f1c48 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 29 Sep 2023 02:03:19 +0300 Subject: [PATCH 056/240] Kernel: Add some sanity assertions/functions --- kernel/include/kernel/PCI.h | 1 + kernel/kernel/Memory/VirtualRange.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/kernel/include/kernel/PCI.h b/kernel/include/kernel/PCI.h index b18d84ed..63d9ca67 100644 --- a/kernel/include/kernel/PCI.h +++ b/kernel/include/kernel/PCI.h @@ -19,6 +19,7 @@ namespace Kernel::PCI class BarRegion { BAN_NON_COPYABLE(BarRegion); + BAN_NON_MOVABLE(BarRegion); public: static BAN::ErrorOr> create(PCI::Device&, uint8_t bar_num); diff --git a/kernel/kernel/Memory/VirtualRange.cpp b/kernel/kernel/Memory/VirtualRange.cpp index 5bcc176b..670a0b2b 100644 --- a/kernel/kernel/Memory/VirtualRange.cpp +++ b/kernel/kernel/Memory/VirtualRange.cpp @@ -119,6 +119,7 @@ namespace Kernel BAN::ErrorOr> VirtualRange::clone(PageTable& page_table) { ASSERT(&PageTable::current() == &m_page_table); + ASSERT(&m_page_table != &page_table); auto result = TRY(create_to_vaddr(page_table, vaddr(), size(), flags(), m_preallocated)); From 7e9e4c47ae0cbab887798d8f314b471ca37e88ac Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 29 Sep 2023 02:05:12 +0300 Subject: [PATCH 057/240] LibELF: Optimize LoadableELF::clone() memory usage We only clone mapped pages that have been marked as writeble. Read/execute only pages will be exactly as in the file itself and can be demand paged also :D --- LibELF/LibELF/LoadableELF.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/LibELF/LibELF/LoadableELF.cpp b/LibELF/LibELF/LoadableELF.cpp index d25860bd..106c3142 100644 --- a/LibELF/LibELF/LoadableELF.cpp +++ b/LibELF/LibELF/LoadableELF.cpp @@ -252,6 +252,9 @@ namespace LibELF break; case PT_LOAD: { + if (!(program_header.p_flags & LibELF::PF_W)) + continue; + PageTable::flags_t flags = PageTable::Flags::UserSupervisor | PageTable::Flags::Present; if (program_header.p_flags & LibELF::PF_W) flags |= PageTable::Flags::ReadWrite; From 376b9f7272e9aa1307843e926a2371cbd6e89ac7 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 29 Sep 2023 10:38:08 +0300 Subject: [PATCH 058/240] LibC: mmap returns MAP_FAILED instead of NULL --- libc/malloc.cpp | 6 ++++-- libc/sys/mman.cpp | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/libc/malloc.cpp b/libc/malloc.cpp index c1ac4eb6..80c9254f 100644 --- a/libc/malloc.cpp +++ b/libc/malloc.cpp @@ -54,10 +54,12 @@ static bool allocate_pool(size_t pool_index) assert(pool.start == nullptr); // allocate memory for pool - pool.start = (uint8_t*)mmap(nullptr, pool.size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, -1, 0); - if (pool.start == nullptr) + void* new_pool = mmap(nullptr, pool.size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, -1, 0); + if (new_pool == MAP_FAILED) return false; + pool.start = (uint8_t*)new_pool; + // initialize pool to single unallocated node auto* node = (malloc_node_t*)pool.start; node->allocated = false; diff --git a/libc/sys/mman.cpp b/libc/sys/mman.cpp index c34e65f2..73ad1d72 100644 --- a/libc/sys/mman.cpp +++ b/libc/sys/mman.cpp @@ -13,7 +13,7 @@ void* mmap(void* addr, size_t len, int prot, int flags, int fildes, off_t off) }; long ret = syscall(SYS_MMAP, &args); if (ret == -1) - return nullptr; + return MAP_FAILED; return (void*)ret; } From 4a92f44cf6fff0d580c0d1c191561182b85f37d6 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 29 Sep 2023 16:18:23 +0300 Subject: [PATCH 059/240] Kernel: Implement new abstract MemoryRegion MemoryBackedRegion now inherits from this and is used for private anonymous mappigs. This will make shared mappings and file backed mappings much easier to implement. --- kernel/CMakeLists.txt | 2 + .../kernel/Memory/MemoryBackedRegion.h | 29 ++++ kernel/include/kernel/Memory/MemoryRegion.h | 59 +++++++++ kernel/include/kernel/Process.h | 4 +- kernel/kernel/Memory/MemoryBackedRegion.cpp | 124 ++++++++++++++++++ kernel/kernel/Memory/MemoryRegion.cpp | 50 +++++++ kernel/kernel/Process.cpp | 105 +++++++-------- 7 files changed, 319 insertions(+), 54 deletions(-) create mode 100644 kernel/include/kernel/Memory/MemoryBackedRegion.h create mode 100644 kernel/include/kernel/Memory/MemoryRegion.h create mode 100644 kernel/kernel/Memory/MemoryBackedRegion.cpp create mode 100644 kernel/kernel/Memory/MemoryRegion.cpp diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index 18844367..281a560c 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -35,6 +35,8 @@ set(KERNEL_SOURCES kernel/Memory/GeneralAllocator.cpp kernel/Memory/Heap.cpp kernel/Memory/kmalloc.cpp + kernel/Memory/MemoryBackedRegion.cpp + kernel/Memory/MemoryRegion.cpp kernel/Memory/PhysicalRange.cpp kernel/Memory/VirtualRange.cpp kernel/Networking/E1000.cpp diff --git a/kernel/include/kernel/Memory/MemoryBackedRegion.h b/kernel/include/kernel/Memory/MemoryBackedRegion.h new file mode 100644 index 00000000..0b81d1b7 --- /dev/null +++ b/kernel/include/kernel/Memory/MemoryBackedRegion.h @@ -0,0 +1,29 @@ +#pragma once + +#include + +namespace Kernel +{ + + class MemoryBackedRegion final : public MemoryRegion + { + BAN_NON_COPYABLE(MemoryBackedRegion); + BAN_NON_MOVABLE(MemoryBackedRegion); + + public: + static BAN::ErrorOr> create(PageTable&, size_t size, AddressRange, Type, PageTable::flags_t); + ~MemoryBackedRegion(); + + virtual BAN::ErrorOr allocate_page_containing(vaddr_t vaddr) override; + + virtual BAN::ErrorOr> clone(PageTable& new_page_table) override; + + // Copy data from buffer into this region + // This can fail if no memory is mapped and no free memory was available + BAN::ErrorOr copy_data_to_region(size_t offset_into_region, const uint8_t* buffer, size_t buffer_size); + + private: + MemoryBackedRegion(PageTable&, size_t size, Type, PageTable::flags_t); + }; + +} \ No newline at end of file diff --git a/kernel/include/kernel/Memory/MemoryRegion.h b/kernel/include/kernel/Memory/MemoryRegion.h new file mode 100644 index 00000000..b7344871 --- /dev/null +++ b/kernel/include/kernel/Memory/MemoryRegion.h @@ -0,0 +1,59 @@ +#pragma once + +#include +#include +#include + +#include + +namespace Kernel +{ + + struct AddressRange + { + vaddr_t start; + vaddr_t end; + }; + + class MemoryRegion + { + BAN_NON_COPYABLE(MemoryRegion); + BAN_NON_MOVABLE(MemoryRegion); + + public: + enum Type : uint8_t + { + PRIVATE, + SHARED + }; + + public: + virtual ~MemoryRegion(); + + bool contains(vaddr_t address) const; + bool contains_fully(vaddr_t address, size_t size) const; + bool overlaps(vaddr_t address, size_t size) const; + + size_t size() const { return m_size; } + vaddr_t vaddr() const { return m_vaddr; } + + // Returns error if no memory was available + // Returns true if page was succesfully allocated + // Returns false if page was already allocated + virtual BAN::ErrorOr allocate_page_containing(vaddr_t address) = 0; + + virtual BAN::ErrorOr> clone(PageTable& new_page_table) = 0; + + protected: + MemoryRegion(PageTable&, size_t size, Type type, PageTable::flags_t flags); + BAN::ErrorOr initialize(AddressRange); + + protected: + PageTable& m_page_table; + const size_t m_size; + const Type m_type; + const PageTable::flags_t m_flags; + vaddr_t m_vaddr { 0 }; + }; + +} \ No newline at end of file diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index 10b33c9c..6e7b04bc 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -7,7 +7,7 @@ #include #include #include -#include +#include #include #include #include @@ -174,7 +174,7 @@ namespace Kernel OpenFileDescriptorSet m_open_file_descriptors; BAN::UniqPtr m_loadable_elf; - BAN::Vector> m_mapped_ranges; + BAN::Vector> m_mapped_regions; pid_t m_sid; pid_t m_pgrp; diff --git a/kernel/kernel/Memory/MemoryBackedRegion.cpp b/kernel/kernel/Memory/MemoryBackedRegion.cpp new file mode 100644 index 00000000..fbec159e --- /dev/null +++ b/kernel/kernel/Memory/MemoryBackedRegion.cpp @@ -0,0 +1,124 @@ +#include +#include +#include + +namespace Kernel +{ + + BAN::ErrorOr> MemoryBackedRegion::create(PageTable& page_table, size_t size, AddressRange address_range, Type type, PageTable::flags_t flags) + { + ASSERT(type == Type::PRIVATE); + + auto* region_ptr = new MemoryBackedRegion(page_table, size, type, flags); + if (region_ptr == nullptr) + return BAN::Error::from_errno(ENOMEM); + auto region = BAN::UniqPtr::adopt(region_ptr); + + TRY(region->initialize(address_range)); + + return region; + } + + MemoryBackedRegion::MemoryBackedRegion(PageTable& page_table, size_t size, Type type, PageTable::flags_t flags) + : MemoryRegion(page_table, size, type, flags) + { + } + + MemoryBackedRegion::~MemoryBackedRegion() + { + ASSERT(m_type == Type::PRIVATE); + + size_t needed_pages = BAN::Math::div_round_up(m_size, PAGE_SIZE); + for (size_t i = 0; i < needed_pages; i++) + { + paddr_t paddr = m_page_table.physical_address_of(m_vaddr + i * PAGE_SIZE); + if (paddr != 0) + Heap::get().release_page(paddr); + } + } + + BAN::ErrorOr MemoryBackedRegion::allocate_page_containing(vaddr_t address) + { + ASSERT(m_type == Type::PRIVATE); + + ASSERT(contains(address)); + + // Check if address is already mapped + vaddr_t vaddr = address & PAGE_ADDR_MASK; + if (m_page_table.physical_address_of(vaddr) != 0) + return false; + + // Map new physcial page to address + paddr_t paddr = Heap::get().take_free_page(); + if (paddr == 0) + return BAN::Error::from_errno(ENOMEM); + m_page_table.map_page_at(paddr, vaddr, m_flags); + + // Zero out the new page + if (&PageTable::current() == &m_page_table) + memset((void*)vaddr, 0x00, PAGE_SIZE); + else + { + LockGuard _(PageTable::current()); + ASSERT(PageTable::current().is_page_free(0)); + + PageTable::current().map_page_at(paddr, 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); + memset((void*)0, 0x00, PAGE_SIZE); + PageTable::current().unmap_page(0); + } + + return true; + } + + BAN::ErrorOr> MemoryBackedRegion::clone(PageTable& new_page_table) + { + ASSERT(&PageTable::current() == &m_page_table); + + auto result = TRY(MemoryBackedRegion::create(new_page_table, m_size, { .start = m_vaddr, .end = m_vaddr + m_size }, m_type, m_flags)); + + for (size_t offset = 0; offset < m_size; offset += PAGE_SIZE) + { + paddr_t paddr = m_page_table.physical_address_of(m_vaddr + offset); + if (paddr == 0) + continue; + TRY(result->copy_data_to_region(offset, (const uint8_t*)(m_vaddr + offset), PAGE_SIZE)); + } + + return BAN::UniqPtr(BAN::move(result)); + } + + BAN::ErrorOr MemoryBackedRegion::copy_data_to_region(size_t offset_into_region, const uint8_t* buffer, size_t buffer_size) + { + ASSERT(offset_into_region + buffer_size <= m_size); + + size_t written = 0; + while (written < buffer_size) + { + vaddr_t write_vaddr = m_vaddr + offset_into_region + written; + vaddr_t page_offset = write_vaddr % PAGE_SIZE; + size_t bytes = BAN::Math::min(buffer_size - written, PAGE_SIZE - page_offset); + + TRY(allocate_page_containing(write_vaddr)); + + if (&PageTable::current() == &m_page_table) + memcpy((void*)write_vaddr, (void*)(buffer + written), bytes); + else + { + paddr_t paddr = m_page_table.physical_address_of(write_vaddr & PAGE_ADDR_MASK); + ASSERT(paddr); + + LockGuard _(PageTable::current()); + ASSERT(PageTable::current().is_page_free(0)); + + PageTable::current().map_page_at(paddr, 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); + memcpy((void*)page_offset, (void*)(buffer + written), bytes); + PageTable::current().unmap_page(0); + } + + written += bytes; + } + + return {}; + } + +} \ No newline at end of file diff --git a/kernel/kernel/Memory/MemoryRegion.cpp b/kernel/kernel/Memory/MemoryRegion.cpp new file mode 100644 index 00000000..e6cd61d0 --- /dev/null +++ b/kernel/kernel/Memory/MemoryRegion.cpp @@ -0,0 +1,50 @@ +#include + +namespace Kernel +{ + + MemoryRegion::MemoryRegion(PageTable& page_table, size_t size, Type type, PageTable::flags_t flags) + : m_page_table(page_table) + , m_size(size) + , m_type(type) + , m_flags(flags) + { + } + + MemoryRegion::~MemoryRegion() + { + if (m_vaddr) + m_page_table.unmap_range(m_vaddr, m_size); + } + + BAN::ErrorOr MemoryRegion::initialize(AddressRange address_range) + { + size_t needed_pages = BAN::Math::div_round_up(m_size, PAGE_SIZE); + m_vaddr = m_page_table.reserve_free_contiguous_pages(needed_pages, address_range.start); + if (m_vaddr == 0) + return BAN::Error::from_errno(ENOMEM); + if (m_vaddr + needed_pages * PAGE_SIZE > address_range.end) + return BAN::Error::from_errno(ENOMEM); + return {}; + } + + bool MemoryRegion::contains(vaddr_t address) const + { + return m_vaddr <= address && address < m_vaddr + m_size; + } + + bool MemoryRegion::contains_fully(vaddr_t address, size_t size) const + { + return m_vaddr <= address && address + size < m_vaddr + m_size; + } + + bool MemoryRegion::overlaps(vaddr_t address, size_t size) const + { + if (address + size < m_vaddr) + return false; + if (address >= m_vaddr + m_size) + return false; + return true; + } + +} diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index 3e62bc2d..8f4f29a9 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -7,6 +7,7 @@ #include #include #include +#include #include #include #include @@ -128,23 +129,23 @@ namespace Kernel if (auto rem = needed_bytes % PAGE_SIZE) needed_bytes += PAGE_SIZE - rem; - auto argv_range = MUST(VirtualRange::create_to_vaddr_range( + auto argv_region = MUST(MemoryBackedRegion::create( process->page_table(), - 0x400000, KERNEL_OFFSET, needed_bytes, - PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present, - true + { .start = 0x400000, .end = KERNEL_OFFSET }, + MemoryRegion::Type::PRIVATE, + PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present )); - uintptr_t temp = argv_range->vaddr() + sizeof(char*) * 2; - argv_range->copy_from(0, (uint8_t*)&temp, sizeof(char*)); + uintptr_t temp = argv_region->vaddr() + sizeof(char*) * 2; + MUST(argv_region->copy_data_to_region(0, (const uint8_t*)&temp, sizeof(char*))); temp = 0; - argv_range->copy_from(sizeof(char*), (uint8_t*)&temp, sizeof(char*)); + MUST(argv_region->copy_data_to_region(sizeof(char*), (const uint8_t*)&temp, sizeof(char*))); - argv_range->copy_from(sizeof(char*) * 2, (const uint8_t*)path.data(), path.size()); + MUST(argv_region->copy_data_to_region(sizeof(char*) * 2, (const uint8_t*)path.data(), path.size())); - MUST(process->m_mapped_ranges.push_back(BAN::move(argv_range))); + MUST(process->m_mapped_regions.push_back(BAN::move(argv_region))); } process->m_userspace_info.argc = 1; @@ -172,7 +173,8 @@ namespace Kernel Process::~Process() { ASSERT(m_threads.empty()); - ASSERT(m_mapped_ranges.empty()); + ASSERT(m_mapped_regions.empty()); + ASSERT(!m_loadable_elf); ASSERT(m_exit_status.waiting == 0); ASSERT(&PageTable::current() != m_page_table.ptr()); } @@ -205,7 +207,8 @@ namespace Kernel m_open_file_descriptors.close_all(); // NOTE: We must unmap ranges while the page table is still alive - m_mapped_ranges.clear(); + m_mapped_regions.clear(); + m_loadable_elf.clear(); } void Process::on_thread_exit(Thread& thread) @@ -318,10 +321,10 @@ namespace Kernel OpenFileDescriptorSet open_file_descriptors(m_credentials); TRY(open_file_descriptors.clone_from(m_open_file_descriptors)); - BAN::Vector> mapped_ranges; - TRY(mapped_ranges.reserve(m_mapped_ranges.size())); - for (auto& mapped_range : m_mapped_ranges) - MUST(mapped_ranges.push_back(TRY(mapped_range->clone(*page_table)))); + BAN::Vector> mapped_regions; + TRY(mapped_regions.reserve(m_mapped_regions.size())); + for (auto& mapped_region : m_mapped_regions) + MUST(mapped_regions.push_back(TRY(mapped_region->clone(*page_table)))); auto loadable_elf = TRY(m_loadable_elf->clone(*page_table)); @@ -330,7 +333,7 @@ namespace Kernel forked->m_working_directory = BAN::move(working_directory); forked->m_page_table = BAN::move(page_table); forked->m_open_file_descriptors = BAN::move(open_file_descriptors); - forked->m_mapped_ranges = BAN::move(mapped_ranges); + forked->m_mapped_regions = BAN::move(mapped_regions); forked->m_loadable_elf = BAN::move(loadable_elf); forked->m_is_userspace = m_is_userspace; forked->m_userspace_info = m_userspace_info; @@ -373,7 +376,7 @@ namespace Kernel m_open_file_descriptors.close_cloexec(); - m_mapped_ranges.clear(); + m_mapped_regions.clear(); m_loadable_elf.clear(); m_loadable_elf = TRY(load_elf_for_exec(m_credentials, executable_path, m_working_directory, page_table())); @@ -387,8 +390,8 @@ namespace Kernel ASSERT(&Process::current() == this); // allocate memory on the new process for arguments and environment - auto create_range = - [&](const auto& container) -> BAN::UniqPtr + auto create_region = + [&](BAN::Span container) -> BAN::ErrorOr> { size_t bytes = sizeof(char*); for (auto& elem : container) @@ -397,36 +400,36 @@ namespace Kernel if (auto rem = bytes % PAGE_SIZE) bytes += PAGE_SIZE - rem; - auto range = MUST(VirtualRange::create_to_vaddr_range( + auto region = TRY(MemoryBackedRegion::create( page_table(), - 0x400000, KERNEL_OFFSET, bytes, - PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present, - true + { .start = 0x400000, .end = KERNEL_OFFSET }, + MemoryRegion::Type::PRIVATE, + PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present )); size_t data_offset = sizeof(char*) * (container.size() + 1); for (size_t i = 0; i < container.size(); i++) { - uintptr_t ptr_addr = range->vaddr() + data_offset; - range->copy_from(sizeof(char*) * i, (const uint8_t*)&ptr_addr, sizeof(char*)); - range->copy_from(data_offset, (const uint8_t*)container[i].data(), container[i].size()); + uintptr_t ptr_addr = region->vaddr() + data_offset; + TRY(region->copy_data_to_region(sizeof(char*) * i, (const uint8_t*)&ptr_addr, sizeof(char*))); + TRY(region->copy_data_to_region(data_offset, (const uint8_t*)container[i].data(), container[i].size())); data_offset += container[i].size() + 1; } uintptr_t null = 0; - range->copy_from(sizeof(char*) * container.size(), (const uint8_t*)&null, sizeof(char*)); + TRY(region->copy_data_to_region(sizeof(char*) * container.size(), (const uint8_t*)&null, sizeof(char*))); - return BAN::move(range); + return BAN::UniqPtr(BAN::move(region)); }; - auto argv_range = create_range(str_argv); - m_userspace_info.argv = (char**)argv_range->vaddr(); - MUST(m_mapped_ranges.push_back(BAN::move(argv_range))); + auto argv_region = MUST(create_region(str_argv.span())); + m_userspace_info.argv = (char**)argv_region->vaddr(); + MUST(m_mapped_regions.push_back(BAN::move(argv_region))); - auto envp_range = create_range(str_envp); - m_userspace_info.envp = (char**)envp_range->vaddr(); - MUST(m_mapped_ranges.push_back(BAN::move(envp_range))); + auto envp_region = MUST(create_region(str_envp.span())); + m_userspace_info.envp = (char**)envp_region->vaddr(); + MUST(m_mapped_regions.push_back(BAN::move(envp_region))); m_userspace_info.argc = str_argv.size(); @@ -544,11 +547,11 @@ namespace Kernel return true; } - for (auto& mapped_range : m_mapped_ranges) + for (auto& region : m_mapped_regions) { - if (!mapped_range->contains(address)) + if (!region->contains(address)) continue; - TRY(mapped_range->allocate_page_for_demand_paging(address)); + TRY(region->allocate_page_containing(address)); return true; } @@ -824,17 +827,17 @@ namespace Kernel if (args->len % PAGE_SIZE != 0) return BAN::Error::from_errno(EINVAL); - auto range = TRY(VirtualRange::create_to_vaddr_range( + auto region = TRY(MemoryBackedRegion::create( page_table(), - 0x400000, KERNEL_OFFSET, args->len, - PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present, - false + { .start = 0x400000, .end = KERNEL_OFFSET }, + MemoryRegion::Type::PRIVATE, + PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present )); LockGuard _(m_lock); - TRY(m_mapped_ranges.push_back(BAN::move(range))); - return m_mapped_ranges.back()->vaddr(); + TRY(m_mapped_regions.push_back(BAN::move(region))); + return m_mapped_regions.back()->vaddr(); } return BAN::Error::from_errno(ENOTSUP); @@ -851,13 +854,10 @@ namespace Kernel LockGuard _(m_lock); - for (size_t i = 0; i < m_mapped_ranges.size(); i++) - { - auto& range = m_mapped_ranges[i]; - if (vaddr + len < range->vaddr() || vaddr >= range->vaddr() + range->size()) - continue; - m_mapped_ranges.remove(i); - } + // FIXME: We should only map partial regions + for (size_t i = 0; i < m_mapped_regions.size(); i++) + if (m_mapped_regions[i]->overlaps(vaddr, len)) + m_mapped_regions.remove(i); return 0; } @@ -1341,10 +1341,11 @@ namespace Kernel return; // FIXME: should we allow cross mapping access? - for (auto& mapped_range : m_mapped_ranges) - if (vaddr >= mapped_range->vaddr() && vaddr + size <= mapped_range->vaddr() + mapped_range->size()) + for (auto& mapped_region : m_mapped_regions) + mapped_region->contains_fully(vaddr, size); return; + // FIXME: elf should contain full range [vaddr, vaddr + size) if (m_loadable_elf->contains(vaddr)) return; From db5d6a7f800ad30bd6477692fbe0bd1badd5f3f2 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 29 Sep 2023 17:23:42 +0300 Subject: [PATCH 060/240] Kernel: Implement MAP_PRIVATE file mappings mmap() now supports mapping files with MAP_PRIVATE. --- kernel/CMakeLists.txt | 1 + .../include/kernel/Memory/FileBackedRegion.h | 30 +++++ kernel/include/kernel/Memory/MemoryRegion.h | 2 +- kernel/include/kernel/OpenFileDescriptorSet.h | 1 + kernel/kernel/Memory/FileBackedRegion.cpp | 112 ++++++++++++++++++ kernel/kernel/Memory/MemoryBackedRegion.cpp | 5 +- kernel/kernel/OpenFileDescriptorSet.cpp | 6 + kernel/kernel/Process.cpp | 60 ++++++++-- 8 files changed, 202 insertions(+), 15 deletions(-) create mode 100644 kernel/include/kernel/Memory/FileBackedRegion.h create mode 100644 kernel/kernel/Memory/FileBackedRegion.cpp diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index 281a560c..e7e16fb5 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -32,6 +32,7 @@ set(KERNEL_SOURCES kernel/Input/PS2Keymap.cpp kernel/InterruptController.cpp kernel/kernel.cpp + kernel/Memory/FileBackedRegion.cpp kernel/Memory/GeneralAllocator.cpp kernel/Memory/Heap.cpp kernel/Memory/kmalloc.cpp diff --git a/kernel/include/kernel/Memory/FileBackedRegion.h b/kernel/include/kernel/Memory/FileBackedRegion.h new file mode 100644 index 00000000..b2d0df94 --- /dev/null +++ b/kernel/include/kernel/Memory/FileBackedRegion.h @@ -0,0 +1,30 @@ +#pragma once + +#include +#include + +namespace Kernel +{ + + class FileBackedRegion final : public MemoryRegion + { + BAN_NON_COPYABLE(FileBackedRegion); + BAN_NON_MOVABLE(FileBackedRegion); + + public: + static BAN::ErrorOr> create(BAN::RefPtr, PageTable&, off_t offset, size_t size, AddressRange address_range, Type, PageTable::flags_t); + ~FileBackedRegion(); + + virtual BAN::ErrorOr allocate_page_containing(vaddr_t vaddr) override; + + virtual BAN::ErrorOr> clone(PageTable& new_page_table) override; + + private: + FileBackedRegion(BAN::RefPtr, PageTable&, off_t offset, ssize_t size, Type flags, PageTable::flags_t page_flags); + + private: + BAN::RefPtr m_inode; + const off_t m_offset; + }; + +} \ No newline at end of file diff --git a/kernel/include/kernel/Memory/MemoryRegion.h b/kernel/include/kernel/Memory/MemoryRegion.h index b7344871..c1a5f936 100644 --- a/kernel/include/kernel/Memory/MemoryRegion.h +++ b/kernel/include/kernel/Memory/MemoryRegion.h @@ -21,7 +21,7 @@ namespace Kernel BAN_NON_MOVABLE(MemoryRegion); public: - enum Type : uint8_t + enum class Type : uint8_t { PRIVATE, SHARED diff --git a/kernel/include/kernel/OpenFileDescriptorSet.h b/kernel/include/kernel/OpenFileDescriptorSet.h index 17057d2f..6996bc96 100644 --- a/kernel/include/kernel/OpenFileDescriptorSet.h +++ b/kernel/include/kernel/OpenFileDescriptorSet.h @@ -48,6 +48,7 @@ namespace Kernel BAN::ErrorOr path_of(int) const; BAN::ErrorOr> inode_of(int); + BAN::ErrorOr flags_of(int) const; private: struct OpenFileDescription : public BAN::RefCounted diff --git a/kernel/kernel/Memory/FileBackedRegion.cpp b/kernel/kernel/Memory/FileBackedRegion.cpp new file mode 100644 index 00000000..f4bdb802 --- /dev/null +++ b/kernel/kernel/Memory/FileBackedRegion.cpp @@ -0,0 +1,112 @@ +#include +#include +#include + +namespace Kernel +{ + + BAN::ErrorOr> FileBackedRegion::create(BAN::RefPtr inode, PageTable& page_table, off_t offset, size_t size, AddressRange address_range, Type type, PageTable::flags_t flags) + { + ASSERT(inode->mode().ifreg()); + + if (type != Type::PRIVATE) + return BAN::Error::from_errno(ENOTSUP); + + if (offset < 0 || offset % PAGE_SIZE || size == 0) + return BAN::Error::from_errno(EINVAL); + if (size > (size_t)inode->size() || (size_t)offset > (size_t)inode->size() - size) + return BAN::Error::from_errno(EOVERFLOW); + + auto* region_ptr = new FileBackedRegion(inode, page_table, offset, size, type, flags); + if (region_ptr == nullptr) + return BAN::Error::from_errno(ENOMEM); + auto region = BAN::UniqPtr::adopt(region_ptr); + + TRY(region->initialize(address_range)); + + return region; + } + + FileBackedRegion::FileBackedRegion(BAN::RefPtr inode, PageTable& page_table, off_t offset, ssize_t size, Type type, PageTable::flags_t flags) + : MemoryRegion(page_table, size, type, flags) + , m_inode(inode) + , m_offset(offset) + { + } + + FileBackedRegion::~FileBackedRegion() + { + if (m_vaddr == 0) + return; + + ASSERT(m_type == Type::PRIVATE); + + size_t needed_pages = BAN::Math::div_round_up(m_size, PAGE_SIZE); + for (size_t i = 0; i < needed_pages; i++) + { + paddr_t paddr = m_page_table.physical_address_of(m_vaddr + i * PAGE_SIZE); + if (paddr != 0) + Heap::get().release_page(paddr); + } + } + + BAN::ErrorOr FileBackedRegion::allocate_page_containing(vaddr_t address) + { + ASSERT(m_type == Type::PRIVATE); + + ASSERT(contains(address)); + + // Check if address is already mapped + vaddr_t vaddr = address & PAGE_ADDR_MASK; + if (m_page_table.physical_address_of(vaddr) != 0) + return false; + + // Map new physcial page to address + paddr_t paddr = Heap::get().take_free_page(); + if (paddr == 0) + return BAN::Error::from_errno(ENOMEM); + m_page_table.map_page_at(paddr, vaddr, m_flags); + + size_t file_offset = m_offset + (vaddr - m_vaddr); + size_t bytes = BAN::Math::min(m_size - file_offset, PAGE_SIZE); + + BAN::ErrorOr read_ret = 0; + + // Zero out the new page + if (&PageTable::current() == &m_page_table) + read_ret = m_inode->read(file_offset, (void*)vaddr, bytes); + else + { + LockGuard _(PageTable::current()); + ASSERT(PageTable::current().is_page_free(0)); + + PageTable::current().map_page_at(paddr, 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); + read_ret = m_inode->read(file_offset, (void*)0, bytes); + memset((void*)0, 0x00, PAGE_SIZE); + PageTable::current().unmap_page(0); + } + + if (read_ret.is_error()) + { + Heap::get().release_page(paddr); + m_page_table.unmap_page(vaddr); + return read_ret.release_error(); + } + + if (read_ret.value() < bytes) + { + dwarnln("Only {}/{} bytes read", read_ret.value(), bytes); + Heap::get().release_page(paddr); + m_page_table.unmap_page(vaddr); + return BAN::Error::from_errno(EIO); + } + + return true; + } + + BAN::ErrorOr> FileBackedRegion::clone(PageTable& new_page_table) + { + ASSERT_NOT_REACHED(); + } + +} diff --git a/kernel/kernel/Memory/MemoryBackedRegion.cpp b/kernel/kernel/Memory/MemoryBackedRegion.cpp index fbec159e..971a8592 100644 --- a/kernel/kernel/Memory/MemoryBackedRegion.cpp +++ b/kernel/kernel/Memory/MemoryBackedRegion.cpp @@ -1,13 +1,14 @@ +#include #include #include -#include namespace Kernel { BAN::ErrorOr> MemoryBackedRegion::create(PageTable& page_table, size_t size, AddressRange address_range, Type type, PageTable::flags_t flags) { - ASSERT(type == Type::PRIVATE); + if (type != Type::PRIVATE) + return BAN::Error::from_errno(ENOTSUP); auto* region_ptr = new MemoryBackedRegion(page_table, size, type, flags); if (region_ptr == nullptr) diff --git a/kernel/kernel/OpenFileDescriptorSet.cpp b/kernel/kernel/OpenFileDescriptorSet.cpp index 3226cae0..f160f8ac 100644 --- a/kernel/kernel/OpenFileDescriptorSet.cpp +++ b/kernel/kernel/OpenFileDescriptorSet.cpp @@ -309,6 +309,12 @@ namespace Kernel return m_open_files[fd]->inode; } + BAN::ErrorOr OpenFileDescriptorSet::flags_of(int fd) const + { + TRY(validate_fd(fd)); + return m_open_files[fd]->flags; + } + BAN::ErrorOr OpenFileDescriptorSet::validate_fd(int fd) const { if (fd < 0 || fd >= (int)m_open_files.size()) diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index 8f4f29a9..713e345d 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -6,6 +6,7 @@ #include #include #include +#include #include #include #include @@ -810,29 +811,64 @@ namespace Kernel if (args->prot != PROT_NONE && args->prot & ~(PROT_READ | PROT_WRITE | PROT_EXEC)) return BAN::Error::from_errno(EINVAL); - PageTable::flags_t flags = PageTable::Flags::UserSupervisor; - if (args->prot & PROT_READ) - flags |= PageTable::Flags::Present; - if (args->prot & PROT_WRITE) - flags |= PageTable::Flags::ReadWrite | PageTable::Flags::Present; - if (args->prot & PROT_EXEC) - flags |= PageTable::Flags::Execute | PageTable::Flags::Present; + if (args->flags & MAP_FIXED) + return BAN::Error::from_errno(ENOTSUP); - if (args->flags == (MAP_ANONYMOUS | MAP_PRIVATE)) + if (!(args->flags & MAP_PRIVATE) == !(args->flags & MAP_SHARED)) + return BAN::Error::from_errno(EINVAL); + auto region_type = (args->flags & MAP_PRIVATE) ? MemoryRegion::Type::PRIVATE : MemoryRegion::Type::SHARED; + + PageTable::flags_t page_flags = 0; + if (args->prot & PROT_READ) + page_flags |= PageTable::Flags::Present; + if (args->prot & PROT_WRITE) + page_flags |= PageTable::Flags::ReadWrite | PageTable::Flags::Present; + if (args->prot & PROT_EXEC) + page_flags |= PageTable::Flags::Execute | PageTable::Flags::Present; + + if (page_flags == 0) + page_flags = PageTable::Flags::Reserved; + else + page_flags |= PageTable::Flags::UserSupervisor; + + if (args->flags & MAP_ANONYMOUS) { if (args->addr != nullptr) return BAN::Error::from_errno(ENOTSUP); if (args->off != 0) return BAN::Error::from_errno(EINVAL); - if (args->len % PAGE_SIZE != 0) - return BAN::Error::from_errno(EINVAL); auto region = TRY(MemoryBackedRegion::create( page_table(), args->len, { .start = 0x400000, .end = KERNEL_OFFSET }, - MemoryRegion::Type::PRIVATE, - PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present + region_type, page_flags + )); + + LockGuard _(m_lock); + TRY(m_mapped_regions.push_back(BAN::move(region))); + return m_mapped_regions.back()->vaddr(); + } + + auto inode = TRY(m_open_file_descriptors.inode_of(args->fildes)); + if (inode->mode().ifreg()) + { + if (args->addr != nullptr) + return BAN::Error::from_errno(ENOTSUP); + + auto inode_flags = TRY(m_open_file_descriptors.flags_of(args->fildes)); + if (!(inode_flags & O_RDONLY)) + return BAN::Error::from_errno(EACCES); + if (region_type == MemoryRegion::Type::SHARED) + if (!(args->prot & PROT_WRITE) || !(inode_flags & O_WRONLY)) + return BAN::Error::from_errno(EACCES); + + auto region = TRY(FileBackedRegion::create( + inode, + page_table(), + args->off, args->len, + { .start = 0x400000, .end = KERNEL_OFFSET }, + region_type, page_flags )); LockGuard _(m_lock); From d54c6b7f6be3184eebc5f0053f6253fd4358b31b Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 29 Sep 2023 17:24:21 +0300 Subject: [PATCH 061/240] LibC: Fix mmap() mmap() did not pass fildes to the syscall structure. --- libc/sys/mman.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libc/sys/mman.cpp b/libc/sys/mman.cpp index 73ad1d72..c43ecf3f 100644 --- a/libc/sys/mman.cpp +++ b/libc/sys/mman.cpp @@ -9,6 +9,7 @@ void* mmap(void* addr, size_t len, int prot, int flags, int fildes, off_t off) .len = len, .prot = prot, .flags = flags, + .fildes = fildes, .off = off }; long ret = syscall(SYS_MMAP, &args); From 7a5bb6a56bc68dc1d4026f9325131676cdaecb9c Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 29 Sep 2023 17:24:55 +0300 Subject: [PATCH 062/240] Userspace: Implement cat-mmap This behaves exactly as cat, but uses mmap to read the file. --- userspace/CMakeLists.txt | 1 + userspace/cat-mmap/CMakeLists.txt | 17 +++++++++ userspace/cat-mmap/main.cpp | 62 +++++++++++++++++++++++++++++++ 3 files changed, 80 insertions(+) create mode 100644 userspace/cat-mmap/CMakeLists.txt create mode 100644 userspace/cat-mmap/main.cpp diff --git a/userspace/CMakeLists.txt b/userspace/CMakeLists.txt index a704ceb1..3b457739 100644 --- a/userspace/CMakeLists.txt +++ b/userspace/CMakeLists.txt @@ -4,6 +4,7 @@ project(userspace CXX) set(USERSPACE_PROJECTS cat + cat-mmap dd echo id diff --git a/userspace/cat-mmap/CMakeLists.txt b/userspace/cat-mmap/CMakeLists.txt new file mode 100644 index 00000000..54562be3 --- /dev/null +++ b/userspace/cat-mmap/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 3.26) + +project(cat-mmap CXX) + +set(SOURCES + main.cpp +) + +add_executable(cat-mmap ${SOURCES}) +target_compile_options(cat-mmap PUBLIC -O2 -g) +target_link_libraries(cat-mmap PUBLIC libc) + +add_custom_target(cat-mmap-install + COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/cat-mmap ${BANAN_BIN}/ + DEPENDS cat-mmap + USES_TERMINAL +) diff --git a/userspace/cat-mmap/main.cpp b/userspace/cat-mmap/main.cpp new file mode 100644 index 00000000..29f12dd7 --- /dev/null +++ b/userspace/cat-mmap/main.cpp @@ -0,0 +1,62 @@ +#include +#include +#include +#include + +bool cat_file(int fd) +{ + struct stat st; + if (fstat(fd, &st) == -1) + { + perror("stat"); + return false; + } + + void* addr = mmap(nullptr, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0); + if (addr == MAP_FAILED) + { + perror("mmap"); + return false; + } + + ssize_t nwrite = write(STDOUT_FILENO, addr, st.st_size); + if (nwrite == -1) + perror("write"); + + if (munmap(addr, st.st_size) == -1) + { + perror("munmap"); + return false; + } + + return true; +} + +int main(int argc, char** argv) +{ + int ret = 0; + + if (argc > 1) + { + for (int i = 1; i < argc; i++) + { + int fd = open(argv[i], O_RDONLY); + if (fd == -1) + { + perror(argv[i]); + ret = 1; + continue; + } + if (!cat_file(fd)) + ret = 1; + close(fd); + } + } + else + { + if (!cat_file(STDIN_FILENO)) + ret = 1; + } + + return ret; +} From 9fc75fe44504b95080b40c22a843bcddfc4a5863 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 29 Sep 2023 18:31:44 +0300 Subject: [PATCH 063/240] Kernel: Don't write to stat_loc on SYS_WAIT if it is null --- kernel/kernel/Process.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index 713e345d..f6df4a6e 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -493,7 +493,10 @@ namespace Kernel return BAN::Error::from_errno(ECHILD); pid_t ret = target->pid(); - *stat_loc = target->block_until_exit(); + + int stat = target->block_until_exit(); + if (stat_loc) + *stat_loc = stat; return ret; } From f953f3d3ff69ff262a0c02c670d5a704cf0abf63 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 29 Sep 2023 18:46:44 +0300 Subject: [PATCH 064/240] Kernel: Implement MAP_SHARED for regular files Every inode holds a weak pointer to shared file data. This contains physical addresses of pages for inode file data. Physical addresses are allocated and read on demand. When last shared mapping is unmapped. The inodes shared data is freed and written to the inode. --- kernel/include/kernel/FS/Inode.h | 7 + .../include/kernel/Memory/FileBackedRegion.h | 13 ++ kernel/kernel/Memory/FileBackedRegion.cpp | 158 +++++++++++++----- kernel/kernel/Process.cpp | 2 +- 4 files changed, 139 insertions(+), 41 deletions(-) diff --git a/kernel/include/kernel/FS/Inode.h b/kernel/include/kernel/FS/Inode.h index f722b12e..46d469a2 100644 --- a/kernel/include/kernel/FS/Inode.h +++ b/kernel/include/kernel/FS/Inode.h @@ -3,6 +3,7 @@ #include #include #include +#include #include #include @@ -17,6 +18,9 @@ namespace Kernel using namespace API; + class FileBackedRegion; + class SharedFileData; + class Inode : public BAN::RefCounted { public: @@ -112,6 +116,9 @@ namespace Kernel private: mutable RecursiveSpinLock m_lock; + + BAN::WeakPtr m_shared_region; + friend class FileBackedRegion; }; } \ No newline at end of file diff --git a/kernel/include/kernel/Memory/FileBackedRegion.h b/kernel/include/kernel/Memory/FileBackedRegion.h index b2d0df94..b7decd8d 100644 --- a/kernel/include/kernel/Memory/FileBackedRegion.h +++ b/kernel/include/kernel/Memory/FileBackedRegion.h @@ -6,6 +6,17 @@ namespace Kernel { + struct SharedFileData : public BAN::RefCounted, public BAN::Weakable + { + ~SharedFileData(); + + // FIXME: this should probably be ordered tree like map + // for fast lookup and less memory usage + BAN::Vector pages; + BAN::RefPtr inode; + uint8_t page_buffer[PAGE_SIZE]; + }; + class FileBackedRegion final : public MemoryRegion { BAN_NON_COPYABLE(FileBackedRegion); @@ -25,6 +36,8 @@ namespace Kernel private: BAN::RefPtr m_inode; const off_t m_offset; + + BAN::RefPtr m_shared_data; }; } \ No newline at end of file diff --git a/kernel/kernel/Memory/FileBackedRegion.cpp b/kernel/kernel/Memory/FileBackedRegion.cpp index f4bdb802..086c9d62 100644 --- a/kernel/kernel/Memory/FileBackedRegion.cpp +++ b/kernel/kernel/Memory/FileBackedRegion.cpp @@ -9,9 +9,6 @@ namespace Kernel { ASSERT(inode->mode().ifreg()); - if (type != Type::PRIVATE) - return BAN::Error::from_errno(ENOTSUP); - if (offset < 0 || offset % PAGE_SIZE || size == 0) return BAN::Error::from_errno(EINVAL); if (size > (size_t)inode->size() || (size_t)offset > (size_t)inode->size() - size) @@ -24,6 +21,21 @@ namespace Kernel TRY(region->initialize(address_range)); + if (type == Type::SHARED) + { + LockGuard _(inode->m_lock); + if (inode->m_shared_region.valid()) + region->m_shared_data = inode->m_shared_region.lock(); + else + { + auto shared_data = TRY(BAN::RefPtr::create()); + TRY(shared_data->pages.resize(BAN::Math::div_round_up(inode->size(), PAGE_SIZE))); + shared_data->inode = inode; + inode->m_shared_region = TRY(shared_data->get_weak_ptr()); + region->m_shared_data = BAN::move(shared_data); + } + } + return region; } @@ -38,8 +50,9 @@ namespace Kernel { if (m_vaddr == 0) return; - - ASSERT(m_type == Type::PRIVATE); + + if (m_type == Type::SHARED) + return; size_t needed_pages = BAN::Math::div_round_up(m_size, PAGE_SIZE); for (size_t i = 0; i < needed_pages; i++) @@ -50,10 +63,30 @@ namespace Kernel } } + SharedFileData::~SharedFileData() + { + for (size_t i = 0; i < pages.size(); i++) + { + if (pages[i] == 0) + continue; + + { + auto& page_table = PageTable::current(); + LockGuard _(page_table); + ASSERT(page_table.is_page_free(0)); + + page_table.map_page_at(pages[i], 0, PageTable::Flags::Present); + memcpy(page_buffer, (void*)0, PAGE_SIZE); + page_table.unmap_page(0); + } + + if (auto ret = inode->write(i * PAGE_SIZE, page_buffer, PAGE_SIZE); ret.is_error()) + dwarnln("{}", ret.error()); + } + } + BAN::ErrorOr FileBackedRegion::allocate_page_containing(vaddr_t address) { - ASSERT(m_type == Type::PRIVATE); - ASSERT(contains(address)); // Check if address is already mapped @@ -61,44 +94,89 @@ namespace Kernel if (m_page_table.physical_address_of(vaddr) != 0) return false; - // Map new physcial page to address - paddr_t paddr = Heap::get().take_free_page(); - if (paddr == 0) - return BAN::Error::from_errno(ENOMEM); - m_page_table.map_page_at(paddr, vaddr, m_flags); + if (m_type == Type::PRIVATE) + { + // Map new physcial page to address + paddr_t paddr = Heap::get().take_free_page(); + if (paddr == 0) + return BAN::Error::from_errno(ENOMEM); + m_page_table.map_page_at(paddr, vaddr, m_flags); - size_t file_offset = m_offset + (vaddr - m_vaddr); - size_t bytes = BAN::Math::min(m_size - file_offset, PAGE_SIZE); + size_t file_offset = m_offset + (vaddr - m_vaddr); + size_t bytes = BAN::Math::min(m_size - file_offset, PAGE_SIZE); - BAN::ErrorOr read_ret = 0; + BAN::ErrorOr read_ret = 0; - // Zero out the new page - if (&PageTable::current() == &m_page_table) - read_ret = m_inode->read(file_offset, (void*)vaddr, bytes); + // Zero out the new page + if (&PageTable::current() == &m_page_table) + read_ret = m_inode->read(file_offset, (void*)vaddr, bytes); + else + { + auto& page_table = PageTable::current(); + + LockGuard _(page_table); + ASSERT(page_table.is_page_free(0)); + + page_table.map_page_at(paddr, 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); + read_ret = m_inode->read(file_offset, (void*)0, bytes); + memset((void*)0, 0x00, PAGE_SIZE); + page_table.unmap_page(0); + } + + if (read_ret.is_error()) + { + Heap::get().release_page(paddr); + m_page_table.unmap_page(vaddr); + return read_ret.release_error(); + } + + if (read_ret.value() < bytes) + { + dwarnln("Only {}/{} bytes read", read_ret.value(), bytes); + Heap::get().release_page(paddr); + m_page_table.unmap_page(vaddr); + return BAN::Error::from_errno(EIO); + } + } + else if (m_type == Type::SHARED) + { + LockGuard _(m_inode->m_lock); + ASSERT(m_inode->m_shared_region.valid()); + ASSERT(m_shared_data->pages.size() == BAN::Math::div_round_up(m_inode->size(), PAGE_SIZE)); + + auto& pages = m_shared_data->pages; + size_t page_index = (vaddr - m_vaddr) / PAGE_SIZE; + + if (pages[page_index] == 0) + { + pages[page_index] = Heap::get().take_free_page(); + if (pages[page_index] == 0) + return BAN::Error::from_errno(ENOMEM); + + size_t offset = vaddr - m_vaddr; + size_t bytes = BAN::Math::min(m_size - offset, PAGE_SIZE); + + TRY(m_inode->read(offset, m_shared_data->page_buffer, bytes)); + + auto& page_table = PageTable::current(); + + // TODO: check if this can cause deadlock? + LockGuard page_table_lock(page_table); + ASSERT(page_table.is_page_free(0)); + + page_table.map_page_at(pages[page_index], 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); + memcpy((void*)0, m_shared_data->page_buffer, PAGE_SIZE); + page_table.unmap_page(0); + } + + paddr_t paddr = pages[page_index]; + ASSERT(paddr); + + m_page_table.map_page_at(paddr, vaddr, m_flags); + } else { - LockGuard _(PageTable::current()); - ASSERT(PageTable::current().is_page_free(0)); - - PageTable::current().map_page_at(paddr, 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); - read_ret = m_inode->read(file_offset, (void*)0, bytes); - memset((void*)0, 0x00, PAGE_SIZE); - PageTable::current().unmap_page(0); - } - - if (read_ret.is_error()) - { - Heap::get().release_page(paddr); - m_page_table.unmap_page(vaddr); - return read_ret.release_error(); - } - - if (read_ret.value() < bytes) - { - dwarnln("Only {}/{} bytes read", read_ret.value(), bytes); - Heap::get().release_page(paddr); - m_page_table.unmap_page(vaddr); - return BAN::Error::from_errno(EIO); + ASSERT_NOT_REACHED(); } return true; diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index f6df4a6e..507f5fed 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -863,7 +863,7 @@ namespace Kernel if (!(inode_flags & O_RDONLY)) return BAN::Error::from_errno(EACCES); if (region_type == MemoryRegion::Type::SHARED) - if (!(args->prot & PROT_WRITE) || !(inode_flags & O_WRONLY)) + if ((args->prot & PROT_WRITE) && !(inode_flags & O_WRONLY)) return BAN::Error::from_errno(EACCES); auto region = TRY(FileBackedRegion::create( From 3f164c6b828e0c889f862875e999fb7fc919a511 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 29 Sep 2023 18:59:37 +0300 Subject: [PATCH 065/240] Userspace: Implement basic test for MAP_SHARED --- userspace/CMakeLists.txt | 1 + userspace/mmap-shared-test/CMakeLists.txt | 17 ++++ userspace/mmap-shared-test/main.cpp | 115 ++++++++++++++++++++++ 3 files changed, 133 insertions(+) create mode 100644 userspace/mmap-shared-test/CMakeLists.txt create mode 100644 userspace/mmap-shared-test/main.cpp diff --git a/userspace/CMakeLists.txt b/userspace/CMakeLists.txt index 3b457739..aaedf8a3 100644 --- a/userspace/CMakeLists.txt +++ b/userspace/CMakeLists.txt @@ -10,6 +10,7 @@ set(USERSPACE_PROJECTS id init ls + mmap-shared-test poweroff Shell snake diff --git a/userspace/mmap-shared-test/CMakeLists.txt b/userspace/mmap-shared-test/CMakeLists.txt new file mode 100644 index 00000000..b44dabf9 --- /dev/null +++ b/userspace/mmap-shared-test/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 3.26) + +project(mmap-shared-test CXX) + +set(SOURCES + main.cpp +) + +add_executable(mmap-shared-test ${SOURCES}) +target_compile_options(mmap-shared-test PUBLIC -O2 -g) +target_link_libraries(mmap-shared-test PUBLIC libc) + +add_custom_target(mmap-shared-test-install + COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/mmap-shared-test ${BANAN_BIN}/ + DEPENDS mmap-shared-test + USES_TERMINAL +) diff --git a/userspace/mmap-shared-test/main.cpp b/userspace/mmap-shared-test/main.cpp new file mode 100644 index 00000000..87db51fc --- /dev/null +++ b/userspace/mmap-shared-test/main.cpp @@ -0,0 +1,115 @@ +#include +#include +#include +#include +#include +#include +#include + +#define FILE_NAME "test-file" +#define FILE_SIZE (1024*1024) + +int prepare_file() +{ + int fd = open(FILE_NAME, O_RDWR | O_TRUNC | O_CREAT, 0666); + if (fd == -1) + { + perror("open"); + return 1; + } + + void* null_buffer = malloc(FILE_SIZE); + memset(null_buffer, 0x00, FILE_SIZE); + + if (write(fd, null_buffer, FILE_SIZE) == -1) + { + perror("write"); + return 1; + } + + free(null_buffer); + close(fd); + + printf("file created\n"); + + return 0; +} + +int job1() +{ + int fd = open(FILE_NAME, O_RDONLY); + if (fd == -1) + { + perror("open"); + return 1; + } + + void* addr = mmap(nullptr, FILE_SIZE, PROT_READ, MAP_SHARED, fd, 0); + if (addr == MAP_FAILED) + { + perror("mmap"); + return 1; + } + + sleep(4); + + size_t sum = 0; + for (int i = 0; i < FILE_SIZE; i++) + sum += ((uint8_t*)addr)[i]; + + munmap(addr, FILE_SIZE); + close(fd); + + printf("sum: %zu\n", sum); + + return 0; +} + +int job2() +{ + sleep(2); + + int fd = open(FILE_NAME, O_RDWR); + if (fd == -1) + { + perror("open"); + return 1; + } + + void* addr = mmap(nullptr, FILE_SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); + if (addr == MAP_FAILED) + { + perror("mmap"); + return 1; + } + + memset(addr, 'a', FILE_SIZE); + + munmap(addr, FILE_SIZE); + close(fd); + + printf("expecting: %zu\n", (size_t)'a' * FILE_SIZE); + + return 0; +} + +int main() +{ + if (int ret = prepare_file()) + return ret; + + pid_t pid = fork(); + if (pid == 0) + return job1(); + + if (pid == -1) + { + perror("fork"); + return 1; + } + + int ret = job2(); + waitpid(pid, nullptr, 0); + + return ret; +} From 94ce2c97be77ecc3b5b359e3023dc1bfae88c774 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 29 Sep 2023 19:20:48 +0300 Subject: [PATCH 066/240] Shell: Quick fix to not freeze for multiple seconds When sync is writing to disk, it reserves whole disk to itself. This commit makes Shell to read username only once from getpwuid(). We used to get username every time prompt was printed. --- userspace/Shell/main.cpp | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/userspace/Shell/main.cpp b/userspace/Shell/main.cpp index b4036763..279c14c2 100644 --- a/userspace/Shell/main.cpp +++ b/userspace/Shell/main.cpp @@ -701,11 +701,17 @@ BAN::String get_prompt() } case 'u': { - auto* passwd = getpwuid(geteuid()); - if (passwd == nullptr) - break; - MUST(prompt.append(passwd->pw_name)); - endpwent(); + static char* username = nullptr; + if (username == nullptr) + { + auto* passwd = getpwuid(geteuid()); + if (passwd == nullptr) + break; + username = new char[strlen(passwd->pw_name) + 1]; + strcpy(username, passwd->pw_name); + endpwent(); + } + MUST(prompt.append(username)); break; } case 'h': From eb5c6cf736643df76ef8e78128cd4a0fedd3bd54 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 29 Sep 2023 19:38:07 +0300 Subject: [PATCH 067/240] BAN: Remove endianness functions from Math There is now a Endianness.h for these. The functions were super slow. --- BAN/include/BAN/Math.h | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/BAN/include/BAN/Math.h b/BAN/include/BAN/Math.h index a5eeb44b..91a7a558 100644 --- a/BAN/include/BAN/Math.h +++ b/BAN/include/BAN/Math.h @@ -102,22 +102,4 @@ namespace BAN::Math return result; } - template - inline constexpr T little_endian_to_host(const uint8_t* bytes) - { - T result = 0; - for (size_t i = 0; i < sizeof(T); i++) - result |= (T)bytes[i] << (i * 8); - return result; - } - - template - inline constexpr T big_endian_to_host(const uint8_t* bytes) - { - T result = 0; - for (size_t i = 0; i < sizeof(T); i++) - result |= (T)bytes[i] << (8 * (sizeof(T) - i - 1)); - return result; - } - } \ No newline at end of file From e949e8550c657f42ed07227b8d3e064153b64cdf Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 30 Sep 2023 19:06:05 +0300 Subject: [PATCH 068/240] Kernel: Rework RamInode API RamInode is now a general RamInode with no data. RamFileInode is now a inode for regular files. This is much cleaner and more intuitive since there is no reason for most non-regular inodes to hold data Vector. --- kernel/include/kernel/FS/RamFS/Inode.h | 40 ++++--- kernel/kernel/Device/Device.cpp | 2 +- kernel/kernel/FS/DevFS/FileSystem.cpp | 2 +- kernel/kernel/FS/RamFS/Inode.cpp | 139 ++++++++++++++----------- kernel/kernel/FS/VirtualFileSystem.cpp | 10 +- kernel/kernel/Terminal/TTY.cpp | 2 +- 6 files changed, 110 insertions(+), 85 deletions(-) diff --git a/kernel/include/kernel/FS/RamFS/Inode.h b/kernel/include/kernel/FS/RamFS/Inode.h index afaec628..eca68520 100644 --- a/kernel/include/kernel/FS/RamFS/Inode.h +++ b/kernel/include/kernel/FS/RamFS/Inode.h @@ -12,7 +12,6 @@ namespace Kernel class RamInode : public Inode { public: - static BAN::ErrorOr> create(RamFileSystem&, mode_t, uid_t, gid_t); virtual ~RamInode() = default; virtual ino_t ino() const override { return m_inode_info.ino; } @@ -31,16 +30,10 @@ namespace Kernel void add_link() { m_inode_info.nlink++; } - protected: - RamInode(RamFileSystem& fs, mode_t, uid_t, gid_t); - - virtual BAN::ErrorOr read_impl(off_t, void*, size_t) override; - virtual BAN::ErrorOr write_impl(off_t, const void*, size_t) override; - virtual BAN::ErrorOr truncate_impl(size_t) override; - protected: struct FullInodeInfo { + FullInodeInfo(RamFileSystem&, mode_t, uid_t, gid_t); ino_t ino; mode_t mode; nlink_t nlink; @@ -56,16 +49,36 @@ namespace Kernel dev_t rdev; }; + RamInode(RamFileSystem& fs, const FullInodeInfo& inode_info) + : m_fs(fs) + , m_inode_info(inode_info) + {} + protected: RamFileSystem& m_fs; FullInodeInfo m_inode_info; + }; + class RamFileInode : public RamInode + { + public: + static BAN::ErrorOr> create(RamFileSystem&, mode_t, uid_t, gid_t); + ~RamFileInode() = default; + + protected: + RamFileInode(RamFileSystem&, const FullInodeInfo&); + + virtual BAN::ErrorOr read_impl(off_t, void*, size_t) override; + virtual BAN::ErrorOr write_impl(off_t, const void*, size_t) override; + virtual BAN::ErrorOr truncate_impl(size_t) override; + + private: BAN::Vector m_data; friend class RamFileSystem; }; - class RamDirectoryInode final : public RamInode + class RamDirectoryInode : public RamInode { public: static BAN::ErrorOr> create(RamFileSystem&, ino_t parent, mode_t, uid_t, gid_t); @@ -74,13 +87,12 @@ namespace Kernel BAN::ErrorOr add_inode(BAN::StringView, BAN::RefPtr); protected: + RamDirectoryInode(RamFileSystem&, const FullInodeInfo&, ino_t parent); + virtual BAN::ErrorOr> find_inode_impl(BAN::StringView) override; virtual BAN::ErrorOr list_next_inodes_impl(off_t, DirectoryEntryList*, size_t) override; virtual BAN::ErrorOr create_file_impl(BAN::StringView, mode_t, uid_t, gid_t) override; - private: - RamDirectoryInode(RamFileSystem&, ino_t parent, mode_t, uid_t, gid_t); - private: static constexpr size_t m_name_max = NAME_MAX; struct Entry @@ -92,7 +104,7 @@ namespace Kernel private: BAN::Vector m_entries; - ino_t m_parent; + const ino_t m_parent; friend class RamFileSystem; }; @@ -111,7 +123,7 @@ namespace Kernel virtual BAN::ErrorOr link_target_impl() override; private: - RamSymlinkInode(RamFileSystem&, mode_t, uid_t, gid_t); + RamSymlinkInode(RamFileSystem&, const FullInodeInfo&, BAN::String&&); private: BAN::String m_target; diff --git a/kernel/kernel/Device/Device.cpp b/kernel/kernel/Device/Device.cpp index f79ac05b..1971a1de 100644 --- a/kernel/kernel/Device/Device.cpp +++ b/kernel/kernel/Device/Device.cpp @@ -5,7 +5,7 @@ namespace Kernel { Device::Device(mode_t mode, uid_t uid, gid_t gid) - : RamInode(DevFileSystem::get(), mode, uid, gid) + : RamInode(DevFileSystem::get(), FullInodeInfo(DevFileSystem::get(), mode, uid, gid)) { } } \ No newline at end of file diff --git a/kernel/kernel/FS/DevFS/FileSystem.cpp b/kernel/kernel/FS/DevFS/FileSystem.cpp index db4d64ac..b41b09b2 100644 --- a/kernel/kernel/FS/DevFS/FileSystem.cpp +++ b/kernel/kernel/FS/DevFS/FileSystem.cpp @@ -19,7 +19,7 @@ namespace Kernel s_instance = new DevFileSystem(1024 * 1024); ASSERT(s_instance); - auto root_inode = MUST(RamDirectoryInode::create(*s_instance, 0, Inode::Mode::IFDIR | 0755, 0, 0)); + auto root_inode = MUST(RamDirectoryInode::create(*s_instance, 0, 0755, 0, 0)); MUST(s_instance->set_root_inode(root_inode)); s_instance->add_device("null", MUST(NullDevice::create(0666, 0, 0))); diff --git a/kernel/kernel/FS/RamFS/Inode.cpp b/kernel/kernel/FS/RamFS/Inode.cpp index 84e2d851..f5314627 100644 --- a/kernel/kernel/FS/RamFS/Inode.cpp +++ b/kernel/kernel/FS/RamFS/Inode.cpp @@ -5,42 +5,51 @@ namespace Kernel { - /* - - RAM INODE - - */ - - BAN::ErrorOr> RamInode::create(RamFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) - { - ASSERT(Mode(mode).ifreg()); - auto* ram_inode = new RamInode(fs, mode, uid, gid); - if (ram_inode == nullptr) - return BAN::Error::from_errno(ENOMEM); - return BAN::RefPtr::adopt(ram_inode); - } - - RamInode::RamInode(RamFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) - : m_fs(fs) + RamInode::FullInodeInfo::FullInodeInfo(RamFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) { timespec current_time = SystemTimer::get().real_time(); - m_inode_info.ino = fs.next_ino(); - m_inode_info.mode = mode; - m_inode_info.nlink = 1; - m_inode_info.uid = uid; - m_inode_info.gid = gid; - m_inode_info.size = 0; - m_inode_info.atime = current_time; - m_inode_info.mtime = current_time; - m_inode_info.ctime = current_time; - m_inode_info.blksize = fs.blksize(); - m_inode_info.blocks = 0; - m_inode_info.dev = 0; - m_inode_info.rdev = 0; + this->ino = fs.next_ino(); + this->mode = mode; + this->nlink = 1; + this->uid = uid; + this->gid = gid; + this->size = 0; + this->atime = current_time; + this->mtime = current_time; + this->ctime = current_time; + this->blksize = fs.blksize(); + this->blocks = 0; + + // TODO + this->dev = 0; + this->rdev = 0; } - BAN::ErrorOr RamInode::read_impl(off_t offset, void* buffer, size_t bytes) + /* + + RAM FILE INODE + + */ + + BAN::ErrorOr> RamFileInode::create(RamFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) + { + FullInodeInfo inode_info(fs, mode, uid, gid); + + auto* ram_inode = new RamFileInode(fs, inode_info); + if (ram_inode == nullptr) + return BAN::Error::from_errno(ENOMEM); + return BAN::RefPtr::adopt(ram_inode); + } + + RamFileInode::RamFileInode(RamFileSystem& fs, const FullInodeInfo& inode_info) + : RamInode(fs, inode_info) + { + ASSERT((m_inode_info.mode & Inode::Mode::TYPE_MASK) == 0); + m_inode_info.mode |= Inode::Mode::IFREG; + } + + BAN::ErrorOr RamFileInode::read_impl(off_t offset, void* buffer, size_t bytes) { ASSERT(offset >= 0); if (offset >= size()) @@ -50,7 +59,7 @@ namespace Kernel return to_copy; } - BAN::ErrorOr RamInode::write_impl(off_t offset, const void* buffer, size_t bytes) + BAN::ErrorOr RamFileInode::write_impl(off_t offset, const void* buffer, size_t bytes) { ASSERT(offset >= 0); if (offset + bytes > (size_t)size()) @@ -59,7 +68,7 @@ namespace Kernel return bytes; } - BAN::ErrorOr RamInode::truncate_impl(size_t new_size) + BAN::ErrorOr RamFileInode::truncate_impl(size_t new_size) { TRY(m_data.resize(new_size, 0)); m_inode_info.size = m_data.size(); @@ -75,30 +84,32 @@ namespace Kernel BAN::ErrorOr> RamDirectoryInode::create(RamFileSystem& fs, ino_t parent, mode_t mode, uid_t uid, gid_t gid) { - ASSERT(Mode(mode).ifdir()); - auto* ram_inode = new RamDirectoryInode(fs, parent, mode, uid, gid); + FullInodeInfo inode_info(fs, mode, uid, gid); + + // "." links to this + inode_info.nlink++; + + // ".." links to this or parent + if (parent) + TRY(fs.get_inode(parent))->add_link(); + else + { + inode_info.nlink++; + parent = inode_info.ino; + } + + auto* ram_inode = new RamDirectoryInode(fs, inode_info, parent); if (ram_inode == nullptr) return BAN::Error::from_errno(ENOMEM); return BAN::RefPtr::adopt(ram_inode); } - RamDirectoryInode::RamDirectoryInode(RamFileSystem& fs, ino_t parent, mode_t mode, uid_t uid, gid_t gid) - : RamInode(fs, mode, uid, gid) + RamDirectoryInode::RamDirectoryInode(RamFileSystem& fs, const FullInodeInfo& inode_info, ino_t parent) + : RamInode(fs, inode_info) + , m_parent(parent) { - // "." links to this - m_inode_info.nlink++; - - // ".." links to this, if there is no parent - if (parent == 0) - { - m_inode_info.nlink++; - m_parent = ino(); - } - else - { - MUST(fs.get_inode(parent))->add_link(); - m_parent = parent; - } + ASSERT((m_inode_info.mode & Inode::Mode::TYPE_MASK) == 0); + m_inode_info.mode |= Inode::Mode::IFDIR; } BAN::ErrorOr> RamDirectoryInode::find_inode_impl(BAN::StringView name) @@ -181,7 +192,7 @@ namespace Kernel { BAN::RefPtr inode; if (Mode(mode).ifreg()) - inode = TRY(RamInode::create(m_fs, mode, uid, gid)); + inode = TRY(RamFileInode::create(m_fs, mode, uid, gid)); else if (Mode(mode).ifdir()) inode = TRY(RamDirectoryInode::create(m_fs, ino(), mode, uid, gid)); else @@ -222,20 +233,26 @@ namespace Kernel */ - BAN::ErrorOr> RamSymlinkInode::create(RamFileSystem& fs, BAN::StringView target, mode_t mode, uid_t uid, gid_t gid) + BAN::ErrorOr> RamSymlinkInode::create(RamFileSystem& fs, BAN::StringView target_sv, mode_t mode, uid_t uid, gid_t gid) { - ASSERT(Mode(mode).iflnk()); - auto* ram_inode = new RamSymlinkInode(fs, mode, uid, gid); + FullInodeInfo inode_info(fs, mode, uid, gid); + + BAN::String target_str; + TRY(target_str.append(target_sv)); + + auto* ram_inode = new RamSymlinkInode(fs, inode_info, BAN::move(target_str)); if (ram_inode == nullptr) return BAN::Error::from_errno(ENOMEM); - auto ref_ptr = BAN::RefPtr::adopt(ram_inode); - TRY(ref_ptr->set_link_target(target)); - return ref_ptr; + return BAN::RefPtr::adopt(ram_inode); } - RamSymlinkInode::RamSymlinkInode(RamFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) - : RamInode(fs, mode, uid, gid) - { } + RamSymlinkInode::RamSymlinkInode(RamFileSystem& fs, const FullInodeInfo& inode_info, BAN::String&& target) + : RamInode(fs, inode_info) + , m_target(BAN::move(target)) + { + ASSERT((m_inode_info.mode & Inode::Mode::TYPE_MASK) == 0); + m_inode_info.mode |= Inode::Mode::IFLNK; + } BAN::ErrorOr RamSymlinkInode::link_target_impl() { diff --git a/kernel/kernel/FS/VirtualFileSystem.cpp b/kernel/kernel/FS/VirtualFileSystem.cpp index f5fd2080..de82f939 100644 --- a/kernel/kernel/FS/VirtualFileSystem.cpp +++ b/kernel/kernel/FS/VirtualFileSystem.cpp @@ -26,14 +26,10 @@ namespace Kernel s_instance->m_root_fs = MUST(Ext2FS::create(*(Partition*)partition_inode.ptr())); Credentials root_creds { 0, 0, 0, 0 }; - MUST(s_instance->mount(root_creds, &DevFileSystem::get(), "/dev")); + MUST(s_instance->mount(root_creds, &DevFileSystem::get(), "/dev"sv)); - mode_t tmpfs_mode = Inode::Mode::IFDIR - | Inode::Mode::IRUSR | Inode::Mode::IWUSR | Inode::Mode::IXUSR - | Inode::Mode::IRGRP | Inode::Mode::IWGRP | Inode::Mode::IXGRP - | Inode::Mode::IROTH | Inode::Mode::IWOTH | Inode::Mode::IXOTH; - auto* tmpfs = MUST(RamFileSystem::create(1024 * 1024, tmpfs_mode, 0, 0)); - MUST(s_instance->mount(root_creds, tmpfs, "/tmp")); + auto* tmpfs = MUST(RamFileSystem::create(1024 * 1024, 0777, 0, 0)); + MUST(s_instance->mount(root_creds, tmpfs, "/tmp"sv)); } VirtualFileSystem& VirtualFileSystem::get() diff --git a/kernel/kernel/Terminal/TTY.cpp b/kernel/kernel/Terminal/TTY.cpp index cdd9f3f6..2453bd6e 100644 --- a/kernel/kernel/Terminal/TTY.cpp +++ b/kernel/kernel/Terminal/TTY.cpp @@ -32,7 +32,7 @@ namespace Kernel if (inode_or_error.is_error()) { if (inode_or_error.error().get_error_code() == ENOENT) - DevFileSystem::get().add_device("tty"sv, MUST(RamSymlinkInode::create(DevFileSystem::get(), s_tty->name(), S_IFLNK | 0666, 0, 0))); + DevFileSystem::get().add_device("tty"sv, MUST(RamSymlinkInode::create(DevFileSystem::get(), s_tty->name(), 0666, 0, 0))); else dwarnln("{}", inode_or_error.error()); return; From 8604c55de8df8803628c75ee437b44ae9a22729e Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 30 Sep 2023 19:13:11 +0300 Subject: [PATCH 069/240] Kernel: Add API for RamDirectoryInodes to delete containing inodes --- kernel/include/kernel/FS/Inode.h | 2 ++ kernel/include/kernel/FS/RamFS/Inode.h | 1 + kernel/kernel/FS/Inode.cpp | 9 +++++++++ kernel/kernel/FS/RamFS/Inode.cpp | 13 +++++++++++++ 4 files changed, 25 insertions(+) diff --git a/kernel/include/kernel/FS/Inode.h b/kernel/include/kernel/FS/Inode.h index 46d469a2..9c4991d2 100644 --- a/kernel/include/kernel/FS/Inode.h +++ b/kernel/include/kernel/FS/Inode.h @@ -89,6 +89,7 @@ namespace Kernel BAN::ErrorOr> find_inode(BAN::StringView); BAN::ErrorOr list_next_inodes(off_t, DirectoryEntryList*, size_t); BAN::ErrorOr create_file(BAN::StringView, mode_t, uid_t, gid_t); + BAN::ErrorOr delete_inode(BAN::StringView); // Link API BAN::ErrorOr link_target(); @@ -104,6 +105,7 @@ namespace Kernel virtual BAN::ErrorOr> find_inode_impl(BAN::StringView) { return BAN::Error::from_errno(ENOTSUP); } virtual BAN::ErrorOr list_next_inodes_impl(off_t, DirectoryEntryList*, size_t) { return BAN::Error::from_errno(ENOTSUP); } virtual BAN::ErrorOr create_file_impl(BAN::StringView, mode_t, uid_t, gid_t) { return BAN::Error::from_errno(ENOTSUP); } + virtual BAN::ErrorOr delete_inode_impl(BAN::StringView) { return BAN::Error::from_errno(ENOTSUP); } // Link API virtual BAN::ErrorOr link_target_impl() { return BAN::Error::from_errno(ENOTSUP); } diff --git a/kernel/include/kernel/FS/RamFS/Inode.h b/kernel/include/kernel/FS/RamFS/Inode.h index eca68520..2b819238 100644 --- a/kernel/include/kernel/FS/RamFS/Inode.h +++ b/kernel/include/kernel/FS/RamFS/Inode.h @@ -92,6 +92,7 @@ namespace Kernel virtual BAN::ErrorOr> find_inode_impl(BAN::StringView) override; virtual BAN::ErrorOr list_next_inodes_impl(off_t, DirectoryEntryList*, size_t) override; virtual BAN::ErrorOr create_file_impl(BAN::StringView, mode_t, uid_t, gid_t) override; + virtual BAN::ErrorOr delete_inode_impl(BAN::StringView) override; private: static constexpr size_t m_name_max = NAME_MAX; diff --git a/kernel/kernel/FS/Inode.cpp b/kernel/kernel/FS/Inode.cpp index 91d85061..1e68a4d9 100644 --- a/kernel/kernel/FS/Inode.cpp +++ b/kernel/kernel/FS/Inode.cpp @@ -84,6 +84,15 @@ namespace Kernel return create_file_impl(name, mode, uid, gid); } + BAN::ErrorOr Inode::delete_inode(BAN::StringView name) + { + LockGuard _(m_lock); + Thread::TerminateBlocker blocker(Thread::current()); + if (!mode().ifdir()) + return BAN::Error::from_errno(ENOTDIR); + return delete_inode_impl(name); + } + BAN::ErrorOr Inode::link_target() { LockGuard _(m_lock); diff --git a/kernel/kernel/FS/RamFS/Inode.cpp b/kernel/kernel/FS/RamFS/Inode.cpp index f5314627..528dec4f 100644 --- a/kernel/kernel/FS/RamFS/Inode.cpp +++ b/kernel/kernel/FS/RamFS/Inode.cpp @@ -227,6 +227,19 @@ namespace Kernel return {}; } + BAN::ErrorOr RamDirectoryInode::delete_inode_impl(BAN::StringView name) + { + for (size_t i = 0; i < m_entries.size(); i++) + { + if (name == m_entries[i].name) + { + m_entries.remove(i); + return {}; + } + } + return BAN::Error::from_errno(ENOENT); + } + /* RAM SYMLINK INODE From dedb2a239937f08696601f839dce78602a8d3fe5 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 30 Sep 2023 19:51:14 +0300 Subject: [PATCH 070/240] Kernel: RamInode verifies that you have not specified mode type This is kinda weird behaviour, but it ensures the user cannot create e.g. CharacterDevice with mode having IFLNK. The Inode overrider is the only one setting the mode. --- kernel/include/kernel/Device/Device.h | 8 ++++---- kernel/include/kernel/FS/RamFS/Inode.h | 4 +++- kernel/kernel/FS/RamFS/Inode.cpp | 3 --- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/kernel/include/kernel/Device/Device.h b/kernel/include/kernel/Device/Device.h index 6211c1e0..df445eec 100644 --- a/kernel/include/kernel/Device/Device.h +++ b/kernel/include/kernel/Device/Device.h @@ -25,9 +25,9 @@ namespace Kernel { protected: BlockDevice(mode_t mode, uid_t uid, gid_t gid) - : Device(Mode::IFBLK | mode, uid, gid) + : Device(mode, uid, gid) { - ASSERT(Device::mode().ifblk()); + m_inode_info.mode |= Inode::Mode::IFBLK; } }; @@ -35,9 +35,9 @@ namespace Kernel { protected: CharacterDevice(mode_t mode, uid_t uid, gid_t gid) - : Device(Mode::IFCHR | mode, uid, gid) + : Device(mode, uid, gid) { - ASSERT(Device::mode().ifchr()); + m_inode_info.mode |= Inode::Mode::IFCHR; } }; diff --git a/kernel/include/kernel/FS/RamFS/Inode.h b/kernel/include/kernel/FS/RamFS/Inode.h index 2b819238..6a80925d 100644 --- a/kernel/include/kernel/FS/RamFS/Inode.h +++ b/kernel/include/kernel/FS/RamFS/Inode.h @@ -52,7 +52,9 @@ namespace Kernel RamInode(RamFileSystem& fs, const FullInodeInfo& inode_info) : m_fs(fs) , m_inode_info(inode_info) - {} + { + ASSERT((inode_info.mode & Inode::Mode::TYPE_MASK) == 0); + } protected: RamFileSystem& m_fs; diff --git a/kernel/kernel/FS/RamFS/Inode.cpp b/kernel/kernel/FS/RamFS/Inode.cpp index 528dec4f..4615b3e5 100644 --- a/kernel/kernel/FS/RamFS/Inode.cpp +++ b/kernel/kernel/FS/RamFS/Inode.cpp @@ -45,7 +45,6 @@ namespace Kernel RamFileInode::RamFileInode(RamFileSystem& fs, const FullInodeInfo& inode_info) : RamInode(fs, inode_info) { - ASSERT((m_inode_info.mode & Inode::Mode::TYPE_MASK) == 0); m_inode_info.mode |= Inode::Mode::IFREG; } @@ -108,7 +107,6 @@ namespace Kernel : RamInode(fs, inode_info) , m_parent(parent) { - ASSERT((m_inode_info.mode & Inode::Mode::TYPE_MASK) == 0); m_inode_info.mode |= Inode::Mode::IFDIR; } @@ -263,7 +261,6 @@ namespace Kernel : RamInode(fs, inode_info) , m_target(BAN::move(target)) { - ASSERT((m_inode_info.mode & Inode::Mode::TYPE_MASK) == 0); m_inode_info.mode |= Inode::Mode::IFLNK; } From d883d212b119b5c031b4f94cc6e4b5ba8bdf7203 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 30 Sep 2023 20:34:08 +0300 Subject: [PATCH 071/240] Kernel/LibC: dirent now contains file type --- kernel/include/kernel/FS/RamFS/Inode.h | 1 + kernel/kernel/FS/Ext2/Inode.cpp | 1 + kernel/kernel/FS/RamFS/Inode.cpp | 23 +++++++++++++++++++++++ libc/include/dirent.h | 14 ++++++++++++-- 4 files changed, 37 insertions(+), 2 deletions(-) diff --git a/kernel/include/kernel/FS/RamFS/Inode.h b/kernel/include/kernel/FS/RamFS/Inode.h index 6a80925d..c3ac0e0e 100644 --- a/kernel/include/kernel/FS/RamFS/Inode.h +++ b/kernel/include/kernel/FS/RamFS/Inode.h @@ -103,6 +103,7 @@ namespace Kernel char name[m_name_max + 1]; size_t name_len = 0; ino_t ino; + uint8_t type; }; private: diff --git a/kernel/kernel/FS/Ext2/Inode.cpp b/kernel/kernel/FS/Ext2/Inode.cpp index ade4789c..b489a9ae 100644 --- a/kernel/kernel/FS/Ext2/Inode.cpp +++ b/kernel/kernel/FS/Ext2/Inode.cpp @@ -291,6 +291,7 @@ namespace Kernel if (entry.inode) { ptr->dirent.d_ino = entry.inode; + ptr->dirent.d_type = entry.file_type; ptr->rec_len = sizeof(DirectoryEntry) + entry.name_len + 1; memcpy(ptr->dirent.d_name, entry.name, entry.name_len); ptr->dirent.d_name[entry.name_len] = '\0'; diff --git a/kernel/kernel/FS/RamFS/Inode.cpp b/kernel/kernel/FS/RamFS/Inode.cpp index 4615b3e5..f030ec12 100644 --- a/kernel/kernel/FS/RamFS/Inode.cpp +++ b/kernel/kernel/FS/RamFS/Inode.cpp @@ -160,6 +160,7 @@ namespace Kernel // "." { ptr->dirent.d_ino = ino(); + ptr->dirent.d_type = DT_DIR; ptr->rec_len = sizeof(DirectoryEntry) + 2; strcpy(ptr->dirent.d_name, "."); ptr = ptr->next(); @@ -168,6 +169,7 @@ namespace Kernel // ".." { ptr->dirent.d_ino = m_parent; + ptr->dirent.d_type = DT_DIR; ptr->rec_len = sizeof(DirectoryEntry) + 3; strcpy(ptr->dirent.d_name, ".."); ptr = ptr->next(); @@ -176,6 +178,7 @@ namespace Kernel for (auto& entry : m_entries) { ptr->dirent.d_ino = entry.ino; + ptr->dirent.d_type = entry.type; ptr->rec_len = sizeof(DirectoryEntry) + entry.name_len + 1; strcpy(ptr->dirent.d_name, entry.name); ptr = ptr->next(); @@ -201,6 +204,25 @@ namespace Kernel return {}; } + static uint8_t get_type(Inode::Mode mode) + { + if (mode.ifreg()) + return DT_REG; + if (mode.ifdir()) + return DT_DIR; + if (mode.ifchr()) + return DT_CHR; + if (mode.ifblk()) + return DT_BLK; + if (mode.ififo()) + return DT_FIFO; + if (mode.ifsock()) + return DT_SOCK; + if (mode.iflnk()) + return DT_LNK; + return DT_UNKNOWN; + } + BAN::ErrorOr RamDirectoryInode::add_inode(BAN::StringView name, BAN::RefPtr inode) { if (name.size() > m_name_max) @@ -215,6 +237,7 @@ namespace Kernel strcpy(entry.name, name.data()); entry.name_len = name.size(); entry.ino = inode->ino(); + entry.type = get_type(inode->mode()); if (auto ret = m_fs.add_inode(inode); ret.is_error()) { diff --git a/libc/include/dirent.h b/libc/include/dirent.h index 1ea2f253..64285b5c 100644 --- a/libc/include/dirent.h +++ b/libc/include/dirent.h @@ -13,10 +13,20 @@ __BEGIN_DECLS struct __DIR; typedef struct __DIR DIR; +#define DT_UNKNOWN 0 +#define DT_REG 1 +#define DT_DIR 2 +#define DT_CHR 3 +#define DT_BLK 4 +#define DT_FIFO 5 +#define DT_SOCK 6 +#define DT_LNK 7 + struct dirent { - ino_t d_ino; /* File serial number. */ - char d_name[]; /* Filename string of entry. */ + ino_t d_ino; /* File serial number. */ + unsigned char d_type; /* File type. One of DT_* definitions. */ + char d_name[]; /* Filename string of entry. */ }; int alphasort(const struct dirent** d1, const struct dirent** d2); From 38320018dcee8e333291ee23babb2573d3536eaf Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 30 Sep 2023 20:58:19 +0300 Subject: [PATCH 072/240] LibC: Implement stpcpy since gcc seems to need it gcc seems to optimize some calls to strcpy to stpcpy --- libc/string.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/libc/string.cpp b/libc/string.cpp index 3f4ba105..5991bd5d 100644 --- a/libc/string.cpp +++ b/libc/string.cpp @@ -62,12 +62,18 @@ int strcmp(const char* s1, const char* s2) return *u1 - *u2; } -char* strcpy(char* __restrict__ dest, const char* __restrict__ src) +char* stpcpy(char* __restrict__ dest, const char* __restrict__ src) { - size_t i; - for (i = 0; src[i]; i++) + size_t i = 0; + for (; src[i]; i++) dest[i] = src[i]; dest[i] = '\0'; + return &dest[i]; +} + +char* strcpy(char* __restrict__ dest, const char* __restrict__ src) +{ + stpcpy(dest, src); return dest; } From f88ad7efcd8b9da6a947115de8520788bda15e31 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 30 Sep 2023 21:15:46 +0300 Subject: [PATCH 073/240] Kernel: All process' memory areas can report their virtual mem usage --- LibELF/LibELF/LoadableELF.cpp | 2 ++ LibELF/include/LibELF/LoadableELF.h | 3 +++ kernel/include/kernel/Memory/MemoryRegion.h | 2 ++ kernel/include/kernel/Thread.h | 2 ++ 4 files changed, 9 insertions(+) diff --git a/LibELF/LibELF/LoadableELF.cpp b/LibELF/LibELF/LoadableELF.cpp index 106c3142..9af8c1fa 100644 --- a/LibELF/LibELF/LoadableELF.cpp +++ b/LibELF/LibELF/LoadableELF.cpp @@ -124,6 +124,8 @@ namespace LibELF dprintln("Invalid program header"); return BAN::Error::from_errno(EINVAL); } + + m_virtual_page_count += BAN::Math::div_round_up((pheader.p_vaddr % PAGE_SIZE) + pheader.p_memsz, PAGE_SIZE); } return {}; diff --git a/LibELF/include/LibELF/LoadableELF.h b/LibELF/include/LibELF/LoadableELF.h index a11aa863..ed8dc416 100644 --- a/LibELF/include/LibELF/LoadableELF.h +++ b/LibELF/include/LibELF/LoadableELF.h @@ -33,6 +33,8 @@ namespace LibELF BAN::ErrorOr> clone(Kernel::PageTable&); + size_t virtual_page_count() const { return m_virtual_page_count; } + private: LoadableELF(Kernel::PageTable&, BAN::RefPtr); BAN::ErrorOr initialize(); @@ -42,6 +44,7 @@ namespace LibELF Kernel::PageTable& m_page_table; ElfNativeFileHeader m_file_header; BAN::Vector m_program_headers; + size_t m_virtual_page_count = 0; }; } \ No newline at end of file diff --git a/kernel/include/kernel/Memory/MemoryRegion.h b/kernel/include/kernel/Memory/MemoryRegion.h index c1a5f936..6d1a7b0d 100644 --- a/kernel/include/kernel/Memory/MemoryRegion.h +++ b/kernel/include/kernel/Memory/MemoryRegion.h @@ -37,6 +37,8 @@ namespace Kernel size_t size() const { return m_size; } vaddr_t vaddr() const { return m_vaddr; } + size_t virtual_page_count() const { return BAN::Math::div_round_up(m_size, PAGE_SIZE); } + // Returns error if no memory was available // Returns true if page was succesfully allocated // Returns false if page was already allocated diff --git a/kernel/include/kernel/Thread.h b/kernel/include/kernel/Thread.h index ff6f77a3..bb826821 100644 --- a/kernel/include/kernel/Thread.h +++ b/kernel/include/kernel/Thread.h @@ -83,6 +83,8 @@ namespace Kernel bool is_userspace() const { return m_is_userspace; } + size_t virtual_page_count() const { return m_stack->size() / PAGE_SIZE; } + #if __enable_sse void save_sse() { asm volatile("fxsave %0" :: "m"(m_sse_storage)); } void load_sse() { asm volatile("fxrstor %0" :: "m"(m_sse_storage)); } From cd61d710dfeee08050a51f05f2b3900ebd20c6f5 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 30 Sep 2023 21:19:36 +0300 Subject: [PATCH 074/240] Kernel: Add procfs that contains only pids --- base-sysroot.tar.gz | Bin 8056 -> 8137 bytes kernel/CMakeLists.txt | 2 + kernel/include/kernel/FS/ProcFS/FileSystem.h | 26 +++++++++++ kernel/include/kernel/FS/ProcFS/Inode.h | 23 ++++++++++ kernel/kernel/FS/ProcFS/FileSystem.cpp | 46 +++++++++++++++++++ kernel/kernel/FS/ProcFS/Inode.cpp | 26 +++++++++++ kernel/kernel/FS/VirtualFileSystem.cpp | 3 ++ kernel/kernel/Process.cpp | 5 ++ kernel/kernel/kernel.cpp | 4 ++ 9 files changed, 135 insertions(+) create mode 100644 kernel/include/kernel/FS/ProcFS/FileSystem.h create mode 100644 kernel/include/kernel/FS/ProcFS/Inode.h create mode 100644 kernel/kernel/FS/ProcFS/FileSystem.cpp create mode 100644 kernel/kernel/FS/ProcFS/Inode.cpp diff --git a/base-sysroot.tar.gz b/base-sysroot.tar.gz index 04e3de73825707493edc18c253d47775f8630a2d..a818f495d6cdba2d86cad519d4d32582cfd5cfe9 100644 GIT binary patch literal 8137 zcma)9`8yO2(8uNu^rCN|PtmYT7L*6IFS%)$*o{Se$nWmc5-pdJ zuc``jpAs&Mh(eYh6g-qUl9*Z=wXl#08YDI%9I8#efx+H8ExyAQ+`)$OhScCiTk z-WCqG?QmOz->GJvvRD2UYfM#BhMlMSaJ{s==v%NFbpPu%JbEJax61A8=jT9{^mMLc zuB8DIixd4g{R!2aJ@*KinLP4VpgvZ#7W+IFT(va7GFGgZ968oS%1kP!v!M+wqIXk* zB{WC@_|B$|kiVSyTGlj?9P764-@N^H_FyvVZIvD0I(FZl)OGZ>Dxo{0(&xHU)5Y73 zi(Y4U><>@>{%)-_G_q7{IN}g3_{|aRsJ60wNhxFU(SFYN6Biqwjjx`BKQ`kp8ooV! z64$$qLXFlqnX-<|qdMourkgvv>N}028}BQJ*V>rf4LN=4ELkNOrxGiPoM1CduIAnn}1_#?Xbd(u~0 z)hk=NEUK#$Rb#A1uM%zB<&oqfXwYoGp`?(iIO4DL@^*n_&A7%bjm$hz_%ff)y zobdM_ZwX}o*^oFr;HAQw$e6%S+jLXrj-ALCdyvd9dN@CI#_&3qRV`g@i|TxzJ|Gj4 zbv@o~fetjJzYlCFkD_Y{xYxZXJknVuK|0{{dpHb4GCDrskP5G8j-3R>yC*?L3Gh2< zFJ2xmy^f{XKXnC$$>4kjTiK3th9>iz%9P=Se(#B2eP`F~$~5 zuS&wfUA3xJ_Z5$jf`|=BJBdvHb72SW;}Npq?!*K)phi>S+ZcMub(t;9^MIYbB7WHj zBB?%YTE+TUSKx6qq`AXEOF!*4Zc}j@W*vJ)oaXcVOAUqEreklDPXC;w86Nv7e@ZN{ z#3FOWkX?FbdIMVNW%bc3iOvVs*B95<2M>9RT)z5(ueH%#;ZltNmFkAV7wN>3Y@@Kn zBGf_A`l_iJNUyHjJ23A9o9$&c;Px0M0(F= z3fh*JFGOARIb0F#|wNduY5h+j!5!2&|T0=2vUK^X-EMOC5*MgVJk#8%76=??*jZo98}_YerP_ z8(iPW+|tM;g|I7V`LCza_za%8{6NM$6fGFKc6-%AbXNi)pJ_BHx@qB;{~<(DTW1bT z>(dG!-DQpF`Gwou+|*+tAlEoLN~DDEP0Djz_dkFByl{}hv&;WIGkfhiGTc9$_wm7T zP$3-ooL9r{wj^(GwPZhg+YgkAYPPv@@5Ac>w%E>re5$~bwut0Nx5XofoA^T>b z7mklz^_?EmiAzL2tM?<-hwKpEsH;;iMS4*Dz$;t5F>xjTLaAjibkwF6+LxpxG0UTvWAiT z9zx7uxs#yU^iw%4^(^bjAwgzQ8yKr`t53n;VGvdCPXD{Npv=Y=4%kPeiSIZ-g!f~$ zhQIIu+Wp70RWQ{r936=wxi9$gO8YCiuD*Tk3&Wm{C`*g(g!?WwzKqTCt=SRYZfHA) zmgB&x#NLgYanGJFnupNA%9H|~d=(o(H-arkHTXZg^Ek?gT- zl;lC2Pf_rKYiW9K;NC-Dze3*i(7ND?t5EB*GDEe8t z5>~Utj;D-T$dp#L7;}e@l|JBdte*Ox_l3yp z3O}m;H(MjIYMjF^XXpH62dulkhJVNU^N)3Aku+`REb-*T4C?9Z3C0Zt$@HV2gyVQt zqJAjzks^MhLEK=X`dU58*nIJy8W0_#q#=DT5yuF%_8_bcy& z>yOR3_$%+FPLQ7~l->{0Oe=cM-VOczxiXZy)I{_H&t%G`Hc37ORbmVLe<%wUy7$Kcw*o1h6=>is~8<2H;yUAZ{2j#wKJZvF@s<)e!^9Vv>Ks?qM8xd(-0spfRW zQ!7s`51{%V=;zVI93rDfn8o_FVce%txnb>xg+@{YDUUF#b%kME`KZ&dwppR16hY$Z zHvGTC*e-_W5qvFkr)-nQ47XgT!h7)sq^k_p4R0{zMAL>0Q&fES7s%~l919QtG3mjp z!uEQ1T8TQdBcB7-$m5%z$A~(%k1!Px-C)cqSYl?C++GPL_C&v5$ia6p6N?GOdw^4m z9=v~`GxF3=yarmUHPo41JLbM)Q3IX8=Ddwhu=+tIP|woG7bNy_No z4vK<+^yHoEM*Vayd;Rvy|5$=y)y$t^DV}G*Wtf+h*+3^C5XUvL9wP(092iVhq#bfr zsguXA$hZH^PF;vAQMb&}nRYD*bU0ar^>4@?ka|$DaVIhZEqR-F%zJk2)VcrL@At@E zJq>~?c?Gpgj+lUct@(=HJE+bw7gxL@wAt4tyQh}#6tgs8FA9`<$&V%G8xNSCXq^)} zum(W2wx7!?$;i6K$Ax(;nR&6?YqoQ1BxQiWij(()M+eKC98E!c*6ERv5zSGfczv01vLw)*dJx}On^(M8d(f9?3$pN zzN9gz=;}KGT7-WpIwgyl#b$y-%$u~j;O%^7v%65SZ@t{F@5~mD8vIyA*iW{>vY!))lal?F)&} zXkLtYdF@G-Q6WtL$zrkm{!%#7VKC{D4!rqOFbq0>0_L;Y#S(wF{Cpx9&)FO4cys)j zxu?OEJF_dh6Z=$XGq!NUZ)T(~ZaBif?ycGg!OgSw`z_~NcBLa1`wyC_si0la7+N5G z8{JU3d4yl7gSW7n5`;2bvFqTn#$~Jwz_bUm;3>cM4IbhYLOV z8!W>S&DWi`XO3!zo2`ZYqDDZGs#ooWFmh4j-PdxFRzHTF;Y#@895u{tK1@ zb!UDP%BR2I$&?*5IZ5TCZB;=Bh;{rh$NZf+4IZ=Co6NCyXT(oj-*;D)@LgX2p!(1Y z1`B)GQ`jnWfg`8B>TJ@XZ6Rnd&msTo!Jz5JbghA9$k5v;UH;gf$t}sZ>gziTYXkXv z=%(nA$;ow#B|<~=bs1x#khGTWhsYWUiURW2XrGNpX!8>e>YuP?>wF!8CeFaeYpe;h zz5vwb%K3)Z8|}*eb)Yd5Cim=Q{as%z*-owvIy0lGrmLb&866KC2AU*;zhF&H=PNGk z%>o46A!Sy*=8ySnU_2#Xup5ta!gsW&Hmf!ngJT%=HVSfLdADK^3$o5yXnW3FU2oDd zpxCpi#WI;aE6Y;3 zI@%%t1&F2C2wf37jk zag_2s`FjdSx$E=kSB2Q-Yb&3|Uu6qj*cC9y1eh~~12C*WW`FGrDPalCi{tSflDwr! zN3jT3m#{!H`P3s&V&-2;(|Sh{8`_*9PfkKJda37f;PYqP9~hrugRva`PmVY*YRlR3 zl?avqDa{{1XL;Cz-ZmDmb3)AZSl|TN(FG_k%ElH+jkn|feggs$gIQris#IiWeB5}|?UK(NO1Fo`n#2I!oRId}F& zo$HV+jMm{U;fY~tXK250CJ}gXUmEL*okDoUBblH8IYv2V9Z+1f%!Efomm}rNO$Q}E zpah4RQ1lC6J<;1#OkH+1-cEJJfwSSfEq4nOO9PWFdo5EBgClzZ;>8E9=d7CXAf{41 zp>eKS#;AA@BRf_GJA$wmlU~1b*JkDRje8%CJ9k_ffg0(EcLaVGffr!}B17Be6;nG&EXLrLS&POK2{9I0yS@TEoAz%!Kn{P1d)cJ&-^v&dzpJmpLl*urz_pyFV*=LMF)L7rLQRyPwA~5 zV^8q(np65;GJR&3<~;K+@egiOA;&a$6diBz&&8NjqvQvgJkIsiHb%3`UinC^W}b{On`>L-ZRMj=WZMzSy^CQxoSOdnvwyR*I|P zUtGT;Ba?}e#+T^L-6>8L&^FDc5BV?mvbL&&Jj`SEwYzGNvSmo?dTrhgCuhF(jecFS z#nGu_9CXecD9@WlOEI3AH9~ro8%1+4jW|cQJ!W?5ivpa;Mto?^NGsr zwn;OX!;?YYgToI1bi`ftn~#RWX$eIm(Nu?}qIV-zatAn&6Q_()`A5D+c2xX>-RRxH zH9zu2-@CqdDv8pZQRub7O6J^E)=1^ZwMKLM@t(JUndHZnqm2b~u=cdVcnN@tF=ru>aN4q9~uj5eDE4=x2(#eZ3sV@0HtiyP< zql6oD47!zd=1I;$Hty!R_9T9l1yyg}2hz;^W<@RCh#PAYf=P;kxn73#x1DY~PNlZI ziP})TH@+#)ahweLy25F3kQ~5yQAO;}BT@Hlc|~Fk$*5{9etNTC1cK@Ly@%GeZ)FUH zj|TjX^Fq#@mMv0G^1H9@md^cd?{-W6Q|(bNzpJITIWHcZ_*5h(^gcLvdS_mg+BMh@ z8WibpO1penv0%!Q7W%Aal^+Zt#BOJ%{`}&s>kPCPT`7h+?Qo$M@!3~=$91_2cxPW^ z3Q1o^vP7Fw|J{*N-&fTwrB3f@Ptl~G?3p)FKXfegu2z#qggEBj7G=2;f;u;Q@cr;k zW4dG-`yI;`NnS}Xf84Lj(2Akk$e|s$cu>hb_VpCpaVT)haxEJ<&`~SmY@L~@k*$Mr zh;dD)z6k}z!DFT)sHMaDkH0>c3`4@jG}~WP6@;r3Wh2(0!5iYA$h5GCpF?(;6>8Bt zgipGkF5LL~P=qqz@x0NovF5;_w(552DAM&#z(6sJ(claHOKfYT%e0J)qx*pJCd@T$ zqd`Ij(C`gJ)8DMj2E$s~ly3jw>ay|3$A-c&0Q4oh%et9xMXW z&9^c(MG}diNb)YI#Is{i?y{`&=qnO z8)(AE>LaD~&f^wQ(x3&(sT`F^qdkf_q&Ij#^ke4rzLKCGpeMx2y|S;ZyEond2jBaM zHtg0!h#vR=YW$ru_GX<8X}sXl;pg?MsR$eBd#{-`pa_L!S z({9%!FncoxGDwr1-gqO2F`wQ!BpOuh-~4Y+`GiGA6iKrze!Ee`{e1HX4|mNiQ4iUnDTszzE3vQjG5^7LiHKO|#?}8s$bO4nIB;YNVS<3f(<044{?-9lfoxBA%VZR9canwP4kv z4sDvS7>%v{CiVRuFx>1s?2!<`2Sqa%FZ)JbHwo}+`LF@by}KKJat7(AX<5V`MM8AH zl@;x_C6CEr>JuF4oXadzpySYlIQ_e!NC;uYsve!-Z4Z{4-; zSZ_+rTj4~WLy(dySKOCJ}sIo3y9$74P%v2tWfHUTWT33W)q6O##o;{&=v)Y1o=eCZ9c|{D3#kxe3R`kBur&E=PMepN9;pAosoN3jg!z7*m0zl70Jph@mlk zx(9{ADQ*vgx!*jY7##cIpx^psZr=3k$Sr8$;|oEBeb;#Wt4>^BAt`N&YXxagX3x))uNG#1j&3 z1u`};wF}$+f_iojpULT>y~zAAMpvyCHv0n?;+O!V$p~!8^-Lxjf5d zz*g1yg6Hp*jtf4w>s}&)^iu2EZ8CT6>xs+r7z1v%V;;ImG%(n*-C`01crkeaN)d`! zM=TRI274WQ7Z%N4m(NraKa!w=u*Y6L>juv33~?>!y#%ZV>ZZdmZ+A>{xZ7t|idfMs z3+MUc{aus-Wye#z$O$NH&()cY_-}!5&Ile0=7z5ru~U`RS9pbXAmYQ_A;gtjuMs<#uDZdz%AxHzy{+}J;C;Z2MqXc{l|(fDuK*_Hv$C$ zZ&T_9j-!GBJMkh3YAZCy)iXgy%w6yJXh2;6vno>?LjbEPBc1`x4iiH5@XRuuUTxRm zIYLnVKd|8pg&_<;Kv{KMdBJFQ8C|Ln-W*DEizd5o=zdSZ(2E5MaTFu_TNk$b`LY8O z|JuEK)H&FH(KUK7t9#ME7cAe|N4+X6EF%26b6f1L=#I$NPFm-@qMzSgjP|%%gT}Dj zkes8~kd2-Mv+X}74C1@I#9kzZR#R%9qCD4F zA3-nu`eXEKnyY2h_#@eI`^)#r$8xO_4!VgID{BXqyAbtg^0brA8%@+?BqlB{sNB)E zM7u5%raWo0C&&N!x*c6)0Sk^!O;0yE@VyZG`Sbl{i3Jz6h2Y26rbV`KrqVyl7rRnY zPIsdZf)lGguO%jzdxlO|~*FgpPwudH;c z$GnKiA@y!ZBB9AFT~0*rkZQOxG<)ohV!8i$g~h>F=LvAjyQ4R93bE=Gc9+?D!NumZ zqgPPHHYo9F>BE{mw3`jyNmDV8J6*svDA5wC;VQTqEJcPbvvhT0SvL5y~T-0xSZN7237n<1h-dOSUM-&-pj6Hi}#D@G}fQi{I5Of-+j{;h73H3(RYf` zkBf0S%g{Z<{|UIER*jdFlaM9-~%ekU0t=2x>^9&67)mwDcvGIIyf(Xtkv0MwOFFj@b^e{Ff zl&+g(&Fz8O-?uJil@SlrHztMOGEX_?vkmpvSik}ej``mwM!$uFb&=%V@~o@A`ESU# z6_!IF4q*DxKTOEB_bvyX zi7&AjDTO4OAeH^59A8>G2Ghi%CNG90R*0{#Oyy5cR}8JOoDOtXXHjEm0sq1r{(%zh zz1GLM=VtsC`n`~%UvzxId&j3T;igC~;Mf+U9)540wnW(oq=l%{i4ZbnBYjbX!@*xO z3eIq^2HHoZ!Yi*HkpoPY_sPg+@omXzXKgsW4W>_{IiFDn#qPX1$IdHZ{O literal 8056 zcmV-;ABW%{iwFP!000001MFN0d>rL<|B&4c@o#^QLXu`vyY^zdTn2kqt79>X91KYa zBm@G41Okj?Yiz?g?|4r#%_~~PM3V+;XlRfrs63VL;o91| zNVu*c9Ih8yI9ylPAc8fkIy)9LPw)U&b#^s%1cRcZt*vWc<@T5VA*E(aYrzEfA@yHZ z_YU;0)z#FCVBG|dOHxJuT?>|VtZJS>BY2zoZ>X!S3pdo(@%pcAsOW!EsHlH_%wJ+G zd;j}j1=rWsavE-^)4VBDnAg0k|4116kKkPdwfBE0dy=F7w$6*1I##@Ox&7sTNNHtD z>#CO4u8vEBbDEo4n_7=<>zor@J?-NwSD9Ta*f@dK4@#M&^sm8=tTGNcF+HC zqy|3?eE*BoYL)YUGN`3%$sdpY!!@`8$oqdJQd`mgWDx6rd0S^!Ytzb>iR#01|9cDl z*OlqNMr+U}`TqA2)j#XLa%_KeiPwL7Q)lPJODC?6{jLA7TK}c-zxvAhpA6z@EsQVJ z@Uw7%WH{ow;Ed%hra5gDJOpHhp(FKJh_hm4%L4h`Q|^PFM1|fpNqtUmA8+&iR}%jX zM=JNf$sl(-`Xk;+((wWR<=)0{D1%Fzxw?T?-OAyQeTPxPYUrBYohz`_<#G; ze|Z+0>;StwrazcN(kSuRiwU|JBvil>h#(w!Ws~ z|4j;YJauvpr$OKVp&kc{B9hjvZ@fycCPnu!|0lW!2Zsj-yOGm6I5OBOs-uZQB3do_ z`bHnVd+OAwqpALD*ZU7VP*0_AG7Hb zHeI)4?8yyNr+%!jukYa#(N93rwSdSAJT)Du@D~DFK^Ili8w-uot3+yayf8kR5`kDU z022I2#sWeF`~^P}q3H!31}5`4W3EBQTp@hEdP8RPCt6L@bmgSQ<7~0Q`DB^}{FtIT zd0pb5e6R)XW<}mG5{8i%F{8h~--wBE(=ZHk zTojs@$Co!3RH~23{B1^~$jWM25tmCnE@t^LOpIrzVa82krx=5HnvH_Uyk00^q9U_% z_sF&k%Q2J5m{HlEj`q-fb~rv$@?0;T9c`b<^L$dZo0VjzaZRB1K;d8pNO-81mds?6m zeT>J8mBJDqAJxrn1LM_1yBw!qC;^P>EP$Qdo~|!vL&&lKkdE^VWP3axA%$)TF&-%S7Hw%>%+$0|O`GZN#mwN7 zT;ohx!Og^B4{@pYfStzIskD1orCFg;?Ie{p#s~9*gCkP^M$8}AwL)_ocHs}GG-|5U z6e>mgQZ4~Ijb~M=EGEwOwVUm$dsrHV91qJSV5jk{N_jj||Bl?uXq0E)XpRi*Mtxn& z+V!$_Jz=L*}OBw zal8DuU7l>7+&+o-Tho-|7Hjl1a{q0UDI{ikiSyg!TboQ-ym?vvHGkf2j3mFyo?71j znk@gCOgVp-ra#yaWmu{e!Zlv7JJ(RodO5hsc`@mI{yXku1 z1_1dttq0ZtDF9_|x(;RT2ChacNUz)o^r0Qjf0}YVsM~{jJ*eM)OT~Ko?PmCxzzex>dIW|s$A+3I+*6rAvBjlbSNE0htm;s zB+a9v=xCZx3rM3d)lh_LsgCNYfueK_Eu>>9M#oVjEuzoU@wAvupcCl}^hNp-okU-z zlj)S)x=r*I`YN4DU!&9Lbox4-L1)rg^bIc-?~6D{{TCmkmG2^`g-YcjbCvNxjeF_4ZuvkC0rR>*bcVSKM#UJ?r$n zwLUad>?pwVFOu||>~{z*;;jZgyVuc{XOvgO0R4QG#dSK}Ka$B93)Odg>6V^Of_*-| z>BZFaVs6!_m&a{ZkNSOZB$a&RCw%enB@~FoV#;fFhBdde0K2~ulB=#x4E$n8;?Hjy zNL1S@R`SgB*n=^pTdW)uIjz#QEqzsxBT>9a@)R?pg{W8UQhj@j+uLxmJXeTfjVk3| zryOCxU4;9Yv4s(cDt|DLbn;d4Ou^-SF`v)pl=mw)+|T|QQvuF#-jffnyg#2QwqHPf zHRodg2~R%1CsE%YFCDsP#x`%y*Jm$CpLg~i0qFJu)!p{}9{tMx;O7tb+x=Iw&s^XE zDIQ)oyZ!9=OJZ{br48G@WE4OJ0@VBr83t%J3MIU9L7e&?d*+^GcXod<$DOd-pCzrq zc8EdPo6LCJWXD?4nDpk0{aLRP4OvWf`#X0RIIQ5bFJ}sZY>#armTHSkr4}c_@N;(42MTnAZ9q@Rb`9q;U37!`>|zTEn-gG++FV} z700Nu^Zho(9BqoXB9@riW=e_O8E3t6lp-!wT-+=Y85n>wznSRC%ofYb{6aAw-m*UC zk*^RX`xm#*VG>uqu*;JD3#Y(zpCm(?9Lg&Lu**lw>;<%whL~J_SXroNd>;L{`3ZN3 z&iI@q&0!bs`0f2uG1byN$1P{3o38>=MR}CyU-4`JMIMFM0pk z?e1Tgp1WZ<@=18sGq>;MxqUCs4V3U^S-#Y-=~

Ei+n^94FlB^p`2?FH_cErmX$) z^7aN|&yS;8h8;&_;uzUr7UkvbW7AosKXUzXik47Z3`RuBX`ITQ}Zu$HrS1tMSK7Cu&xtdUMdM z_kJk&e8tmG7%|M(iRH!?Z{E0hxn2Mb-zg3`2o#aCGL-UPG%my+Mt`P zqU)!&o7K9!Gq1r;w0g!2J22<=;Ax;_eFvi6olK6;3ER1Z*_(q7v*zV&b~~@HHEw=# zXy}!}p`<;QGJ86SC%ER8fO&X%fO+?Ovy86|9OY}| z^%`^M=e;i!4*>7@ihS_^NVxS&c+)JuZ^*sH>%bhh3@3ov|7CyP`vdpq<+;C-`-N%l zQNHB0bt)tNK;d>s1lF&jJ?D zCpv!qwkmLFVK$%vVc>k=0&Z3G2@yOXSQVTSoErSIpfC8b;DN!92d4!W1TWwo(fb_W z5MVA40uBWZ6HkiGRa>imR`t1H4ayykZ$|(}ic^E1#hm8h{V1`$>MxLYw0KBV2R|7+ zDEO)13BiMqJ73Jj_XXm_;Ag;TC>sW9fCx|v)B*KC0}us{0TzmSls*=3G2l4ydCaa6 zZ;OD>1IGi4ffIlefiD1G1il2E1bi7d88}583Hf~mZ(jvY1-=HH2AmFj9XJCx6F3X_ z25>g;P2gL=Il#HVx5e*{AUY3k=Zl|IWvZqe0*Qjt#g?k)tA1V;2+j!BVU|t!)(k8G zmI5t+0W1TS11o?Ffr|hWSP8TOZ9qHl9iRi~1iFA#KsRtP5C<*+E(KNt32_J{bQ#`~ zVi;PV6a3tq?IBnozWf+S0~YWT;3Y8+Qpn)#Z-BoAehT~y_&JaTUIw-S+kqXT8rJf6 zc>4wL_rN~@{|F2K{{##I{|x*R7y^cYUjZY)D{R9U#~n!T1nvSJglsmlywL8wNSlz} zk8~680OtdD0}lg_h@WCMkBVR7`55@efhT~=Q0FPJ73=G1aLA&`Lb3L#=pzI@FG5Ak>EEOkgf>6i^Gqfa`(h z4r#>Lx1jb`;CbM*&;j^l8;dxHzvv{5tnt`VtIt0%pp?P>3p$MKU zLdW81hEBnAJ+}>g+z4C;+yIPXr2hisfPV%44fuCpC-5rpYv4bC{{;REcn$as@H(&y z7z2I_{5S9h@IS!sfZYI2KpF@B7x+Km_dp)_15glr@X?1U)c!|FdyD_K#Jk?t-vR79 z{$EpDAFe5n|JT=7{{JtNLiJOpRO0`l68|ryiI4wRmo!(2|5xJwmH7V$7XR0^O8mbP z|F6XVEAjtI{NJHU{J(Tdsl@*)@&8Kv|4%ahFTDqkY3%X$Ac3;K*UB1^PkQ-?kzFrJ z3T*!k4kC|;7DeT^<&TlhX$_vqG*ktns_rmVhmkyYFzmt6xz1yrq1$EKe8Kt^ieIwOWETeyusJiHx$ojt5+WJY>%%I^K<;4Z7BMCF27CjNxrJ` z1>ENOel_m;XIPD8^C>*8HAW;&@!9t+C2{9|FgQ3k!tIYJ9_(Pj!x!r_$Mw~}=W_1j zt~d)(h^)$2&~=YK)%`{(M3wg?O8sMHA_;f?u1OT{-!ZQ}*e2oHgER?Pg!jJX?T;nm z?$Fsk9EvUqV3XaDnYy&E`@3kM7x9vx;39$tg z=cg>_4VNF27F3iUqnf`2Im$(?F6n68XBw(obm&P~r{zZ{+ZLC%c zM;0lbEqjq`-+F&(JVNjP|MspuIIgM=-{hQx082Dl2SfJy(#X0H&*XL1ZrRG8Px@tp@v%Rufi3R)B0=x79sN=J z!ZzH*vHK9;aB^~LxL#(%2#V!JV+>faKg zs{hbGhPr%(?GN_(OX=zV!`9;s=~;r*j6a7jHRYw@o@jLWlGqNzfb#<`zl!^jz9m>~ z|6(@dUsd^HJDEt?@PfUb_#L;rC_l5Kx1F(5>I0J354+#td&5jh@lh_ntNEDNrt&lX zSIy63Ti+kg*Y)+WP4SgS?uz&ZsvnPk$b0j%%K4bFX}kxCeVpGl4d%_i9KJW?;hMjR z>`W%X_+SKk{BWYj>HewLogXH)yQ^HZuHpWn8&ow`Nu z({@|masQ16d_GFg<-=8a4*#vv^Z0OUQ+m4p#C)FaKMuba@^Iar+NS#(TN$5@8StCoc@p0fBWl?yzcL(^^>dpHjA0n`?bh> z1Zni_1-PYTiiHp(6HY56HZTEHebAV?25M}Atwn!tAX zS@91+%D~SF(gt?OZG!ZHUGfWpG=g&)tV*y!l1^}*{E~3Bg6$2Y7Cc3MRghxvA^BxN zs=-f)>2!ln)gS28iosA?&EN&{d0};fOQo+Iyh@UG@EZAosHPw6k&g<}5S}kdMcCG0 zb%a++Ur9K(fwY7xC8-H7l9TBPcXUprDEzIAHHE*IR#g~CS65gkeP!WM@?yTJH+%F!>@^#x61H$(&`MKkydHAM!H(VE2OVByjo7BH~f>FPH|WiT60LM z;wS5G5&!HYRWT`POP!>oEth9^ZSQ;(J&<(Hi&86MNF?m zdab~TKvHhOnc48Q0iE*m;&}Awli{B)zk-kj@SO@Q1Wp4^2hIRq4ZH?86F3WyKr>Je z2;gYo7~ohSA;XSx`FQy5295)|fknV#USiJIe)t~{3(y*0hwmG}L%=tIZvo#1z5{$0cvx&hO?^+SMGW7E{R43ya`;2| zek3;F+>b>H_D^7M2Oa@_20RA*9QXzBOJD?e9C!lw74RhR6tENcHLwc^5Kn#GZfZI5 zA=O44n}B101RZg%8OIZVR$va01UhiOo!*haJYYVs09Xi|4x9-r0hR%01Lpzf0v7=1 z`gdcLw?{oY8xPf^GTHbMjUUTe89gB$1Lzp;6@+^^a7iJ zn}I=GI|SSU|7|!v4{U+|y}8+T%HA|QIJ_xH&r8prr|dzv zVjMne1^@G;D-Zs$kN;J!l`A*N>3H8sfB#AAg5f9bzjrw3g6lEmS+l0gDGyw8YAn?p z#7j4@Qe(00YpH|AjzX!>5ikAh7@sIjjN9--S=)Ek^2wRKE!q9<^$T;Q+`{;ByX9r% z21~uU++-r_e?uF*dw0II^$6|_V)xXHvRFkM%;PNu70$WC?7gX7eq`6K(b2toU%J}h zNuVvWT+l1QlWK#F6>&5w^3l=K{+zXQ`BW;O zi`FJ+8O({VG@`V@kJIZ|#rx!fSRskFh4n$Ofna!PG*HtJw{EjyM18*MPReQmHK4K~_f zZWFc2*B*QN_t2KHv}vqzjy4$WnIUCCCWE@q8f`GQl{PpV+d+3BGnm z`~7llu)nr9oi>=Sokc6NlW2ouX|P?}@NAWbw6hIy0q>vZ4&wbYVbUA%(i`#9^WtaW zC_ii8N^LM@hZd8g&2Nnxie4GMI+$sLX$NE)&)I{z|F$p6WR%ovk?H?gD-AZfnlL*fiQ;Um6UXT@Rx~OLg({Ik4mZAbL5B zfzi<|t`1Zuz+;HVcc^!V^)r}frWMrwyhjt!oDX*9P~8{fUD6eEx51gM$ifaGq6&;5R&_Hga6-(RcTIkh%;JY!z~c6HYcukHU_+yA+?|MUO${?8kF*XK6haO8dg zjAlQF`ul%N7t`;*EegA9zyCEO&iusoOXv6hmM_-7|5y9{$C|6Tnya}Z>iz|D$Ti9U Gpa1|B(sthf diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index e7e16fb5..6d1d9dc7 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -24,6 +24,8 @@ set(KERNEL_SOURCES kernel/FS/Ext2/Inode.cpp kernel/FS/Inode.cpp kernel/FS/Pipe.cpp + kernel/FS/ProcFS/FileSystem.cpp + kernel/FS/ProcFS/Inode.cpp kernel/FS/RamFS/FileSystem.cpp kernel/FS/RamFS/Inode.cpp kernel/FS/VirtualFileSystem.cpp diff --git a/kernel/include/kernel/FS/ProcFS/FileSystem.h b/kernel/include/kernel/FS/ProcFS/FileSystem.h new file mode 100644 index 00000000..becef480 --- /dev/null +++ b/kernel/include/kernel/FS/ProcFS/FileSystem.h @@ -0,0 +1,26 @@ +#pragma once + +#include +#include +#include + +namespace Kernel +{ + + class ProcFileSystem final : public RamFileSystem + { + public: + static void initialize(); + static ProcFileSystem& get(); + + BAN::ErrorOr on_process_create(Process&); + void on_process_delete(Process&); + + private: + ProcFileSystem(size_t size); + + private: + BAN::RefPtr m_root_inode; + }; + +} \ No newline at end of file diff --git a/kernel/include/kernel/FS/ProcFS/Inode.h b/kernel/include/kernel/FS/ProcFS/Inode.h new file mode 100644 index 00000000..87226ba9 --- /dev/null +++ b/kernel/include/kernel/FS/ProcFS/Inode.h @@ -0,0 +1,23 @@ +#pragma once + +#include +#include +#include + +namespace Kernel +{ + + class ProcPidInode final : public RamDirectoryInode + { + public: + static BAN::ErrorOr> create(Process&, RamFileSystem&, mode_t, uid_t, gid_t); + ~ProcPidInode() = default; + + private: + ProcPidInode(Process&, RamFileSystem&, const FullInodeInfo&); + + private: + Process& m_process; + }; + +} diff --git a/kernel/kernel/FS/ProcFS/FileSystem.cpp b/kernel/kernel/FS/ProcFS/FileSystem.cpp new file mode 100644 index 00000000..1c807857 --- /dev/null +++ b/kernel/kernel/FS/ProcFS/FileSystem.cpp @@ -0,0 +1,46 @@ +#include +#include +#include +#include + +namespace Kernel +{ + + static ProcFileSystem* s_instance = nullptr; + + void ProcFileSystem::initialize() + { + ASSERT(s_instance == nullptr); + s_instance = new ProcFileSystem(1024 * 1024); + ASSERT(s_instance); + + s_instance->m_root_inode = MUST(RamDirectoryInode::create(*s_instance, 0, 0555, 0, 0)); + MUST(s_instance->set_root_inode(s_instance->m_root_inode)); + } + + ProcFileSystem& ProcFileSystem::get() + { + ASSERT(s_instance); + return *s_instance; + } + + ProcFileSystem::ProcFileSystem(size_t size) + : RamFileSystem(size) + { + } + + BAN::ErrorOr ProcFileSystem::on_process_create(Process& process) + { + auto path = BAN::String::formatted("{}", process.pid()); + auto inode = TRY(ProcPidInode::create(process, *this, 0555, 0, 0)); + TRY(m_root_inode->add_inode(path, inode)); + return {}; + } + + void ProcFileSystem::on_process_delete(Process& process) + { + auto path = BAN::String::formatted("{}", process.pid()); + MUST(m_root_inode->delete_inode(path)); + } + +} diff --git a/kernel/kernel/FS/ProcFS/Inode.cpp b/kernel/kernel/FS/ProcFS/Inode.cpp new file mode 100644 index 00000000..6fccc23b --- /dev/null +++ b/kernel/kernel/FS/ProcFS/Inode.cpp @@ -0,0 +1,26 @@ +#include + +namespace Kernel +{ + + BAN::ErrorOr> ProcPidInode::create(Process& process, RamFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) + { + FullInodeInfo inode_info(fs, mode, uid, gid); + + auto* inode_ptr = new ProcPidInode(process, fs, inode_info); + if (inode_ptr == nullptr) + return BAN::Error::from_errno(ENOMEM); + auto inode = BAN::RefPtr::adopt(inode_ptr); + + TRY(inode->add_inode("meminfo"sv, MUST(ProcMemInode::create(process, fs, 0755, 0, 0)))); + + return inode; + } + + ProcPidInode::ProcPidInode(Process& process, RamFileSystem& fs, const FullInodeInfo& inode_info) + : RamDirectoryInode(fs, inode_info, fs.root_inode()->ino()) + , m_process(process) + { + } + +} diff --git a/kernel/kernel/FS/VirtualFileSystem.cpp b/kernel/kernel/FS/VirtualFileSystem.cpp index de82f939..a023afd5 100644 --- a/kernel/kernel/FS/VirtualFileSystem.cpp +++ b/kernel/kernel/FS/VirtualFileSystem.cpp @@ -2,6 +2,7 @@ #include #include #include +#include #include #include #include @@ -28,6 +29,8 @@ namespace Kernel Credentials root_creds { 0, 0, 0, 0 }; MUST(s_instance->mount(root_creds, &DevFileSystem::get(), "/dev"sv)); + MUST(s_instance->mount(root_creds, &ProcFileSystem::get(), "/proc"sv)); + auto* tmpfs = MUST(RamFileSystem::create(1024 * 1024, 0777, 0, 0)); MUST(s_instance->mount(root_creds, tmpfs, "/tmp"sv)); } diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index 507f5fed..1ca4b213 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -2,6 +2,7 @@ #include #include #include +#include #include #include #include @@ -81,6 +82,8 @@ namespace Kernel auto* process = new Process(credentials, pid, parent, sid, pgrp); ASSERT(process); + MUST(ProcFileSystem::get().on_process_create(*process)); + return process; } @@ -194,6 +197,8 @@ namespace Kernel s_processes.remove(i); s_process_lock.unlock(); + ProcFileSystem::get().on_process_delete(*this); + m_lock.lock(); m_exit_status.exited = true; while (m_exit_status.waiting > 0) diff --git a/kernel/kernel/kernel.cpp b/kernel/kernel/kernel.cpp index 633d0ecc..b9a259ce 100644 --- a/kernel/kernel/kernel.cpp +++ b/kernel/kernel/kernel.cpp @@ -2,6 +2,7 @@ #include #include #include +#include #include #include #include @@ -131,6 +132,9 @@ extern "C" void kernel_main() DevFileSystem::initialize(); dprintln("devfs initialized"); + ProcFileSystem::initialize(); + dprintln("procfs initialized"); + if (Serial::has_devices()) { Serial::initialize_devices(); From a511441f7e2f055048443d9f4773f7733bd0ab48 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 30 Sep 2023 21:20:18 +0300 Subject: [PATCH 075/240] Kernel: /proc/{pid}/meminfo now reports per process memory usage --- kernel/include/kernel/FS/ProcFS/Inode.h | 21 ++++++++++++++++ kernel/include/kernel/Process.h | 3 +++ kernel/kernel/FS/ProcFS/Inode.cpp | 32 +++++++++++++++++++++++++ kernel/kernel/Process.cpp | 15 ++++++++++++ libc/include/sys/banan-os.h | 9 +++++++ 5 files changed, 80 insertions(+) diff --git a/kernel/include/kernel/FS/ProcFS/Inode.h b/kernel/include/kernel/FS/ProcFS/Inode.h index 87226ba9..a71164c4 100644 --- a/kernel/include/kernel/FS/ProcFS/Inode.h +++ b/kernel/include/kernel/FS/ProcFS/Inode.h @@ -20,4 +20,25 @@ namespace Kernel Process& m_process; }; + class ProcMemInode final : public RamInode + { + public: + static BAN::ErrorOr> create(Process&, RamFileSystem&, mode_t, uid_t, gid_t); + ~ProcMemInode() = default; + + protected: + virtual BAN::ErrorOr read_impl(off_t, void*, size_t) override; + + // You may not write here and this is always non blocking + virtual BAN::ErrorOr write_impl(off_t, const void*, size_t) override { return BAN::Error::from_errno(EINVAL); } + virtual BAN::ErrorOr truncate_impl(size_t) override { return BAN::Error::from_errno(EINVAL); } + virtual bool has_data_impl() const override { return true; } + + private: + ProcMemInode(Process&, RamFileSystem&, const FullInodeInfo&); + + private: + Process& m_process; + }; + } diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index 6e7b04bc..625d34c6 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -13,6 +13,7 @@ #include #include +#include #include #include @@ -138,6 +139,8 @@ namespace Kernel PageTable& page_table() { return m_page_table ? *m_page_table : PageTable::kernel(); } + void get_meminfo(proc_meminfo_t*) const; + bool is_userspace() const { return m_is_userspace; } const userspace_info_t& userspace_info() const { return m_userspace_info; } diff --git a/kernel/kernel/FS/ProcFS/Inode.cpp b/kernel/kernel/FS/ProcFS/Inode.cpp index 6fccc23b..fdba47e3 100644 --- a/kernel/kernel/FS/ProcFS/Inode.cpp +++ b/kernel/kernel/FS/ProcFS/Inode.cpp @@ -23,4 +23,36 @@ namespace Kernel { } + BAN::ErrorOr> ProcMemInode::create(Process& process, RamFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) + { + FullInodeInfo inode_info(fs, mode, uid, gid); + + auto* inode_ptr = new ProcMemInode(process, fs, inode_info); + if (inode_ptr == nullptr) + return BAN::Error::from_errno(ENOMEM); + return BAN::RefPtr::adopt(inode_ptr); + } + + ProcMemInode::ProcMemInode(Process& process, RamFileSystem& fs, const FullInodeInfo& inode_info) + : RamInode(fs, inode_info) + , m_process(process) + { + m_inode_info.mode |= Inode::Mode::IFREG; + } + + BAN::ErrorOr ProcMemInode::read_impl(off_t offset, void* buffer, size_t buffer_size) + { + ASSERT(offset >= 0); + if ((size_t)offset >= sizeof(proc_meminfo_t)) + return 0; + + proc_meminfo_t meminfo; + m_process.get_meminfo(&meminfo); + + size_t bytes = BAN::Math::min(buffer_size, sizeof(meminfo) - offset); + memcpy(buffer, &meminfo, bytes); + + return bytes; + } + } diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index 1ca4b213..7e237b9a 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -252,6 +252,21 @@ namespace Kernel thread->set_terminating(); } + void Process::get_meminfo(proc_meminfo_t* out) const + { + LockGuard _(m_lock); + + out->page_size = PAGE_SIZE; + + out->virt_pages = 0; + for (auto* thread : m_threads) + out->virt_pages += thread->virtual_page_count(); + for (auto& region : m_mapped_regions) + out->virt_pages += region->virtual_page_count(); + if (m_loadable_elf) + out->virt_pages += m_loadable_elf->virtual_page_count(); + } + BAN::ErrorOr Process::sys_exit(int status) { exit(status, 0); diff --git a/libc/include/sys/banan-os.h b/libc/include/sys/banan-os.h index 08fe6a38..f514f829 100644 --- a/libc/include/sys/banan-os.h +++ b/libc/include/sys/banan-os.h @@ -5,6 +5,9 @@ __BEGIN_DECLS +#define __need_size_t 1 +#include + #define TTY_CMD_SET 0x01 #define TTY_CMD_UNSET 0x02 @@ -14,6 +17,12 @@ __BEGIN_DECLS #define POWEROFF_SHUTDOWN 0 #define POWEROFF_REBOOT 1 +struct proc_meminfo_t +{ + size_t page_size; + size_t virt_pages; +}; + /* fildes: refers to valid tty device command: one of TTY_CMD_* definitions From 762b7a4276f44999ee8da33420125d90cd172677 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 30 Sep 2023 21:20:53 +0300 Subject: [PATCH 076/240] Userspace: Add meminfo command that parses /proc/{pid}/meminfo --- userspace/CMakeLists.txt | 1 + userspace/meminfo/CMakeLists.txt | 17 ++++++++++ userspace/meminfo/main.cpp | 57 ++++++++++++++++++++++++++++++++ 3 files changed, 75 insertions(+) create mode 100644 userspace/meminfo/CMakeLists.txt create mode 100644 userspace/meminfo/main.cpp diff --git a/userspace/CMakeLists.txt b/userspace/CMakeLists.txt index aaedf8a3..276d0196 100644 --- a/userspace/CMakeLists.txt +++ b/userspace/CMakeLists.txt @@ -10,6 +10,7 @@ set(USERSPACE_PROJECTS id init ls + meminfo mmap-shared-test poweroff Shell diff --git a/userspace/meminfo/CMakeLists.txt b/userspace/meminfo/CMakeLists.txt new file mode 100644 index 00000000..0094e797 --- /dev/null +++ b/userspace/meminfo/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 3.26) + +project(meminfo CXX) + +set(SOURCES + main.cpp +) + +add_executable(meminfo ${SOURCES}) +target_compile_options(meminfo PUBLIC -O2 -g) +target_link_libraries(meminfo PUBLIC libc) + +add_custom_target(meminfo-install + COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/meminfo ${BANAN_BIN}/ + DEPENDS meminfo + USES_TERMINAL +) diff --git a/userspace/meminfo/main.cpp b/userspace/meminfo/main.cpp new file mode 100644 index 00000000..b9fbbefe --- /dev/null +++ b/userspace/meminfo/main.cpp @@ -0,0 +1,57 @@ +#include +#include +#include +#include +#include +#include + +bool is_only_digits(const char* str) +{ + while (*str) + if (!isdigit(*str++)) + return false; + return true; +} + +int main() +{ + DIR* proc = opendir("/proc"); + if (proc == nullptr) + { + perror("opendir"); + return 1; + } + + char path_buffer[128] {}; + while (dirent* proc_ent = readdir(proc)) + { + if (proc_ent->d_type != DT_DIR) + continue; + if (!is_only_digits(proc_ent->d_name)) + continue; + + strcpy(path_buffer, proc_ent->d_name); + strcat(path_buffer, "/meminfo"); + + int fd = openat(dirfd(proc), path_buffer, O_RDONLY); + if (fd == -1) + { + perror("openat"); + continue; + } + + proc_meminfo_t meminfo; + if (read(fd, &meminfo, sizeof(meminfo)) == -1) + perror("read"); + else + { + printf("process:\n"); + printf(" pid: %s\n", proc_ent->d_name); + printf(" vmem: %zu pages (%zu bytes)\n", meminfo.virt_pages, meminfo.page_size * meminfo.virt_pages); + } + + close(fd); + } + + closedir(proc); +} From 797ca65c66b889a935ec611914d9f00279ce11a2 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 30 Sep 2023 22:11:45 +0300 Subject: [PATCH 077/240] Kernel: Add physical memory info to /proc/{pid}/meminfo --- LibELF/LibELF/LoadableELF.cpp | 2 ++ LibELF/include/LibELF/LoadableELF.h | 2 ++ kernel/include/kernel/Memory/FileBackedRegion.h | 5 +++-- kernel/include/kernel/Memory/MemoryBackedRegion.h | 4 +++- kernel/include/kernel/Memory/MemoryRegion.h | 6 +++++- kernel/include/kernel/Thread.h | 1 + kernel/kernel/Memory/FileBackedRegion.cpp | 2 +- kernel/kernel/Memory/MemoryBackedRegion.cpp | 2 +- kernel/kernel/Memory/MemoryRegion.cpp | 8 ++++++++ kernel/kernel/Process.cpp | 12 +++++++++++- libc/include/sys/banan-os.h | 1 + userspace/meminfo/main.cpp | 1 + 12 files changed, 39 insertions(+), 7 deletions(-) diff --git a/LibELF/LibELF/LoadableELF.cpp b/LibELF/LibELF/LoadableELF.cpp index 9af8c1fa..7a580b3a 100644 --- a/LibELF/LibELF/LoadableELF.cpp +++ b/LibELF/LibELF/LoadableELF.cpp @@ -201,6 +201,7 @@ namespace LibELF return BAN::Error::from_errno(ENOMEM); m_page_table.map_page_at(paddr, vaddr, flags); + m_physical_page_count++; memset((void*)vaddr, 0x00, PAGE_SIZE); @@ -280,6 +281,7 @@ namespace LibELF m_page_table.unmap_page(0); new_page_table.map_page_at(paddr, start + i * PAGE_SIZE, flags); + elf->m_physical_page_count++; } break; diff --git a/LibELF/include/LibELF/LoadableELF.h b/LibELF/include/LibELF/LoadableELF.h index ed8dc416..1b3cc4ff 100644 --- a/LibELF/include/LibELF/LoadableELF.h +++ b/LibELF/include/LibELF/LoadableELF.h @@ -34,6 +34,7 @@ namespace LibELF BAN::ErrorOr> clone(Kernel::PageTable&); size_t virtual_page_count() const { return m_virtual_page_count; } + size_t physical_page_count() const { return m_physical_page_count; } private: LoadableELF(Kernel::PageTable&, BAN::RefPtr); @@ -45,6 +46,7 @@ namespace LibELF ElfNativeFileHeader m_file_header; BAN::Vector m_program_headers; size_t m_virtual_page_count = 0; + size_t m_physical_page_count = 0; }; } \ No newline at end of file diff --git a/kernel/include/kernel/Memory/FileBackedRegion.h b/kernel/include/kernel/Memory/FileBackedRegion.h index b7decd8d..a6160eaa 100644 --- a/kernel/include/kernel/Memory/FileBackedRegion.h +++ b/kernel/include/kernel/Memory/FileBackedRegion.h @@ -26,10 +26,11 @@ namespace Kernel static BAN::ErrorOr> create(BAN::RefPtr, PageTable&, off_t offset, size_t size, AddressRange address_range, Type, PageTable::flags_t); ~FileBackedRegion(); - virtual BAN::ErrorOr allocate_page_containing(vaddr_t vaddr) override; - virtual BAN::ErrorOr> clone(PageTable& new_page_table) override; + protected: + virtual BAN::ErrorOr allocate_page_containing_impl(vaddr_t vaddr) override; + private: FileBackedRegion(BAN::RefPtr, PageTable&, off_t offset, ssize_t size, Type flags, PageTable::flags_t page_flags); diff --git a/kernel/include/kernel/Memory/MemoryBackedRegion.h b/kernel/include/kernel/Memory/MemoryBackedRegion.h index 0b81d1b7..0b778f0c 100644 --- a/kernel/include/kernel/Memory/MemoryBackedRegion.h +++ b/kernel/include/kernel/Memory/MemoryBackedRegion.h @@ -14,7 +14,6 @@ namespace Kernel static BAN::ErrorOr> create(PageTable&, size_t size, AddressRange, Type, PageTable::flags_t); ~MemoryBackedRegion(); - virtual BAN::ErrorOr allocate_page_containing(vaddr_t vaddr) override; virtual BAN::ErrorOr> clone(PageTable& new_page_table) override; @@ -22,6 +21,9 @@ namespace Kernel // This can fail if no memory is mapped and no free memory was available BAN::ErrorOr copy_data_to_region(size_t offset_into_region, const uint8_t* buffer, size_t buffer_size); + protected: + virtual BAN::ErrorOr allocate_page_containing_impl(vaddr_t vaddr) override; + private: MemoryBackedRegion(PageTable&, size_t size, Type, PageTable::flags_t); }; diff --git a/kernel/include/kernel/Memory/MemoryRegion.h b/kernel/include/kernel/Memory/MemoryRegion.h index 6d1a7b0d..99a3078d 100644 --- a/kernel/include/kernel/Memory/MemoryRegion.h +++ b/kernel/include/kernel/Memory/MemoryRegion.h @@ -38,11 +38,12 @@ namespace Kernel vaddr_t vaddr() const { return m_vaddr; } size_t virtual_page_count() const { return BAN::Math::div_round_up(m_size, PAGE_SIZE); } + size_t physical_page_count() const { return m_physical_page_count; } // Returns error if no memory was available // Returns true if page was succesfully allocated // Returns false if page was already allocated - virtual BAN::ErrorOr allocate_page_containing(vaddr_t address) = 0; + BAN::ErrorOr allocate_page_containing(vaddr_t address); virtual BAN::ErrorOr> clone(PageTable& new_page_table) = 0; @@ -50,12 +51,15 @@ namespace Kernel MemoryRegion(PageTable&, size_t size, Type type, PageTable::flags_t flags); BAN::ErrorOr initialize(AddressRange); + virtual BAN::ErrorOr allocate_page_containing_impl(vaddr_t address) = 0; + protected: PageTable& m_page_table; const size_t m_size; const Type m_type; const PageTable::flags_t m_flags; vaddr_t m_vaddr { 0 }; + size_t m_physical_page_count { 0 }; }; } \ No newline at end of file diff --git a/kernel/include/kernel/Thread.h b/kernel/include/kernel/Thread.h index bb826821..c988f7af 100644 --- a/kernel/include/kernel/Thread.h +++ b/kernel/include/kernel/Thread.h @@ -84,6 +84,7 @@ namespace Kernel bool is_userspace() const { return m_is_userspace; } size_t virtual_page_count() const { return m_stack->size() / PAGE_SIZE; } + size_t physical_page_count() const { return virtual_page_count(); } #if __enable_sse void save_sse() { asm volatile("fxsave %0" :: "m"(m_sse_storage)); } diff --git a/kernel/kernel/Memory/FileBackedRegion.cpp b/kernel/kernel/Memory/FileBackedRegion.cpp index 086c9d62..b4314f6f 100644 --- a/kernel/kernel/Memory/FileBackedRegion.cpp +++ b/kernel/kernel/Memory/FileBackedRegion.cpp @@ -85,7 +85,7 @@ namespace Kernel } } - BAN::ErrorOr FileBackedRegion::allocate_page_containing(vaddr_t address) + BAN::ErrorOr FileBackedRegion::allocate_page_containing_impl(vaddr_t address) { ASSERT(contains(address)); diff --git a/kernel/kernel/Memory/MemoryBackedRegion.cpp b/kernel/kernel/Memory/MemoryBackedRegion.cpp index 971a8592..6554d7c5 100644 --- a/kernel/kernel/Memory/MemoryBackedRegion.cpp +++ b/kernel/kernel/Memory/MemoryBackedRegion.cpp @@ -38,7 +38,7 @@ namespace Kernel } } - BAN::ErrorOr MemoryBackedRegion::allocate_page_containing(vaddr_t address) + BAN::ErrorOr MemoryBackedRegion::allocate_page_containing_impl(vaddr_t address) { ASSERT(m_type == Type::PRIVATE); diff --git a/kernel/kernel/Memory/MemoryRegion.cpp b/kernel/kernel/Memory/MemoryRegion.cpp index e6cd61d0..2e2dab42 100644 --- a/kernel/kernel/Memory/MemoryRegion.cpp +++ b/kernel/kernel/Memory/MemoryRegion.cpp @@ -47,4 +47,12 @@ namespace Kernel return true; } + BAN::ErrorOr MemoryRegion::allocate_page_containing(vaddr_t address) + { + auto ret = allocate_page_containing_impl(address); + if (!ret.is_error() && ret.value()) + m_physical_page_count++; + return ret; + } + } diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index 7e237b9a..cca2ee7f 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -257,14 +257,24 @@ namespace Kernel LockGuard _(m_lock); out->page_size = PAGE_SIZE; - out->virt_pages = 0; + out->phys_pages = 0; + for (auto* thread : m_threads) + { out->virt_pages += thread->virtual_page_count(); + out->phys_pages += thread->physical_page_count(); + } for (auto& region : m_mapped_regions) + { out->virt_pages += region->virtual_page_count(); + out->phys_pages += region->physical_page_count(); + } if (m_loadable_elf) + { out->virt_pages += m_loadable_elf->virtual_page_count(); + out->phys_pages += m_loadable_elf->physical_page_count(); + } } BAN::ErrorOr Process::sys_exit(int status) diff --git a/libc/include/sys/banan-os.h b/libc/include/sys/banan-os.h index f514f829..7e4558cf 100644 --- a/libc/include/sys/banan-os.h +++ b/libc/include/sys/banan-os.h @@ -21,6 +21,7 @@ struct proc_meminfo_t { size_t page_size; size_t virt_pages; + size_t phys_pages; }; /* diff --git a/userspace/meminfo/main.cpp b/userspace/meminfo/main.cpp index b9fbbefe..b87118a7 100644 --- a/userspace/meminfo/main.cpp +++ b/userspace/meminfo/main.cpp @@ -48,6 +48,7 @@ int main() printf("process:\n"); printf(" pid: %s\n", proc_ent->d_name); printf(" vmem: %zu pages (%zu bytes)\n", meminfo.virt_pages, meminfo.page_size * meminfo.virt_pages); + printf(" pmem: %zu pages (%zu bytes)\n", meminfo.phys_pages, meminfo.page_size * meminfo.phys_pages); } close(fd); From b712c70c753f7819b421d0cf558a8b69eb23528c Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 30 Sep 2023 23:01:33 +0300 Subject: [PATCH 078/240] Kernel: Expose command line and environment to /proc --- kernel/include/kernel/FS/ProcFS/Inode.h | 9 +-- kernel/include/kernel/Process.h | 7 +- kernel/kernel/FS/ProcFS/Inode.cpp | 24 +++---- kernel/kernel/Process.cpp | 94 +++++++++++++++++++------ 4 files changed, 94 insertions(+), 40 deletions(-) diff --git a/kernel/include/kernel/FS/ProcFS/Inode.h b/kernel/include/kernel/FS/ProcFS/Inode.h index a71164c4..4300721e 100644 --- a/kernel/include/kernel/FS/ProcFS/Inode.h +++ b/kernel/include/kernel/FS/ProcFS/Inode.h @@ -20,11 +20,11 @@ namespace Kernel Process& m_process; }; - class ProcMemInode final : public RamInode + class ProcROInode final : public RamInode { public: - static BAN::ErrorOr> create(Process&, RamFileSystem&, mode_t, uid_t, gid_t); - ~ProcMemInode() = default; + static BAN::ErrorOr> create(Process&, size_t (Process::*callback)(off_t, void*, size_t) const, RamFileSystem&, mode_t, uid_t, gid_t); + ~ProcROInode() = default; protected: virtual BAN::ErrorOr read_impl(off_t, void*, size_t) override; @@ -35,10 +35,11 @@ namespace Kernel virtual bool has_data_impl() const override { return true; } private: - ProcMemInode(Process&, RamFileSystem&, const FullInodeInfo&); + ProcROInode(Process&, size_t (Process::*)(off_t, void*, size_t) const, RamFileSystem&, const FullInodeInfo&); private: Process& m_process; + size_t (Process::*m_callback)(off_t, void*, size_t) const; }; } diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index 625d34c6..a0b23e96 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -139,7 +139,9 @@ namespace Kernel PageTable& page_table() { return m_page_table ? *m_page_table : PageTable::kernel(); } - void get_meminfo(proc_meminfo_t*) const; + size_t proc_meminfo(off_t offset, void* buffer, size_t buffer_size) const; + size_t proc_cmdline(off_t offset, void* buffer, size_t buffer_size) const; + size_t proc_environ(off_t offset, void* buffer, size_t buffer_size) const; bool is_userspace() const { return m_is_userspace; } const userspace_info_t& userspace_info() const { return m_userspace_info; } @@ -192,6 +194,9 @@ namespace Kernel vaddr_t m_signal_handlers[_SIGMAX + 1] { }; uint64_t m_signal_pending_mask { 0 }; + BAN::Vector m_cmdline; + BAN::Vector m_environ; + bool m_is_userspace { false }; userspace_info_t m_userspace_info; ExitStatus m_exit_status; diff --git a/kernel/kernel/FS/ProcFS/Inode.cpp b/kernel/kernel/FS/ProcFS/Inode.cpp index fdba47e3..7bc0a392 100644 --- a/kernel/kernel/FS/ProcFS/Inode.cpp +++ b/kernel/kernel/FS/ProcFS/Inode.cpp @@ -12,7 +12,9 @@ namespace Kernel return BAN::Error::from_errno(ENOMEM); auto inode = BAN::RefPtr::adopt(inode_ptr); - TRY(inode->add_inode("meminfo"sv, MUST(ProcMemInode::create(process, fs, 0755, 0, 0)))); + TRY(inode->add_inode("meminfo"sv, MUST(ProcROInode::create(process, &Process::proc_meminfo, fs, 0755, 0, 0)))); + TRY(inode->add_inode("cmdline"sv, MUST(ProcROInode::create(process, &Process::proc_cmdline, fs, 0755, 0, 0)))); + TRY(inode->add_inode("environ"sv, MUST(ProcROInode::create(process, &Process::proc_environ, fs, 0755, 0, 0)))); return inode; } @@ -23,36 +25,30 @@ namespace Kernel { } - BAN::ErrorOr> ProcMemInode::create(Process& process, RamFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) + BAN::ErrorOr> ProcROInode::create(Process& process, size_t (Process::*callback)(off_t, void*, size_t) const, RamFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) { FullInodeInfo inode_info(fs, mode, uid, gid); - auto* inode_ptr = new ProcMemInode(process, fs, inode_info); + auto* inode_ptr = new ProcROInode(process, callback, fs, inode_info); if (inode_ptr == nullptr) return BAN::Error::from_errno(ENOMEM); - return BAN::RefPtr::adopt(inode_ptr); + return BAN::RefPtr::adopt(inode_ptr); } - ProcMemInode::ProcMemInode(Process& process, RamFileSystem& fs, const FullInodeInfo& inode_info) + ProcROInode::ProcROInode(Process& process, size_t (Process::*callback)(off_t, void*, size_t) const, RamFileSystem& fs, const FullInodeInfo& inode_info) : RamInode(fs, inode_info) , m_process(process) + , m_callback(callback) { m_inode_info.mode |= Inode::Mode::IFREG; } - BAN::ErrorOr ProcMemInode::read_impl(off_t offset, void* buffer, size_t buffer_size) + BAN::ErrorOr ProcROInode::read_impl(off_t offset, void* buffer, size_t buffer_size) { ASSERT(offset >= 0); if ((size_t)offset >= sizeof(proc_meminfo_t)) return 0; - - proc_meminfo_t meminfo; - m_process.get_meminfo(&meminfo); - - size_t bytes = BAN::Math::min(buffer_size, sizeof(meminfo) - offset); - memcpy(buffer, &meminfo, bytes); - - return bytes; + return (m_process.*m_callback)(offset, buffer, buffer_size); } } diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index cca2ee7f..acce6aef 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -119,6 +119,9 @@ namespace Kernel MUST(process->m_working_directory.push_back('/')); process->m_page_table = BAN::UniqPtr::adopt(MUST(PageTable::create_userspace())); + TRY(process->m_cmdline.push_back({})); + TRY(process->m_cmdline.back().append(path)); + process->m_loadable_elf = TRY(load_elf_for_exec(credentials, path, "/"sv, process->page_table())); process->m_loadable_elf->reserve_address_space(); @@ -252,29 +255,75 @@ namespace Kernel thread->set_terminating(); } - void Process::get_meminfo(proc_meminfo_t* out) const + size_t Process::proc_meminfo(off_t offset, void* buffer, size_t buffer_size) const + { + ASSERT(offset >= 0); + if ((size_t)offset >= sizeof(proc_meminfo_t)) + return 0; + + proc_meminfo_t meminfo; + meminfo.page_size = PAGE_SIZE; + meminfo.virt_pages = 0; + meminfo.phys_pages = 0; + + { + LockGuard _(m_lock); + for (auto* thread : m_threads) + { + meminfo.virt_pages += thread->virtual_page_count(); + meminfo.phys_pages += thread->physical_page_count(); + } + for (auto& region : m_mapped_regions) + { + meminfo.virt_pages += region->virtual_page_count(); + meminfo.phys_pages += region->physical_page_count(); + } + if (m_loadable_elf) + { + meminfo.virt_pages += m_loadable_elf->virtual_page_count(); + meminfo.phys_pages += m_loadable_elf->physical_page_count(); + } + } + + size_t bytes = BAN::Math::min(sizeof(proc_meminfo_t) - offset, buffer_size); + memcpy(buffer, (uint8_t*)&meminfo + offset, bytes); + return bytes; + } + + static size_t read_from_vec_of_str(const BAN::Vector& container, size_t start, void* buffer, size_t buffer_size) + { + size_t offset = 0; + size_t written = 0; + for (const auto& elem : container) + { + if (start < offset + elem.size() + 1) + { + size_t elem_offset = 0; + if (offset < start) + elem_offset = start - offset; + + size_t bytes = BAN::Math::min(elem.size() + 1 - elem_offset, buffer_size - written); + memcpy((uint8_t*)buffer + written, elem.data() + elem_offset, bytes); + + written += bytes; + if (written >= buffer_size) + break; + } + offset += elem.size() + 1; + } + return written; + } + + size_t Process::proc_cmdline(off_t offset, void* buffer, size_t buffer_size) const { LockGuard _(m_lock); + return read_from_vec_of_str(m_cmdline, offset, buffer, buffer_size); + } - out->page_size = PAGE_SIZE; - out->virt_pages = 0; - out->phys_pages = 0; - - for (auto* thread : m_threads) - { - out->virt_pages += thread->virtual_page_count(); - out->phys_pages += thread->physical_page_count(); - } - for (auto& region : m_mapped_regions) - { - out->virt_pages += region->virtual_page_count(); - out->phys_pages += region->physical_page_count(); - } - if (m_loadable_elf) - { - out->virt_pages += m_loadable_elf->virtual_page_count(); - out->phys_pages += m_loadable_elf->physical_page_count(); - } + size_t Process::proc_environ(off_t offset, void* buffer, size_t buffer_size) const + { + LockGuard _(m_lock); + return read_from_vec_of_str(m_environ, offset, buffer, buffer_size); } BAN::ErrorOr Process::sys_exit(int status) @@ -461,9 +510,12 @@ namespace Kernel auto envp_region = MUST(create_region(str_envp.span())); m_userspace_info.envp = (char**)envp_region->vaddr(); MUST(m_mapped_regions.push_back(BAN::move(envp_region))); - + m_userspace_info.argc = str_argv.size(); + m_cmdline = BAN::move(str_argv); + m_environ = BAN::move(str_envp); + asm volatile("cli"); } From f0b6844feb30050c8f68ae1c3604bf4a231b1ad6 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 30 Sep 2023 23:17:31 +0300 Subject: [PATCH 079/240] meminfo: Add process command line to the output --- userspace/meminfo/main.cpp | 72 ++++++++++++++++++++++++++++---------- 1 file changed, 54 insertions(+), 18 deletions(-) diff --git a/userspace/meminfo/main.cpp b/userspace/meminfo/main.cpp index b87118a7..222b1c2c 100644 --- a/userspace/meminfo/main.cpp +++ b/userspace/meminfo/main.cpp @@ -30,28 +30,64 @@ int main() if (!is_only_digits(proc_ent->d_name)) continue; - strcpy(path_buffer, proc_ent->d_name); - strcat(path_buffer, "/meminfo"); - - int fd = openat(dirfd(proc), path_buffer, O_RDONLY); - if (fd == -1) + printf("process: "); + { - perror("openat"); - continue; + strcpy(path_buffer, proc_ent->d_name); + strcat(path_buffer, "/cmdline"); + + int fd = openat(dirfd(proc), path_buffer, O_RDONLY); + if (fd == -1) + { + perror("openat"); + continue; + } + + while (ssize_t nread = read(fd, path_buffer, sizeof(path_buffer) - 1)) + { + if (nread == -1) + { + perror("read"); + break; + } + for (int i = 0; i < nread; i++) + if (path_buffer[i] == '\0') + path_buffer[i] = ' '; + + path_buffer[nread] = '\0'; + + int written = 0; + while (written < nread) + written += printf("%s ", path_buffer + written); + } + + close(fd); } - proc_meminfo_t meminfo; - if (read(fd, &meminfo, sizeof(meminfo)) == -1) - perror("read"); - else - { - printf("process:\n"); - printf(" pid: %s\n", proc_ent->d_name); - printf(" vmem: %zu pages (%zu bytes)\n", meminfo.virt_pages, meminfo.page_size * meminfo.virt_pages); - printf(" pmem: %zu pages (%zu bytes)\n", meminfo.phys_pages, meminfo.page_size * meminfo.phys_pages); - } + printf("\n pid: %s\n", proc_ent->d_name); - close(fd); + { + strcpy(path_buffer, proc_ent->d_name); + strcat(path_buffer, "/meminfo"); + + int fd = openat(dirfd(proc), path_buffer, O_RDONLY); + if (fd == -1) + { + perror("openat"); + continue; + } + + proc_meminfo_t meminfo; + if (read(fd, &meminfo, sizeof(meminfo)) == -1) + perror("read"); + else + { + printf(" vmem: %zu pages (%zu bytes)\n", meminfo.virt_pages, meminfo.page_size * meminfo.virt_pages); + printf(" pmem: %zu pages (%zu bytes)\n", meminfo.phys_pages, meminfo.page_size * meminfo.phys_pages); + } + + close(fd); + } } closedir(proc); From bb0989fdef65d8e716e67df7379d13ecace416e2 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Tue, 3 Oct 2023 10:24:10 +0300 Subject: [PATCH 080/240] Shell: Implement sourcing scripts --- userspace/Shell/main.cpp | 62 +++++++++++++++++++++++++++++++++++++--- 1 file changed, 58 insertions(+), 4 deletions(-) diff --git a/userspace/Shell/main.cpp b/userspace/Shell/main.cpp index 279c14c2..6ca69868 100644 --- a/userspace/Shell/main.cpp +++ b/userspace/Shell/main.cpp @@ -265,6 +265,8 @@ BAN::Vector> parse_command(BAN::StringView command_view int execute_command(BAN::Vector& args, int fd_in, int fd_out); +int source_script(const BAN::String& path); + BAN::Optional execute_builtin(BAN::Vector& args, int fd_in, int fd_out) { if (args.empty()) @@ -312,6 +314,15 @@ BAN::Optional execute_builtin(BAN::Vector& args, int fd_in, in ERROR_RETURN("setenv", 1); } } + else if (args.front() == "source"sv) + { + if (args.size() != 2) + { + fprintf(fout, "usage: source FILE\n"); + return 1; + } + return source_script(args[1]); + } else if (args.front() == "env"sv) { char** current = environ; @@ -634,6 +645,52 @@ int execute_piped_commands(BAN::Vector>& commands) return exit_codes.back(); } +int parse_and_execute_command(BAN::StringView command) +{ + if (command.empty()) + return 0; + auto parsed_commands = parse_command(command); + if (parsed_commands.empty()) + return 0; + tcsetattr(0, TCSANOW, &old_termios); + int ret = execute_piped_commands(parsed_commands); + tcsetattr(0, TCSANOW, &new_termios); + return ret; +} + +int source_script(const BAN::String& path) +{ + FILE* fp = fopen(path.data(), "r"); + if (fp == nullptr) + ERROR_RETURN("fopen", 1); + + int ret = 0; + + BAN::String command; + char temp_buffer[128]; + while (fgets(temp_buffer, sizeof(temp_buffer), fp)) + { + MUST(command.append(temp_buffer)); + if (command.back() != '\n') + continue; + + command.pop_back(); + + if (!command.empty()) + if (int temp = parse_and_execute_command(command)) + ret = temp; + command.clear(); + } + + if (!command.empty()) + if (int temp = parse_and_execute_command(command)) + ret = temp; + + fclose(fp); + + return ret; +} + int character_length(BAN::StringView prompt) { int length { 0 }; @@ -901,10 +958,7 @@ int main(int argc, char** argv) fputc('\n', stdout); if (!buffers[index].empty()) { - tcsetattr(0, TCSANOW, &old_termios); - auto commands = parse_command(buffers[index]); - last_return = execute_piped_commands(commands); - tcsetattr(0, TCSANOW, &new_termios); + last_return = parse_and_execute_command(buffers[index]); MUST(history.push_back(buffers[index])); buffers = history; MUST(buffers.emplace_back(""sv)); From 44cb0af64f4c3ed3f4193fb2ece344c3a248adce Mon Sep 17 00:00:00 2001 From: Bananymous Date: Tue, 3 Oct 2023 10:24:36 +0300 Subject: [PATCH 081/240] Shell: source $HOME/.shellrc if found on Shell startup --- base-sysroot.tar.gz | Bin 8137 -> 8147 bytes userspace/Shell/main.cpp | 23 +++++++++++++++++++++-- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/base-sysroot.tar.gz b/base-sysroot.tar.gz index a818f495d6cdba2d86cad519d4d32582cfd5cfe9..590909752fad60b9c3cc582ab757ad80a63acc30 100644 GIT binary patch literal 8147 zcmaiY_d6R7&^TIEEz;KBRkdpG5u{d)B35e?)fR1uy$Q7`s%EWd&6d{Q#NMk#ZGs?0 zjR-;#$@}@f?;r5J=bn4+x##x%aL*lY(oKs0g=_z8Ljt+}_;oFe4Pu(%qJLT226}m- zC&m_X{}@ybSdT$?^l$Rrd7;@InfC6-fmE>er)_G<{Q;%Kz!FMl_VHqAHmqFgaX6ca zf3Jdjw4vMg@0t9>1Kv$u*7og6Q(Hgdsj%_!PX3X)o_lxphg|}~ec(P*t++zMve(33 zu*}-mVvFa`>!3_z#rBkpY)fr^=FBv`4}a72baVuMkIu;{X3l-^p_!L!wor8AaC_tG zs%(L%o$mT-7M1!;Wzt=WU}?b>d3Bap$M*ZtV5_5{-~rOCtmM)qa&NTcwOJ8#H?dpkRg zqJ!1+A|%e=q`(!Ix85}}`)iz5A$gQP{TzPN z=^Xmge$4_H4i-8f7cYQz9Lb`)m(WjSPS_V0MC`~gDJL_lZ7|{TD&XHmDwzbHPl)G9 zHX@OLe41MSFdk7yPENPcH=?hhtAh+ikbxSTi=agl z@rax;^dS9+Y#1-s z8LH2DHD{8_Pb`l2EEx2DS@pvfborP6;&1T>^9nz}l~74|O>+Pk3Oy>qksJ01c=dk= zK3=A(?&T;Qu7+knQ*-)vH(@%!YuxMl5`(0-9DT_Li|0>13G0uGI4LE`{4Irhe!(}N zikuyR-~Is|C;XijZl+aUPwzUWbt7Lf;u;z0OAS<~wzJ<(V~fV)kCLbEH`xk(y>I}~ zX!%<;CmSoODTz9}yr#Ba34#pssH~U7F@Ba}jck2+&#C#b(#ts2XvWDJ`hb)86K|5N z(X#5y7|#cRQljtpK`>*?2jLCv2O2XCV-2<>PNT<~aFn-hM(KATpjK>O7 zEn5|W>dkot^>jDuFBwt%$rY5@99wy76=d=EU}f- z)St_EAkcsPW)j{-8v2-g7bP8GRBE>Hmtu&9PS7LdGS$6Z_q!y>^Vi|gxfJJHw~j?D zy8~G}7z|U9>oY2!Qd%$L#F+dNhmY75pDG?zI^LhLzHhy)rglD57B%6kTBuM!`dw?N zceZ$`@TMal1)~)zGiYHs%$R`Rq}5lNdsuv{W?~tXsrM+uA1%80mQCdKW3K83BEHZ1Fu!zMGYi^DL#*of6B@;oXjM@98x_YchPHiHb$B}@9zSyuI!F@9 zIhPc7600s@oQbpMz2^i4jjfYrV0UnEzTXaO^A2ms!s>7VZn$Huq&@Gw97nv`p#BAlE0x>5xq_24ahCs10u0Y^5>VUb)J6&Rm&<&z-Lg5l%DP8VJ5^uvk#o&_2*V z9v^WL9VhB@83^g%doyPy&%Kc#{SGj#OZ%{?7EqOTP-|z z%6s}u?r$Y;=x(?y1AdS9^bY{xdtBOXl%qLI=?JZ2wN!2F8L*q)`A;8ea;VUfQx1rU z&A{VY7j`*?cL`zPs!U7evt3gI#+O$H_;A*lzb1=EZu!E_ZR^4qil3gh1mCEvQq211 zCx^+-&)IRxHa$kPDiNJZ*s;?X+v1G`Da~8XG^CO^&p$1ojS07Q7Yr1T74a($%0&9H~qOPIrO6LVdc@XO`fi_5nb|D))23*pEa2*Y^H%m$qjW-d?koTjAF&`%*VJT3E7r!0Re4;pC=d$Yc50Zf`5f#*fjNHMgGk zfj4eQePP)9Ldmh=^6UDV-ZJPLDW6>Cp0ZB=$pFm;t>k7i{j!yG51lXgy`W{qm!y=IM_MJqI6V2ZqE zv8vRi@JFW0@0GkuWU3}-+zxDP)HzLtmu!1C$%sU*rcJYgy!jo^b%dvE6S1PYRDP-< z((2Vv^s%EwWn#cxcOxRXQ(pf=UizvnOMQ(Uq?iy1iGPw3a+bTGE@H3!!sD?5hrB+J zrNn(QhyAs*iUE|r`ab`V50^`?L+Ft52!cilpZYf2LE7vfEX+a6DLc*gN%yN2&-Jg~ z(*5@Q=X3CN$#`zMT1E;rrl z4y?~d6+D;*z)_|AuPdIir&lu#apEp-k5ZhPdSO^6FptjBIVurx?7J?lR?5X`T0R{z zK0O{EdN3!N60o6^;d?@3|B>_m#3N%h-^x&TyY#jLS?B%yC>e%A+Lg1E99Cei1O-Q_ zcjaO1vMH9m4QlM>N0~T~jl*C=$0!D`gp^ix$euLq$X_>w$4; z9p6msmOi`TE~)I@gLFZNl`2`Q@eUr#uYR)MgvIrkg|R@cY)hHBuK&v4NAB-^WjYGs zImmJ1f<8GNKm)>KvlHN2&$5{kikSm{Wlu~|5|nL0L;G0)OSn=1%C{i;{N5R~1baU0 za;&v|sx+GezE~XyE`5Knt|4Gqim(!aNx6!)Op70t0JjUyLC>Z^XJ=@0#juMp(Ku{M zJi_6U&obPle+n~Ay%n$I;PWn}*>6YXvf#c@I0T)_zY{pYj|yD8Ay|zo17ycd(LS$5 zYOJ7v-?^%lKcHT{O$v>$Znzgffgk};fo>r(Wd|ad7&o3=)T*eGgAhWRIVHP*=i&UF zA!BOMUHg&0v@$7z?Mn%toN!%zzv3FSxXQ77?ZXNx+ktsk!ouhLs=RC`m+xO_C9*P3 z0vP?nuMMcFsqF^llH!kMkx!n{l7I`3HLO_Jr7bfvv==#6snFU&Lmrt zvv-bml(e*-aYWoUL{)0wLSyTH<5bUY2S3XgnJtQMzK926D6fjN|Ipiu-GH;4*rYg_scvM>_Nd~Z&by7^zx^HP`50;u^L^nceto-j! zsf+ArTuJQkJgl)S)Yy59z+@BS?##yoUX4eFo-=Bu_D@%4ehvP5C-zDCD3q-rsW|OK zyOk$FVkal~{Kb4%vT^ijrO@=>nn8d zG+@4*{$YV2XFky%@nlH8b+AV#Z}uz!s-Of?_t!0YwkEk?`=~%<9uYqfK4dS<mcB zBe#KF!e_rBd6;X0OL_~EZn+69H}&u7tK~l*6FqRuA6%dBj<`QTOh}yOwShfZg43D~ zrC;nEIoJbGHwCdLK`IGXcTwqvf1hZ&OK$v2ja>#Qe-^KmAZyoFhmkMr_VSK=RdY;r zvK20;jTCxf;DYIU*v|+I;2Y-V0Lix%A!j;?QpyWM`#{yBYxLzlYhBP|mVCosuo7s2 z;HNp$Q~w?x9V+VF8k~u}fAjK^V}|*|73%tz^`l-VX6JBf#?8{Wvlo(GR=oM7v)kdO zr{GOa0n**_G$ruUP?vkrU6>0%pK^@k@CEWNR_b7?VUx{SOm|DPR!yal<{?7nx#~g0 zsG~us;O$Of;{*8)j2Er(kUE1C-{8{?NhVVIAM^$!KDq0Jfg{%EmgB}nR6S|>JXVQM z<^Gb-O*3ioLxhE@WWnK=qVeoNtNE~_h!NtWtf6!6_kS>w)S^Vu5OqMDmY0wkYO9=> zLhQI8-trFsMxw+bEQWMNBr%!@$e(E0a|<>>%-*yXDOLMCRd${>Rqh)~BsN7A6z8?WS%9d6%WB1q8IKSd-pQr( z3+P;7Dj-10J(Z9;g!Uq*U8wz+)A?3T7ND@?cz3}rZM6DnDDb~7U@ub^$^!C#zzcwK^Myd4HM;)G){z##9U}y(6mX5CU&?i*?x4QLGcGSDBnf7AsWV zTt8Ep-FI_;$;r3mwZ!E9o#j``{QIT(2Dhd8#$B6l{%Y>Dw&EIU^nMI`cC$04Q}^3z z=43H@Vzc!lua+D)7{~keeTEN3-j)@9c!f@P(M$7x@Bj5Ydx?4}AqNpL-a{ze(mddd z_l$|T`G)-sQzKU+m3*vC0*9^|s~=y2(;;;88I|8%WdQv9t!kFy!nj~{ky|Ut&h63p zYzxsy){o}b$jM077fU)@oRJJ22)6337`(f;!MZ~~lCS5n3nTy{>foqZMm>kZ1&oYD z63Ppcor6Voh&&<;s!C_DW74ZFJ|a>5GxLRfxTA4Hci%-Awen?P1TSP#bOb{g!Tae` zcX1$0WUckqnQjT&OtqlTwN%t9Z@SAh;4y)tjv7=waQbSiYm(}M*1=vkTu}h@YR}E} zuJ(<~zKpASQP2GE2`OiD>z&(M#BSJ&R^~war;m<3?o~hk`cu>1=w~kwBw$IS-lM9x z&du1!(8$vmX+gc#LrC6I9Y2$mVGQ{bjmsM`>lY7fywS+)C$3CAW48661IFJ<0fP3n z@0-kQ$u)FO1ZMJul=)6Rf&U`4y~Np_x^>`eXSu$|;DINUSs~fueWv5-pv^Pn#wrqp zr$5F8o&hRg_lNlQdMj}z?WO_g)zpQ(>IiV+FCp^XqtFOExB{kq6|!yrZ%{Uh1N7XTd>D#)o{qxc)96|>5x_q$;m(EP#R3lBK(s>veJAf zS1IV9@7B9oucqdhQCG&*G7c94u@Kz~9J}$Z@Z}5&8#Q&MHWk)2g z<{A0gAVc%o7{mE7#J4Z)5dP3>ZAvr9Zs>trnaTd&*=g;m&;gi?^x>l_=DY5sboWV* z{+;Ch^7FG~zQ()8u?9Kx&!lMHKqMYMX!ab(>J4)7rjNbMRh=Z4K&DT!2 zdjhNCs(a_x85SrU5*W4H5P|K9v&gG_J#W7aa>7L+`JT2S4ksW=u#o@UifuT zZ25-JFP?PIU{?*?$;mNq`cVT(o2=C)5nxWD14{dkV{%~NL@mQ!= z-?J{zt@gspd%jychc0~!MkfZOCp+ZakXB-R-P3A9@3RqF5oOb&XAp6)gJSI#sJZhq zVxT7a6>pCtznj&KF(+!Qkk`Qc21o$?IGC9SydzB58Ht^-!SkCR7)F61N+XCLx{9H58v0caA%N z(hY{{Rrc^~$yXqp9d*OHem0kuz8#B7(<`YIX?F_q-O{W6wwu!U+q5`0H&=n{K5u9h zKwFR|U=MVS2EvxZqe|)>WDT)7O3^lUb#q&kfun?5i_JfRDZKzku90<&9QKw~oZQ~I zZ6^bvmgdK=R(8o;JfS!R=Z6*Bb&%jXu=Y>>_dR#&KI0>`?)Qf|+Pv#Jwd${a0OMY6 zk@hi&oUim>8~Su`vX^tXB`@t!k~Li|?sDtrC&wGk%oU1r5cHev>1GaV$l(3;#?aJ` ztf6OYK0O$p-_hAK4tR-%W8d%Q!#l;Fz=4Y$zCadl1II@OyqBWtjLgb8|JtL4XfPR4 zMMb1wgQ0&TB>UF24}Uf55z)-sw_5GUF0D&174nSc_EJ_Y9QJFUvm{GY>Wahotc9va zs4waMRobp9UVTMeIxPGMRw%WVz37-*Tdi!9F4bx)m|uFo8+B*EtQ<6O3iMAudXw{D ze(^glPj(f%^lb_ml1Q^G5bWT;UC~-)$z(4xgndR+iR9%xsyt*xdI31~dUr*2x}L^a zFNNx}Di^@V3@&v`dBuO6P>+hF-E+$DO)4qv$F@0t%lq`s1kLW}OX;gmWBT3p933=o zpf#*dxsKhbZ-us{0+T(S9zeezx~5&Z)P>6(eMojObPf5X_NCfUosH$$&7k{o=AHII zk1h)@_TI}1@Ej##4|!FS1p2DNON)F1FY>E(2cCAe4-)npzyWXIJ`JgozYvqzki)R= zr1VBpWD=_-z9FfiGVDQVr|?C8J?xppPfWOR$m)wwH^b9wP zlS!D<=Ntt@%zphfL*MsbshKD*ka(OMEnoR>r)Nc>_oxbjB!OaCdd0nOw z8ETGn$o9xgc&s=0Tj0FNRBdYe0|)M~&zxsZ-ODb>*DETIQJVLpf7B?vW^GJ<|GG-G zcluPGAC+3pZvEkW!1e?_s6M<1ySEQ|4NrOdryxdUu8GMxB=DWPNY?YAUpH#&OLMG$ zU>^+(->9us5o}_*UFi&QgYF>$lFP3|!6D}AuL^G`WSnQ9ww{Q9{}`{_@FO4F#kVb0 z5`-$3zXgKT*h;S4kiWikI(Hz~U;7f~rl`T7=~rP`yLksD>+h?19sJ2USA?-e4l{Z)wlzGxwm>=Y@Z~^8dyP-fxYYZIv`d|6N9Ta)uCq5O!TZ#J9 zcSQgl{lazS>J1OVR1`>9Pax?(wZIP`PIAz~I<4$~6=*6Ibm~PCCyICFQ%mQ>+~lv7?mRBo zfn@H~GUsaT%Eo~Ulp7SV2S3K?d_PA%@+lJZsd<343LgJ5n`4u-Yej&M6Z=oRuIQEi zds|7u$Uokk+g)BYj~WmN)qT!pWnKSzB3J(H|Cd?%{SW!EOy?fOFa^c`0Da=T{{R30 literal 8137 zcma)9`8yO2(8uNu^rCN|PtmYT7L*6IFS%)$*o{Se$nWmc5-pdJ zuc``jpAs&Mh(eYh6g-qUl9*Z=wXl#08YDI%9I8#efx+H8ExyAQ+`)$OhScCiTk z-WCqG?QmOz->GJvvRD2UYfM#BhMlMSaJ{s==v%NFbpPu%JbEJax61A8=jT9{^mMLc zuB8DIixd4g{R!2aJ@*KinLP4VpgvZ#7W+IFT(va7GFGgZ968oS%1kP!v!M+wqIXk* zB{WC@_|B$|kiVSyTGlj?9P764-@N^H_FyvVZIvD0I(FZl)OGZ>Dxo{0(&xHU)5Y73 zi(Y4U><>@>{%)-_G_q7{IN}g3_{|aRsJ60wNhxFU(SFYN6Biqwjjx`BKQ`kp8ooV! z64$$qLXFlqnX-<|qdMourkgvv>N}028}BQJ*V>rf4LN=4ELkNOrxGiPoM1CduIAnn}1_#?Xbd(u~0 z)hk=NEUK#$Rb#A1uM%zB<&oqfXwYoGp`?(iIO4DL@^*n_&A7%bjm$hz_%ff)y zobdM_ZwX}o*^oFr;HAQw$e6%S+jLXrj-ALCdyvd9dN@CI#_&3qRV`g@i|TxzJ|Gj4 zbv@o~fetjJzYlCFkD_Y{xYxZXJknVuK|0{{dpHb4GCDrskP5G8j-3R>yC*?L3Gh2< zFJ2xmy^f{XKXnC$$>4kjTiK3th9>iz%9P=Se(#B2eP`F~$~5 zuS&wfUA3xJ_Z5$jf`|=BJBdvHb72SW;}Npq?!*K)phi>S+ZcMub(t;9^MIYbB7WHj zBB?%YTE+TUSKx6qq`AXEOF!*4Zc}j@W*vJ)oaXcVOAUqEreklDPXC;w86Nv7e@ZN{ z#3FOWkX?FbdIMVNW%bc3iOvVs*B95<2M>9RT)z5(ueH%#;ZltNmFkAV7wN>3Y@@Kn zBGf_A`l_iJNUyHjJ23A9o9$&c;Px0M0(F= z3fh*JFGOARIb0F#|wNduY5h+j!5!2&|T0=2vUK^X-EMOC5*MgVJk#8%76=??*jZo98}_YerP_ z8(iPW+|tM;g|I7V`LCza_za%8{6NM$6fGFKc6-%AbXNi)pJ_BHx@qB;{~<(DTW1bT z>(dG!-DQpF`Gwou+|*+tAlEoLN~DDEP0Djz_dkFByl{}hv&;WIGkfhiGTc9$_wm7T zP$3-ooL9r{wj^(GwPZhg+YgkAYPPv@@5Ac>w%E>re5$~bwut0Nx5XofoA^T>b z7mklz^_?EmiAzL2tM?<-hwKpEsH;;iMS4*Dz$;t5F>xjTLaAjibkwF6+LxpxG0UTvWAiT z9zx7uxs#yU^iw%4^(^bjAwgzQ8yKr`t53n;VGvdCPXD{Npv=Y=4%kPeiSIZ-g!f~$ zhQIIu+Wp70RWQ{r936=wxi9$gO8YCiuD*Tk3&Wm{C`*g(g!?WwzKqTCt=SRYZfHA) zmgB&x#NLgYanGJFnupNA%9H|~d=(o(H-arkHTXZg^Ek?gT- zl;lC2Pf_rKYiW9K;NC-Dze3*i(7ND?t5EB*GDEe8t z5>~Utj;D-T$dp#L7;}e@l|JBdte*Ox_l3yp z3O}m;H(MjIYMjF^XXpH62dulkhJVNU^N)3Aku+`REb-*T4C?9Z3C0Zt$@HV2gyVQt zqJAjzks^MhLEK=X`dU58*nIJy8W0_#q#=DT5yuF%_8_bcy& z>yOR3_$%+FPLQ7~l->{0Oe=cM-VOczxiXZy)I{_H&t%G`Hc37ORbmVLe<%wUy7$Kcw*o1h6=>is~8<2H;yUAZ{2j#wKJZvF@s<)e!^9Vv>Ks?qM8xd(-0spfRW zQ!7s`51{%V=;zVI93rDfn8o_FVce%txnb>xg+@{YDUUF#b%kME`KZ&dwppR16hY$Z zHvGTC*e-_W5qvFkr)-nQ47XgT!h7)sq^k_p4R0{zMAL>0Q&fES7s%~l919QtG3mjp z!uEQ1T8TQdBcB7-$m5%z$A~(%k1!Px-C)cqSYl?C++GPL_C&v5$ia6p6N?GOdw^4m z9=v~`GxF3=yarmUHPo41JLbM)Q3IX8=Ddwhu=+tIP|woG7bNy_No z4vK<+^yHoEM*Vayd;Rvy|5$=y)y$t^DV}G*Wtf+h*+3^C5XUvL9wP(092iVhq#bfr zsguXA$hZH^PF;vAQMb&}nRYD*bU0ar^>4@?ka|$DaVIhZEqR-F%zJk2)VcrL@At@E zJq>~?c?Gpgj+lUct@(=HJE+bw7gxL@wAt4tyQh}#6tgs8FA9`<$&V%G8xNSCXq^)} zum(W2wx7!?$;i6K$Ax(;nR&6?YqoQ1BxQiWij(()M+eKC98E!c*6ERv5zSGfczv01vLw)*dJx}On^(M8d(f9?3$pN zzN9gz=;}KGT7-WpIwgyl#b$y-%$u~j;O%^7v%65SZ@t{F@5~mD8vIyA*iW{>vY!))lal?F)&} zXkLtYdF@G-Q6WtL$zrkm{!%#7VKC{D4!rqOFbq0>0_L;Y#S(wF{Cpx9&)FO4cys)j zxu?OEJF_dh6Z=$XGq!NUZ)T(~ZaBif?ycGg!OgSw`z_~NcBLa1`wyC_si0la7+N5G z8{JU3d4yl7gSW7n5`;2bvFqTn#$~Jwz_bUm;3>cM4IbhYLOV z8!W>S&DWi`XO3!zo2`ZYqDDZGs#ooWFmh4j-PdxFRzHTF;Y#@895u{tK1@ zb!UDP%BR2I$&?*5IZ5TCZB;=Bh;{rh$NZf+4IZ=Co6NCyXT(oj-*;D)@LgX2p!(1Y z1`B)GQ`jnWfg`8B>TJ@XZ6Rnd&msTo!Jz5JbghA9$k5v;UH;gf$t}sZ>gziTYXkXv z=%(nA$;ow#B|<~=bs1x#khGTWhsYWUiURW2XrGNpX!8>e>YuP?>wF!8CeFaeYpe;h zz5vwb%K3)Z8|}*eb)Yd5Cim=Q{as%z*-owvIy0lGrmLb&866KC2AU*;zhF&H=PNGk z%>o46A!Sy*=8ySnU_2#Xup5ta!gsW&Hmf!ngJT%=HVSfLdADK^3$o5yXnW3FU2oDd zpxCpi#WI;aE6Y;3 zI@%%t1&F2C2wf37jk zag_2s`FjdSx$E=kSB2Q-Yb&3|Uu6qj*cC9y1eh~~12C*WW`FGrDPalCi{tSflDwr! zN3jT3m#{!H`P3s&V&-2;(|Sh{8`_*9PfkKJda37f;PYqP9~hrugRva`PmVY*YRlR3 zl?avqDa{{1XL;Cz-ZmDmb3)AZSl|TN(FG_k%ElH+jkn|feggs$gIQris#IiWeB5}|?UK(NO1Fo`n#2I!oRId}F& zo$HV+jMm{U;fY~tXK250CJ}gXUmEL*okDoUBblH8IYv2V9Z+1f%!Efomm}rNO$Q}E zpah4RQ1lC6J<;1#OkH+1-cEJJfwSSfEq4nOO9PWFdo5EBgClzZ;>8E9=d7CXAf{41 zp>eKS#;AA@BRf_GJA$wmlU~1b*JkDRje8%CJ9k_ffg0(EcLaVGffr!}B17Be6;nG&EXLrLS&POK2{9I0yS@TEoAz%!Kn{P1d)cJ&-^v&dzpJmpLl*urz_pyFV*=LMF)L7rLQRyPwA~5 zV^8q(np65;GJR&3<~;K+@egiOA;&a$6diBz&&8NjqvQvgJkIsiHb%3`UinC^W}b{On`>L-ZRMj=WZMzSy^CQxoSOdnvwyR*I|P zUtGT;Ba?}e#+T^L-6>8L&^FDc5BV?mvbL&&Jj`SEwYzGNvSmo?dTrhgCuhF(jecFS z#nGu_9CXecD9@WlOEI3AH9~ro8%1+4jW|cQJ!W?5ivpa;Mto?^NGsr zwn;OX!;?YYgToI1bi`ftn~#RWX$eIm(Nu?}qIV-zatAn&6Q_()`A5D+c2xX>-RRxH zH9zu2-@CqdDv8pZQRub7O6J^E)=1^ZwMKLM@t(JUndHZnqm2b~u=cdVcnN@tF=ru>aN4q9~uj5eDE4=x2(#eZ3sV@0HtiyP< zql6oD47!zd=1I;$Hty!R_9T9l1yyg}2hz;^W<@RCh#PAYf=P;kxn73#x1DY~PNlZI ziP})TH@+#)ahweLy25F3kQ~5yQAO;}BT@Hlc|~Fk$*5{9etNTC1cK@Ly@%GeZ)FUH zj|TjX^Fq#@mMv0G^1H9@md^cd?{-W6Q|(bNzpJITIWHcZ_*5h(^gcLvdS_mg+BMh@ z8WibpO1penv0%!Q7W%Aal^+Zt#BOJ%{`}&s>kPCPT`7h+?Qo$M@!3~=$91_2cxPW^ z3Q1o^vP7Fw|J{*N-&fTwrB3f@Ptl~G?3p)FKXfegu2z#qggEBj7G=2;f;u;Q@cr;k zW4dG-`yI;`NnS}Xf84Lj(2Akk$e|s$cu>hb_VpCpaVT)haxEJ<&`~SmY@L~@k*$Mr zh;dD)z6k}z!DFT)sHMaDkH0>c3`4@jG}~WP6@;r3Wh2(0!5iYA$h5GCpF?(;6>8Bt zgipGkF5LL~P=qqz@x0NovF5;_w(552DAM&#z(6sJ(claHOKfYT%e0J)qx*pJCd@T$ zqd`Ij(C`gJ)8DMj2E$s~ly3jw>ay|3$A-c&0Q4oh%et9xMXW z&9^c(MG}diNb)YI#Is{i?y{`&=qnO z8)(AE>LaD~&f^wQ(x3&(sT`F^qdkf_q&Ij#^ke4rzLKCGpeMx2y|S;ZyEond2jBaM zHtg0!h#vR=YW$ru_GX<8X}sXl;pg?MsR$eBd#{-`pa_L!S z({9%!FncoxGDwr1-gqO2F`wQ!BpOuh-~4Y+`GiGA6iKrze!Ee`{e1HX4|mNiQ4iUnDTszzE3vQjG5^7LiHKO|#?}8s$bO4nIB;YNVS<3f(<044{?-9lfoxBA%VZR9canwP4kv z4sDvS7>%v{CiVRuFx>1s?2!<`2Sqa%FZ)JbHwo}+`LF@by}KKJat7(AX<5V`MM8AH zl@;x_C6CEr>JuF4oXadzpySYlIQ_e!NC;uYsve!-Z4Z{4-; zSZ_+rTj4~WLy(dySKOCJ}sIo3y9$74P%v2tWfHUTWT33W)q6O##o;{&=v)Y1o=eCZ9c|{D3#kxe3R`kBur&E=PMepN9;pAosoN3jg!z7*m0zl70Jph@mlk zx(9{ADQ*vgx!*jY7##cIpx^psZr=3k$Sr8$;|oEBeb;#Wt4>^BAt`N&YXxagX3x))uNG#1j&3 z1u`};wF}$+f_iojpULT>y~zAAMpvyCHv0n?;+O!V$p~!8^-Lxjf5d zz*g1yg6Hp*jtf4w>s}&)^iu2EZ8CT6>xs+r7z1v%V;;ImG%(n*-C`01crkeaN)d`! zM=TRI274WQ7Z%N4m(NraKa!w=u*Y6L>juv33~?>!y#%ZV>ZZdmZ+A>{xZ7t|idfMs z3+MUc{aus-Wye#z$O$NH&()cY_-}!5&Ile0=7z5ru~U`RS9pbXAmYQ_A;gtjuMs<#uDZdz%AxHzy{+}J;C;Z2MqXc{l|(fDuK*_Hv$C$ zZ&T_9j-!GBJMkh3YAZCy)iXgy%w6yJXh2;6vno>?LjbEPBc1`x4iiH5@XRuuUTxRm zIYLnVKd|8pg&_<;Kv{KMdBJFQ8C|Ln-W*DEizd5o=zdSZ(2E5MaTFu_TNk$b`LY8O z|JuEK)H&FH(KUK7t9#ME7cAe|N4+X6EF%26b6f1L=#I$NPFm-@qMzSgjP|%%gT}Dj zkes8~kd2-Mv+X}74C1@I#9kzZR#R%9qCD4F zA3-nu`eXEKnyY2h_#@eI`^)#r$8xO_4!VgID{BXqyAbtg^0brA8%@+?BqlB{sNB)E zM7u5%raWo0C&&N!x*c6)0Sk^!O;0yE@VyZG`Sbl{i3Jz6h2Y26rbV`KrqVyl7rRnY zPIsdZf)lGguO%jzdxlO|~*FgpPwudH;c z$GnKiA@y!ZBB9AFT~0*rkZQOxG<)ohV!8i$g~h>F=LvAjyQ4R93bE=Gc9+?D!NumZ zqgPPHHYo9F>BE{mw3`jyNmDV8J6*svDA5wC;VQTqEJcPbvvhT0SvL5y~T-0xSZN7237n<1h-dOSUM-&-pj6Hi}#D@G}fQi{I5Of-+j{;h73H3(RYf` zkBf0S%g{Z<{|UIER*jdFlaM9-~%ekU0t=2x>^9&67)mwDcvGIIyf(Xtkv0MwOFFj@b^e{Ff zl&+g(&Fz8O-?uJil@SlrHztMOGEX_?vkmpvSik}ej``mwM!$uFb&=%V@~o@A`ESU# z6_!IF4q*DxKTOEB_bvyX zi7&AjDTO4OAeH^59A8>G2Ghi%CNG90R*0{#Oyy5cR}8JOoDOtXXHjEm0sq1r{(%zh zz1GLM=VtsC`n`~%UvzxId&j3T;igC~;Mf+U9)540wnW(oq=l%{i4ZbnBYjbX!@*xO z3eIq^2HHoZ!Yi*HkpoPY_sPg+@omXzXKgsW4W>_{IiFDn#qPX1$IdHZ{O diff --git a/userspace/Shell/main.cpp b/userspace/Shell/main.cpp index 6ca69868..2da632e1 100644 --- a/userspace/Shell/main.cpp +++ b/userspace/Shell/main.cpp @@ -691,6 +691,24 @@ int source_script(const BAN::String& path) return ret; } +bool exists(const BAN::String& path) +{ + struct stat st; + return stat(path.data(), &st) == 0; +} + +int source_shellrc() +{ + if (char* home = getenv("HOME")) + { + BAN::String path(home); + MUST(path.append("/.shellrc"sv)); + if (exists(path)) + return source_script(path); + } + return 0; +} + int character_length(BAN::StringView prompt) { int length { 0 }; @@ -717,7 +735,7 @@ BAN::String get_prompt() { const char* raw_prompt = getenv("PS1"); if (raw_prompt == nullptr) - return ""sv; + return "$ "sv; BAN::String prompt; for (int i = 0; raw_prompt[i]; i++) @@ -853,7 +871,8 @@ int main(int argc, char** argv) if (argc >= 1) setenv("SHELL", argv[0], true); - setenv("PS1", "\e[32m\\u@\\h\e[m:\e[34m\\~\e[m$ ", false); + + source_shellrc(); tcgetattr(0, &old_termios); From e780eaa45f97dd379900d269d1bb0c7b0b0af4d5 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Tue, 3 Oct 2023 10:38:30 +0300 Subject: [PATCH 082/240] meminfo: Print allocated physical memory percentage --- userspace/meminfo/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/userspace/meminfo/main.cpp b/userspace/meminfo/main.cpp index 222b1c2c..147fae24 100644 --- a/userspace/meminfo/main.cpp +++ b/userspace/meminfo/main.cpp @@ -82,8 +82,9 @@ int main() perror("read"); else { + size_t percent_times_100 = 10000 * meminfo.phys_pages / meminfo.virt_pages; printf(" vmem: %zu pages (%zu bytes)\n", meminfo.virt_pages, meminfo.page_size * meminfo.virt_pages); - printf(" pmem: %zu pages (%zu bytes)\n", meminfo.phys_pages, meminfo.page_size * meminfo.phys_pages); + printf(" pmem: %zu pages (%zu bytes) %zu.%02zu%%\n", meminfo.phys_pages, meminfo.page_size * meminfo.phys_pages, percent_times_100 / 100, percent_times_100 % 100); } close(fd); From 7ce8e2d57bfa6c900a62a871288a89cc88d0bf6a Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sun, 1 Oct 2023 23:43:07 +0300 Subject: [PATCH 083/240] cat: Use write() instead of puts to print file contents This allows printing files that contain null bytes behave more like you would expect --- userspace/cat/main.cpp | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/userspace/cat/main.cpp b/userspace/cat/main.cpp index ec8fbf8f..28b43095 100644 --- a/userspace/cat/main.cpp +++ b/userspace/cat/main.cpp @@ -1,18 +1,18 @@ +#include #include -bool cat_file(FILE* fp) +bool cat_file(int fd) { - char buffer[1025]; + char buffer[1024]; size_t n_read; - while ((n_read = fread(buffer, 1, sizeof(buffer) - 1, fp)) > 0) + while (ssize_t n_read = read(fd, buffer, sizeof(buffer))) { - buffer[n_read] = '\0'; - fputs(buffer, stdout); - } - if (ferror(fp)) - { - perror("fread"); - return false; + if (n_read == -1) + { + perror("read"); + return false; + } + write(STDOUT_FILENO, buffer, n_read); } return true; } @@ -25,21 +25,21 @@ int main(int argc, char** argv) { for (int i = 1; i < argc; i++) { - FILE* fp = fopen(argv[i], "r"); - if (fp == nullptr) + int fd = open(argv[i], O_RDONLY); + if (fd == -1) { perror(argv[i]); ret = 1; continue; } - if (!cat_file(fp)) + if (!cat_file(fd)) ret = 1; - fclose(fp); + close(fd); } } else { - if (!cat_file(stdin)) + if (!cat_file(STDIN_FILENO)) ret = 1; } From 2eef581737446a24b8c74cfa37e5293febd517ac Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 5 Oct 2023 18:52:05 +0300 Subject: [PATCH 084/240] BuildSystem: Try to set compiler only if it exists --- CMakeLists.txt | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5da27514..4c3056da 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,16 +8,14 @@ endif() set(TOOLCHAIN_PREFIX ${CMAKE_SOURCE_DIR}/toolchain/local) -set(CMAKE_CXX_STANDARD 20) -set(CMAKE_CXX_STANDARD_REQUIRED True) -set(CMAKE_CXX_COMPILER ${TOOLCHAIN_PREFIX}/bin/${BANAN_ARCH}-banan_os-g++) -set(CMAKE_CXX_COMPILER_WORKS True) +if(EXISTS ${TOOLCHAIN_PREFIX}/bin/${BANAN_ARCH}-banan_os-g++) + set(CMAKE_CXX_STANDARD 20) + set(CMAKE_CXX_STANDARD_REQUIRED True) + set(CMAKE_CXX_COMPILER ${TOOLCHAIN_PREFIX}/bin/${BANAN_ARCH}-banan_os-g++) + set(CMAKE_CXX_COMPILER_WORKS True) -set(CMAKE_C_COMPILER ${TOOLCHAIN_PREFIX}/bin/${BANAN_ARCH}-banan_os-gcc) -set(CMAKE_C_COMPILER_WORKS True) - -if(NOT EXISTS ${CMAKE_CXX_COMPILER}) - set(CMAKE_CXX_COMPILER g++) + set(CMAKE_C_COMPILER ${TOOLCHAIN_PREFIX}/bin/${BANAN_ARCH}-banan_os-gcc) + set(CMAKE_C_COMPILER_WORKS True) endif() if(DEFINED QEMU_ACCEL) From 4d6322ff9c28709cd9584a0e0b3ba4149ee377e5 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 5 Oct 2023 18:52:44 +0300 Subject: [PATCH 085/240] BuildSystem: Don't strip kernel --- kernel/CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index 6d1d9dc7..c23387ad 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -194,10 +194,10 @@ add_custom_command( COMMAND cp ${CRTEND} . ) -add_custom_command( - TARGET kernel POST_BUILD - COMMAND x86_64-banan_os-strip ${CMAKE_CURRENT_BINARY_DIR}/kernel -) +#add_custom_command( +# TARGET kernel POST_BUILD +# COMMAND x86_64-banan_os-strip ${CMAKE_CURRENT_BINARY_DIR}/kernel +#) add_custom_command( OUTPUT font/prefs.psf.o From bcf62c5f2e6368129d1b7f421c22ee940b69a675 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 5 Oct 2023 18:53:45 +0300 Subject: [PATCH 086/240] Kernel: Rework interrupt mechanism All interruptrable classes now inherit from Interruptable which has methdo handle_irq which is called on a interrupt. --- kernel/arch/x86_64/IDT.cpp | 127 +++--- kernel/include/kernel/APIC.h | 87 ++-- kernel/include/kernel/IDT.h | 3 +- kernel/include/kernel/Input/PS2Config.h | 97 +++++ kernel/include/kernel/Input/PS2Controller.h | 11 +- kernel/include/kernel/Input/PS2Keyboard.h | 2 +- kernel/include/kernel/InterruptController.h | 46 ++- kernel/include/kernel/PIC.h | 27 +- kernel/include/kernel/Storage/ATABus.h | 5 +- kernel/include/kernel/Terminal/Serial.h | 7 +- kernel/include/kernel/Timer/HPET.h | 5 +- kernel/include/kernel/Timer/PIT.h | 11 +- kernel/kernel/APIC.cpp | 435 ++++++++++---------- kernel/kernel/Debug.cpp | 4 +- kernel/kernel/Input/PS2Controller.cpp | 94 +---- kernel/kernel/Input/PS2Keyboard.cpp | 49 +-- kernel/kernel/InterruptController.cpp | 92 +++-- kernel/kernel/Memory/PhysicalRange.cpp | 2 +- kernel/kernel/PIC.cpp | 143 +++---- kernel/kernel/Storage/ATABus.cpp | 48 +-- kernel/kernel/Terminal/Serial.cpp | 95 ++--- kernel/kernel/Timer/HPET.cpp | 9 +- kernel/kernel/Timer/PIT.cpp | 23 +- 23 files changed, 716 insertions(+), 706 deletions(-) create mode 100644 kernel/include/kernel/Input/PS2Config.h diff --git a/kernel/arch/x86_64/IDT.cpp b/kernel/arch/x86_64/IDT.cpp index 4e6fef64..cb12fbae 100644 --- a/kernel/arch/x86_64/IDT.cpp +++ b/kernel/arch/x86_64/IDT.cpp @@ -13,7 +13,7 @@ #define REGISTER_ISR_HANDLER(i) register_interrupt_handler(i, isr ## i) #define REGISTER_IRQ_HANDLER(i) register_interrupt_handler(IRQ_VECTOR_BASE + i, irq ## i) -namespace IDT +namespace Kernel::IDT { struct Registers @@ -63,7 +63,7 @@ namespace IDT static IDTR s_idtr; static GateDescriptor* s_idt = nullptr; - static void(*s_irq_handlers[0x10])() { nullptr }; + static Interruptable* s_interruptables[0x10] {}; enum ISR { @@ -160,53 +160,62 @@ namespace IDT "Unkown Exception 0x1F", }; - extern "C" void cpp_isr_handler(uint64_t isr, uint64_t error, Kernel::InterruptStack& interrupt_stack, const Registers* regs) + extern "C" void cpp_isr_handler(uint64_t isr, uint64_t error, InterruptStack& interrupt_stack, const Registers* regs) { #if __enable_sse bool from_userspace = (interrupt_stack.cs & 0b11) == 0b11; if (from_userspace) - Kernel::Thread::current().save_sse(); + Thread::current().save_sse(); #endif - pid_t tid = Kernel::Scheduler::current_tid(); - pid_t pid = tid ? Kernel::Process::current().pid() : 0; + pid_t tid = Scheduler::current_tid(); + pid_t pid = tid ? Process::current().pid() : 0; - if (pid && isr == ISR::PageFault) + if (tid) { - PageFaultError page_fault_error; - page_fault_error.raw = error; + Thread::current().set_return_rsp(interrupt_stack.rsp); + Thread::current().set_return_rip(interrupt_stack.rip); - // Try demand paging on non present pages - if (!page_fault_error.present) + if (isr == ISR::PageFault) { - asm volatile("sti"); - auto result = Kernel::Process::current().allocate_page_for_demand_paging(regs->cr2); - asm volatile("cli"); - - if (!result.is_error() && result.value()) - return; - - if (result.is_error()) + // Check if stack is OOB + auto& stack = Thread::current().stack(); + if (interrupt_stack.rsp < stack.vaddr()) { - dwarnln("Demand paging: {}", result.error()); - Kernel::Thread::current().handle_signal(SIGTERM); + derrorln("Stack overflow"); + goto done; + } + if (interrupt_stack.rsp >= stack.vaddr() + stack.size()) + { + derrorln("Stack underflow"); + goto done; + } + + // Try demand paging on non present pages + PageFaultError page_fault_error; + page_fault_error.raw = error; + if (!page_fault_error.present) + { + asm volatile("sti"); + auto result = Process::current().allocate_page_for_demand_paging(regs->cr2); + asm volatile("cli"); + + if (!result.is_error() && result.value()) + goto done; + + if (result.is_error()) + { + dwarnln("Demand paging: {}", result.error()); + Thread::current().handle_signal(SIGTERM); + goto done; + } } } } - if (tid) + if (PageTable::current().get_page_flags(interrupt_stack.rip & PAGE_ADDR_MASK) & PageTable::Flags::Present) { - auto start = Kernel::Thread::current().stack_base(); - auto end = start + Kernel::Thread::current().stack_size(); - if (interrupt_stack.rsp < start) - derrorln("Stack overflow"); - if (interrupt_stack.rsp >= end) - derrorln("Stack underflow"); - } - - if (Kernel::PageTable::current().get_page_flags(interrupt_stack.rip & PAGE_ADDR_MASK) & Kernel::PageTable::Flags::Present) - { - uint8_t* machine_code = (uint8_t*)interrupt_stack.rip; + auto* machine_code = (const uint8_t*)interrupt_stack.rip; dwarnln("While executing: {2H}{2H}{2H}{2H}{2H}{2H}{2H}{2H}", machine_code[0], machine_code[1], @@ -233,16 +242,10 @@ namespace IDT regs->cr0, regs->cr2, regs->cr3, regs->cr4 ); if (isr == ISR::PageFault) - Kernel::PageTable::current().debug_dump(); + PageTable::current().debug_dump(); Debug::dump_stack_trace(); - if (tid) - { - Kernel::Thread::current().set_return_rsp(interrupt_stack.rsp); - Kernel::Thread::current().set_return_rip(interrupt_stack.rip); - } - - if (tid && Kernel::Thread::current().is_userspace()) + if (tid && Thread::current().is_userspace()) { // TODO: Confirm and fix the exception to signal mappings @@ -270,36 +273,38 @@ namespace IDT break; } - Kernel::Thread::current().handle_signal(signal); + Thread::current().handle_signal(signal); } else { - Kernel::panic("Unhandled exception"); + panic("Unhandled exception"); } - ASSERT(Kernel::Thread::current().state() != Kernel::Thread::State::Terminated); - + ASSERT(Thread::current().state() != Thread::State::Terminated); + +done: #if __enable_sse if (from_userspace) { - ASSERT(Kernel::Thread::current().state() == Kernel::Thread::State::Executing); - Kernel::Thread::current().load_sse(); + ASSERT(Thread::current().state() == Thread::State::Executing); + Thread::current().load_sse(); } #endif + return; } - extern "C" void cpp_irq_handler(uint64_t irq, Kernel::InterruptStack& interrupt_stack) + extern "C" void cpp_irq_handler(uint64_t irq, InterruptStack& interrupt_stack) { #if __enable_sse bool from_userspace = (interrupt_stack.cs & 0b11) == 0b11; if (from_userspace) - Kernel::Thread::current().save_sse(); + Thread::current().save_sse(); #endif - if (Kernel::Scheduler::current_tid()) + if (Scheduler::current_tid()) { - Kernel::Thread::current().set_return_rsp(interrupt_stack.rsp); - Kernel::Thread::current().set_return_rip(interrupt_stack.rip); + Thread::current().set_return_rsp(interrupt_stack.rsp); + Thread::current().set_return_rip(interrupt_stack.rip); } if (!InterruptController::get().is_in_service(irq)) @@ -307,21 +312,21 @@ namespace IDT else { InterruptController::get().eoi(irq); - if (s_irq_handlers[irq]) - s_irq_handlers[irq](); + if (s_interruptables[irq]) + s_interruptables[irq]->handle_irq(); else dprintln("no handler for irq 0x{2H}\n", irq); } - Kernel::Scheduler::get().reschedule_if_idling(); + Scheduler::get().reschedule_if_idling(); - ASSERT(Kernel::Thread::current().state() != Kernel::Thread::State::Terminated); + ASSERT(Thread::current().state() != Thread::State::Terminated); #if __enable_sse if (from_userspace) { - ASSERT(Kernel::Thread::current().state() == Kernel::Thread::State::Executing); - Kernel::Thread::current().load_sse(); + ASSERT(Thread::current().state() == Thread::State::Executing); + Thread::current().load_sse(); } #endif } @@ -349,9 +354,9 @@ namespace IDT s_idt[index].flags = 0xEE; } - void register_irq_handler(uint8_t irq, void(*handler)()) + void register_irq_handler(uint8_t irq, Interruptable* interruptable) { - s_irq_handlers[irq] = handler; + s_interruptables[irq] = interruptable; } extern "C" void isr0(); @@ -480,4 +485,4 @@ namespace IDT ASSERT_NOT_REACHED(); } -} \ No newline at end of file +} diff --git a/kernel/include/kernel/APIC.h b/kernel/include/kernel/APIC.h index ddf3e1a1..02db2597 100644 --- a/kernel/include/kernel/APIC.h +++ b/kernel/include/kernel/APIC.h @@ -4,51 +4,56 @@ #include #include -class APIC final : public InterruptController +namespace Kernel { -public: - virtual void eoi(uint8_t) override; - virtual void enable_irq(uint8_t) override; - virtual bool is_in_service(uint8_t) override; -private: - uint32_t read_from_local_apic(ptrdiff_t); - void write_to_local_apic(ptrdiff_t, uint32_t); - -private: - ~APIC() { ASSERT_NOT_REACHED(); } - static APIC* create(); - friend class InterruptController; - -private: - struct Processor + class APIC final : public InterruptController { - enum Flags : uint8_t + public: + virtual void eoi(uint8_t) override; + virtual void enable_irq(uint8_t) override; + virtual bool is_in_service(uint8_t) override; + + private: + uint32_t read_from_local_apic(ptrdiff_t); + void write_to_local_apic(ptrdiff_t, uint32_t); + + private: + ~APIC() { ASSERT_NOT_REACHED(); } + static APIC* create(); + friend class InterruptController; + + private: + struct Processor { - Enabled = 1, - OnlineCapable = 2, + enum Flags : uint8_t + { + Enabled = 1, + OnlineCapable = 2, + }; + uint8_t processor_id; + uint8_t apic_id; + uint8_t flags; }; - uint8_t processor_id; - uint8_t apic_id; - uint8_t flags; + + struct IOAPIC + { + uint8_t id; + Kernel::paddr_t paddr; + Kernel::vaddr_t vaddr; + uint32_t gsi_base; + uint8_t max_redirs; + + uint32_t read(uint8_t offset); + void write(uint8_t offset, uint32_t data); + }; + + private: + BAN::Vector m_processors; + Kernel::paddr_t m_local_apic_paddr = 0; + Kernel::vaddr_t m_local_apic_vaddr = 0; + BAN::Vector m_io_apics; + uint8_t m_irq_overrides[0x100] {}; }; - struct IOAPIC - { - uint8_t id; - Kernel::paddr_t paddr; - Kernel::vaddr_t vaddr; - uint32_t gsi_base; - uint8_t max_redirs; - - uint32_t read(uint8_t offset); - void write(uint8_t offset, uint32_t data); - }; - -private: - BAN::Vector m_processors; - Kernel::paddr_t m_local_apic_paddr = 0; - Kernel::vaddr_t m_local_apic_vaddr = 0; - BAN::Vector m_io_apics; - uint8_t m_irq_overrides[0x100] {}; -}; \ No newline at end of file +} diff --git a/kernel/include/kernel/IDT.h b/kernel/include/kernel/IDT.h index 679442e4..ccf7c97b 100644 --- a/kernel/include/kernel/IDT.h +++ b/kernel/include/kernel/IDT.h @@ -4,11 +4,10 @@ constexpr uint8_t IRQ_VECTOR_BASE = 0x20; -namespace IDT +namespace Kernel::IDT { void initialize(); - void register_irq_handler(uint8_t irq, void(*f)()); [[noreturn]] void force_triple_fault(); } \ No newline at end of file diff --git a/kernel/include/kernel/Input/PS2Config.h b/kernel/include/kernel/Input/PS2Config.h new file mode 100644 index 00000000..71fbdbc2 --- /dev/null +++ b/kernel/include/kernel/Input/PS2Config.h @@ -0,0 +1,97 @@ +#pragma once + +#include + +namespace Kernel::Input::PS2 +{ + + enum IOPort : uint8_t + { + DATA = 0x60, + STATUS = 0x64, + COMMAND = 0x64, + }; + + enum Status : uint8_t + { + OUTPUT_FULL = (1 << 0), + INPUT_FULL = (1 << 1), + SYSTEM = (1 << 2), + DEVICE_OR_CONTROLLER = (1 << 3), + TIMEOUT_ERROR = (1 << 6), + PARITY_ERROR = (1 << 7), + }; + + enum Config : uint8_t + { + INTERRUPT_FIRST_PORT = (1 << 0), + INTERRUPT_SECOND_PORT = (1 << 1), + SYSTEM_FLAG = (1 << 2), + ZERO1 = (1 << 3), + CLOCK_FIRST_PORT = (1 << 4), + CLOCK_SECOND_PORT = (1 << 5), + TRANSLATION_FIRST_PORT = (1 << 6), + ZERO2 = (1 << 7), + }; + + enum Command : uint8_t + { + READ_CONFIG = 0x20, + WRITE_CONFIG = 0x60, + DISABLE_SECOND_PORT = 0xA7, + ENABLE_SECOND_PORT = 0xA8, + TEST_SECOND_PORT = 0xA9, + TEST_CONTROLLER = 0xAA, + TEST_FIRST_PORT = 0xAB, + DISABLE_FIRST_PORT = 0xAD, + ENABLE_FIRST_PORT = 0xAE, + WRITE_TO_SECOND_PORT = 0xD4, + }; + + enum Response : uint8_t + { + TEST_FIRST_PORT_PASS = 0x00, + TEST_SECOND_PORT_PASS = 0x00, + TEST_CONTROLLER_PASS = 0x55, + SELF_TEST_PASS = 0xAA, + ACK = 0xFA, + }; + + enum DeviceCommand : uint8_t + { + ENABLE_SCANNING = 0xF4, + DISABLE_SCANNING = 0xF5, + IDENTIFY = 0xF2, + RESET = 0xFF, + }; + + enum IRQ : uint8_t + { + DEVICE0 = 1, + DEVICE1 = 12, + }; + + enum KBResponse : uint8_t + { + KEY_ERROR_OR_BUFFER_OVERRUN1 = 0x00, + SELF_TEST_PASSED = 0xAA, + ECHO_RESPONSE = 0xEE, + RESEND = 0xFE, + KEY_ERROR_OR_BUFFER_OVERRUN2 = 0xFF, + }; + + enum KBScancode : uint8_t + { + SET_SCANCODE_SET1 = 1, + SET_SCANCODE_SET2 = 2, + SET_SCANCODE_SET3 = 3, + }; + + enum KBLeds : uint8_t + { + SCROLL_LOCK = (1 << 0), + NUM_LOCK = (1 << 1), + CAPS_LOCK = (1 << 2), + }; + +} \ No newline at end of file diff --git a/kernel/include/kernel/Input/PS2Controller.h b/kernel/include/kernel/Input/PS2Controller.h index 9a2dc030..6c739082 100644 --- a/kernel/include/kernel/Input/PS2Controller.h +++ b/kernel/include/kernel/Input/PS2Controller.h @@ -1,16 +1,16 @@ #pragma once #include +#include namespace Kernel::Input { - class PS2Device : public CharacterDevice + class PS2Device : public CharacterDevice, public Interruptable { public: virtual ~PS2Device() {} - virtual void on_byte(uint8_t) = 0; - + public: PS2Device() : CharacterDevice(Mode::IRUSR | Mode::IRGRP, 0, 0) @@ -33,11 +33,8 @@ namespace Kernel::Input BAN::ErrorOr reset_device(uint8_t); BAN::ErrorOr set_scanning(uint8_t, bool); - static void device0_irq(); - static void device1_irq(); - private: PS2Device* m_devices[2] { nullptr, nullptr }; }; -} \ No newline at end of file +} diff --git a/kernel/include/kernel/Input/PS2Keyboard.h b/kernel/include/kernel/Input/PS2Keyboard.h index 10b7a76e..62e8a57e 100644 --- a/kernel/include/kernel/Input/PS2Keyboard.h +++ b/kernel/include/kernel/Input/PS2Keyboard.h @@ -29,7 +29,7 @@ namespace Kernel::Input public: static BAN::ErrorOr create(PS2Controller&); - virtual void on_byte(uint8_t) override; + virtual void handle_irq() override; virtual void update() override; private: diff --git a/kernel/include/kernel/InterruptController.h b/kernel/include/kernel/InterruptController.h index b2a160ec..d8496604 100644 --- a/kernel/include/kernel/InterruptController.h +++ b/kernel/include/kernel/InterruptController.h @@ -5,22 +5,42 @@ #define DISABLE_INTERRUPTS() asm volatile("cli") #define ENABLE_INTERRUPTS() asm volatile("sti") -class InterruptController +namespace Kernel { -public: - virtual ~InterruptController() {} - virtual void eoi(uint8_t) = 0; - virtual void enable_irq(uint8_t) = 0; - virtual bool is_in_service(uint8_t) = 0; + class Interruptable + { + public: + Interruptable() = default; - static void initialize(bool force_pic); - static InterruptController& get(); + void set_irq(int irq); + void enable_interrupt(); + void disable_interrupt(); - void enter_acpi_mode(); + virtual void handle_irq() = 0; -private: - bool m_using_apic { false }; -}; + private: + int m_irq { -1 }; + }; -bool interrupts_enabled(); \ No newline at end of file + class InterruptController + { + public: + virtual ~InterruptController() {} + + virtual void eoi(uint8_t) = 0; + virtual void enable_irq(uint8_t) = 0; + virtual bool is_in_service(uint8_t) = 0; + + static void initialize(bool force_pic); + static InterruptController& get(); + + void enter_acpi_mode(); + + private: + bool m_using_apic { false }; + }; + + bool interrupts_enabled(); + +} \ No newline at end of file diff --git a/kernel/include/kernel/PIC.h b/kernel/include/kernel/PIC.h index dc9153c9..02b016c9 100644 --- a/kernel/include/kernel/PIC.h +++ b/kernel/include/kernel/PIC.h @@ -2,17 +2,22 @@ #include -class PIC final : public InterruptController +namespace Kernel { -public: - virtual void eoi(uint8_t) override; - virtual void enable_irq(uint8_t) override; - virtual bool is_in_service(uint8_t) override; - static void remap(); - static void mask_all(); + class PIC final : public InterruptController + { + public: + virtual void eoi(uint8_t) override; + virtual void enable_irq(uint8_t) override; + virtual bool is_in_service(uint8_t) override; -private: - static PIC* create(); - friend class InterruptController; -}; \ No newline at end of file + static void remap(); + static void mask_all(); + + private: + static PIC* create(); + friend class InterruptController; + }; + +} diff --git a/kernel/include/kernel/Storage/ATABus.h b/kernel/include/kernel/Storage/ATABus.h index d9aa4a04..f971fe73 100644 --- a/kernel/include/kernel/Storage/ATABus.h +++ b/kernel/include/kernel/Storage/ATABus.h @@ -1,6 +1,7 @@ #pragma once #include +#include #include #include @@ -9,7 +10,7 @@ namespace Kernel class ATADevice; - class ATABus + class ATABus : public Interruptable { public: enum class DeviceType @@ -27,7 +28,7 @@ namespace Kernel ATAController& controller() { return m_controller; } - void on_irq(); + virtual void handle_irq() override; private: ATABus(ATAController& controller, uint16_t base, uint16_t ctrl) diff --git a/kernel/include/kernel/Terminal/Serial.h b/kernel/include/kernel/Terminal/Serial.h index b53310aa..fc6032a4 100644 --- a/kernel/include/kernel/Terminal/Serial.h +++ b/kernel/include/kernel/Terminal/Serial.h @@ -1,6 +1,8 @@ #pragma once +#include #include +#include #include namespace Kernel @@ -34,7 +36,7 @@ namespace Kernel uint32_t m_height { 0 }; }; - class SerialTTY final : public TTY + class SerialTTY final : public TTY, public Interruptable { public: static BAN::ErrorOr> create(Serial); @@ -45,6 +47,8 @@ namespace Kernel virtual void update() override; + virtual void handle_irq() override; + protected: virtual BAN::StringView name() const override { return m_name; } @@ -55,6 +59,7 @@ namespace Kernel private: BAN::String m_name; Serial m_serial; + BAN::CircularQueue m_input; public: virtual dev_t rdev() const override { return m_rdev; } diff --git a/kernel/include/kernel/Timer/HPET.h b/kernel/include/kernel/Timer/HPET.h index fcf99c59..e3772974 100644 --- a/kernel/include/kernel/Timer/HPET.h +++ b/kernel/include/kernel/Timer/HPET.h @@ -1,11 +1,12 @@ #pragma once +#include #include namespace Kernel { - class HPET final : public Timer + class HPET final : public Timer, public Interruptable { public: static BAN::ErrorOr> create(bool force_pic); @@ -13,6 +14,8 @@ namespace Kernel virtual uint64_t ms_since_boot() const override; virtual timespec time_since_boot() const override; + virtual void handle_irq() override; + private: HPET() = default; BAN::ErrorOr initialize(bool force_pic); diff --git a/kernel/include/kernel/Timer/PIT.h b/kernel/include/kernel/Timer/PIT.h index 23e5000e..d0750984 100644 --- a/kernel/include/kernel/Timer/PIT.h +++ b/kernel/include/kernel/Timer/PIT.h @@ -1,14 +1,12 @@ #pragma once +#include #include -#include - -#define PIT_IRQ 0 namespace Kernel { - class PIT final : public Timer + class PIT final : public Timer, public Interruptable { public: static BAN::ErrorOr> create(); @@ -16,8 +14,13 @@ namespace Kernel virtual uint64_t ms_since_boot() const override; virtual timespec time_since_boot() const override; + virtual void handle_irq() override; + private: void initialize(); + + private: + volatile uint64_t m_system_time { 0 }; }; } \ No newline at end of file diff --git a/kernel/kernel/APIC.cpp b/kernel/kernel/APIC.cpp index c181d024..02cfa9cc 100644 --- a/kernel/kernel/APIC.cpp +++ b/kernel/kernel/APIC.cpp @@ -20,239 +20,242 @@ // https://uefi.org/specs/ACPI/6.5/05_ACPI_Software_Programming_Model.html#multiple-apic-description-table-madt-format -struct MADT : public Kernel::ACPI::SDTHeader +namespace Kernel { - uint32_t local_apic; - uint32_t flags; -} __attribute__((packed)); -struct MADTEntry -{ - uint8_t type; - uint8_t length; - union + struct MADT : public Kernel::ACPI::SDTHeader + { + uint32_t local_apic; + uint32_t flags; + } __attribute__((packed)); + + struct MADTEntry + { + uint8_t type; + uint8_t length; + union + { + struct + { + uint8_t acpi_processor_id; + uint8_t apic_id; + uint32_t flags; + } __attribute__((packed)) entry0; + struct + { + uint8_t ioapic_id; + uint8_t reserved; + uint32_t ioapic_address; + uint32_t gsi_base; + } __attribute__((packed)) entry1; + struct + { + uint8_t bus_source; + uint8_t irq_source; + uint32_t gsi; + uint16_t flags; + } __attribute__((packed)) entry2; + struct + { + uint16_t reserved; + uint64_t address; + } __attribute__((packed)) entry5; + }; + } __attribute__((packed)); + + union RedirectionEntry { struct { - uint8_t acpi_processor_id; - uint8_t apic_id; - uint32_t flags; - } __attribute__((packed)) entry0; + uint64_t vector : 8; + uint64_t delivery_mode : 3; + uint64_t destination_mode : 1; + uint64_t delivery_status : 1; + uint64_t pin_polarity : 1; + uint64_t remote_irr : 1; + uint64_t trigger_mode : 1; + uint64_t mask : 1; + uint64_t reserved : 39; + uint64_t destination : 8; + }; struct { - uint8_t ioapic_id; - uint8_t reserved; - uint32_t ioapic_address; - uint32_t gsi_base; - } __attribute__((packed)) entry1; - struct - { - uint8_t bus_source; - uint8_t irq_source; - uint32_t gsi; - uint16_t flags; - } __attribute__((packed)) entry2; - struct - { - uint16_t reserved; - uint64_t address; - } __attribute__((packed)) entry5; + uint32_t lo_dword; + uint32_t hi_dword; + }; }; -} __attribute__((packed)); -union RedirectionEntry -{ - struct + APIC* APIC::create() { - uint64_t vector : 8; - uint64_t delivery_mode : 3; - uint64_t destination_mode : 1; - uint64_t delivery_status : 1; - uint64_t pin_polarity : 1; - uint64_t remote_irr : 1; - uint64_t trigger_mode : 1; - uint64_t mask : 1; - uint64_t reserved : 39; - uint64_t destination : 8; - }; - struct - { - uint32_t lo_dword; - uint32_t hi_dword; - }; -}; - -using namespace Kernel; - -APIC* APIC::create() -{ - uint32_t ecx, edx; - CPUID::get_features(ecx, edx); - if (!(edx & CPUID::Features::EDX_APIC)) - { - dprintln("Local APIC is not available"); - return nullptr; - } - - const MADT* madt = (const MADT*)Kernel::ACPI::get().get_header("APIC"); - if (madt == nullptr) - { - dprintln("Could not find MADT header"); - return nullptr; - } - - APIC* apic = new APIC; - apic->m_local_apic_paddr = madt->local_apic; - for (uint32_t i = 0x00; i <= 0xFF; i++) - apic->m_irq_overrides[i] = i; - - uintptr_t madt_entry_addr = (uintptr_t)madt + sizeof(MADT); - while (madt_entry_addr < (uintptr_t)madt + madt->length) - { - const MADTEntry* entry = (const MADTEntry*)madt_entry_addr; - switch (entry->type) + uint32_t ecx, edx; + CPUID::get_features(ecx, edx); + if (!(edx & CPUID::Features::EDX_APIC)) { - case 0: - Processor processor; - processor.processor_id = entry->entry0.acpi_processor_id; - processor.apic_id = entry->entry0.apic_id; - processor.flags = entry->entry0.flags & 0x03; - MUST(apic->m_processors.push_back(processor)); - break; - case 1: - IOAPIC ioapic; - ioapic.id = entry->entry1.ioapic_id; - ioapic.paddr = entry->entry1.ioapic_address; - ioapic.gsi_base = entry->entry1.gsi_base; - ioapic.max_redirs = 0; - MUST(apic->m_io_apics.push_back(ioapic)); - break; - case 2: - apic->m_irq_overrides[entry->entry2.irq_source] = entry->entry2.gsi; - break; - case 5: - apic->m_local_apic_paddr = entry->entry5.address; - break; - default: - dprintln("Unhandled madt entry, type {}", entry->type); - break; + dprintln("Local APIC is not available"); + return nullptr; } - madt_entry_addr += entry->length; - } - if (apic->m_local_apic_paddr == 0 || apic->m_io_apics.empty()) - { - dprintln("MADT did not provide necessary information"); - delete apic; - return nullptr; - } - - // Map the local apic to kernel memory - { - vaddr_t vaddr = PageTable::kernel().reserve_free_page(KERNEL_OFFSET); - ASSERT(vaddr); - dprintln("lapic paddr {8H}", apic->m_local_apic_paddr); - apic->m_local_apic_vaddr = vaddr + (apic->m_local_apic_paddr % PAGE_SIZE); - dprintln("lapic vaddr {8H}", apic->m_local_apic_vaddr); - PageTable::kernel().map_page_at( - apic->m_local_apic_paddr & PAGE_ADDR_MASK, - apic->m_local_apic_vaddr & PAGE_ADDR_MASK, - PageTable::Flags::ReadWrite | PageTable::Flags::Present - ); - } - - // Map io apics to kernel memory - for (auto& io_apic : apic->m_io_apics) - { - vaddr_t vaddr = PageTable::kernel().reserve_free_page(KERNEL_OFFSET); - ASSERT(vaddr); - - io_apic.vaddr = vaddr + (io_apic.paddr % PAGE_SIZE); - - PageTable::kernel().map_page_at( - io_apic.paddr & PAGE_ADDR_MASK, - io_apic.vaddr & PAGE_ADDR_MASK, - PageTable::Flags::ReadWrite | PageTable::Flags::Present - ); - io_apic.max_redirs = io_apic.read(IOAPIC_MAX_REDIRS); - } - - // Mask all interrupts - uint32_t sivr = apic->read_from_local_apic(LAPIC_SIV_REG); - apic->write_to_local_apic(LAPIC_SIV_REG, sivr | 0x1FF); - -#if DEBUG_PRINT_PROCESSORS - for (auto& processor : apic->m_processors) - { - dprintln("Processor{}", processor.processor_id); - dprintln(" lapic id: {}", processor.apic_id); - dprintln(" status: {}", (processor.flags & Processor::Flags::Enabled) ? "enabled" : (processor.flags & Processor::Flags::OnlineCapable) ? "can be enabled" : "disabled"); - } -#endif - - return apic; -} - -uint32_t APIC::read_from_local_apic(ptrdiff_t offset) -{ - return MMIO::read32(m_local_apic_vaddr + offset); -} - -void APIC::write_to_local_apic(ptrdiff_t offset, uint32_t data) -{ - MMIO::write32(m_local_apic_vaddr + offset, data); -} - -uint32_t APIC::IOAPIC::read(uint8_t offset) -{ - MMIO::write32(vaddr, offset); - return MMIO::read32(vaddr + 16); -} - -void APIC::IOAPIC::write(uint8_t offset, uint32_t data) -{ - MMIO::write32(vaddr, offset); - MMIO::write32(vaddr + 16, data); -} - -void APIC::eoi(uint8_t) -{ - write_to_local_apic(LAPIC_EIO_REG, 0); -} - -void APIC::enable_irq(uint8_t irq) -{ - uint32_t gsi = m_irq_overrides[irq]; - - IOAPIC* ioapic = nullptr; - for (IOAPIC& io : m_io_apics) - { - if (io.gsi_base <= gsi && gsi <= io.gsi_base + io.max_redirs) + const MADT* madt = (const MADT*)Kernel::ACPI::get().get_header("APIC"); + if (madt == nullptr) { - ioapic = &io; - break; + dprintln("Could not find MADT header"); + return nullptr; } + + APIC* apic = new APIC; + apic->m_local_apic_paddr = madt->local_apic; + for (uint32_t i = 0x00; i <= 0xFF; i++) + apic->m_irq_overrides[i] = i; + + uintptr_t madt_entry_addr = (uintptr_t)madt + sizeof(MADT); + while (madt_entry_addr < (uintptr_t)madt + madt->length) + { + const MADTEntry* entry = (const MADTEntry*)madt_entry_addr; + switch (entry->type) + { + case 0: + Processor processor; + processor.processor_id = entry->entry0.acpi_processor_id; + processor.apic_id = entry->entry0.apic_id; + processor.flags = entry->entry0.flags & 0x03; + MUST(apic->m_processors.push_back(processor)); + break; + case 1: + IOAPIC ioapic; + ioapic.id = entry->entry1.ioapic_id; + ioapic.paddr = entry->entry1.ioapic_address; + ioapic.gsi_base = entry->entry1.gsi_base; + ioapic.max_redirs = 0; + MUST(apic->m_io_apics.push_back(ioapic)); + break; + case 2: + apic->m_irq_overrides[entry->entry2.irq_source] = entry->entry2.gsi; + break; + case 5: + apic->m_local_apic_paddr = entry->entry5.address; + break; + default: + dprintln("Unhandled madt entry, type {}", entry->type); + break; + } + madt_entry_addr += entry->length; + } + + if (apic->m_local_apic_paddr == 0 || apic->m_io_apics.empty()) + { + dprintln("MADT did not provide necessary information"); + delete apic; + return nullptr; + } + + // Map the local apic to kernel memory + { + vaddr_t vaddr = PageTable::kernel().reserve_free_page(KERNEL_OFFSET); + ASSERT(vaddr); + dprintln("lapic paddr {8H}", apic->m_local_apic_paddr); + apic->m_local_apic_vaddr = vaddr + (apic->m_local_apic_paddr % PAGE_SIZE); + dprintln("lapic vaddr {8H}", apic->m_local_apic_vaddr); + PageTable::kernel().map_page_at( + apic->m_local_apic_paddr & PAGE_ADDR_MASK, + apic->m_local_apic_vaddr & PAGE_ADDR_MASK, + PageTable::Flags::ReadWrite | PageTable::Flags::Present + ); + } + + // Map io apics to kernel memory + for (auto& io_apic : apic->m_io_apics) + { + vaddr_t vaddr = PageTable::kernel().reserve_free_page(KERNEL_OFFSET); + ASSERT(vaddr); + + io_apic.vaddr = vaddr + (io_apic.paddr % PAGE_SIZE); + + PageTable::kernel().map_page_at( + io_apic.paddr & PAGE_ADDR_MASK, + io_apic.vaddr & PAGE_ADDR_MASK, + PageTable::Flags::ReadWrite | PageTable::Flags::Present + ); + io_apic.max_redirs = io_apic.read(IOAPIC_MAX_REDIRS); + } + + // Mask all interrupts + uint32_t sivr = apic->read_from_local_apic(LAPIC_SIV_REG); + apic->write_to_local_apic(LAPIC_SIV_REG, sivr | 0x1FF); + + #if DEBUG_PRINT_PROCESSORS + for (auto& processor : apic->m_processors) + { + dprintln("Processor{}", processor.processor_id); + dprintln(" lapic id: {}", processor.apic_id); + dprintln(" status: {}", (processor.flags & Processor::Flags::Enabled) ? "enabled" : (processor.flags & Processor::Flags::OnlineCapable) ? "can be enabled" : "disabled"); + } + #endif + + return apic; } - ASSERT(ioapic); - RedirectionEntry redir; - redir.lo_dword = ioapic->read(IOAPIC_REDIRS + gsi * 2); - redir.hi_dword = ioapic->read(IOAPIC_REDIRS + gsi * 2 + 1); - ASSERT(redir.mask); // TODO: handle overlapping interrupts + uint32_t APIC::read_from_local_apic(ptrdiff_t offset) + { + return MMIO::read32(m_local_apic_vaddr + offset); + } - redir.vector = IRQ_VECTOR_BASE + irq; - redir.mask = 0; - redir.destination = m_processors.front().apic_id; + void APIC::write_to_local_apic(ptrdiff_t offset, uint32_t data) + { + MMIO::write32(m_local_apic_vaddr + offset, data); + } + + uint32_t APIC::IOAPIC::read(uint8_t offset) + { + MMIO::write32(vaddr, offset); + return MMIO::read32(vaddr + 16); + } + + void APIC::IOAPIC::write(uint8_t offset, uint32_t data) + { + MMIO::write32(vaddr, offset); + MMIO::write32(vaddr + 16, data); + } + + void APIC::eoi(uint8_t) + { + write_to_local_apic(LAPIC_EIO_REG, 0); + } + + void APIC::enable_irq(uint8_t irq) + { + uint32_t gsi = m_irq_overrides[irq]; + + IOAPIC* ioapic = nullptr; + for (IOAPIC& io : m_io_apics) + { + if (io.gsi_base <= gsi && gsi <= io.gsi_base + io.max_redirs) + { + ioapic = &io; + break; + } + } + ASSERT(ioapic); + + RedirectionEntry redir; + redir.lo_dword = ioapic->read(IOAPIC_REDIRS + gsi * 2); + redir.hi_dword = ioapic->read(IOAPIC_REDIRS + gsi * 2 + 1); + ASSERT(redir.mask); // TODO: handle overlapping interrupts + + redir.vector = IRQ_VECTOR_BASE + irq; + redir.mask = 0; + redir.destination = m_processors.front().apic_id; + + ioapic->write(IOAPIC_REDIRS + gsi * 2, redir.lo_dword); + ioapic->write(IOAPIC_REDIRS + gsi * 2 + 1, redir.hi_dword); + } + + bool APIC::is_in_service(uint8_t irq) + { + uint32_t dword = (irq + IRQ_VECTOR_BASE) / 32; + uint32_t bit = (irq + IRQ_VECTOR_BASE) % 32; + + uint32_t isr = read_from_local_apic(LAPIC_IS_REG + dword * 0x10); + return isr & (1 << bit); + } - ioapic->write(IOAPIC_REDIRS + gsi * 2, redir.lo_dword); - ioapic->write(IOAPIC_REDIRS + gsi * 2 + 1, redir.hi_dword); } - -bool APIC::is_in_service(uint8_t irq) -{ - uint32_t dword = (irq + IRQ_VECTOR_BASE) / 32; - uint32_t bit = (irq + IRQ_VECTOR_BASE) % 32; - - uint32_t isr = read_from_local_apic(LAPIC_IS_REG + dword * 0x10); - return isr & (1 << bit); -} \ No newline at end of file diff --git a/kernel/kernel/Debug.cpp b/kernel/kernel/Debug.cpp index 25e125d7..ed338922 100644 --- a/kernel/kernel/Debug.cpp +++ b/kernel/kernel/Debug.cpp @@ -76,13 +76,13 @@ namespace Debug void DebugLock::lock() { - if (interrupts_enabled()) + if (Kernel::interrupts_enabled()) s_debug_lock.lock(); } void DebugLock::unlock() { - if (interrupts_enabled()) + if (Kernel::interrupts_enabled()) s_debug_lock.unlock(); } diff --git a/kernel/kernel/Input/PS2Controller.cpp b/kernel/kernel/Input/PS2Controller.cpp index 34485311..ea6887db 100644 --- a/kernel/kernel/Input/PS2Controller.cpp +++ b/kernel/kernel/Input/PS2Controller.cpp @@ -2,6 +2,7 @@ #include #include #include +#include #include #include #include @@ -11,77 +12,6 @@ namespace Kernel::Input { - namespace PS2 - { - - enum IOPort : uint8_t - { - DATA = 0x60, - STATUS = 0x64, - COMMAND = 0x64, - }; - - enum Status : uint8_t - { - OUTPUT_FULL = (1 << 0), - INPUT_FULL = (1 << 1), - SYSTEM = (1 << 2), - DEVICE_OR_CONTROLLER = (1 << 3), - TIMEOUT_ERROR = (1 << 6), - PARITY_ERROR = (1 << 7), - }; - - enum Config : uint8_t - { - INTERRUPT_FIRST_PORT = (1 << 0), - INTERRUPT_SECOND_PORT = (1 << 1), - SYSTEM_FLAG = (1 << 2), - ZERO1 = (1 << 3), - CLOCK_FIRST_PORT = (1 << 4), - CLOCK_SECOND_PORT = (1 << 5), - TRANSLATION_FIRST_PORT = (1 << 6), - ZERO2 = (1 << 7), - }; - - enum Command : uint8_t - { - READ_CONFIG = 0x20, - WRITE_CONFIG = 0x60, - DISABLE_SECOND_PORT = 0xA7, - ENABLE_SECOND_PORT = 0xA8, - TEST_SECOND_PORT = 0xA9, - TEST_CONTROLLER = 0xAA, - TEST_FIRST_PORT = 0xAB, - DISABLE_FIRST_PORT = 0xAD, - ENABLE_FIRST_PORT = 0xAE, - WRITE_TO_SECOND_PORT = 0xD4, - }; - - enum Response - { - TEST_FIRST_PORT_PASS = 0x00, - TEST_SECOND_PORT_PASS = 0x00, - TEST_CONTROLLER_PASS = 0x55, - SELF_TEST_PASS = 0xAA, - ACK = 0xFA, - }; - - enum DeviceCommand - { - ENABLE_SCANNING = 0xF4, - DISABLE_SCANNING = 0xF5, - IDENTIFY = 0xF2, - RESET = 0xFF, - }; - - enum IRQ - { - DEVICE0 = 1, - DEVICE1 = 12, - }; - - } - static constexpr uint64_t s_device_timeout_ms = 100; static void controller_send_command(PS2::Command command) @@ -136,20 +66,6 @@ namespace Kernel::Input return {}; } - void PS2Controller::device0_irq() - { - auto& controller = PS2Controller::get(); - ASSERT(controller.m_devices[0] != nullptr); - controller.m_devices[0]->on_byte(IO::inb(PS2::IOPort::DATA)); - } - - void PS2Controller::device1_irq() - { - auto& controller = PS2Controller::get(); - ASSERT(controller.m_devices[1] != nullptr); - controller.m_devices[1]->on_byte(IO::inb(PS2::IOPort::DATA)); - } - static PS2Controller* s_instance = nullptr; BAN::ErrorOr PS2Controller::initialize() @@ -256,15 +172,15 @@ namespace Kernel::Input if (m_devices[0]) { - IDT::register_irq_handler(PS2::IRQ::DEVICE0, device0_irq); - InterruptController::get().enable_irq(PS2::IRQ::DEVICE0); + m_devices[0]->set_irq(PS2::IRQ::DEVICE0); + m_devices[0]->enable_interrupt(); config |= PS2::Config::INTERRUPT_FIRST_PORT; DevFileSystem::get().add_device("input0", m_devices[0]); } if (m_devices[1]) { - IDT::register_irq_handler(PS2::IRQ::DEVICE1, device1_irq); - InterruptController::get().enable_irq(PS2::IRQ::DEVICE1); + m_devices[1]->set_irq(PS2::IRQ::DEVICE1); + m_devices[1]->enable_interrupt(); config |= PS2::Config::INTERRUPT_SECOND_PORT; DevFileSystem::get().add_device("input1", m_devices[1]); } diff --git a/kernel/kernel/Input/PS2Keyboard.cpp b/kernel/kernel/Input/PS2Keyboard.cpp index 6623d50d..aba441f1 100644 --- a/kernel/kernel/Input/PS2Keyboard.cpp +++ b/kernel/kernel/Input/PS2Keyboard.cpp @@ -1,7 +1,9 @@ #include #include #include +#include #include +#include #include #include @@ -12,35 +14,6 @@ namespace Kernel::Input { - namespace PS2 - { - - enum Response - { - KEY_ERROR_OR_BUFFER_OVERRUN1 = 0x00, - SELF_TEST_PASSED = 0xAA, - ECHO_RESPONSE = 0xEE, - ACK = 0xFA, - RESEND = 0xFE, - KEY_ERROR_OR_BUFFER_OVERRUN2 = 0xFF, - }; - - enum Scancode - { - SET_SCANCODE_SET1 = 1, - SET_SCANCODE_SET2 = 2, - SET_SCANCODE_SET3 = 3, - }; - - enum Leds - { - SCROLL_LOCK = (1 << 0), - NUM_LOCK = (1 << 1), - CAPS_LOCK = (1 << 2), - }; - - } - BAN::ErrorOr PS2Keyboard::create(PS2Controller& controller) { PS2Keyboard* keyboard = new PS2Keyboard(controller); @@ -57,8 +30,10 @@ namespace Kernel::Input , m_rdev(makedev(DevFileSystem::get().get_next_dev(), 0)) { } - void PS2Keyboard::on_byte(uint8_t byte) + void PS2Keyboard::handle_irq() { + uint8_t byte = IO::inb(PS2::IOPort::DATA); + // NOTE: This implementation does not allow using commands // that respond with more bytes than ACK switch (m_state) @@ -71,11 +46,11 @@ namespace Kernel::Input m_command_queue.pop(); m_state = State::Normal; break; - case PS2::Response::RESEND: + case PS2::KBResponse::RESEND: m_state = State::Normal; break; - case PS2::Response::KEY_ERROR_OR_BUFFER_OVERRUN1: - case PS2::Response::KEY_ERROR_OR_BUFFER_OVERRUN2: + case PS2::KBResponse::KEY_ERROR_OR_BUFFER_OVERRUN1: + case PS2::KBResponse::KEY_ERROR_OR_BUFFER_OVERRUN2: dwarnln("Key detection error or internal buffer overrun"); break; default: @@ -97,7 +72,7 @@ namespace Kernel::Input BAN::ErrorOr PS2Keyboard::initialize() { append_command_queue(Command::SET_LEDS, 0x00); - append_command_queue(Command::SCANCODE, PS2::Scancode::SET_SCANCODE_SET2); + append_command_queue(Command::SCANCODE, PS2::KBScancode::SET_SCANCODE_SET2); append_command_queue(Command::ENABLE_SCANNING); return {}; } @@ -234,11 +209,11 @@ namespace Kernel::Input { uint8_t new_leds = 0; if (m_modifiers & (uint8_t)Input::KeyEvent::Modifier::ScrollLock) - new_leds |= PS2::Leds::SCROLL_LOCK; + new_leds |= PS2::KBLeds::SCROLL_LOCK; if (m_modifiers & (uint8_t)Input::KeyEvent::Modifier::NumLock) - new_leds |= PS2::Leds::NUM_LOCK; + new_leds |= PS2::KBLeds::NUM_LOCK; if (m_modifiers & (uint8_t)Input::KeyEvent::Modifier::CapsLock) - new_leds |= PS2::Leds::CAPS_LOCK; + new_leds |= PS2::KBLeds::CAPS_LOCK; append_command_queue(Command::SET_LEDS, new_leds); } diff --git a/kernel/kernel/InterruptController.cpp b/kernel/kernel/InterruptController.cpp index 45fd79a4..4b21bc95 100644 --- a/kernel/kernel/InterruptController.cpp +++ b/kernel/kernel/InterruptController.cpp @@ -5,47 +5,73 @@ #include -static InterruptController* s_instance = nullptr; - -InterruptController& InterruptController::get() +namespace Kernel { - ASSERT(s_instance); - return *s_instance; -} -void InterruptController::initialize(bool force_pic) -{ - ASSERT(s_instance == nullptr); + namespace IDT { void register_irq_handler(uint8_t irq, Interruptable*); } - PIC::mask_all(); - PIC::remap(); + static InterruptController* s_instance = nullptr; - if (!force_pic) + void Interruptable::set_irq(int irq) { - s_instance = APIC::create(); - if (s_instance) - { - s_instance->m_using_apic = true; - return; - } + if (m_irq != -1) + IDT::register_irq_handler(m_irq, nullptr); + m_irq = irq; + IDT::register_irq_handler(irq, this); } - dprintln("Using PIC instead of APIC"); - s_instance = PIC::create(); - ASSERT(s_instance); + void Interruptable::enable_interrupt() + { + ASSERT(m_irq != -1); + InterruptController::get().enable_irq(m_irq); + } - s_instance->m_using_apic = false; -} + void Interruptable::disable_interrupt() + { + ASSERT_NOT_REACHED(); + } -void InterruptController::enter_acpi_mode() -{ - if (lai_enable_acpi(m_using_apic ? 1 : 0) != 0) - dwarnln("could not enter acpi mode"); -} + InterruptController& InterruptController::get() + { + ASSERT(s_instance); + return *s_instance; + } + + void InterruptController::initialize(bool force_pic) + { + ASSERT(s_instance == nullptr); + + PIC::mask_all(); + PIC::remap(); + + if (!force_pic) + { + s_instance = APIC::create(); + if (s_instance) + { + s_instance->m_using_apic = true; + return; + } + } + + dprintln("Using PIC instead of APIC"); + s_instance = PIC::create(); + ASSERT(s_instance); + + s_instance->m_using_apic = false; + } + + void InterruptController::enter_acpi_mode() + { + if (lai_enable_acpi(m_using_apic ? 1 : 0) != 0) + dwarnln("could not enter acpi mode"); + } + + bool interrupts_enabled() + { + uintptr_t flags; + asm volatile("pushf; pop %0" : "=r"(flags) :: "memory"); + return flags & (1 << 9); + } -bool interrupts_enabled() -{ - uintptr_t flags; - asm volatile("pushf; pop %0" : "=r"(flags) :: "memory"); - return flags & (1 << 9); } diff --git a/kernel/kernel/Memory/PhysicalRange.cpp b/kernel/kernel/Memory/PhysicalRange.cpp index 4a0bbaf2..e0f9ff76 100644 --- a/kernel/kernel/Memory/PhysicalRange.cpp +++ b/kernel/kernel/Memory/PhysicalRange.cpp @@ -66,7 +66,7 @@ namespace Kernel ASSERT(page->next == nullptr); // Detatch page from top of the free list - m_free_list = m_free_list->prev ? m_free_list->prev : nullptr; + m_free_list = m_free_list->prev; if (m_free_list) m_free_list->next = nullptr; diff --git a/kernel/kernel/PIC.cpp b/kernel/kernel/PIC.cpp index 6c59d591..1ac8bf7f 100644 --- a/kernel/kernel/PIC.cpp +++ b/kernel/kernel/PIC.cpp @@ -17,80 +17,85 @@ #define ICW4_8086 0x01 -PIC* PIC::create() +namespace Kernel { - mask_all(); - remap(); - return new PIC; -} -void PIC::remap() -{ - uint8_t a1 = IO::inb(PIC1_DATA); - uint8_t a2 = IO::inb(PIC2_DATA); - - // Start the initialization sequence (in cascade mode) - IO::outb(PIC1_CMD, ICW1_INIT | ICW1_ICW4); - IO::io_wait(); - IO::outb(PIC2_CMD, ICW1_INIT | ICW1_ICW4); - IO::io_wait(); - - // ICW2 - IO::outb(PIC1_DATA, IRQ_VECTOR_BASE); - IO::io_wait(); - IO::outb(PIC2_DATA, IRQ_VECTOR_BASE + 0x08); - IO::io_wait(); - - // ICW3 - IO::outb(PIC1_DATA, 4); - IO::io_wait(); - IO::outb(PIC2_DATA, 2); - IO::io_wait(); - - // ICW4 - IO::outb(PIC1_DATA, ICW4_8086); - IO::io_wait(); - IO::outb(PIC2_DATA, ICW4_8086); - IO::io_wait(); - - // Restore original masks - IO::outb(PIC1_DATA, a1); - IO::outb(PIC2_DATA, a2); -} - -void PIC::mask_all() -{ - // NOTE: don't mask irq 2 as it is needed for slave pic - IO::outb(PIC1_DATA, 0xFB); - IO::outb(PIC2_DATA, 0xFF); -} - -void PIC::eoi(uint8_t irq) -{ - if (irq >= 8) - IO::outb(PIC2_CMD, PIC_EOI); - IO::outb(PIC1_CMD, PIC_EOI); -} - -void PIC::enable_irq(uint8_t irq) -{ - uint16_t port = PIC1_DATA; - if(irq >= 8) + PIC* PIC::create() { - port = PIC2_DATA; - irq -= 8; + mask_all(); + remap(); + return new PIC; } - IO::outb(port, IO::inb(port) & ~(1 << irq)); -} -bool PIC::is_in_service(uint8_t irq) -{ - uint16_t port = PIC1_CMD; - if (irq >= 8) + void PIC::remap() { - port = PIC2_CMD; - irq -= 8; + uint8_t a1 = IO::inb(PIC1_DATA); + uint8_t a2 = IO::inb(PIC2_DATA); + + // Start the initialization sequence (in cascade mode) + IO::outb(PIC1_CMD, ICW1_INIT | ICW1_ICW4); + IO::io_wait(); + IO::outb(PIC2_CMD, ICW1_INIT | ICW1_ICW4); + IO::io_wait(); + + // ICW2 + IO::outb(PIC1_DATA, IRQ_VECTOR_BASE); + IO::io_wait(); + IO::outb(PIC2_DATA, IRQ_VECTOR_BASE + 0x08); + IO::io_wait(); + + // ICW3 + IO::outb(PIC1_DATA, 4); + IO::io_wait(); + IO::outb(PIC2_DATA, 2); + IO::io_wait(); + + // ICW4 + IO::outb(PIC1_DATA, ICW4_8086); + IO::io_wait(); + IO::outb(PIC2_DATA, ICW4_8086); + IO::io_wait(); + + // Restore original masks + IO::outb(PIC1_DATA, a1); + IO::outb(PIC2_DATA, a2); } - IO::outb(port, PIC_ISR); - return IO::inb(port) & (1 << irq); + + void PIC::mask_all() + { + // NOTE: don't mask irq 2 as it is needed for slave pic + IO::outb(PIC1_DATA, 0xFB); + IO::outb(PIC2_DATA, 0xFF); + } + + void PIC::eoi(uint8_t irq) + { + if (irq >= 8) + IO::outb(PIC2_CMD, PIC_EOI); + IO::outb(PIC1_CMD, PIC_EOI); + } + + void PIC::enable_irq(uint8_t irq) + { + uint16_t port = PIC1_DATA; + if(irq >= 8) + { + port = PIC2_DATA; + irq -= 8; + } + IO::outb(port, IO::inb(port) & ~(1 << irq)); + } + + bool PIC::is_in_service(uint8_t irq) + { + uint16_t port = PIC1_CMD; + if (irq >= 8) + { + port = PIC2_CMD; + irq -= 8; + } + IO::outb(port, PIC_ISR); + return IO::inb(port) & (1 << irq); + } + } diff --git a/kernel/kernel/Storage/ATABus.cpp b/kernel/kernel/Storage/ATABus.cpp index c5dbc415..dde2bdeb 100644 --- a/kernel/kernel/Storage/ATABus.cpp +++ b/kernel/kernel/Storage/ATABus.cpp @@ -11,40 +11,6 @@ namespace Kernel { - static void bus_irq_handler0(); - static void bus_irq_handler1(); - - struct BusIRQ - { - ATABus* bus { nullptr }; - void (*handler)() { nullptr }; - uint8_t irq { 0 }; - }; - static BusIRQ s_bus_irqs[] { - { nullptr, bus_irq_handler0, 0 }, - { nullptr, bus_irq_handler1, 0 }, - }; - - static void bus_irq_handler0() { ASSERT(s_bus_irqs[0].bus); s_bus_irqs[0].bus->on_irq(); } - static void bus_irq_handler1() { ASSERT(s_bus_irqs[1].bus); s_bus_irqs[1].bus->on_irq(); } - - static void register_bus_irq_handler(ATABus* bus, uint8_t irq) - { - for (uint8_t i = 0; i < sizeof(s_bus_irqs) / sizeof(BusIRQ); i++) - { - if (s_bus_irqs[i].bus == nullptr) - { - s_bus_irqs[i].bus = bus; - s_bus_irqs[i].irq = irq; - - IDT::register_irq_handler(irq, s_bus_irqs[i].handler); - InterruptController::get().enable_irq(irq); - return; - } - } - ASSERT_NOT_REACHED(); - } - ATABus* ATABus::create(ATAController& controller, uint16_t base, uint16_t ctrl, uint8_t irq) { ATABus* bus = new ATABus(controller, base, ctrl); @@ -55,11 +21,11 @@ namespace Kernel void ATABus::initialize(uint8_t irq) { - register_bus_irq_handler(this, irq); + set_irq(irq); + enable_interrupt(); - uint16_t* identify_buffer = new uint16_t[256]; - ASSERT(identify_buffer); - BAN::ScopeGuard _([identify_buffer] { delete[] identify_buffer; }); + BAN::Vector identify_buffer; + MUST(identify_buffer.resize(256)); for (uint8_t i = 0; i < 2; i++) { @@ -72,11 +38,11 @@ namespace Kernel BAN::ScopeGuard guard([this, i] { m_devices[i] = nullptr; }); - auto type = identify(device, identify_buffer); + auto type = identify(device, identify_buffer.data()); if (type == DeviceType::None) continue; - auto res = device.initialize(type, identify_buffer); + auto res = device.initialize(type, identify_buffer.data()); if (res.is_error()) { dprintln("{}", res.error()); @@ -149,7 +115,7 @@ namespace Kernel return type; } - void ATABus::on_irq() + void ATABus::handle_irq() { ASSERT(!m_has_got_irq); if (io_read(ATA_PORT_STATUS) & ATA_STATUS_ERR) diff --git a/kernel/kernel/Terminal/Serial.cpp b/kernel/kernel/Terminal/Serial.cpp index ec71c97b..5fd79384 100644 --- a/kernel/kernel/Terminal/Serial.cpp +++ b/kernel/kernel/Terminal/Serial.cpp @@ -1,5 +1,4 @@ #include -#include #include #include #include @@ -38,37 +37,9 @@ namespace Kernel static BAN::Array s_serial_drivers; static bool s_has_devices { false }; - static BAN::CircularQueue s_com1_input; - static BAN::CircularQueue s_com2_input; static BAN::RefPtr s_com1; static BAN::RefPtr s_com2; - static void irq3_handler() - { - if (!s_serial_drivers[1].is_valid()) - return; - uint8_t ch = IO::inb(COM2_PORT); - if (s_com2_input.full()) - { - dwarnln("COM2 buffer full"); - s_com2_input.pop(); - } - s_com2_input.push(ch); - } - - static void irq4_handler() - { - if (!s_serial_drivers[0].is_valid()) - return; - uint8_t ch = IO::inb(COM1_PORT); - if (s_com1_input.full()) - { - dwarnln("COM1 buffer full"); - s_com1_input.pop(); - } - s_com1_input.push(ch); - } - static dev_t next_rdev() { static dev_t major = DevFileSystem::get().get_next_dev(); @@ -220,14 +191,14 @@ namespace Kernel if (serial.port() == COM1_PORT) { IO::outb(COM1_PORT + 1, 1); - InterruptController::get().enable_irq(COM1_IRQ); - IDT::register_irq_handler(COM1_IRQ, irq4_handler); + tty->set_irq(COM1_IRQ); + tty->enable_interrupt(); } else if (serial.port() == COM2_PORT) { IO::outb(COM2_PORT + 1, 1); - InterruptController::get().enable_irq(COM2_IRQ); - IDT::register_irq_handler(COM2_IRQ, irq3_handler); + tty->set_irq(COM2_IRQ); + tty->enable_interrupt(); } auto ref_ptr = BAN::RefPtr::adopt(tty); @@ -239,41 +210,45 @@ namespace Kernel return ref_ptr; } + void SerialTTY::handle_irq() + { + uint8_t ch = IO::inb(m_serial.port()); + if (m_input.full()) + { + dwarnln("Serial buffer full"); + m_input.pop(); + } + m_input.push(ch); + } + void SerialTTY::update() { if (m_serial.port() != COM1_PORT && m_serial.port() != COM2_PORT) return; - static uint8_t buffer[128]; + uint8_t buffer[128]; - auto update_com = - [&](auto& device, auto& input_queue) + { + CriticalScope _; + if (m_input.empty()) + return; + uint8_t* ptr = buffer; + while (!m_input.empty()) { - if (input_queue.empty()) - return; - uint8_t* ptr = buffer; - while (!input_queue.empty()) - { - *ptr = input_queue.front(); - if (*ptr == '\r') - *ptr = '\n'; - if (*ptr == 127) - *ptr++ = '\b', *ptr++ = ' ', *ptr = '\b'; - input_queue.pop(); - ptr++; - } - *ptr = '\0'; + *ptr = m_input.front(); + if (*ptr == '\r') + *ptr = '\n'; + if (*ptr == 127) + *ptr++ = '\b', *ptr++ = ' ', *ptr = '\b'; + m_input.pop(); + ptr++; + } + *ptr = '\0'; + } - ptr = buffer; - while (*ptr) - device->handle_input_byte(*ptr++); - }; - - CriticalScope _; - if (m_serial.port() == COM1_PORT) - update_com(s_com1, s_com1_input); - if (m_serial.port() == COM2_PORT) - update_com(s_com2, s_com2_input); + const uint8_t* ptr = buffer; + while (*ptr) + handle_input_byte(*ptr++); } uint32_t SerialTTY::width() const diff --git a/kernel/kernel/Timer/HPET.cpp b/kernel/kernel/Timer/HPET.cpp index 130e7975..8813b56e 100644 --- a/kernel/kernel/Timer/HPET.cpp +++ b/kernel/kernel/Timer/HPET.cpp @@ -131,12 +131,17 @@ namespace Kernel for (int i = 1; i <= header->comparator_count; i++) write_register(HPET_REG_TIMER_CONFIG(i), 0); - IDT::register_irq_handler(irq, [] { Scheduler::get().timer_reschedule(); }); - InterruptController::get().enable_irq(irq); + set_irq(irq); + enable_interrupt(); return {}; } + void HPET::handle_irq() + { + Scheduler::get().timer_reschedule(); + } + uint64_t HPET::ms_since_boot() const { // FIXME: 32 bit CPUs should use 32 bit counter with 32 bit reads diff --git a/kernel/kernel/Timer/PIT.cpp b/kernel/kernel/Timer/PIT.cpp index a5c421be..b61901ed 100644 --- a/kernel/kernel/Timer/PIT.cpp +++ b/kernel/kernel/Timer/PIT.cpp @@ -4,6 +4,8 @@ #include #include +#define PIT_IRQ 0 + #define TIMER0_CTL 0x40 #define TIMER1_CTL 0x41 #define TIMER2_CTL 0x42 @@ -27,14 +29,6 @@ namespace Kernel { - static volatile uint64_t s_system_time = 0; - - void irq_handler() - { - s_system_time = s_system_time + 1; - Kernel::Scheduler::get().timer_reschedule(); - } - BAN::ErrorOr> PIT::create() { PIT* pit = new PIT(); @@ -53,19 +47,24 @@ namespace Kernel IO::outb(TIMER0_CTL, (timer_reload >> 0) & 0xff); IO::outb(TIMER0_CTL, (timer_reload >> 8) & 0xff); - IDT::register_irq_handler(PIT_IRQ, irq_handler); + set_irq(PIT_IRQ); + enable_interrupt(); + } - InterruptController::get().enable_irq(PIT_IRQ); + void PIT::handle_irq() + { + m_system_time = m_system_time + 1; + Kernel::Scheduler::get().timer_reschedule(); } uint64_t PIT::ms_since_boot() const { - return s_system_time * (MS_PER_S / TICKS_PER_SECOND); + return m_system_time * (MS_PER_S / TICKS_PER_SECOND); } timespec PIT::time_since_boot() const { - uint64_t ticks = s_system_time; + uint64_t ticks = m_system_time; return timespec { .tv_sec = ticks / TICKS_PER_SECOND, .tv_nsec = (long)((ticks % TICKS_PER_SECOND) * (NS_PER_S / TICKS_PER_SECOND)) From 27364f64a634f65408ffab364e027e2c7cbfca4e Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 7 Oct 2023 15:46:30 +0300 Subject: [PATCH 087/240] Kernel: Rework whole ATA driver structure Make ATA driver more compatible when we are adding SATA support --- base-sysroot.tar.gz | Bin 8147 -> 8220 bytes kernel/CMakeLists.txt | 6 +- kernel/include/kernel/Device/Device.h | 2 + kernel/include/kernel/Device/NullDevice.h | 4 + kernel/include/kernel/Device/ZeroDevice.h | 2 + kernel/include/kernel/FS/DevFS/FileSystem.h | 8 +- kernel/include/kernel/Input/PS2Controller.h | 9 +- kernel/include/kernel/PCI.h | 3 + .../include/kernel/Storage/{ => ATA}/ATABus.h | 30 +++-- .../kernel/Storage/ATA/ATAController.h | 27 ++++ .../kernel/Storage/{ => ATA}/ATADefinitions.h | 3 + .../kernel/Storage/{ => ATA}/ATADevice.h | 22 ++-- kernel/include/kernel/Storage/ATAController.h | 38 ------ .../kernel/Storage/StorageController.h | 10 +- kernel/include/kernel/Storage/StorageDevice.h | 18 ++- kernel/include/kernel/Terminal/TTY.h | 2 - kernel/kernel/FS/DevFS/FileSystem.cpp | 23 +++- kernel/kernel/Input/PS2Controller.cpp | 9 +- kernel/kernel/PCI.cpp | 5 +- kernel/kernel/Storage/{ => ATA}/ATABus.cpp | 108 ++++++++-------- kernel/kernel/Storage/ATA/ATAController.cpp | 76 ++++++++++++ kernel/kernel/Storage/ATA/ATADevice.cpp | 117 ++++++++++++++++++ kernel/kernel/Storage/ATAController.cpp | 102 --------------- kernel/kernel/Storage/ATADevice.cpp | 86 ------------- kernel/kernel/Storage/StorageDevice.cpp | 20 ++- kernel/kernel/Terminal/Serial.cpp | 2 +- kernel/kernel/Terminal/TTY.cpp | 4 +- kernel/kernel/Terminal/VirtualTTY.cpp | 10 +- kernel/kernel/kernel.cpp | 1 + 29 files changed, 400 insertions(+), 347 deletions(-) rename kernel/include/kernel/Storage/{ => ATA}/ATABus.h (57%) create mode 100644 kernel/include/kernel/Storage/ATA/ATAController.h rename kernel/include/kernel/Storage/{ => ATA}/ATADefinitions.h (91%) rename kernel/include/kernel/Storage/{ => ATA}/ATADevice.h (62%) delete mode 100644 kernel/include/kernel/Storage/ATAController.h rename kernel/kernel/Storage/{ => ATA}/ATABus.cpp (71%) create mode 100644 kernel/kernel/Storage/ATA/ATAController.cpp create mode 100644 kernel/kernel/Storage/ATA/ATADevice.cpp delete mode 100644 kernel/kernel/Storage/ATAController.cpp delete mode 100644 kernel/kernel/Storage/ATADevice.cpp diff --git a/base-sysroot.tar.gz b/base-sysroot.tar.gz index 590909752fad60b9c3cc582ab757ad80a63acc30..310827bc1185cdb2f1d4c34ea49b64d5a46d5c60 100644 GIT binary patch literal 8220 zcmaiYi8s{$_rE1nh~5+$45@4}S+Xx>EwV&K_N`awOzDf9jZtt5%H#+^*KogK}t^H{rkcfZ-ybap-@x|#U}{BX-#zEZWd>$-DD z($=-KoKaq1Fgw@H_#{;k%&{1o0S}|VQqV7KLD#A0m-Z2b@5pT%65HkzDv^4J`)jt< z_upzZ_*+O+1Fc>)H-W*=1>`fSz|>kNps9=Q%FL8Ew|mLVqM&KYOlT=tlXYN!h5$Ds z+|s2&a}jd>cVVPZk{%HM^KaJlHHk`VJ_O0_6Vd`{k?ex2II7Me46cj+sCrewOAR*B z&gp4EH2QsO%nrA?!n`5jv7I;5(p(xapE>z;ujmeNwGv7l&HC`lU?cV5%L}+0QjFX< z)zt6_0Z(DP-p~-x_)&tnwN+AGA6EQOwgF;!tQLpSK7D>NL1j~VYBk)sSw6nVl&jFz z_4kZa)6k-EkZE4P@w>0>8*n2k-y-zJER}i6B@+*qE-7-G04I~98~jg(sBAGiVt-LA z4rdT3Zr2rRu_XNz+PsTyN`;4gB)c^*Leuup$))6%giJ@$s(w3l0jZ=6u~hMf?z&N! zrp_T90JGUN;Ka`67Vh2|J4Oyp`vaN@c9wujjkt&}3kpbG%Vy!}4`WVL6i?BxHb8t4hy`h|vik1=Q?Wa4!Y`@dNfNq% zyczJ`KAbWdi%)>Lr=xKP?megA6X!f%>gU&?_uH7@GU`OrCvMH+G6CG^x&Aw+9RzsNacEy0dqx4jZ8GQP8db zyC@_pTVD77_GEF(Y7v-R41S%c)*%M72;)yDI|l$Hi5zv3J2-ZROG1ue40iLh|a_UPp;IGmH(yP zlQqPH0~4wTsk$nE1u(dLZQb)*Lx8_w{Pp(0vzb^o(Ekgm7y>=_tBCK5_C{mi4RL}Q zh;#_-;M|7cz*DZON+LX6gU<*x-<=Oucu>+GSrGr$zaLpW;dW_4^#`DJy1ab2Y$tDG z!KBM*sqKF&FIl%t+ZMakNBU}*tMq9XZC`ncp+9l@d#>L;`So`CASj%*^L6EUPW{8M zrP%^CCl2|&aB%&$sod{o$K6tY)8g=g>T1u`!8iTI+nt;3lc-KC+kSu6 zxBdL4qEa3hY;f6D_7DA~@LL6Hf}u<8T#@6)?N=Dmw{z|-2sk#f^Bc{kT%sJkn3QG4 z7xp?-)P7Hp9#K*IT4K1!tuA6Fp{2Asne;6_J9Yoh6L~*N#M!uVF6=U~x%hj$$*<+h z4LKVk%|kijaf~s!UR| z{hHRVt%C#k0*6IemTq3IvyGzKqLJWhJC4#}$O#eYI&+<#HIw9o=#H&B=k=5K9KY6@ zCfSF4df)yCojT_D`DTaj=|H3Gn4?mzoKT%A-%0-24=?wxYb{oHW#-k=`_D4Uh4f^ljc=5A+&Ucqxpok;CNUR)j{5=%S+KwH&!=3l9IXc%BhMmcKIag!%S6&HE( zXx^@>(7gmF>&DyXMM|}GMt22*>Zn2RAIg$t4b5MtyumHzO_v?5z{2l^Kuz`Z@l7^^?B)@qN&C`||3$QyS3# z)>U(ruLnO8E=JY%Ud^lIt==+qaPz}{%6{Yi?uO1cVgCAcPTR0e)zifmCI0&$?Wl4V z9v-1v;$y)b(n-VpI|d**s5zgoC2pQ+VNW8mDUmnG0E{^L^h65JQ#z(cZ6lenR;qaP zCGq&+>?`Bv{!Z&=zHoq>u;%;IyJn@36i-E@WTV*ef-?z+N7FG39)VgO1@B(Zk?%UE z60Lf+3AnpRa1%aB*==YeSMbBaS^pl{3IFU(dJy`)!JKEUp6%^ZtQ?O+-xGQ75M-!Z zx}cG#;RgISvR+(h@SrX(3*RY;M@woNVsD>WOTXhiZ+bsbobrMcRn_P>>Un?@>uJr* zuL zUDTKkD`oZ$L!Kt~mfAq=yZ`+)ck=$8_yAM<@*g!5ADtE@s zr*Yp;WaKLipHAH5Rli$&+P+(Flwvo2s{9mr)WBJwR91ZNzVX`+MQ47z+Ag&Be;)bK z+H&B_}B`b_IW3r|z^xU6mm29|++>>N<_4S)C{m z6`;Y^gbL(fYfOc|(@C1Y_{*kLf902fDgMGQ15-~l>%z6BZBtKX*tO?JHXR3DZaWQ3%d7(Lx_ z(NondbrwD0Es`_c3D$$=|9YX<@t~AT^yI(2owj#%9Y*vihf0s?PhY+*r+w4Y3XXzb z{9IvXFk#$>uo65LF-0X*4JD9Zhs%}c%EXq0MOBlj&1u&tglA{+o}U#Yf1 zuFo5e|1NKIjlm@T+^U$r)V);WKKf;`JY0B6oC2x#s;g%mxuTgLWc4(kuiq%6Fj)?C z=SLQ_iT~h;GdOI)njd0$?Tdvk(ci2U`ci>0*6Zxm`r3&Xa?-h`O&G5)UW%EMOIqR3 zM(PyKLdN6vO%^@J)Hi>0OsUB}b06qmg`^!LcLSeT4Op{;zOL?&FcN{pUkRDZh*8Yl z0Y5H&e2FZ?uPP?UMc^|;FY^)0Y> zqV+q^S~6xJ0-1&X6NRE_hTtDG$T5lZ_Om* zO_z$s7Sr5EJs>;H903$2eP|7z13Tf4%ypT$+AP^S9cK=(X*Vs+>*?0O=dIkuxAt>w9&JkP-z{9gJwB54(|rt|e05^^E~#X!myI>mUO^=-^lA5Y z^^j!+TYv!bL4Ow1LMs=B{~lsg21^oC{_SS^EA?xT@(PdX!V}S2<<$za&Z79oSGnX9 zgKk`2PV&5CAuZEOmR7ZW64z9b+_GU7pGHZCu>0T36LDRN!2u#QlEipPRuA+ zbdqb_@P>ofVYi;9HN|(ZIE5eLH?fVXFFc#?{SAi!&z>~+joGjNxLa7xT)GmPF<^UC zL8Hx|F!4PYS7Q8q)j#W5?5U|Gy4bN~Pi1MF;Fqbetl@QI^Qd7Vn&&!v*D|1e zSnnmYWB-+$13gTle@k92et9`1Z?fNC)d_NaF66sne*P8LZol(kxBfNcOBk)7=61+C z$#zG|@4#xbWBv~Om!HSTJ5D*Kks9Tj|9+v7y1kZ^&8DP$s~7%!1jltaL<_4cMJc-@*rhf$s-a@(;dM!&Yq0idSW&?;?I`*p=zwd(-HXdyg>8aHp3NQn9e?elilgtsq;hUtGa zp#DMczukdFz6#Afcw;0~J@dvs)B~0uMAJ+%TT5hm&~DuMR(`|>rnxWS!SuT8zZ@D@ z0I}Dy$K)|K;tRV?h;i9ZMfZdoV=b=jA-_ioP69N1J1C998FmRqi-=B)P~`haD*kgaDt1rvNh4bTX5me^vH-V(^L+u!(UQ09|m6WH)B|MQ{I^HlC)R4zJDK zlH6^{X)a)h*}8EQpyEa6b+d+D;gSLm@#f*}q-=x7_7-i^W2n8vyDS(?FkoO-IFdqe^5+6Trbsfsje(KdaYjUD7HC7%< z<)MZo)m`!)!Q8Zy8mHsN{AVXx!_s`Ane$%c`UCNC#&7gkTBQiX&&=kue)I@hsb!z# z%XYWfx#ApRt9mRoSTuL;Qz5_H*&fhe#XAZxm}8705WT!VG;Vmp>B$m@rpwNlu}GG~ z%QdXCS9aN_#zYez#AwqqwcFC#GQ_gKi6xoK@)@#(1V>jbfRK@Kl& zyjC6K+6kkv=lCAS?m@%9;kT@2Cv=!i6xG2u6L04kMPM(eT(U}#HcG5Cw;hXsz2M!4 zx7@i{`A8sK#vzZXvF1q^ilHY0@h=;kDJZ-;W5V-%vn7m=N;!RHP`KRqhhoTh?B)|Y zIWJjbCap+h#3mb53)}Sh_{B2AauS9%UR~xM!&p5%>N|cB<9w(BISf{Tu>8Q7vhlv# zEWq%pynk?U>{aCIp)7szpO!3KtcnM%#{~~Yory^}Z5;+p2QZSAYdC^fiT4k|7&slk z(0+x?7(_qIkVK1Spn`%ph~VWwj0cUdzGlj-MI~hY1bjc!s_}PO6%n;B1b^g_hfZ0Bv{*45; zF8?1ZehOrgfPZqD|Bjy$MLvM-|D=G&OMw1CSJ4d^nZL)30IN*8dj1W`#`CeE;8r&Q zYrOxQ#P;$6^8&JZ6i4xZDaQ$QD<&_4w>*HT;NPzxI=QIR&B^kQU~cYs-Ibs#3MZ#E z>eH*gl2f6e!GopJQBN6@A?ArUvrhQ4s4g232wzQ9nDByFNE1)o-=UR&zskbKA(*eB zJVvH#;JNqe)aL8!MZ165mYjS~40`c%J9)|GU;8KHj})n6a!wT0P3%|V1!S3f#DdC# z*(w9TQeNw>a%N!R_~<8RGSst_CvZ2qtE=m36X`ZJjSxwCwuI*=@{FrPv zRHhPa9XMz@C$A?Uh8DKj0gGQt;OetAPAH)8`QxH1|6>SC5u<(YwP3kV2+~Dqs##U7> zvMM|`avM`rSRx4hc`L)@vPh1s3oKH9=!?X~S9it6-q~2TTQoObbKy7{g(iKTu;<)i zwtd#m^?8LEd;O;CgOYr;fnWB!Yt=j8Tsh4K9pNP+iQpe_x-n74`kC}9+?SvX8&yNA zZtgarcW*Q6?FdV3rA+9)Ww^Z;N7(wd;Am_%r2*s72S%^(J zfsB8u|Nb6DxM6LP@-v+jBgQh|1|JSD7|2d}V#}Q}1J`?_m(wgNlo`6Fz~W1(f(y-{ z+dC?S7OplmKoCkV2|kY4mhc&HD(=9ly3lkdRmOJah#PBt2Y%L>if<^Xl8p9LDnog= zKhG)P^2{^pcv{PSvV$9@$2q8^&$x7Ww2?y7AfTjV`mYR)^9PBt9b@Nh27rdyfwD`~ zHe*|R0lBUHEHRxw%$*r{KpR$g4zU$+lG#bWg-iy$+ou>(%ikTt>xcp(mti-(hcvel z6{o(OEqgq{tAPq1K;uzov@o??-QZ`WwR&$!+y-Lmpg%_x#V5gE+Xra1BG6d1@{S|J zJwc`C*Ie4TY}x6p=0rP{bIz}|6O7uhLWQKGfRNsSkI9a*Fg)H#r7-n&>l0;ipOb5C zPHp*VLbj2mQVXj0?NYnv4liFl>$*S&-mOPjX-Jsw?GQZfn3r!xIfV1}5v#YUPe+K_ z*5AG7RPE<#!`L@xV5y{Eq4R$OH~KR>1`pIjM-{12Y2L=JFj=L{;zpO!bM?(j4*Ozs%wWNM2AyN!v6v_>p_~~^AF4VQ0tKACq;kq4Ckn6TFI*eCv3CS=ZneYhUn)Dh%d@i zv!`e+&qvOFp^t5isC;dmCFn26rre)0EA&61;LY%1END~uJNOkTut@#RL@D(HVD@8- z!+HtzV`lv%!EpOM+ai?A`b#Yj$ln?n6WesuD?Z{cI&Gs`PuVY#hyR}Td9)v6xm6MR z%2Yco81;`|@g_vF72h_S3k)7t5(kI~ZCE+HUk=Ok%%&fmB%X63ZPp*e7eEZx`mrSRjGGwji6*c`0Vj z53BozGWQX^Z_l3>rH(7S9!g89)1^#C3k3~QMZNPR3ajz0dSyHw6|8-SD(j4<)W?|j z_7qAqv8M-wh8p5Vv-<5Kdwe~(R5p)}LNb7>Tgs7h?Oc_BH1%oWvCoA9|p2`{LA?9kC>awcbDCld6zRW?ejU?LUcU;Y%p{u6x zU>UzeRMNoG@H2K^3S}nB9r7)=VT9b7EOub-5++2oV{i@W>38tWW1&Xc&F~-6<8Zn# z;X{!_nPuY(^f8gh63+1B6*eN9Xq)I5?1XA~n)$Z68agn17qJPe zc+88pScZ0{5<2rKPh--J%Yp<2-ee}j3x)+kFYkV+clkwAO!pqcd+zXHQH9rt-jHdO zW|VG}c9cGgW;lX5!cc(ON>3t!^kO-Pq2_Y)<>njBjLrPsGb=$tF_8_J5e(8h{EBNR z=!0jzv_Lz5e-j-jVj-f59vKlxb8ulP(GAPw{*Wli%SLN`5e*WdgQfI=BZMP1%WOsN z;NOze^)?Pz_JG-Gxe01A^v|ifv(}w?AoULOTMO^r3yXFQT!k6$zc?`0s(u-q-`D9< zz1P}J*~5YMaEVH8f*RmGp8f3vB}toI+dDkQP3$2Zmx#7#`u+;SG=5bonn#}m&y5f?Y6%BxO8{IzHjN5 zXTGIYu7+9R=em7EjzUV*N7IDLhS2{Snu>hUVUz-mmKu>3E6-q;!s7N?xn0!Dx>WJ$i%@AFRl4&1?UV5QmagErVjToyiVEDG zm!}QojujYuwrH0)Qat~~UeCj8i96eB*suii4z#lh_QSqN{R5W)j&D-9Vp9L93f!s^FIMSkp z*BFa;Ii^q2cq`_*u1(gsGiLk@ex^wjcuG)G5#2d)R69U zY*DVT#T57s{b39gEO(CQU3|5&cYtsAWXs&OYcp7MPPmF9Ev)p)Ke=-re&EM2GpqmR zmp(d5e783_WcwePc_oYEMALt1X*G2s6&KT|$Z!y7BV1fY4b$aTnkvz^T|JAh^5lBu1i%x6PL3%iLHhm5NOZIHxrAdJ`#| uAFrNp;2?Qez;ap=4nW9M#}t8wQ5P=#ck9vrmys?dGjpEW_s|T`(EJ}8PVgcC literal 8147 zcmaiY_d6R7&^TIEEz;KBRkdpG5u{d)B35e?)fR1uy$Q7`s%EWd&6d{Q#NMk#ZGs?0 zjR-;#$@}@f?;r5J=bn4+x##x%aL*lY(oKs0g=_z8Ljt+}_;oFe4Pu(%qJLT226}m- zC&m_X{}@ybSdT$?^l$Rrd7;@InfC6-fmE>er)_G<{Q;%Kz!FMl_VHqAHmqFgaX6ca zf3Jdjw4vMg@0t9>1Kv$u*7og6Q(Hgdsj%_!PX3X)o_lxphg|}~ec(P*t++zMve(33 zu*}-mVvFa`>!3_z#rBkpY)fr^=FBv`4}a72baVuMkIu;{X3l-^p_!L!wor8AaC_tG zs%(L%o$mT-7M1!;Wzt=WU}?b>d3Bap$M*ZtV5_5{-~rOCtmM)qa&NTcwOJ8#H?dpkRg zqJ!1+A|%e=q`(!Ix85}}`)iz5A$gQP{TzPN z=^Xmge$4_H4i-8f7cYQz9Lb`)m(WjSPS_V0MC`~gDJL_lZ7|{TD&XHmDwzbHPl)G9 zHX@OLe41MSFdk7yPENPcH=?hhtAh+ikbxSTi=agl z@rax;^dS9+Y#1-s z8LH2DHD{8_Pb`l2EEx2DS@pvfborP6;&1T>^9nz}l~74|O>+Pk3Oy>qksJ01c=dk= zK3=A(?&T;Qu7+knQ*-)vH(@%!YuxMl5`(0-9DT_Li|0>13G0uGI4LE`{4Irhe!(}N zikuyR-~Is|C;XijZl+aUPwzUWbt7Lf;u;z0OAS<~wzJ<(V~fV)kCLbEH`xk(y>I}~ zX!%<;CmSoODTz9}yr#Ba34#pssH~U7F@Ba}jck2+&#C#b(#ts2XvWDJ`hb)86K|5N z(X#5y7|#cRQljtpK`>*?2jLCv2O2XCV-2<>PNT<~aFn-hM(KATpjK>O7 zEn5|W>dkot^>jDuFBwt%$rY5@99wy76=d=EU}f- z)St_EAkcsPW)j{-8v2-g7bP8GRBE>Hmtu&9PS7LdGS$6Z_q!y>^Vi|gxfJJHw~j?D zy8~G}7z|U9>oY2!Qd%$L#F+dNhmY75pDG?zI^LhLzHhy)rglD57B%6kTBuM!`dw?N zceZ$`@TMal1)~)zGiYHs%$R`Rq}5lNdsuv{W?~tXsrM+uA1%80mQCdKW3K83BEHZ1Fu!zMGYi^DL#*of6B@;oXjM@98x_YchPHiHb$B}@9zSyuI!F@9 zIhPc7600s@oQbpMz2^i4jjfYrV0UnEzTXaO^A2ms!s>7VZn$Huq&@Gw97nv`p#BAlE0x>5xq_24ahCs10u0Y^5>VUb)J6&Rm&<&z-Lg5l%DP8VJ5^uvk#o&_2*V z9v^WL9VhB@83^g%doyPy&%Kc#{SGj#OZ%{?7EqOTP-|z z%6s}u?r$Y;=x(?y1AdS9^bY{xdtBOXl%qLI=?JZ2wN!2F8L*q)`A;8ea;VUfQx1rU z&A{VY7j`*?cL`zPs!U7evt3gI#+O$H_;A*lzb1=EZu!E_ZR^4qil3gh1mCEvQq211 zCx^+-&)IRxHa$kPDiNJZ*s;?X+v1G`Da~8XG^CO^&p$1ojS07Q7Yr1T74a($%0&9H~qOPIrO6LVdc@XO`fi_5nb|D))23*pEa2*Y^H%m$qjW-d?koTjAF&`%*VJT3E7r!0Re4;pC=d$Yc50Zf`5f#*fjNHMgGk zfj4eQePP)9Ldmh=^6UDV-ZJPLDW6>Cp0ZB=$pFm;t>k7i{j!yG51lXgy`W{qm!y=IM_MJqI6V2ZqE zv8vRi@JFW0@0GkuWU3}-+zxDP)HzLtmu!1C$%sU*rcJYgy!jo^b%dvE6S1PYRDP-< z((2Vv^s%EwWn#cxcOxRXQ(pf=UizvnOMQ(Uq?iy1iGPw3a+bTGE@H3!!sD?5hrB+J zrNn(QhyAs*iUE|r`ab`V50^`?L+Ft52!cilpZYf2LE7vfEX+a6DLc*gN%yN2&-Jg~ z(*5@Q=X3CN$#`zMT1E;rrl z4y?~d6+D;*z)_|AuPdIir&lu#apEp-k5ZhPdSO^6FptjBIVurx?7J?lR?5X`T0R{z zK0O{EdN3!N60o6^;d?@3|B>_m#3N%h-^x&TyY#jLS?B%yC>e%A+Lg1E99Cei1O-Q_ zcjaO1vMH9m4QlM>N0~T~jl*C=$0!D`gp^ix$euLq$X_>w$4; z9p6msmOi`TE~)I@gLFZNl`2`Q@eUr#uYR)MgvIrkg|R@cY)hHBuK&v4NAB-^WjYGs zImmJ1f<8GNKm)>KvlHN2&$5{kikSm{Wlu~|5|nL0L;G0)OSn=1%C{i;{N5R~1baU0 za;&v|sx+GezE~XyE`5Knt|4Gqim(!aNx6!)Op70t0JjUyLC>Z^XJ=@0#juMp(Ku{M zJi_6U&obPle+n~Ay%n$I;PWn}*>6YXvf#c@I0T)_zY{pYj|yD8Ay|zo17ycd(LS$5 zYOJ7v-?^%lKcHT{O$v>$Znzgffgk};fo>r(Wd|ad7&o3=)T*eGgAhWRIVHP*=i&UF zA!BOMUHg&0v@$7z?Mn%toN!%zzv3FSxXQ77?ZXNx+ktsk!ouhLs=RC`m+xO_C9*P3 z0vP?nuMMcFsqF^llH!kMkx!n{l7I`3HLO_Jr7bfvv==#6snFU&Lmrt zvv-bml(e*-aYWoUL{)0wLSyTH<5bUY2S3XgnJtQMzK926D6fjN|Ipiu-GH;4*rYg_scvM>_Nd~Z&by7^zx^HP`50;u^L^nceto-j! zsf+ArTuJQkJgl)S)Yy59z+@BS?##yoUX4eFo-=Bu_D@%4ehvP5C-zDCD3q-rsW|OK zyOk$FVkal~{Kb4%vT^ijrO@=>nn8d zG+@4*{$YV2XFky%@nlH8b+AV#Z}uz!s-Of?_t!0YwkEk?`=~%<9uYqfK4dS<mcB zBe#KF!e_rBd6;X0OL_~EZn+69H}&u7tK~l*6FqRuA6%dBj<`QTOh}yOwShfZg43D~ zrC;nEIoJbGHwCdLK`IGXcTwqvf1hZ&OK$v2ja>#Qe-^KmAZyoFhmkMr_VSK=RdY;r zvK20;jTCxf;DYIU*v|+I;2Y-V0Lix%A!j;?QpyWM`#{yBYxLzlYhBP|mVCosuo7s2 z;HNp$Q~w?x9V+VF8k~u}fAjK^V}|*|73%tz^`l-VX6JBf#?8{Wvlo(GR=oM7v)kdO zr{GOa0n**_G$ruUP?vkrU6>0%pK^@k@CEWNR_b7?VUx{SOm|DPR!yal<{?7nx#~g0 zsG~us;O$Of;{*8)j2Er(kUE1C-{8{?NhVVIAM^$!KDq0Jfg{%EmgB}nR6S|>JXVQM z<^Gb-O*3ioLxhE@WWnK=qVeoNtNE~_h!NtWtf6!6_kS>w)S^Vu5OqMDmY0wkYO9=> zLhQI8-trFsMxw+bEQWMNBr%!@$e(E0a|<>>%-*yXDOLMCRd${>Rqh)~BsN7A6z8?WS%9d6%WB1q8IKSd-pQr( z3+P;7Dj-10J(Z9;g!Uq*U8wz+)A?3T7ND@?cz3}rZM6DnDDb~7U@ub^$^!C#zzcwK^Myd4HM;)G){z##9U}y(6mX5CU&?i*?x4QLGcGSDBnf7AsWV zTt8Ep-FI_;$;r3mwZ!E9o#j``{QIT(2Dhd8#$B6l{%Y>Dw&EIU^nMI`cC$04Q}^3z z=43H@Vzc!lua+D)7{~keeTEN3-j)@9c!f@P(M$7x@Bj5Ydx?4}AqNpL-a{ze(mddd z_l$|T`G)-sQzKU+m3*vC0*9^|s~=y2(;;;88I|8%WdQv9t!kFy!nj~{ky|Ut&h63p zYzxsy){o}b$jM077fU)@oRJJ22)6337`(f;!MZ~~lCS5n3nTy{>foqZMm>kZ1&oYD z63Ppcor6Voh&&<;s!C_DW74ZFJ|a>5GxLRfxTA4Hci%-Awen?P1TSP#bOb{g!Tae` zcX1$0WUckqnQjT&OtqlTwN%t9Z@SAh;4y)tjv7=waQbSiYm(}M*1=vkTu}h@YR}E} zuJ(<~zKpASQP2GE2`OiD>z&(M#BSJ&R^~war;m<3?o~hk`cu>1=w~kwBw$IS-lM9x z&du1!(8$vmX+gc#LrC6I9Y2$mVGQ{bjmsM`>lY7fywS+)C$3CAW48661IFJ<0fP3n z@0-kQ$u)FO1ZMJul=)6Rf&U`4y~Np_x^>`eXSu$|;DINUSs~fueWv5-pv^Pn#wrqp zr$5F8o&hRg_lNlQdMj}z?WO_g)zpQ(>IiV+FCp^XqtFOExB{kq6|!yrZ%{Uh1N7XTd>D#)o{qxc)96|>5x_q$;m(EP#R3lBK(s>veJAf zS1IV9@7B9oucqdhQCG&*G7c94u@Kz~9J}$Z@Z}5&8#Q&MHWk)2g z<{A0gAVc%o7{mE7#J4Z)5dP3>ZAvr9Zs>trnaTd&*=g;m&;gi?^x>l_=DY5sboWV* z{+;Ch^7FG~zQ()8u?9Kx&!lMHKqMYMX!ab(>J4)7rjNbMRh=Z4K&DT!2 zdjhNCs(a_x85SrU5*W4H5P|K9v&gG_J#W7aa>7L+`JT2S4ksW=u#o@UifuT zZ25-JFP?PIU{?*?$;mNq`cVT(o2=C)5nxWD14{dkV{%~NL@mQ!= z-?J{zt@gspd%jychc0~!MkfZOCp+ZakXB-R-P3A9@3RqF5oOb&XAp6)gJSI#sJZhq zVxT7a6>pCtznj&KF(+!Qkk`Qc21o$?IGC9SydzB58Ht^-!SkCR7)F61N+XCLx{9H58v0caA%N z(hY{{Rrc^~$yXqp9d*OHem0kuz8#B7(<`YIX?F_q-O{W6wwu!U+q5`0H&=n{K5u9h zKwFR|U=MVS2EvxZqe|)>WDT)7O3^lUb#q&kfun?5i_JfRDZKzku90<&9QKw~oZQ~I zZ6^bvmgdK=R(8o;JfS!R=Z6*Bb&%jXu=Y>>_dR#&KI0>`?)Qf|+Pv#Jwd${a0OMY6 zk@hi&oUim>8~Su`vX^tXB`@t!k~Li|?sDtrC&wGk%oU1r5cHev>1GaV$l(3;#?aJ` ztf6OYK0O$p-_hAK4tR-%W8d%Q!#l;Fz=4Y$zCadl1II@OyqBWtjLgb8|JtL4XfPR4 zMMb1wgQ0&TB>UF24}Uf55z)-sw_5GUF0D&174nSc_EJ_Y9QJFUvm{GY>Wahotc9va zs4waMRobp9UVTMeIxPGMRw%WVz37-*Tdi!9F4bx)m|uFo8+B*EtQ<6O3iMAudXw{D ze(^glPj(f%^lb_ml1Q^G5bWT;UC~-)$z(4xgndR+iR9%xsyt*xdI31~dUr*2x}L^a zFNNx}Di^@V3@&v`dBuO6P>+hF-E+$DO)4qv$F@0t%lq`s1kLW}OX;gmWBT3p933=o zpf#*dxsKhbZ-us{0+T(S9zeezx~5&Z)P>6(eMojObPf5X_NCfUosH$$&7k{o=AHII zk1h)@_TI}1@Ej##4|!FS1p2DNON)F1FY>E(2cCAe4-)npzyWXIJ`JgozYvqzki)R= zr1VBpWD=_-z9FfiGVDQVr|?C8J?xppPfWOR$m)wwH^b9wP zlS!D<=Ntt@%zphfL*MsbshKD*ka(OMEnoR>r)Nc>_oxbjB!OaCdd0nOw z8ETGn$o9xgc&s=0Tj0FNRBdYe0|)M~&zxsZ-ODb>*DETIQJVLpf7B?vW^GJ<|GG-G zcluPGAC+3pZvEkW!1e?_s6M<1ySEQ|4NrOdryxdUu8GMxB=DWPNY?YAUpH#&OLMG$ zU>^+(->9us5o}_*UFi&QgYF>$lFP3|!6D}AuL^G`WSnQ9ww{Q9{}`{_@FO4F#kVb0 z5`-$3zXgKT*h;S4kiWikI(Hz~U;7f~rl`T7=~rP`yLksD>+h?19sJ2USA?-e4l{Z)wlzGxwm>=Y@Z~^8dyP-fxYYZIv`d|6N9Ta)uCq5O!TZ#J9 zcSQgl{lazS>J1OVR1`>9Pax?(wZIP`PIAz~I<4$~6=*6Ibm~PCCyICFQ%mQ>+~lv7?mRBo zfn@H~GUsaT%Eo~Ulp7SV2S3K?d_PA%@+lJZsd<343LgJ5n`4u-Yej&M6Z=oRuIQEi zds|7u$Uokk+g)BYj~WmN)qT!pWnKSzB3J(H|Cd?%{SW!EOy?fOFa^c`0Da=T{{R30 diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index c23387ad..c8bf72ad 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -52,9 +52,9 @@ set(KERNEL_SOURCES kernel/Semaphore.cpp kernel/SpinLock.cpp kernel/SSP.cpp - kernel/Storage/ATABus.cpp - kernel/Storage/ATAController.cpp - kernel/Storage/ATADevice.cpp + kernel/Storage/ATA/ATABus.cpp + kernel/Storage/ATA/ATAController.cpp + kernel/Storage/ATA/ATADevice.cpp kernel/Storage/DiskCache.cpp kernel/Storage/StorageDevice.cpp kernel/Syscall.cpp diff --git a/kernel/include/kernel/Device/Device.h b/kernel/include/kernel/Device/Device.h index df445eec..58f105b7 100644 --- a/kernel/include/kernel/Device/Device.h +++ b/kernel/include/kernel/Device/Device.h @@ -17,6 +17,8 @@ namespace Kernel virtual dev_t rdev() const override = 0; + virtual BAN::StringView name() const = 0; + protected: Device(mode_t, uid_t, gid_t); }; diff --git a/kernel/include/kernel/Device/NullDevice.h b/kernel/include/kernel/Device/NullDevice.h index 7da299a4..a5e09932 100644 --- a/kernel/include/kernel/Device/NullDevice.h +++ b/kernel/include/kernel/Device/NullDevice.h @@ -1,3 +1,5 @@ +#pragma once + #include namespace Kernel @@ -10,6 +12,8 @@ namespace Kernel virtual dev_t rdev() const override { return m_rdev; } + virtual BAN::StringView name() const override { return "null"sv; } + protected: NullDevice(mode_t mode, uid_t uid, gid_t gid, dev_t rdev) : CharacterDevice(mode, uid, gid) diff --git a/kernel/include/kernel/Device/ZeroDevice.h b/kernel/include/kernel/Device/ZeroDevice.h index 106bdcb8..86fb781f 100644 --- a/kernel/include/kernel/Device/ZeroDevice.h +++ b/kernel/include/kernel/Device/ZeroDevice.h @@ -10,6 +10,8 @@ namespace Kernel virtual dev_t rdev() const override { return m_rdev; } + virtual BAN::StringView name() const override { return "zero"sv; } + protected: ZeroDevice(mode_t mode, uid_t uid, gid_t gid, dev_t rdev) : CharacterDevice(mode, uid, gid) diff --git a/kernel/include/kernel/FS/DevFS/FileSystem.h b/kernel/include/kernel/FS/DevFS/FileSystem.h index 4006bc98..e8a56c51 100644 --- a/kernel/include/kernel/FS/DevFS/FileSystem.h +++ b/kernel/include/kernel/FS/DevFS/FileSystem.h @@ -15,10 +15,12 @@ namespace Kernel void initialize_device_updater(); - void add_device(BAN::StringView path, BAN::RefPtr); + void add_device(BAN::RefPtr); + void add_inode(BAN::StringView path, BAN::RefPtr); void for_each_device(const BAN::Function& callback); - dev_t get_next_dev(); + dev_t get_next_dev() const; + int get_next_input_device() const; void initiate_sync(bool should_block); @@ -28,7 +30,7 @@ namespace Kernel { } private: - SpinLock m_device_lock; + mutable SpinLock m_device_lock; Semaphore m_sync_done; Semaphore m_sync_semaphore; diff --git a/kernel/include/kernel/Input/PS2Controller.h b/kernel/include/kernel/Input/PS2Controller.h index 6c739082..0c75cf9a 100644 --- a/kernel/include/kernel/Input/PS2Controller.h +++ b/kernel/include/kernel/Input/PS2Controller.h @@ -9,12 +9,13 @@ namespace Kernel::Input class PS2Device : public CharacterDevice, public Interruptable { public: + PS2Device(); virtual ~PS2Device() {} - public: - PS2Device() - : CharacterDevice(Mode::IRUSR | Mode::IRGRP, 0, 0) - { } + virtual BAN::StringView name() const override { return m_name; } + + private: + const BAN::String m_name; }; class PS2Controller diff --git a/kernel/include/kernel/PCI.h b/kernel/include/kernel/PCI.h index 63d9ca67..1eb10311 100644 --- a/kernel/include/kernel/PCI.h +++ b/kernel/include/kernel/PCI.h @@ -3,6 +3,9 @@ #include #include #include +#include + +#include namespace Kernel::PCI { diff --git a/kernel/include/kernel/Storage/ATABus.h b/kernel/include/kernel/Storage/ATA/ATABus.h similarity index 57% rename from kernel/include/kernel/Storage/ATABus.h rename to kernel/include/kernel/Storage/ATA/ATABus.h index f971fe73..06894e5f 100644 --- a/kernel/include/kernel/Storage/ATABus.h +++ b/kernel/include/kernel/Storage/ATA/ATABus.h @@ -1,48 +1,46 @@ #pragma once -#include +#include +#include #include #include -#include namespace Kernel { class ATADevice; - class ATABus : public Interruptable + class ATABus : public BAN::RefCounted, public Interruptable { public: enum class DeviceType { - None, ATA, ATAPI, }; public: - static ATABus* create(ATAController&, uint16_t base, uint16_t ctrl, uint8_t irq); + static BAN::ErrorOr> create(uint16_t base, uint16_t ctrl, uint8_t irq); BAN::ErrorOr read(ATADevice&, uint64_t, uint8_t, uint8_t*); BAN::ErrorOr write(ATADevice&, uint64_t, uint8_t, const uint8_t*); - ATAController& controller() { return m_controller; } - virtual void handle_irq() override; + void initialize_devfs(); + private: - ATABus(ATAController& controller, uint16_t base, uint16_t ctrl) - : m_controller(controller) - , m_base(base) + ATABus(uint16_t base, uint16_t ctrl) + : m_base(base) , m_ctrl(ctrl) {} - void initialize(uint8_t irq); + BAN::ErrorOr initialize(); - void select_device(const ATADevice&); - DeviceType identify(const ATADevice&, uint16_t*); + void select_device(bool secondary); + BAN::ErrorOr identify(bool secondary, BAN::Span buffer); void block_until_irq(); - uint8_t device_index(const ATADevice&) const; + //uint8_t device_index(const ATADevice&) const; uint8_t io_read(uint16_t); void io_write(uint16_t, uint8_t); @@ -52,14 +50,14 @@ namespace Kernel BAN::Error error(); private: - ATAController& m_controller; const uint16_t m_base; const uint16_t m_ctrl; SpinLock m_lock; bool m_has_got_irq { false }; - BAN::RefPtr m_devices[2] {}; + // Non-owning pointers + BAN::Vector m_devices; friend class ATAController; }; diff --git a/kernel/include/kernel/Storage/ATA/ATAController.h b/kernel/include/kernel/Storage/ATA/ATAController.h new file mode 100644 index 00000000..df6576c2 --- /dev/null +++ b/kernel/include/kernel/Storage/ATA/ATAController.h @@ -0,0 +1,27 @@ +#pragma once + +#include +#include +#include +#include +#include + +namespace Kernel +{ + + class ATAController : public StorageController + { + public: + static BAN::ErrorOr> create(PCI::Device&); + virtual BAN::ErrorOr initialize() override; + + private: + ATAController(PCI::Device& pci_device) + : m_pci_device(pci_device) + { } + + private: + PCI::Device& m_pci_device; + }; + +} \ No newline at end of file diff --git a/kernel/include/kernel/Storage/ATADefinitions.h b/kernel/include/kernel/Storage/ATA/ATADefinitions.h similarity index 91% rename from kernel/include/kernel/Storage/ATADefinitions.h rename to kernel/include/kernel/Storage/ATA/ATADefinitions.h index 7559062b..37686d34 100644 --- a/kernel/include/kernel/Storage/ATADefinitions.h +++ b/kernel/include/kernel/Storage/ATA/ATADefinitions.h @@ -1,5 +1,8 @@ #pragma once +#define ATA_PROGIF_PRIMARY_NATIVE (1 << 0) +#define ATA_PROGIF_SECONDARY_NATIVE (1 << 2) + #define ATA_PORT_DATA 0x00 #define ATA_PORT_ERROR 0x00 #define ATA_PORT_SECTOR_COUNT 0x02 diff --git a/kernel/include/kernel/Storage/ATADevice.h b/kernel/include/kernel/Storage/ATA/ATADevice.h similarity index 62% rename from kernel/include/kernel/Storage/ATADevice.h rename to kernel/include/kernel/Storage/ATA/ATADevice.h index e9a3a23a..8851f2e1 100644 --- a/kernel/include/kernel/Storage/ATADevice.h +++ b/kernel/include/kernel/Storage/ATA/ATADevice.h @@ -1,6 +1,6 @@ #pragma once -#include +#include #include namespace Kernel @@ -9,23 +9,31 @@ namespace Kernel class ATADevice final : public StorageDevice { public: - ATADevice(ATABus&); - BAN::ErrorOr initialize(ATABus::DeviceType, const uint16_t*); + static BAN::ErrorOr> create(BAN::RefPtr, ATABus::DeviceType, bool is_secondary, BAN::Span identify_data); virtual uint32_t sector_size() const override { return m_sector_words * 2; } virtual uint64_t total_size() const override { return m_lba_count * sector_size(); } + bool is_secondary() const { return m_is_secondary; } + uint32_t words_per_sector() const { return m_sector_words; } + uint64_t sector_count() const { return m_lba_count; } + BAN::StringView model() const { return m_model; } + BAN::StringView name() const; protected: virtual BAN::ErrorOr read_sectors_impl(uint64_t, uint8_t, uint8_t*) override; virtual BAN::ErrorOr write_sectors_impl(uint64_t, uint8_t, const uint8_t*) override; private: - ATABus& m_bus; - uint8_t m_index; + ATADevice(BAN::RefPtr, ATABus::DeviceType, bool is_secodary); + BAN::ErrorOr initialize(BAN::Span identify_data); - ATABus::DeviceType m_type; + private: + BAN::RefPtr m_bus; + const ATABus::DeviceType m_type; + const bool m_is_secondary; + uint16_t m_signature; uint16_t m_capabilities; uint32_t m_command_set; @@ -33,8 +41,6 @@ namespace Kernel uint64_t m_lba_count; char m_model[41]; - friend class ATABus; - public: virtual Mode mode() const override { return { Mode::IFBLK | Mode::IRUSR | Mode::IRGRP }; } virtual uid_t uid() const override { return 0; } diff --git a/kernel/include/kernel/Storage/ATAController.h b/kernel/include/kernel/Storage/ATAController.h deleted file mode 100644 index c8de79e9..00000000 --- a/kernel/include/kernel/Storage/ATAController.h +++ /dev/null @@ -1,38 +0,0 @@ -#pragma once - -#include -#include - -namespace Kernel -{ - - class ATABus; - - class ATAController final : public StorageController - { - public: - static BAN::ErrorOr> create(const PCI::Device&); - - virtual BAN::Vector> devices() override; - - private: - ATAController(); - BAN::ErrorOr initialize(const PCI::Device& device); - - private: - ATABus* m_buses[2] { nullptr, nullptr }; - friend class ATABus; - - public: - virtual Mode mode() const override { return { Mode::IFCHR }; } - virtual uid_t uid() const override { return 0; } - virtual gid_t gid() const override { return 0; } - virtual dev_t rdev() const override { return m_rdev; } - - virtual BAN::ErrorOr read(size_t, void*, size_t) { return BAN::Error::from_errno(ENOTSUP); } - - private: - const dev_t m_rdev; - }; - -} \ No newline at end of file diff --git a/kernel/include/kernel/Storage/StorageController.h b/kernel/include/kernel/Storage/StorageController.h index 2e568966..c6199920 100644 --- a/kernel/include/kernel/Storage/StorageController.h +++ b/kernel/include/kernel/Storage/StorageController.h @@ -1,17 +1,13 @@ #pragma once -#include - namespace Kernel { - class StorageController : public CharacterDevice + class StorageController { public: - StorageController() - : CharacterDevice(0660, 0, 0) - { } - virtual BAN::Vector> devices() = 0; + virtual ~StorageController() {} + virtual BAN::ErrorOr initialize() = 0; }; } \ No newline at end of file diff --git a/kernel/include/kernel/Storage/StorageDevice.h b/kernel/include/kernel/Storage/StorageDevice.h index 487c0013..c4cf1131 100644 --- a/kernel/include/kernel/Storage/StorageDevice.h +++ b/kernel/include/kernel/Storage/StorageDevice.h @@ -20,7 +20,7 @@ namespace Kernel class Partition final : public BlockDevice { public: - Partition(StorageDevice&, const GUID&, const GUID&, uint64_t, uint64_t, uint64_t, const char*, uint32_t); + static BAN::ErrorOr> create(StorageDevice&, const GUID& type, const GUID& guid, uint64_t start, uint64_t end, uint64_t attr, const char* label, uint32_t index); const GUID& partition_type() const { return m_type; } const GUID& partition_guid() const { return m_guid; } @@ -32,6 +32,11 @@ namespace Kernel BAN::ErrorOr read_sectors(uint64_t lba, uint8_t sector_count, uint8_t* buffer); BAN::ErrorOr write_sectors(uint64_t lba, uint8_t sector_count, const uint8_t* buffer); + + virtual BAN::StringView name() const override { return m_name; } + + private: + Partition(StorageDevice&, const GUID&, const GUID&, uint64_t, uint64_t, uint64_t, const char*, uint32_t); private: StorageDevice& m_device; @@ -41,6 +46,7 @@ namespace Kernel const uint64_t m_lba_end; const uint64_t m_attributes; char m_label[36 * 4 + 1]; + const BAN::String m_name; public: virtual bool is_partition() const override { return true; } @@ -73,8 +79,8 @@ namespace Kernel virtual uint32_t sector_size() const = 0; virtual uint64_t total_size() const = 0; - BAN::Vector& partitions() { return m_partitions; } - const BAN::Vector& partitions() const { return m_partitions; } + BAN::Vector>& partitions() { return m_partitions; } + const BAN::Vector>& partitions() const { return m_partitions; } BAN::ErrorOr sync_disk_cache(); virtual bool is_storage_device() const override { return true; } @@ -85,9 +91,9 @@ namespace Kernel void add_disk_cache(); private: - SpinLock m_lock; - BAN::Optional m_disk_cache; - BAN::Vector m_partitions; + SpinLock m_lock; + BAN::Optional m_disk_cache; + BAN::Vector> m_partitions; friend class DiskCache; }; diff --git a/kernel/include/kernel/Terminal/TTY.h b/kernel/include/kernel/Terminal/TTY.h index f6761a8e..5b876a25 100644 --- a/kernel/include/kernel/Terminal/TTY.h +++ b/kernel/include/kernel/Terminal/TTY.h @@ -50,8 +50,6 @@ namespace Kernel virtual BAN::ErrorOr read_impl(off_t, void*, size_t) override; virtual BAN::ErrorOr write_impl(off_t, const void*, size_t) override; - virtual BAN::StringView name() const = 0; - private: void do_backspace(); diff --git a/kernel/kernel/FS/DevFS/FileSystem.cpp b/kernel/kernel/FS/DevFS/FileSystem.cpp index b41b09b2..2aaa6ead 100644 --- a/kernel/kernel/FS/DevFS/FileSystem.cpp +++ b/kernel/kernel/FS/DevFS/FileSystem.cpp @@ -22,8 +22,8 @@ namespace Kernel auto root_inode = MUST(RamDirectoryInode::create(*s_instance, 0, 0755, 0, 0)); MUST(s_instance->set_root_inode(root_inode)); - s_instance->add_device("null", MUST(NullDevice::create(0666, 0, 0))); - s_instance->add_device("zero", MUST(ZeroDevice::create(0666, 0, 0))); + s_instance->add_device(MUST(NullDevice::create(0666, 0, 0))); + s_instance->add_device(MUST(ZeroDevice::create(0666, 0, 0))); } DevFileSystem& DevFileSystem::get() @@ -117,10 +117,16 @@ namespace Kernel m_sync_done.block(); } - void DevFileSystem::add_device(BAN::StringView path, BAN::RefPtr device) + void DevFileSystem::add_device(BAN::RefPtr device) + { + ASSERT(!device->name().contains('/')); + MUST(reinterpret_cast(root_inode().ptr())->add_inode(device->name(), device)); + } + + void DevFileSystem::add_inode(BAN::StringView path, BAN::RefPtr inode) { ASSERT(!path.contains('/')); - MUST(reinterpret_cast(root_inode().ptr())->add_inode(path, device)); + MUST(reinterpret_cast(root_inode().ptr())->add_inode(path, inode)); } void DevFileSystem::for_each_device(const BAN::Function& callback) @@ -136,11 +142,18 @@ namespace Kernel ); } - dev_t DevFileSystem::get_next_dev() + dev_t DevFileSystem::get_next_dev() const { LockGuard _(m_device_lock); static dev_t next_dev = 1; return next_dev++; } + int DevFileSystem::get_next_input_device() const + { + LockGuard _(m_device_lock); + static dev_t next_dev = 0; + return next_dev++; + } + } \ No newline at end of file diff --git a/kernel/kernel/Input/PS2Controller.cpp b/kernel/kernel/Input/PS2Controller.cpp index ea6887db..8c6c9d05 100644 --- a/kernel/kernel/Input/PS2Controller.cpp +++ b/kernel/kernel/Input/PS2Controller.cpp @@ -68,6 +68,11 @@ namespace Kernel::Input static PS2Controller* s_instance = nullptr; + PS2Device::PS2Device() + : CharacterDevice(0440, 0, 0) + , m_name(BAN::String::formatted("input{}", DevFileSystem::get().get_next_input_device())) + { } + BAN::ErrorOr PS2Controller::initialize() { ASSERT(s_instance == nullptr); @@ -175,14 +180,14 @@ namespace Kernel::Input m_devices[0]->set_irq(PS2::IRQ::DEVICE0); m_devices[0]->enable_interrupt(); config |= PS2::Config::INTERRUPT_FIRST_PORT; - DevFileSystem::get().add_device("input0", m_devices[0]); + DevFileSystem::get().add_device(m_devices[0]); } if (m_devices[1]) { m_devices[1]->set_irq(PS2::IRQ::DEVICE1); m_devices[1]->enable_interrupt(); config |= PS2::Config::INTERRUPT_SECOND_PORT; - DevFileSystem::get().add_device("input1", m_devices[1]); + DevFileSystem::get().add_device(m_devices[1]); } controller_send_command(PS2::Command::WRITE_CONFIG, config); diff --git a/kernel/kernel/PCI.cpp b/kernel/kernel/PCI.cpp index 9a5ea1f1..254526c1 100644 --- a/kernel/kernel/PCI.cpp +++ b/kernel/kernel/PCI.cpp @@ -3,7 +3,8 @@ #include #include #include -#include +#include +#include #define INVALID_VENDOR 0xFFFF #define MULTI_FUNCTION 0x80 @@ -143,6 +144,8 @@ namespace Kernel::PCI switch (pci_device.subclass()) { case 0x01: + case 0x05: + case 0x06: if (auto res = ATAController::create(pci_device); res.is_error()) dprintln("ATA: {}", res.error()); break; diff --git a/kernel/kernel/Storage/ATABus.cpp b/kernel/kernel/Storage/ATA/ATABus.cpp similarity index 71% rename from kernel/kernel/Storage/ATABus.cpp rename to kernel/kernel/Storage/ATA/ATABus.cpp index dde2bdeb..abe125ed 100644 --- a/kernel/kernel/Storage/ATABus.cpp +++ b/kernel/kernel/Storage/ATA/ATABus.cpp @@ -1,27 +1,31 @@ -#include +#include #include #include #include #include -#include -#include -#include +#include +#include +#include #include namespace Kernel { - ATABus* ATABus::create(ATAController& controller, uint16_t base, uint16_t ctrl, uint8_t irq) + BAN::ErrorOr> ATABus::create(uint16_t base, uint16_t ctrl, uint8_t irq) { - ATABus* bus = new ATABus(controller, base, ctrl); - ASSERT(bus); - bus->initialize(irq); + auto* bus_ptr = new ATABus(base, ctrl); + if (bus_ptr == nullptr) + return BAN::Error::from_errno(ENOMEM); + auto bus = BAN::RefPtr::adopt(bus_ptr); + bus->set_irq(irq); + TRY(bus->initialize()); + if (bus->m_devices.empty()) + return BAN::Error::from_errno(ENODEV); return bus; } - void ATABus::initialize(uint8_t irq) + BAN::ErrorOr ATABus::initialize() { - set_irq(irq); enable_interrupt(); BAN::Vector identify_buffer; @@ -29,49 +33,57 @@ namespace Kernel for (uint8_t i = 0; i < 2; i++) { - { - auto* temp_ptr = new ATADevice(*this); - ASSERT(temp_ptr); - m_devices[i] = BAN::RefPtr::adopt(temp_ptr); - } - ATADevice& device = *m_devices[i]; + bool is_secondary = (i == 1); - BAN::ScopeGuard guard([this, i] { m_devices[i] = nullptr; }); - - auto type = identify(device, identify_buffer.data()); - if (type == DeviceType::None) + DeviceType device_type; + if (auto res = identify(is_secondary, identify_buffer.span()); res.is_error()) continue; + else + device_type = res.value(); - auto res = device.initialize(type, identify_buffer.data()); - if (res.is_error()) + auto device_or_error = ATADevice::create(this, device_type, is_secondary, identify_buffer.span()); + + if (device_or_error.is_error()) { - dprintln("{}", res.error()); + dprintln("{}", device_or_error.error()); continue; } - guard.disable(); + auto device = device_or_error.release_value(); + device->ref(); + TRY(m_devices.push_back(device.ptr())); } // Enable disk interrupts - for (int i = 0; i < 2; i++) + for (auto& device : m_devices) { - if (!m_devices[i]) - continue; - select_device(*m_devices[i]); + select_device(device->is_secondary()); io_write(ATA_PORT_CONTROL, 0); } + + return {}; + } + + void ATABus::initialize_devfs() + { + for (auto& device : m_devices) + { + DevFileSystem::get().add_device(device); + if (auto res = device->initialize_partitions(); res.is_error()) + dprintln("{}", res.error()); + device->unref(); + } } - void ATABus::select_device(const ATADevice& device) + void ATABus::select_device(bool secondary) { - uint8_t device_index = this->device_index(device); - io_write(ATA_PORT_DRIVE_SELECT, 0xA0 | (device_index << 4)); + io_write(ATA_PORT_DRIVE_SELECT, 0xA0 | ((uint8_t)secondary << 4)); SystemTimer::get().sleep(1); } - ATABus::DeviceType ATABus::identify(const ATADevice& device, uint16_t* buffer) + BAN::ErrorOr ATABus::identify(bool secondary, BAN::Span buffer) { - select_device(device); + select_device(secondary); // Disable interrupts io_write(ATA_PORT_CONTROL, ATA_CONTROL_nIEN); @@ -81,7 +93,7 @@ namespace Kernel // No device on port if (io_read(ATA_PORT_STATUS) == 0) - return DeviceType::None; + return BAN::Error::from_errno(EINVAL); DeviceType type = DeviceType::ATA; @@ -97,7 +109,7 @@ namespace Kernel else { dprintln("Unsupported device type"); - return DeviceType::None; + return BAN::Error::from_errno(EINVAL); } io_write(ATA_PORT_COMMAND, ATA_COMMAND_IDENTIFY_PACKET); @@ -106,11 +118,12 @@ namespace Kernel if (auto res = wait(true); res.is_error()) { dprintln("Fatal error: {}", res.error()); - return DeviceType::None; + return BAN::Error::from_errno(EINVAL); } } - read_buffer(ATA_PORT_DATA, buffer, 256); + ASSERT(buffer.size() >= 256); + read_buffer(ATA_PORT_DATA, buffer.data(), 256); return type; } @@ -212,18 +225,9 @@ namespace Kernel return BAN::Error::from_error_code(ErrorCode::None); } - uint8_t ATABus::device_index(const ATADevice& device) const - { - if (m_devices[0] && m_devices[0].ptr() == &device) - return 0; - if (m_devices[1] && m_devices[1].ptr() == &device) - return 1; - ASSERT_NOT_REACHED(); - } - BAN::ErrorOr ATABus::read(ATADevice& device, uint64_t lba, uint8_t sector_count, uint8_t* buffer) { - if (lba + sector_count > device.m_lba_count) + if (lba + sector_count > device.sector_count()) return BAN::Error::from_error_code(ErrorCode::Storage_Boundaries); LockGuard _(m_lock); @@ -231,7 +235,7 @@ namespace Kernel if (lba < (1 << 28)) { // LBA28 - io_write(ATA_PORT_DRIVE_SELECT, 0xE0 | (device_index(device) << 4) | ((lba >> 24) & 0x0F)); + io_write(ATA_PORT_DRIVE_SELECT, 0xE0 | ((uint8_t)device.is_secondary() << 4) | ((lba >> 24) & 0x0F)); io_write(ATA_PORT_SECTOR_COUNT, sector_count); io_write(ATA_PORT_LBA0, (uint8_t)(lba >> 0)); io_write(ATA_PORT_LBA1, (uint8_t)(lba >> 8)); @@ -241,7 +245,7 @@ namespace Kernel for (uint32_t sector = 0; sector < sector_count; sector++) { block_until_irq(); - read_buffer(ATA_PORT_DATA, (uint16_t*)buffer + sector * device.m_sector_words, device.m_sector_words); + read_buffer(ATA_PORT_DATA, (uint16_t*)buffer + sector * device.words_per_sector(), device.words_per_sector()); } } else @@ -255,7 +259,7 @@ namespace Kernel BAN::ErrorOr ATABus::write(ATADevice& device, uint64_t lba, uint8_t sector_count, const uint8_t* buffer) { - if (lba + sector_count > device.m_lba_count) + if (lba + sector_count > device.sector_count()) return BAN::Error::from_error_code(ErrorCode::Storage_Boundaries); LockGuard _(m_lock); @@ -263,7 +267,7 @@ namespace Kernel if (lba < (1 << 28)) { // LBA28 - io_write(ATA_PORT_DRIVE_SELECT, 0xE0 | (device_index(device) << 4) | ((lba >> 24) & 0x0F)); + io_write(ATA_PORT_DRIVE_SELECT, 0xE0 | ((uint8_t)device.is_secondary() << 4) | ((lba >> 24) & 0x0F)); io_write(ATA_PORT_SECTOR_COUNT, sector_count); io_write(ATA_PORT_LBA0, (uint8_t)(lba >> 0)); io_write(ATA_PORT_LBA1, (uint8_t)(lba >> 8)); @@ -274,7 +278,7 @@ namespace Kernel for (uint32_t sector = 0; sector < sector_count; sector++) { - write_buffer(ATA_PORT_DATA, (uint16_t*)buffer + sector * device.m_sector_words, device.m_sector_words); + write_buffer(ATA_PORT_DATA, (uint16_t*)buffer + sector * device.words_per_sector(), device.words_per_sector()); block_until_irq(); } } diff --git a/kernel/kernel/Storage/ATA/ATAController.cpp b/kernel/kernel/Storage/ATA/ATAController.cpp new file mode 100644 index 00000000..312ff933 --- /dev/null +++ b/kernel/kernel/Storage/ATA/ATAController.cpp @@ -0,0 +1,76 @@ +#include +#include +#include +#include +#include + +namespace Kernel +{ + + BAN::ErrorOr> ATAController::create(PCI::Device& pci_device) + { + StorageController* controller_ptr = nullptr; + + switch (pci_device.subclass()) + { + case 0x01: + controller_ptr = new ATAController(pci_device); + break; + case 0x05: + dwarnln("unsupported DMA ATA Controller"); + return BAN::Error::from_errno(ENOTSUP); + case 0x06: + dwarnln("unsupported SATA Controller"); + return BAN::Error::from_errno(ENOTSUP); + default: + ASSERT_NOT_REACHED(); + } + + if (controller_ptr == nullptr) + return BAN::Error::from_errno(ENOMEM); + + auto controller = BAN::UniqPtr::adopt(controller_ptr); + TRY(controller->initialize()); + return controller; + } + + BAN::ErrorOr ATAController::initialize() + { + BAN::Vector> buses; + + uint8_t prog_if = m_pci_device.read_byte(0x09); + + if (!(prog_if & ATA_PROGIF_PRIMARY_NATIVE)) + { + auto bus_or_error = ATABus::create(0x1F0, 0x3F6, 14); + if (bus_or_error.is_error()) + dprintln("IDE ATABus: {}", bus_or_error.error()); + else + TRY(buses.push_back(bus_or_error.release_value())); + } + else + { + dprintln("unsupported IDE ATABus in native mode"); + } + + // BUS 2 + if (!(prog_if & ATA_PROGIF_SECONDARY_NATIVE)) + { + auto bus_or_error = ATABus::create(0x170, 0x376, 15); + if (bus_or_error.is_error()) + dprintln("IDE ATABus: {}", bus_or_error.error()); + else + TRY(buses.push_back(bus_or_error.release_value())); + } + else + { + dprintln("unsupported IDE ATABus in native mode"); + } + + for (auto& bus : buses) + bus->initialize_devfs(); + + return {}; + } + +} \ No newline at end of file diff --git a/kernel/kernel/Storage/ATA/ATADevice.cpp b/kernel/kernel/Storage/ATA/ATADevice.cpp new file mode 100644 index 00000000..e5dfb248 --- /dev/null +++ b/kernel/kernel/Storage/ATA/ATADevice.cpp @@ -0,0 +1,117 @@ +#include +#include +#include +#include +#include + +#include + +namespace Kernel +{ + + static dev_t get_ata_dev_major() + { + static dev_t major = DevFileSystem::get().get_next_dev(); + return major; + } + + static dev_t get_ata_dev_minor() + { + static dev_t minor = 0; + return minor++; + } + + BAN::ErrorOr> ATADevice::create(BAN::RefPtr bus, ATABus::DeviceType type, bool is_secondary, BAN::Span identify_data) + { + auto* device_ptr = new ATADevice(bus, type, is_secondary); + if (device_ptr == nullptr) + return BAN::Error::from_errno(ENOMEM); + auto device = BAN::RefPtr::adopt(device_ptr); + TRY(device->initialize(identify_data)); + return device; + } + + ATADevice::ATADevice(BAN::RefPtr bus, ATABus::DeviceType type, bool is_secondary) + : m_bus(bus) + , m_type(type) + , m_is_secondary(is_secondary) + , m_rdev(makedev(get_ata_dev_major(), get_ata_dev_minor())) + { } + + BAN::ErrorOr ATADevice::initialize(BAN::Span identify_data) + { + ASSERT(identify_data.size() >= 256); + + m_signature = identify_data[ATA_IDENTIFY_SIGNATURE]; + m_capabilities = identify_data[ATA_IDENTIFY_CAPABILITIES]; + + m_command_set = 0; + m_command_set |= (uint32_t)(identify_data[ATA_IDENTIFY_COMMAND_SET + 0] << 0); + m_command_set |= (uint32_t)(identify_data[ATA_IDENTIFY_COMMAND_SET + 1] << 16); + + if (!(m_capabilities & ATA_CAPABILITIES_LBA)) + return BAN::Error::from_error_code(ErrorCode::ATA_NoLBA); + + if ((identify_data[ATA_IDENTIFY_SECTOR_INFO] & (1 << 15)) == 0 && + (identify_data[ATA_IDENTIFY_SECTOR_INFO] & (1 << 14)) != 0 && + (identify_data[ATA_IDENTIFY_SECTOR_INFO] & (1 << 12)) != 0) + { + m_sector_words = *(uint32_t*)(identify_data.data() + ATA_IDENTIFY_SECTOR_WORDS); + } + else + { + m_sector_words = 256; + } + + m_lba_count = 0; + if (m_command_set & ATA_COMMANDSET_LBA48_SUPPORTED) + m_lba_count = *(uint64_t*)(identify_data.data() + ATA_IDENTIFY_LBA_COUNT_EXT); + if (m_lba_count < (1 << 28)) + m_lba_count = *(uint32_t*)(identify_data.data() + ATA_IDENTIFY_LBA_COUNT); + + for (int i = 0; i < 20; i++) + { + uint16_t word = identify_data[ATA_IDENTIFY_MODEL + i]; + m_model[2 * i + 0] = word >> 8; + m_model[2 * i + 1] = word & 0xFF; + } + m_model[40] = 0; + + dprintln("ATA disk {} MB", total_size() / 1024 / 1024); + + add_disk_cache(); + + return {}; + } + + BAN::ErrorOr ATADevice::read_sectors_impl(uint64_t lba, uint8_t sector_count, uint8_t* buffer) + { + TRY(m_bus->read(*this, lba, sector_count, buffer)); + return {}; + } + + BAN::ErrorOr ATADevice::write_sectors_impl(uint64_t lba, uint8_t sector_count, const uint8_t* buffer) + { + TRY(m_bus->write(*this, lba, sector_count, buffer)); + return {}; + } + + BAN::ErrorOr ATADevice::read_impl(off_t offset, void* buffer, size_t bytes) + { + ASSERT(offset >= 0); + if (offset % sector_size() || bytes % sector_size()) + return BAN::Error::from_errno(EINVAL); + if ((size_t)offset == total_size()) + return 0; + TRY(read_sectors(offset / sector_size(), bytes / sector_size(), (uint8_t*)buffer)); + return bytes; + } + + BAN::StringView ATADevice::name() const + { + static char device_name[] = "sda"; + device_name[2] += minor(m_rdev); + return device_name; + } + +} \ No newline at end of file diff --git a/kernel/kernel/Storage/ATAController.cpp b/kernel/kernel/Storage/ATAController.cpp deleted file mode 100644 index a4a481f3..00000000 --- a/kernel/kernel/Storage/ATAController.cpp +++ /dev/null @@ -1,102 +0,0 @@ -#include -#include -#include -#include -#include -#include -#include - -#include - -namespace Kernel -{ - - BAN::ErrorOr> ATAController::create(const PCI::Device& device) - { - ATAController* controller = new ATAController(); - if (controller == nullptr) - return BAN::Error::from_errno(ENOMEM); - BAN::ScopeGuard guard([controller] { controller->unref(); }); - TRY(controller->initialize(device)); - guard.disable(); - - auto ref_ptr = BAN::RefPtr::adopt(controller); - - DevFileSystem::get().add_device("hd"sv, ref_ptr); - - auto devices = controller->devices(); - for (size_t i = 0; i < devices.size(); i++) - { - char device_name[4] { 'h', 'd', (char)('a' + i), '\0' }; - DevFileSystem::get().add_device(device_name, devices[i]); - - if (auto res = devices[i]->initialize_partitions(); res.is_error()) - dprintln("{}", res.error()); - else - { - auto& partitions = devices[i]->partitions(); - for (size_t j = 0; j < partitions.size(); j++) - { - char partition_name[5] { 'h', 'd', (char)('a' + i), (char)('1' + j), '\0' }; - DevFileSystem::get().add_device(partition_name, partitions[j]); - } - } - } - - return ref_ptr; - } - - ATAController::ATAController() - : m_rdev(makedev(DevFileSystem::get().get_next_dev(), 0)) - { } - - BAN::ErrorOr ATAController::initialize(const PCI::Device& pci_device) - { - struct Bus - { - uint16_t base; - uint16_t ctrl; - }; - - Bus buses[2]; - buses[0].base = 0x1F0; - buses[0].ctrl = 0x3F6; - - buses[1].base = 0x170; - buses[1].ctrl = 0x376; - - uint8_t prog_if = pci_device.read_byte(0x09); - if (prog_if & 0x01) - { - buses[0].base = pci_device.read_dword(0x10) & 0xFFFFFFFC; - buses[0].ctrl = pci_device.read_dword(0x14) & 0xFFFFFFFC; - return BAN::Error::from_error_code(ErrorCode::ATA_UnsupportedDevice); - } - if (prog_if & 0x04) - { - buses[1].base = pci_device.read_dword(0x18) & 0xFFFFFFFC; - buses[1].ctrl = pci_device.read_dword(0x1C) & 0xFFFFFFFC; - return BAN::Error::from_error_code(ErrorCode::ATA_UnsupportedDevice); - } - - m_buses[0] = ATABus::create(*this, buses[0].base, buses[0].ctrl, 14); - m_buses[1] = ATABus::create(*this, buses[1].base, buses[1].ctrl, 15); - - return {}; - } - - BAN::Vector> ATAController::devices() - { - BAN::Vector> devices; - if (m_buses[0]->m_devices[0]) - MUST(devices.push_back(m_buses[0]->m_devices[0])); - if (m_buses[0]->m_devices[1]) - MUST(devices.push_back(m_buses[0]->m_devices[1])); - if (m_buses[1]->m_devices[0]) - MUST(devices.push_back(m_buses[1]->m_devices[0])); - if (m_buses[1]->m_devices[1]) - MUST(devices.push_back(m_buses[1]->m_devices[1])); - return devices; - } - -} \ No newline at end of file diff --git a/kernel/kernel/Storage/ATADevice.cpp b/kernel/kernel/Storage/ATADevice.cpp deleted file mode 100644 index 744cb3d9..00000000 --- a/kernel/kernel/Storage/ATADevice.cpp +++ /dev/null @@ -1,86 +0,0 @@ -#include -#include -#include -#include -#include - -#include - -namespace Kernel -{ - - ATADevice::ATADevice(ATABus& bus) - : m_bus(bus) - , m_rdev(makedev(DevFileSystem::get().get_next_dev(), 0)) - { } - - BAN::ErrorOr ATADevice::initialize(ATABus::DeviceType type, const uint16_t* identify_buffer) - { - m_type = type; - - m_signature = identify_buffer[ATA_IDENTIFY_SIGNATURE]; - m_capabilities = identify_buffer[ATA_IDENTIFY_CAPABILITIES]; - - m_command_set = 0; - m_command_set |= (uint32_t)(identify_buffer[ATA_IDENTIFY_COMMAND_SET + 0] << 0); - m_command_set |= (uint32_t)(identify_buffer[ATA_IDENTIFY_COMMAND_SET + 1] << 16); - - if (!(m_capabilities & ATA_CAPABILITIES_LBA)) - return BAN::Error::from_error_code(ErrorCode::ATA_NoLBA); - - if ((identify_buffer[ATA_IDENTIFY_SECTOR_INFO] & (1 << 15)) == 0 && - (identify_buffer[ATA_IDENTIFY_SECTOR_INFO] & (1 << 14)) != 0 && - (identify_buffer[ATA_IDENTIFY_SECTOR_INFO] & (1 << 12)) != 0) - { - m_sector_words = *(uint32_t*)(identify_buffer + ATA_IDENTIFY_SECTOR_WORDS); - } - else - { - m_sector_words = 256; - } - - m_lba_count = 0; - if (m_command_set & ATA_COMMANDSET_LBA48_SUPPORTED) - m_lba_count = *(uint64_t*)(identify_buffer + ATA_IDENTIFY_LBA_COUNT_EXT); - if (m_lba_count < (1 << 28)) - m_lba_count = *(uint32_t*)(identify_buffer + ATA_IDENTIFY_LBA_COUNT); - - for (int i = 0; i < 20; i++) - { - uint16_t word = identify_buffer[ATA_IDENTIFY_MODEL + i]; - m_model[2 * i + 0] = word >> 8; - m_model[2 * i + 1] = word & 0xFF; - } - m_model[40] = 0; - - dprintln("ATA disk {} MB", total_size() / 1024 / 1024); - - add_disk_cache(); - - return {}; - } - - BAN::ErrorOr ATADevice::read_sectors_impl(uint64_t lba, uint8_t sector_count, uint8_t* buffer) - { - TRY(m_bus.read(*this, lba, sector_count, buffer)); - return {}; - } - - BAN::ErrorOr ATADevice::write_sectors_impl(uint64_t lba, uint8_t sector_count, const uint8_t* buffer) - { - TRY(m_bus.write(*this, lba, sector_count, buffer)); - return {}; - } - - BAN::ErrorOr ATADevice::read_impl(off_t offset, void* buffer, size_t bytes) - { - ASSERT(offset >= 0); - if (offset % sector_size() || bytes % sector_size()) - return BAN::Error::from_errno(EINVAL); - if ((size_t)offset == total_size()) - return 0; - TRY(read_sectors(offset / sector_size(), bytes / sector_size(), (uint8_t*)buffer)); - return bytes; - } - -} \ No newline at end of file diff --git a/kernel/kernel/Storage/StorageDevice.cpp b/kernel/kernel/Storage/StorageDevice.cpp index a545b7be..7c517d73 100644 --- a/kernel/kernel/Storage/StorageDevice.cpp +++ b/kernel/kernel/Storage/StorageDevice.cpp @@ -2,6 +2,7 @@ #include #include #include +#include #include #include #include @@ -184,7 +185,7 @@ namespace Kernel char utf8_name[36 * 4 + 1]; BAN::UTF8::from_codepoints(entry.partition_name, 36, utf8_name); - Partition* partition = new Partition( + auto partition = TRY(Partition::create( *this, entry.partition_type_guid, entry.unique_partition_guid, @@ -193,14 +194,24 @@ namespace Kernel entry.attributes, utf8_name, i + 1 - ); - ASSERT(partition != nullptr); - MUST(m_partitions.push_back(partition)); + )); + TRY(m_partitions.push_back(BAN::move(partition))); } + for (auto partition : m_partitions) + DevFileSystem::get().add_device(partition); + return {}; } + BAN::ErrorOr> Partition::create(StorageDevice& device, const GUID& type, const GUID& guid, uint64_t start, uint64_t end, uint64_t attr, const char* label, uint32_t index) + { + auto partition_ptr = new Partition(device, type, guid, start, end, attr, label, index); + if (partition_ptr == nullptr) + return BAN::Error::from_errno(ENOMEM); + return BAN::RefPtr::adopt(partition_ptr); + } + Partition::Partition(StorageDevice& device, const GUID& type, const GUID& guid, uint64_t start, uint64_t end, uint64_t attr, const char* label, uint32_t index) : BlockDevice(0660, 0, 0) , m_device(device) @@ -209,6 +220,7 @@ namespace Kernel , m_lba_start(start) , m_lba_end(end) , m_attributes(attr) + , m_name(BAN::String::formatted("{}{}", device.name(), index)) , m_rdev(makedev(major(device.rdev()), index)) { memcpy(m_label, label, sizeof(m_label)); diff --git a/kernel/kernel/Terminal/Serial.cpp b/kernel/kernel/Terminal/Serial.cpp index 5fd79384..042bf4c9 100644 --- a/kernel/kernel/Terminal/Serial.cpp +++ b/kernel/kernel/Terminal/Serial.cpp @@ -202,7 +202,7 @@ namespace Kernel } auto ref_ptr = BAN::RefPtr::adopt(tty); - DevFileSystem::get().add_device(ref_ptr->name(), ref_ptr); + DevFileSystem::get().add_device(ref_ptr); if (serial.port() == COM1_PORT) s_com1 = ref_ptr; if (serial.port() == COM2_PORT) diff --git a/kernel/kernel/Terminal/TTY.cpp b/kernel/kernel/Terminal/TTY.cpp index 2453bd6e..c25f7c38 100644 --- a/kernel/kernel/Terminal/TTY.cpp +++ b/kernel/kernel/Terminal/TTY.cpp @@ -28,11 +28,11 @@ namespace Kernel { s_tty = this; - auto inode_or_error = DevFileSystem::get().root_inode()->find_inode("tty"); + auto inode_or_error = DevFileSystem::get().root_inode()->find_inode("tty"sv); if (inode_or_error.is_error()) { if (inode_or_error.error().get_error_code() == ENOENT) - DevFileSystem::get().add_device("tty"sv, MUST(RamSymlinkInode::create(DevFileSystem::get(), s_tty->name(), 0666, 0, 0))); + DevFileSystem::get().add_inode("tty"sv, MUST(RamSymlinkInode::create(DevFileSystem::get(), s_tty->name(), 0666, 0, 0))); else dwarnln("{}", inode_or_error.error()); return; diff --git a/kernel/kernel/Terminal/VirtualTTY.cpp b/kernel/kernel/Terminal/VirtualTTY.cpp index a5fe142b..dc190f99 100644 --- a/kernel/kernel/Terminal/VirtualTTY.cpp +++ b/kernel/kernel/Terminal/VirtualTTY.cpp @@ -33,12 +33,12 @@ namespace Kernel BAN::ErrorOr> VirtualTTY::create(TerminalDriver* driver) { - auto* tty = new VirtualTTY(driver); - ASSERT(tty); + auto* tty_ptr = new VirtualTTY(driver); + ASSERT(tty_ptr); - auto ref_ptr = BAN::RefPtr::adopt(tty); - DevFileSystem::get().add_device(ref_ptr->name(), ref_ptr); - return ref_ptr; + auto tty = BAN::RefPtr::adopt(tty_ptr); + DevFileSystem::get().add_device(tty); + return tty; } VirtualTTY::VirtualTTY(TerminalDriver* driver) diff --git a/kernel/kernel/kernel.cpp b/kernel/kernel/kernel.cpp index b9a259ce..f0430fe4 100644 --- a/kernel/kernel/kernel.cpp +++ b/kernel/kernel/kernel.cpp @@ -177,6 +177,7 @@ static void init2(void*) dprintln("PCI initialized"); VirtualFileSystem::initialize(cmdline.root); + dprintln("VFS initialized"); if (auto res = PS2Controller::initialize(); res.is_error()) dprintln("{}", res.error()); From f071240b33b8dc0c0549cc843df0e68310dd2d17 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 7 Oct 2023 19:16:10 +0300 Subject: [PATCH 088/240] Kernel: Fix PCI BarRegion offsets Calculations accidentally assumed bar registers are 8 byte instead of 4. --- kernel/kernel/PCI.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/kernel/PCI.cpp b/kernel/kernel/PCI.cpp index 254526c1..3e04f2d1 100644 --- a/kernel/kernel/PCI.cpp +++ b/kernel/kernel/PCI.cpp @@ -184,12 +184,12 @@ namespace Kernel::PCI // disable io/mem space while reading bar device.write_dword(0x04, command_status & ~3); - uint8_t offset = 0x10 + bar_num * 8; + uint8_t offset = 0x10 + bar_num * 4; uint64_t addr = device.read_dword(offset); device.write_dword(offset, 0xFFFFFFFF); - uint32_t size = device.read_dword(0x10 + bar_num * 8); + uint32_t size = device.read_dword(offset); size = ~size + 1; device.write_dword(offset, addr); @@ -209,7 +209,7 @@ namespace Kernel::PCI { type = BarType::MEM; addr &= 0xFFFFFFF0; - addr |= (uint64_t)device.read_dword(offset + 8) << 32; + addr |= (uint64_t)device.read_dword(offset + 4) << 32; } if (type == BarType::INVALID) From 03d2bf4002f7061fd995d8d88520e703f62a3dc3 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sun, 8 Oct 2023 01:38:51 +0300 Subject: [PATCH 089/240] Kernel: Rework physical memory allocation PhysicalRange is now much simpler bitmap. This makes expanding PhysicalRange API much easier. --- kernel/include/kernel/Memory/PhysicalRange.h | 34 ++--- kernel/kernel/Memory/Heap.cpp | 37 ++--- kernel/kernel/Memory/PhysicalRange.cpp | 142 +++++++------------ 3 files changed, 85 insertions(+), 128 deletions(-) diff --git a/kernel/include/kernel/Memory/PhysicalRange.h b/kernel/include/kernel/Memory/PhysicalRange.h index 212ce37f..76cca37f 100644 --- a/kernel/include/kernel/Memory/PhysicalRange.h +++ b/kernel/include/kernel/Memory/PhysicalRange.h @@ -3,7 +3,6 @@ #include #include -#include namespace Kernel { @@ -12,42 +11,37 @@ namespace Kernel { public: PhysicalRange(paddr_t, size_t); + paddr_t reserve_page(); void release_page(paddr_t); + paddr_t reserve_contiguous_pages(size_t pages); + void release_contiguous_pages(paddr_t paddr, size_t pages); + paddr_t start() const { return m_paddr; } paddr_t end() const { return m_paddr + m_size; } bool contains(paddr_t addr) const { return m_paddr <= addr && addr < m_paddr + m_size; } - size_t usable_memory() const { return m_reservable_pages * PAGE_SIZE; } + size_t usable_memory() const { return m_data_pages * PAGE_SIZE; } - size_t used_pages() const { return m_used_pages; } + size_t used_pages() const { return m_data_pages - m_free_pages; } size_t free_pages() const { return m_free_pages; } private: - struct node - { - node* next; - node* prev; - }; + unsigned long long* ull_bitmap_ptr() { return (unsigned long long*)m_vaddr; } - paddr_t page_address(const node*) const; - node* node_address(paddr_t) const; + paddr_t paddr_for_bit(unsigned long long) const; + unsigned long long bit_for_paddr(paddr_t paddr) const; private: - paddr_t m_paddr { 0 }; + const paddr_t m_paddr { 0 }; + const size_t m_size { 0 }; + vaddr_t m_vaddr { 0 }; - size_t m_size { 0 }; - uint64_t m_total_pages { 0 }; - uint64_t m_reservable_pages { 0 }; - uint64_t m_list_pages { 0 }; - - size_t m_used_pages { 0 }; + const size_t m_bitmap_pages { 0 }; + const size_t m_data_pages { 0 }; size_t m_free_pages { 0 }; - - node* m_free_list { nullptr }; - node* m_used_list { nullptr }; }; } \ No newline at end of file diff --git a/kernel/kernel/Memory/Heap.cpp b/kernel/kernel/Memory/Heap.cpp index 5e1499f7..a3d49bfc 100644 --- a/kernel/kernel/Memory/Heap.cpp +++ b/kernel/kernel/Memory/Heap.cpp @@ -3,6 +3,8 @@ #include #include +extern uint8_t g_kernel_end[]; + namespace Kernel { @@ -30,14 +32,22 @@ namespace Kernel for (size_t i = 0; i < g_multiboot_info->mmap_length;) { multiboot_memory_map_t* mmmt = (multiboot_memory_map_t*)P2V(g_multiboot_info->mmap_addr + i); - if (mmmt->type == 1) - { - PhysicalRange range(mmmt->base_addr, mmmt->length); - if (range.usable_memory() > 0) - MUST(m_physical_ranges.push_back(range)); - } + { + paddr_t start = mmmt->base_addr; + if (start < V2P(g_kernel_end)) + start = V2P(g_kernel_end); + if (auto rem = start % PAGE_SIZE) + start += PAGE_SIZE - rem; + paddr_t end = mmmt->base_addr + mmmt->length; + if (auto rem = end % PAGE_SIZE) + end -= rem; + + // Physical pages needs atleast 2 pages + if (end > start + PAGE_SIZE) + MUST(m_physical_ranges.emplace_back(start, end - start)); + } i += mmmt->size + sizeof(uint32_t); } @@ -55,22 +65,17 @@ namespace Kernel { LockGuard _(m_lock); for (auto& range : m_physical_ranges) - if (paddr_t page = range.reserve_page()) - return page; + if (range.free_pages() >= 1) + return range.reserve_page(); return 0; } - void Heap::release_page(paddr_t addr) + void Heap::release_page(paddr_t paddr) { LockGuard _(m_lock); for (auto& range : m_physical_ranges) - { - if (range.contains(addr)) - { - range.release_page(addr); - return; - } - } + if (range.contains(paddr)) + return range.release_page(paddr); ASSERT_NOT_REACHED(); } diff --git a/kernel/kernel/Memory/PhysicalRange.cpp b/kernel/kernel/Memory/PhysicalRange.cpp index e0f9ff76..2e74a054 100644 --- a/kernel/kernel/Memory/PhysicalRange.cpp +++ b/kernel/kernel/Memory/PhysicalRange.cpp @@ -3,123 +3,81 @@ #include #include -extern uint8_t g_kernel_end[]; - namespace Kernel { - PhysicalRange::PhysicalRange(paddr_t start, size_t size) + using ull = unsigned long long; + + static constexpr ull ull_bits = sizeof(ull) * 8; + + PhysicalRange::PhysicalRange(paddr_t paddr, size_t size) + : m_paddr(paddr) + , m_size(size) + , m_bitmap_pages(BAN::Math::div_round_up(size / PAGE_SIZE, 8)) + , m_data_pages((size / PAGE_SIZE) - m_bitmap_pages) + , m_free_pages(m_data_pages) { - // We can't use the memory ovelapping with kernel - if (start + size <= V2P(g_kernel_end)) - return; + ASSERT(paddr % PAGE_SIZE == 0); + ASSERT(size % PAGE_SIZE == 0); + ASSERT(m_bitmap_pages < size / PAGE_SIZE); - // Align start to page boundary and after the kernel memory - m_paddr = BAN::Math::max(start, V2P(g_kernel_end)); - if (auto rem = m_paddr % PAGE_SIZE) - m_paddr += PAGE_SIZE - rem; - - if (size <= m_paddr - start) - return; - - // Align size to page boundary - m_size = size - (m_paddr - start); - if (auto rem = m_size % PAGE_SIZE) - m_size -= rem; - - // We need atleast 2 pages - m_total_pages = m_size / PAGE_SIZE; - if (m_total_pages <= 1) - return; - - // FIXME: if total pages is just over multiple of (PAGE_SIZE / sizeof(node)) we might make - // couple of pages unallocatable - m_list_pages = BAN::Math::div_round_up(m_total_pages * sizeof(node), PAGE_SIZE); - m_reservable_pages = m_total_pages - m_list_pages; - - m_used_pages = 0; - m_free_pages = m_reservable_pages; - - m_vaddr = PageTable::kernel().reserve_free_contiguous_pages(m_list_pages, KERNEL_OFFSET); + m_vaddr = PageTable::kernel().reserve_free_contiguous_pages(m_bitmap_pages, KERNEL_OFFSET); ASSERT(m_vaddr); - - PageTable::kernel().map_range_at(m_paddr, m_vaddr, m_list_pages * PAGE_SIZE, PageTable::Flags::ReadWrite | PageTable::Flags::Present); + PageTable::kernel().map_range_at(m_paddr, m_vaddr, size, PageTable::Flags::ReadWrite | PageTable::Flags::Present); - // Initialize page list so that every page points to the next one - node* page_list = (node*)m_vaddr; + memset((void*)m_vaddr, 0x00, m_bitmap_pages * PAGE_SIZE); + memset((void*)m_vaddr, 0xFF, m_data_pages / 8); + for (int i = 0; i < m_data_pages % 8; i++) + ((uint8_t*)m_vaddr)[m_data_pages / 8] |= 1 << i; - for (uint64_t i = 0; i < m_reservable_pages; i++) - page_list[i] = { page_list + i - 1, page_list + i + 1 }; - page_list[ 0 ].next = nullptr; - page_list[m_reservable_pages - 1].prev = nullptr; + dprintln("physical range needs {} pages for bitmap", m_bitmap_pages); + } - m_free_list = page_list; - m_used_list = nullptr; + paddr_t PhysicalRange::paddr_for_bit(ull bit) const + { + return m_paddr + (m_bitmap_pages + bit) * PAGE_SIZE; + } + + ull PhysicalRange::bit_for_paddr(paddr_t paddr) const + { + return (paddr - m_paddr) / PAGE_SIZE - m_bitmap_pages; } paddr_t PhysicalRange::reserve_page() { - if (m_free_list == nullptr) - return 0; + ASSERT(free_pages() > 0); - node* page = m_free_list; - ASSERT(page->next == nullptr); + ull ull_count = BAN::Math::div_round_up(m_data_pages, ull_bits); - // Detatch page from top of the free list - m_free_list = m_free_list->prev; - if (m_free_list) - m_free_list->next = nullptr; + for (ull i = 0; i < ull_count; i++) + { + if (ull_bitmap_ptr()[i] == 0) + continue; - // Add page to used list - if (m_used_list) - m_used_list->next = page; - page->prev = m_used_list; - m_used_list = page; + int lsb = __builtin_ctzll(ull_bitmap_ptr()[i]); - m_used_pages++; - m_free_pages--; + ull_bitmap_ptr()[i] &= ~(1ull << lsb); + m_free_pages--; + return paddr_for_bit(i * ull_bits + lsb); + } - return page_address(page); + ASSERT_NOT_REACHED(); } - void PhysicalRange::release_page(paddr_t page_address) + void PhysicalRange::release_page(paddr_t paddr) { - ASSERT(m_used_list); + ASSERT(paddr % PAGE_SIZE == 0); + ASSERT(paddr - m_paddr <= m_size); - node* page = node_address(page_address); - - // Detach page from used list - if (page->prev) - page->prev->next = page->next; - if (page->next) - page->next->prev = page->prev; - if (m_used_list == page) - m_used_list = page->prev; + ull full_bit = bit_for_paddr(paddr); + ull off = full_bit / ull_bits; + ull bit = full_bit % ull_bits; + ull mask = 1ull << bit; - // Add page to the top of free list - page->prev = m_free_list; - page->next = nullptr; - if (m_free_list) - m_free_list->next = page; - m_free_list = page; + ASSERT(!(ull_bitmap_ptr()[off] & mask)); + ull_bitmap_ptr()[off] |= mask; - m_used_pages--; m_free_pages++; - } - - paddr_t PhysicalRange::page_address(const node* page) const - { - ASSERT((vaddr_t)page <= m_vaddr + m_reservable_pages * sizeof(node)); - uint64_t page_index = page - (node*)m_vaddr; - return m_paddr + (page_index + m_list_pages) * PAGE_SIZE; } - PhysicalRange::node* PhysicalRange::node_address(paddr_t page_address) const - { - ASSERT(page_address % PAGE_SIZE == 0); - ASSERT(m_paddr + m_list_pages * PAGE_SIZE <= page_address && page_address < m_paddr + m_size); - uint64_t page_offset = page_address - (m_paddr + m_list_pages * PAGE_SIZE); - return (node*)m_vaddr + page_offset / PAGE_SIZE; - } - } From 8a9816d6e0d26395b88e71642f210565ad54f862 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sun, 8 Oct 2023 02:41:05 +0300 Subject: [PATCH 090/240] Kernel: Add API for getting contiguous physcial pages This will be used to create DMA regions. --- kernel/include/kernel/Memory/Heap.h | 3 + kernel/include/kernel/Memory/PhysicalRange.h | 3 + kernel/kernel/Memory/Heap.cpp | 19 ++++++ kernel/kernel/Memory/PhysicalRange.cpp | 71 +++++++++++++++++++- 4 files changed, 95 insertions(+), 1 deletion(-) diff --git a/kernel/include/kernel/Memory/Heap.h b/kernel/include/kernel/Memory/Heap.h index 716f768e..219f7b8c 100644 --- a/kernel/include/kernel/Memory/Heap.h +++ b/kernel/include/kernel/Memory/Heap.h @@ -21,6 +21,9 @@ namespace Kernel paddr_t take_free_page(); void release_page(paddr_t); + paddr_t take_free_contiguous_pages(size_t pages); + void release_contiguous_pages(paddr_t paddr, size_t pages); + size_t used_pages() const; size_t free_pages() const; diff --git a/kernel/include/kernel/Memory/PhysicalRange.h b/kernel/include/kernel/Memory/PhysicalRange.h index 76cca37f..7875a7e0 100644 --- a/kernel/include/kernel/Memory/PhysicalRange.h +++ b/kernel/include/kernel/Memory/PhysicalRange.h @@ -29,10 +29,13 @@ namespace Kernel private: unsigned long long* ull_bitmap_ptr() { return (unsigned long long*)m_vaddr; } + const unsigned long long* ull_bitmap_ptr() const { return (const unsigned long long*)m_vaddr; } paddr_t paddr_for_bit(unsigned long long) const; unsigned long long bit_for_paddr(paddr_t paddr) const; + unsigned long long contiguous_bits_set(unsigned long long start, unsigned long long count) const; + private: const paddr_t m_paddr { 0 }; const size_t m_size { 0 }; diff --git a/kernel/kernel/Memory/Heap.cpp b/kernel/kernel/Memory/Heap.cpp index a3d49bfc..57ee9838 100644 --- a/kernel/kernel/Memory/Heap.cpp +++ b/kernel/kernel/Memory/Heap.cpp @@ -79,6 +79,25 @@ namespace Kernel ASSERT_NOT_REACHED(); } + paddr_t Heap::take_free_contiguous_pages(size_t pages) + { + LockGuard _(m_lock); + for (auto& range : m_physical_ranges) + if (range.free_pages() >= pages) + if (paddr_t paddr = range.reserve_contiguous_pages(pages)) + return paddr; + return 0; + } + + void Heap::release_contiguous_pages(paddr_t paddr, size_t pages) + { + LockGuard _(m_lock); + for (auto& range : m_physical_ranges) + if (range.contains(paddr)) + return range.release_contiguous_pages(paddr, pages); + ASSERT_NOT_REACHED(); + } + size_t Heap::used_pages() const { LockGuard _(m_lock); diff --git a/kernel/kernel/Memory/PhysicalRange.cpp b/kernel/kernel/Memory/PhysicalRange.cpp index 2e74a054..99e95b94 100644 --- a/kernel/kernel/Memory/PhysicalRange.cpp +++ b/kernel/kernel/Memory/PhysicalRange.cpp @@ -27,7 +27,7 @@ namespace Kernel memset((void*)m_vaddr, 0x00, m_bitmap_pages * PAGE_SIZE); memset((void*)m_vaddr, 0xFF, m_data_pages / 8); - for (int i = 0; i < m_data_pages % 8; i++) + for (ull i = 0; i < m_data_pages % 8; i++) ((uint8_t*)m_vaddr)[m_data_pages / 8] |= 1 << i; dprintln("physical range needs {} pages for bitmap", m_bitmap_pages); @@ -43,6 +43,18 @@ namespace Kernel return (paddr - m_paddr) / PAGE_SIZE - m_bitmap_pages; } + ull PhysicalRange::contiguous_bits_set(ull start, ull count) const + { + for (ull i = 0; i < count; i++) + { + ull off = (start + i) / ull_bits; + ull bit = (start + i) % ull_bits; + if (!(ull_bitmap_ptr()[off] & (1ull << bit))) + return i; + } + return count; + } + paddr_t PhysicalRange::reserve_page() { ASSERT(free_pages() > 0); @@ -80,4 +92,61 @@ namespace Kernel m_free_pages++; } + paddr_t PhysicalRange::reserve_contiguous_pages(size_t pages) + { + ASSERT(pages > 0); + ASSERT(free_pages() > 0); + + if (pages == 1) + return reserve_page(); + + ull ull_count = BAN::Math::div_round_up(m_data_pages, ull_bits); + + // NOTE: This feels kinda slow, but I don't want to be + // doing premature optimization. This will be only + // used when creating DMA regions. + + for (ull i = 0; i < ull_count; i++) + { + if (ull_bitmap_ptr()[i] == 0) + continue; + + for (ull bit = 0; bit < ull_bits;) + { + ull start = i * ull_bits + bit; + ull set_cnt = contiguous_bits_set(start, pages); + if (set_cnt == pages) + { + for (ull j = 0; j < pages; j++) + ull_bitmap_ptr()[(start + j) / ull_bits] &= ~(1ull << ((start + j) % ull_bits)); + m_free_pages -= pages; + return paddr_for_bit(start); + } + bit += set_cnt + 1; + } + } + + ASSERT_NOT_REACHED(); + } + + void PhysicalRange::release_contiguous_pages(paddr_t paddr, size_t pages) + { + ASSERT(paddr % PAGE_SIZE == 0); + ASSERT(paddr - m_paddr <= m_size); + ASSERT(pages > 0); + + ull start_bit = bit_for_paddr(paddr); + for (size_t i = 0; i < pages; i++) + { + ull off = (start_bit + i) / ull_bits; + ull bit = (start_bit + i) % ull_bits; + ull mask = 1ull << bit; + + ASSERT(!(ull_bitmap_ptr()[off] & mask)); + ull_bitmap_ptr()[off] |= mask; + } + + m_free_pages += pages; + } + } From 211cad03ff1f2fa4a66950bec5b8bd28550f848b Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sun, 8 Oct 2023 02:56:01 +0300 Subject: [PATCH 091/240] Kernel: Implement bare boness DMA Region This does nothing but allocate contiguous physical and virtual memory and map it as CacheDisable. Also memory is automatically freed RAII style. --- kernel/CMakeLists.txt | 1 + kernel/include/kernel/Memory/DMARegion.h | 27 ++++++++++++++ kernel/kernel/Memory/DMARegion.cpp | 46 ++++++++++++++++++++++++ 3 files changed, 74 insertions(+) create mode 100644 kernel/include/kernel/Memory/DMARegion.h create mode 100644 kernel/kernel/Memory/DMARegion.cpp diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index c8bf72ad..c5a2c033 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -34,6 +34,7 @@ set(KERNEL_SOURCES kernel/Input/PS2Keymap.cpp kernel/InterruptController.cpp kernel/kernel.cpp + kernel/Memory/DMARegion.cpp kernel/Memory/FileBackedRegion.cpp kernel/Memory/GeneralAllocator.cpp kernel/Memory/Heap.cpp diff --git a/kernel/include/kernel/Memory/DMARegion.h b/kernel/include/kernel/Memory/DMARegion.h new file mode 100644 index 00000000..bd0585e1 --- /dev/null +++ b/kernel/include/kernel/Memory/DMARegion.h @@ -0,0 +1,27 @@ +#pragma once + +#include + +namespace Kernel +{ + + class DMARegion + { + public: + BAN::ErrorOr> create(size_t size); + ~DMARegion(); + + size_t size() const { return m_size; } + vaddr_t vaddr() const { return m_vaddr; } + paddr_t paddr() const { return m_paddr; } + + private: + DMARegion(size_t size, vaddr_t vaddr, paddr_t paddr); + + private: + const size_t m_size; + const vaddr_t m_vaddr; + const paddr_t m_paddr; + }; + +} \ No newline at end of file diff --git a/kernel/kernel/Memory/DMARegion.cpp b/kernel/kernel/Memory/DMARegion.cpp new file mode 100644 index 00000000..645356e2 --- /dev/null +++ b/kernel/kernel/Memory/DMARegion.cpp @@ -0,0 +1,46 @@ +#include +#include +#include + +namespace Kernel +{ + + BAN::ErrorOr> DMARegion::create(size_t size) + { + size_t needed_pages = BAN::Math::div_round_up(size, PAGE_SIZE); + + vaddr_t vaddr = PageTable::kernel().reserve_free_contiguous_pages(needed_pages, KERNEL_OFFSET); + if (vaddr == 0) + return BAN::Error::from_errno(ENOMEM); + BAN::ScopeGuard vaddr_guard([vaddr, size] { PageTable::kernel().unmap_range(vaddr, size); }); + + paddr_t paddr = Heap::get().take_free_contiguous_pages(needed_pages); + if (paddr == 0) + return BAN::Error::from_errno(ENOMEM); + BAN::ScopeGuard paddr_guard([paddr, needed_pages] { Heap::get().release_contiguous_pages(paddr, needed_pages); }); + + auto* region_ptr = new DMARegion(size, vaddr, paddr); + if (region_ptr == nullptr) + return BAN::Error::from_errno(ENOMEM); + + vaddr_guard.disable(); + paddr_guard.disable(); + + PageTable::kernel().map_range_at(paddr, vaddr, size, PageTable::Flags::CacheDisable | PageTable::Flags::ReadWrite | PageTable::Flags::Reserved); + + return BAN::UniqPtr::adopt(region_ptr); + } + + DMARegion::DMARegion(size_t size, vaddr_t vaddr, paddr_t paddr) + : m_size(size) + , m_vaddr(vaddr) + , m_paddr(paddr) + { } + + DMARegion::~DMARegion() + { + PageTable::kernel().unmap_range(m_vaddr, m_size); + Heap::get().release_contiguous_pages(m_vaddr, BAN::Math::div_round_up(m_size, PAGE_SIZE)); + } + +} From 400db176d17e456c982efc7a4c96bbb8ef842e4f Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sun, 8 Oct 2023 13:25:34 +0300 Subject: [PATCH 092/240] Kernel: fix some math in physical ranges I allocated 1 bitmap page per 8 data pages. Bitmap page can actually store 8*PAGE_SIZE data pages. Also properly set last bits in bitmap. I did not care about endianness but now we set the bits on unsigned long longs instead of bytes. --- kernel/kernel/Memory/PhysicalRange.cpp | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/kernel/kernel/Memory/PhysicalRange.cpp b/kernel/kernel/Memory/PhysicalRange.cpp index 99e95b94..9f42ced8 100644 --- a/kernel/kernel/Memory/PhysicalRange.cpp +++ b/kernel/kernel/Memory/PhysicalRange.cpp @@ -13,7 +13,7 @@ namespace Kernel PhysicalRange::PhysicalRange(paddr_t paddr, size_t size) : m_paddr(paddr) , m_size(size) - , m_bitmap_pages(BAN::Math::div_round_up(size / PAGE_SIZE, 8)) + , m_bitmap_pages(BAN::Math::div_round_up(size / PAGE_SIZE, PAGE_SIZE * 8)) , m_data_pages((size / PAGE_SIZE) - m_bitmap_pages) , m_free_pages(m_data_pages) { @@ -26,9 +26,16 @@ namespace Kernel PageTable::kernel().map_range_at(m_paddr, m_vaddr, size, PageTable::Flags::ReadWrite | PageTable::Flags::Present); memset((void*)m_vaddr, 0x00, m_bitmap_pages * PAGE_SIZE); - memset((void*)m_vaddr, 0xFF, m_data_pages / 8); - for (ull i = 0; i < m_data_pages % 8; i++) - ((uint8_t*)m_vaddr)[m_data_pages / 8] |= 1 << i; + + for (ull i = 0; i < m_data_pages / ull_bits; i++) + ull_bitmap_ptr()[i] = ~0ull; + + if (m_data_pages % ull_bits) + { + ull off = m_data_pages / ull_bits; + ull bits = m_data_pages % ull_bits; + ull_bitmap_ptr()[off] = ~(~0ull << bits); + } dprintln("physical range needs {} pages for bitmap", m_bitmap_pages); } From 521513bed248611189318c43be6e71d885001d71 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sun, 8 Oct 2023 18:12:17 +0300 Subject: [PATCH 093/240] Kernel: make DMARegion::create static and fix mapping --- kernel/include/kernel/Memory/DMARegion.h | 2 +- kernel/kernel/Memory/DMARegion.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/include/kernel/Memory/DMARegion.h b/kernel/include/kernel/Memory/DMARegion.h index bd0585e1..bf6b58eb 100644 --- a/kernel/include/kernel/Memory/DMARegion.h +++ b/kernel/include/kernel/Memory/DMARegion.h @@ -8,7 +8,7 @@ namespace Kernel class DMARegion { public: - BAN::ErrorOr> create(size_t size); + static BAN::ErrorOr> create(size_t size); ~DMARegion(); size_t size() const { return m_size; } diff --git a/kernel/kernel/Memory/DMARegion.cpp b/kernel/kernel/Memory/DMARegion.cpp index 645356e2..2ffd978d 100644 --- a/kernel/kernel/Memory/DMARegion.cpp +++ b/kernel/kernel/Memory/DMARegion.cpp @@ -26,7 +26,7 @@ namespace Kernel vaddr_guard.disable(); paddr_guard.disable(); - PageTable::kernel().map_range_at(paddr, vaddr, size, PageTable::Flags::CacheDisable | PageTable::Flags::ReadWrite | PageTable::Flags::Reserved); + PageTable::kernel().map_range_at(paddr, vaddr, size, PageTable::Flags::CacheDisable | PageTable::Flags::ReadWrite | PageTable::Flags::Present); return BAN::UniqPtr::adopt(region_ptr); } @@ -40,7 +40,7 @@ namespace Kernel DMARegion::~DMARegion() { PageTable::kernel().unmap_range(m_vaddr, m_size); - Heap::get().release_contiguous_pages(m_vaddr, BAN::Math::div_round_up(m_size, PAGE_SIZE)); + Heap::get().release_contiguous_pages(m_paddr, BAN::Math::div_round_up(m_size, PAGE_SIZE)); } } From d2cfc843e43d50221f551bf58aefe2a1eaf2baaa Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 11 Oct 2023 19:39:10 +0300 Subject: [PATCH 094/240] BAN: Optional can now be constructed from another Optional Also fix bug in release_value() where we did not call the destructor. --- BAN/include/BAN/Optional.h | 68 +++++++++++++++++++++++--------------- 1 file changed, 42 insertions(+), 26 deletions(-) diff --git a/BAN/include/BAN/Optional.h b/BAN/include/BAN/Optional.h index 51f9927e..862fee78 100644 --- a/BAN/include/BAN/Optional.h +++ b/BAN/include/BAN/Optional.h @@ -13,6 +13,8 @@ namespace BAN { public: Optional(); + Optional(Optional&&); + Optional(const Optional&); Optional(const T&); Optional(T&&); template @@ -20,8 +22,8 @@ namespace BAN ~Optional(); - Optional& operator=(const Optional&); Optional& operator=(Optional&&); + Optional& operator=(const Optional&); template Optional& emplace(Args&&...); @@ -34,9 +36,9 @@ namespace BAN bool has_value() const; - T&& release_value(); - const T& value() const; + T release_value(); T& value(); + const T& value() const; void clear(); @@ -50,6 +52,22 @@ namespace BAN : m_has_value(false) {} + template + Optional::Optional(Optional&& other) + : m_has_value(other.has_value()) + { + if (other.has_value()) + new (m_storage) T(move(other.release_value())); + } + + template + Optional::Optional(const Optional& other) + : m_has_value(other.has_value()) + { + if (other.has_value()) + new (m_storage) T(other.value()); + } + template Optional::Optional(const T& value) : m_has_value(true) @@ -61,7 +79,7 @@ namespace BAN Optional::Optional(T&& value) : m_has_value(true) { - new (m_storage) T(BAN::move(value)); + new (m_storage) T(move(value)); } template @@ -69,7 +87,7 @@ namespace BAN Optional::Optional(Args&&... args) : m_has_value(true) { - new (m_storage) T(BAN::forward(args)...); + new (m_storage) T(forward(args)...); } template @@ -79,26 +97,22 @@ namespace BAN } template - Optional& Optional::operator=(const Optional& other) + Optional& Optional::operator=(Optional&& other) { clear(); + m_has_value = other.has_value(); if (other.has_value()) - { - m_has_value = true; - new (m_storage) T(other.value()); - } + new (m_storage) T(move(other.release_value())); return *this; } template - Optional& Optional::operator=(Optional&& other) + Optional& Optional::operator=(const Optional& other) { clear(); - if (other.has_value()) - { - m_has_value = true; - new (m_storage) T(BAN::move(other.release_value())); - } + m_has_value = other.has_value(); + if (other.has_value) + new (m_storage) T(other.value()); return *this; } @@ -108,7 +122,7 @@ namespace BAN { clear(); m_has_value = true; - new (m_storage) T(BAN::forward(args)...); + new (m_storage) T(forward(args)...); return *this; } @@ -147,18 +161,13 @@ namespace BAN } template - T&& Optional::release_value() + T Optional::release_value() { ASSERT(has_value()); + T released_value = move(value()); + value().~T(); m_has_value = false; - return BAN::move((T&)m_storage); - } - - template - const T& Optional::value() const - { - ASSERT(has_value()); - return (const T&)m_storage; + return move(released_value); } template @@ -168,6 +177,13 @@ namespace BAN return (T&)m_storage; } + template + const T& Optional::value() const + { + ASSERT(has_value()); + return (const T&)m_storage; + } + template void Optional::clear() { From 1b9e14a53b43fa026e4467f840a3657185a54a13 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 11 Oct 2023 21:52:08 +0300 Subject: [PATCH 095/240] Kernel: PCI cleanup PCI::Device API --- kernel/include/kernel/PCI.h | 9 ++++++--- kernel/kernel/PCI.cpp | 35 ++++++++++++++++++++++++++--------- 2 files changed, 32 insertions(+), 12 deletions(-) diff --git a/kernel/include/kernel/PCI.h b/kernel/include/kernel/PCI.h index 1eb10311..46691da1 100644 --- a/kernel/include/kernel/PCI.h +++ b/kernel/include/kernel/PCI.h @@ -92,10 +92,13 @@ namespace Kernel::PCI private: void enumerate_capabilites(); + void set_command_bits(uint16_t mask); + void unset_command_bits(uint16_t mask); + private: - uint8_t m_bus; - uint8_t m_dev; - uint8_t m_func; + const uint8_t m_bus; + const uint8_t m_dev; + const uint8_t m_func; uint8_t m_class_code; uint8_t m_subclass; diff --git a/kernel/kernel/PCI.cpp b/kernel/kernel/PCI.cpp index 3e04f2d1..a052beb2 100644 --- a/kernel/kernel/PCI.cpp +++ b/kernel/kernel/PCI.cpp @@ -6,12 +6,20 @@ #include #include +#include + #define INVALID_VENDOR 0xFFFF #define MULTI_FUNCTION 0x80 #define CONFIG_ADDRESS 0xCF8 #define CONFIG_DATA 0xCFC +#define PCI_REG_COMMAND 0x04 +#define PCI_CMD_IO_SPACE (1 << 0) +#define PCI_CMD_MEM_SPACE (1 << 1) +#define PCI_CMD_BUS_MASTER (1 << 2) +#define PCI_CMD_INTERRUPT_DISABLE (1 << 10) + #define DEBUG_PCI 1 namespace Kernel::PCI @@ -378,45 +386,54 @@ namespace Kernel::PCI } } + void PCI::Device::set_command_bits(uint16_t mask) + { + write_dword(PCI_REG_COMMAND, read_dword(PCI_REG_COMMAND) | mask); + } + + void PCI::Device::unset_command_bits(uint16_t mask) + { + write_dword(PCI_REG_COMMAND, read_dword(PCI_REG_COMMAND) & ~mask); + } + void PCI::Device::enable_bus_mastering() { - write_dword(0x04, read_dword(0x04) | 1u << 2); + set_command_bits(PCI_CMD_BUS_MASTER); } void PCI::Device::disable_bus_mastering() { - write_dword(0x04, read_dword(0x04) & ~(1u << 2)); - + unset_command_bits(PCI_CMD_BUS_MASTER); } void PCI::Device::enable_memory_space() { - write_dword(0x04, read_dword(0x04) | 1u << 1); + set_command_bits(PCI_CMD_MEM_SPACE); } void PCI::Device::disable_memory_space() { - write_dword(0x04, read_dword(0x04) & ~(1u << 1)); + unset_command_bits(PCI_CMD_MEM_SPACE); } void PCI::Device::enable_io_space() { - write_dword(0x04, read_dword(0x04) | 1u << 0); + set_command_bits(PCI_CMD_IO_SPACE); } void PCI::Device::disable_io_space() { - write_dword(0x04, read_dword(0x04) & ~(1u << 0)); + unset_command_bits(PCI_CMD_IO_SPACE); } void PCI::Device::enable_pin_interrupts() { - write_dword(0x04, read_dword(0x04) | 1u << 10); + unset_command_bits(PCI_CMD_INTERRUPT_DISABLE); } void PCI::Device::disable_pin_interrupts() { - write_dword(0x04, read_dword(0x04) & ~(1u << 10)); + set_command_bits(PCI_CMD_INTERRUPT_DISABLE); } } \ No newline at end of file From ab8b77406dd8a45ed6f6c4ae5b0a1c2c5020b7c1 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 11 Oct 2023 22:18:58 +0300 Subject: [PATCH 096/240] Kernel: PCI can now get interrupts for devices --- kernel/include/kernel/InterruptController.h | 2 + kernel/include/kernel/PCI.h | 5 ++ kernel/kernel/PCI.cpp | 76 +++++++++++++++++---- 3 files changed, 71 insertions(+), 12 deletions(-) diff --git a/kernel/include/kernel/InterruptController.h b/kernel/include/kernel/InterruptController.h index d8496604..06ed0a8a 100644 --- a/kernel/include/kernel/InterruptController.h +++ b/kernel/include/kernel/InterruptController.h @@ -35,6 +35,8 @@ namespace Kernel static void initialize(bool force_pic); static InterruptController& get(); + bool is_using_apic() const { return m_using_apic; } + void enter_acpi_mode(); private: diff --git a/kernel/include/kernel/PCI.h b/kernel/include/kernel/PCI.h index 46691da1..79098096 100644 --- a/kernel/include/kernel/PCI.h +++ b/kernel/include/kernel/PCI.h @@ -75,6 +75,8 @@ namespace Kernel::PCI uint8_t header_type() const { return m_header_type; } + BAN::ErrorOr get_irq(); + BAN::ErrorOr> allocate_bar_region(uint8_t bar_num); void enable_bus_mastering(); @@ -105,6 +107,9 @@ namespace Kernel::PCI uint8_t m_prog_if; uint8_t m_header_type; + + BAN::Optional m_offset_msi; + BAN::Optional m_offset_msi_x; }; class PCIManager diff --git a/kernel/kernel/PCI.cpp b/kernel/kernel/PCI.cpp index a052beb2..68b73f1f 100644 --- a/kernel/kernel/PCI.cpp +++ b/kernel/kernel/PCI.cpp @@ -15,6 +15,11 @@ #define CONFIG_DATA 0xCFC #define PCI_REG_COMMAND 0x04 +#define PCI_REG_STATUS 0x06 +#define PCI_REG_CAPABILITIES 0x34 +#define PCI_REG_IRQ_LINE 0x3C +#define PCI_REG_IRQ_PIN 0x44 + #define PCI_CMD_IO_SPACE (1 << 0) #define PCI_CMD_MEM_SPACE (1 << 1) #define PCI_CMD_BUS_MASTER (1 << 2) @@ -187,10 +192,9 @@ namespace Kernel::PCI { ASSERT(device.header_type() == 0x00); - uint32_t command_status = device.read_dword(0x04); - // disable io/mem space while reading bar - device.write_dword(0x04, command_status & ~3); + uint16_t command = device.read_word(PCI_REG_COMMAND); + device.write_word(PCI_REG_COMMAND, command & ~(PCI_CMD_IO_SPACE | PCI_CMD_MEM_SPACE)); uint8_t offset = 0x10 + bar_num * 4; @@ -232,9 +236,9 @@ namespace Kernel::PCI auto region = BAN::UniqPtr::adopt(region_ptr); TRY(region->initialize()); - // restore old command register and enable correct IO/MEM - command_status |= (type == BarType::IO) ? 1 : 2; - device.write_dword(0x04, command_status); + // restore old command register and enable correct IO/MEM space + command |= (type == BarType::IO) ? PCI_CMD_IO_SPACE : PCI_CMD_MEM_SPACE; + device.write_word(PCI_REG_COMMAND, command); #if DEBUG_PCI dprintln("created BAR region for PCI {}:{}.{}", @@ -373,19 +377,67 @@ namespace Kernel::PCI void PCI::Device::enumerate_capabilites() { - uint16_t status = read_word(0x06); + uint16_t status = read_word(PCI_REG_STATUS); if (!(status & (1 << 4))) return; - uint8_t capabilities = read_byte(0x34) & 0xFC; - while (capabilities) + uint8_t capability_offset = read_byte(PCI_REG_CAPABILITIES) & 0xFC; + while (capability_offset) { - uint16_t next = read_word(capabilities); - dprintln(" cap {2H}", next & 0xFF); - capabilities = (next >> 8) & 0xFC; + uint16_t capability_info = read_word(capability_offset); + + switch (capability_info & 0xFF) + { + case 0x05: + m_offset_msi = capability_offset; + dprintln("{}:{}.{} has MSI", m_bus, m_dev, m_func); + break; + case 0x11: + m_offset_msi_x = capability_offset; + dprintln("{}:{}.{} has MSI-X", m_bus, m_dev, m_func); + break; + default: + break; + } + + capability_offset = (capability_info >> 8) & 0xFC; } } + BAN::ErrorOr PCI::Device::get_irq() + { + // Legacy PIC just uses the interrupt line field + if (!InterruptController::get().is_using_apic()) + return read_byte(PCI_REG_IRQ_LINE); + + // TODO: use MSI and MSI-X if supported + + if (m_offset_msi.has_value()) + { + } + + if (m_offset_msi_x.has_value()) + { + } + + for (uint8_t irq_pin = 1; irq_pin <= 4; irq_pin++) + { + acpi_resource_t dest; + auto err = lai_pci_route_pin(&dest, 0, m_bus, m_dev, m_func, irq_pin); + if (err != LAI_ERROR_NONE) + { + dprintln("{}", lai_api_error_to_string(err)); + continue; + } + + write_byte(PCI_REG_IRQ_PIN, irq_pin); + return dest.base; + } + + dwarnln("Could not allocate interrupt for PCI {}:{}.{}", m_bus, m_dev, m_func); + return BAN::Error::from_errno(ENOTSUP); + } + void PCI::Device::set_command_bits(uint16_t mask) { write_dword(PCI_REG_COMMAND, read_dword(PCI_REG_COMMAND) | mask); From 790064d24861a1934bf3e262b1da3cd664c3c780 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 12 Oct 2023 15:20:05 +0300 Subject: [PATCH 097/240] Kernel: Add vaddr/paddr conversion functions to DMARegion --- kernel/include/kernel/Memory/DMARegion.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kernel/include/kernel/Memory/DMARegion.h b/kernel/include/kernel/Memory/DMARegion.h index bf6b58eb..0f97c64d 100644 --- a/kernel/include/kernel/Memory/DMARegion.h +++ b/kernel/include/kernel/Memory/DMARegion.h @@ -15,6 +15,9 @@ namespace Kernel vaddr_t vaddr() const { return m_vaddr; } paddr_t paddr() const { return m_paddr; } + paddr_t vaddr_to_paddr(vaddr_t vaddr) const { return vaddr - m_vaddr + m_paddr; } + vaddr_t paddr_to_vaddr(paddr_t paddr) const { return paddr - m_paddr + m_vaddr; } + private: DMARegion(size_t size, vaddr_t vaddr, paddr_t paddr); From f4b901a646cfef14f2116cf7c9285396e16d24ac Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 12 Oct 2023 21:16:39 +0300 Subject: [PATCH 098/240] Kernel: Add Timer::ns_since_boot() --- kernel/include/kernel/Timer/HPET.h | 1 + kernel/include/kernel/Timer/PIT.h | 1 + kernel/include/kernel/Timer/Timer.h | 2 ++ kernel/kernel/Timer/HPET.cpp | 6 ++++++ kernel/kernel/Timer/PIT.cpp | 5 +++++ kernel/kernel/Timer/Timer.cpp | 5 +++++ 6 files changed, 20 insertions(+) diff --git a/kernel/include/kernel/Timer/HPET.h b/kernel/include/kernel/Timer/HPET.h index e3772974..8ad149dd 100644 --- a/kernel/include/kernel/Timer/HPET.h +++ b/kernel/include/kernel/Timer/HPET.h @@ -12,6 +12,7 @@ namespace Kernel static BAN::ErrorOr> create(bool force_pic); virtual uint64_t ms_since_boot() const override; + virtual uint64_t ns_since_boot() const override; virtual timespec time_since_boot() const override; virtual void handle_irq() override; diff --git a/kernel/include/kernel/Timer/PIT.h b/kernel/include/kernel/Timer/PIT.h index d0750984..dc9c149f 100644 --- a/kernel/include/kernel/Timer/PIT.h +++ b/kernel/include/kernel/Timer/PIT.h @@ -12,6 +12,7 @@ namespace Kernel static BAN::ErrorOr> create(); virtual uint64_t ms_since_boot() const override; + virtual uint64_t ns_since_boot() const override; virtual timespec time_since_boot() const override; virtual void handle_irq() override; diff --git a/kernel/include/kernel/Timer/Timer.h b/kernel/include/kernel/Timer/Timer.h index f4c0f49b..a2e0cd5a 100644 --- a/kernel/include/kernel/Timer/Timer.h +++ b/kernel/include/kernel/Timer/Timer.h @@ -14,6 +14,7 @@ namespace Kernel public: virtual ~Timer() {}; virtual uint64_t ms_since_boot() const = 0; + virtual uint64_t ns_since_boot() const = 0; virtual timespec time_since_boot() const = 0; }; @@ -25,6 +26,7 @@ namespace Kernel static bool is_initialized(); virtual uint64_t ms_since_boot() const override; + virtual uint64_t ns_since_boot() const override; virtual timespec time_since_boot() const override; void sleep(uint64_t ms) const; diff --git a/kernel/kernel/Timer/HPET.cpp b/kernel/kernel/Timer/HPET.cpp index 8813b56e..e660b2d8 100644 --- a/kernel/kernel/Timer/HPET.cpp +++ b/kernel/kernel/Timer/HPET.cpp @@ -148,6 +148,12 @@ namespace Kernel return read_register(HPET_REG_COUNTER) * m_counter_tick_period_fs / FS_PER_MS; } + uint64_t HPET::ns_since_boot() const + { + // FIXME: 32 bit CPUs should use 32 bit counter with 32 bit reads + return read_register(HPET_REG_COUNTER) * m_counter_tick_period_fs / FS_PER_NS; + } + timespec HPET::time_since_boot() const { uint64_t time_fs = read_register(HPET_REG_COUNTER) * m_counter_tick_period_fs; diff --git a/kernel/kernel/Timer/PIT.cpp b/kernel/kernel/Timer/PIT.cpp index b61901ed..4e4d298a 100644 --- a/kernel/kernel/Timer/PIT.cpp +++ b/kernel/kernel/Timer/PIT.cpp @@ -62,6 +62,11 @@ namespace Kernel return m_system_time * (MS_PER_S / TICKS_PER_SECOND); } + uint64_t PIT::ns_since_boot() const + { + return m_system_time * (NS_PER_S / TICKS_PER_SECOND); + } + timespec PIT::time_since_boot() const { uint64_t ticks = m_system_time; diff --git a/kernel/kernel/Timer/Timer.cpp b/kernel/kernel/Timer/Timer.cpp index d1cbb962..ff29d0f6 100644 --- a/kernel/kernel/Timer/Timer.cpp +++ b/kernel/kernel/Timer/Timer.cpp @@ -59,6 +59,11 @@ namespace Kernel return m_timer->ms_since_boot(); } + uint64_t SystemTimer::ns_since_boot() const + { + return m_timer->ns_since_boot(); + } + timespec SystemTimer::time_since_boot() const { return m_timer->time_since_boot(); From d3e5c8e0aa729bd02bb90030520a01d1c054e2aa Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 12 Oct 2023 21:35:25 +0300 Subject: [PATCH 099/240] Kernel: Generalize ATA device and cleanup code --- kernel/include/kernel/Storage/ATA/ATABus.h | 4 +- .../kernel/Storage/ATA/ATAController.h | 2 +- kernel/include/kernel/Storage/ATA/ATADevice.h | 85 +++++++++++------- .../kernel/Storage/StorageController.h | 4 +- kernel/include/kernel/Storage/StorageDevice.h | 8 +- kernel/kernel/Storage/ATA/ATABus.cpp | 34 ++++--- kernel/kernel/Storage/ATA/ATAController.cpp | 7 +- kernel/kernel/Storage/ATA/ATADevice.cpp | 90 +++++++++++-------- kernel/kernel/Storage/StorageDevice.cpp | 6 +- 9 files changed, 135 insertions(+), 105 deletions(-) diff --git a/kernel/include/kernel/Storage/ATA/ATABus.h b/kernel/include/kernel/Storage/ATA/ATABus.h index 06894e5f..3c781d6b 100644 --- a/kernel/include/kernel/Storage/ATA/ATABus.h +++ b/kernel/include/kernel/Storage/ATA/ATABus.h @@ -27,8 +27,6 @@ namespace Kernel virtual void handle_irq() override; - void initialize_devfs(); - private: ATABus(uint16_t base, uint16_t ctrl) : m_base(base) @@ -54,7 +52,7 @@ namespace Kernel const uint16_t m_ctrl; SpinLock m_lock; - bool m_has_got_irq { false }; + volatile bool m_has_got_irq { false }; // Non-owning pointers BAN::Vector m_devices; diff --git a/kernel/include/kernel/Storage/ATA/ATAController.h b/kernel/include/kernel/Storage/ATA/ATAController.h index df6576c2..82278287 100644 --- a/kernel/include/kernel/Storage/ATA/ATAController.h +++ b/kernel/include/kernel/Storage/ATA/ATAController.h @@ -12,7 +12,7 @@ namespace Kernel class ATAController : public StorageController { public: - static BAN::ErrorOr> create(PCI::Device&); + static BAN::ErrorOr> create(PCI::Device&); virtual BAN::ErrorOr initialize() override; private: diff --git a/kernel/include/kernel/Storage/ATA/ATADevice.h b/kernel/include/kernel/Storage/ATA/ATADevice.h index 8851f2e1..f9f7ce1e 100644 --- a/kernel/include/kernel/Storage/ATA/ATADevice.h +++ b/kernel/include/kernel/Storage/ATA/ATADevice.h @@ -6,52 +6,69 @@ namespace Kernel { - class ATADevice final : public StorageDevice + namespace detail + { + + class ATABaseDevice : public StorageDevice + { + public: + enum class Command + { + Read, + Write + }; + + public: + virtual ~ATABaseDevice() {}; + + virtual uint32_t sector_size() const override { return m_sector_words * 2; } + virtual uint64_t total_size() const override { return m_lba_count * sector_size(); } + + uint32_t words_per_sector() const { return m_sector_words; } + uint64_t sector_count() const { return m_lba_count; } + + BAN::StringView model() const { return m_model; } + BAN::StringView name() const; + + virtual dev_t rdev() const override { return m_rdev; } + + virtual BAN::ErrorOr read_impl(off_t, void*, size_t) override; + virtual BAN::ErrorOr write_impl(off_t, const void*, size_t) override; + + protected: + ATABaseDevice(); + BAN::ErrorOr initialize(BAN::Span identify_data); + + protected: + uint16_t m_signature; + uint16_t m_capabilities; + uint32_t m_command_set; + uint32_t m_sector_words; + uint64_t m_lba_count; + char m_model[41]; + + const dev_t m_rdev; + }; + + } + + class ATADevice final : public detail::ATABaseDevice { public: static BAN::ErrorOr> create(BAN::RefPtr, ATABus::DeviceType, bool is_secondary, BAN::Span identify_data); - virtual uint32_t sector_size() const override { return m_sector_words * 2; } - virtual uint64_t total_size() const override { return m_lba_count * sector_size(); } - bool is_secondary() const { return m_is_secondary; } - uint32_t words_per_sector() const { return m_sector_words; } - uint64_t sector_count() const { return m_lba_count; } - - BAN::StringView model() const { return m_model; } - BAN::StringView name() const; - - protected: - virtual BAN::ErrorOr read_sectors_impl(uint64_t, uint8_t, uint8_t*) override; - virtual BAN::ErrorOr write_sectors_impl(uint64_t, uint8_t, const uint8_t*) override; private: ATADevice(BAN::RefPtr, ATABus::DeviceType, bool is_secodary); - BAN::ErrorOr initialize(BAN::Span identify_data); + + virtual BAN::ErrorOr read_sectors_impl(uint64_t, uint64_t, uint8_t*) override; + virtual BAN::ErrorOr write_sectors_impl(uint64_t, uint64_t, const uint8_t*) override; private: BAN::RefPtr m_bus; const ATABus::DeviceType m_type; const bool m_is_secondary; - - uint16_t m_signature; - uint16_t m_capabilities; - uint32_t m_command_set; - uint32_t m_sector_words; - uint64_t m_lba_count; - char m_model[41]; - - public: - virtual Mode mode() const override { return { Mode::IFBLK | Mode::IRUSR | Mode::IRGRP }; } - virtual uid_t uid() const override { return 0; } - virtual gid_t gid() const override { return 0; } - virtual dev_t rdev() const override { return m_rdev; } - - private: - virtual BAN::ErrorOr read_impl(off_t, void*, size_t) override; - - public: - const dev_t m_rdev; }; -} \ No newline at end of file +} diff --git a/kernel/include/kernel/Storage/StorageController.h b/kernel/include/kernel/Storage/StorageController.h index c6199920..86eec0b6 100644 --- a/kernel/include/kernel/Storage/StorageController.h +++ b/kernel/include/kernel/Storage/StorageController.h @@ -1,9 +1,11 @@ #pragma once +#include + namespace Kernel { - class StorageController + class StorageController : public BAN::RefCounted { public: virtual ~StorageController() {} diff --git a/kernel/include/kernel/Storage/StorageDevice.h b/kernel/include/kernel/Storage/StorageDevice.h index c4cf1131..15a32903 100644 --- a/kernel/include/kernel/Storage/StorageDevice.h +++ b/kernel/include/kernel/Storage/StorageDevice.h @@ -73,8 +73,8 @@ namespace Kernel BAN::ErrorOr initialize_partitions(); - BAN::ErrorOr read_sectors(uint64_t lba, uint8_t sector_count, uint8_t* buffer); - BAN::ErrorOr write_sectors(uint64_t lba, uint8_t sector_count, const uint8_t* buffer); + BAN::ErrorOr read_sectors(uint64_t lba, uint64_t sector_count, uint8_t* buffer); + BAN::ErrorOr write_sectors(uint64_t lba, uint64_t sector_count, const uint8_t* buffer); virtual uint32_t sector_size() const = 0; virtual uint64_t total_size() const = 0; @@ -86,8 +86,8 @@ namespace Kernel virtual bool is_storage_device() const override { return true; } protected: - virtual BAN::ErrorOr read_sectors_impl(uint64_t lba, uint8_t sector_count, uint8_t* buffer) = 0; - virtual BAN::ErrorOr write_sectors_impl(uint64_t lba, uint8_t sector_count, const uint8_t* buffer) = 0; + virtual BAN::ErrorOr read_sectors_impl(uint64_t lba, uint64_t sector_count, uint8_t* buffer) = 0; + virtual BAN::ErrorOr write_sectors_impl(uint64_t lba, uint64_t sector_count, const uint8_t* buffer) = 0; void add_disk_cache(); private: diff --git a/kernel/kernel/Storage/ATA/ATABus.cpp b/kernel/kernel/Storage/ATA/ATABus.cpp index abe125ed..eb9d28a6 100644 --- a/kernel/kernel/Storage/ATA/ATABus.cpp +++ b/kernel/kernel/Storage/ATA/ATABus.cpp @@ -41,6 +41,10 @@ namespace Kernel else device_type = res.value(); + // Enable interrupts + select_device(is_secondary); + io_write(ATA_PORT_CONTROL, 0); + auto device_or_error = ATADevice::create(this, device_type, is_secondary, identify_buffer.span()); if (device_or_error.is_error()) @@ -50,35 +54,23 @@ namespace Kernel } auto device = device_or_error.release_value(); - device->ref(); TRY(m_devices.push_back(device.ptr())); } - // Enable disk interrupts - for (auto& device : m_devices) - { - select_device(device->is_secondary()); - io_write(ATA_PORT_CONTROL, 0); - } - return {}; } - void ATABus::initialize_devfs() + static void select_delay() { - for (auto& device : m_devices) - { - DevFileSystem::get().add_device(device); - if (auto res = device->initialize_partitions(); res.is_error()) - dprintln("{}", res.error()); - device->unref(); - } + auto time = SystemTimer::get().ns_since_boot(); + while (SystemTimer::get().ns_since_boot() < time + 400) + continue; } void ATABus::select_device(bool secondary) { io_write(ATA_PORT_DRIVE_SELECT, 0xA0 | ((uint8_t)secondary << 4)); - SystemTimer::get().sleep(1); + select_delay(); } BAN::ErrorOr ATABus::identify(bool secondary, BAN::Span buffer) @@ -236,6 +228,9 @@ namespace Kernel { // LBA28 io_write(ATA_PORT_DRIVE_SELECT, 0xE0 | ((uint8_t)device.is_secondary() << 4) | ((lba >> 24) & 0x0F)); + select_delay(); + io_write(ATA_PORT_CONTROL, 0); + io_write(ATA_PORT_SECTOR_COUNT, sector_count); io_write(ATA_PORT_LBA0, (uint8_t)(lba >> 0)); io_write(ATA_PORT_LBA1, (uint8_t)(lba >> 8)); @@ -268,14 +263,15 @@ namespace Kernel { // LBA28 io_write(ATA_PORT_DRIVE_SELECT, 0xE0 | ((uint8_t)device.is_secondary() << 4) | ((lba >> 24) & 0x0F)); + select_delay(); + io_write(ATA_PORT_CONTROL, 0); + io_write(ATA_PORT_SECTOR_COUNT, sector_count); io_write(ATA_PORT_LBA0, (uint8_t)(lba >> 0)); io_write(ATA_PORT_LBA1, (uint8_t)(lba >> 8)); io_write(ATA_PORT_LBA2, (uint8_t)(lba >> 16)); io_write(ATA_PORT_COMMAND, ATA_COMMAND_WRITE_SECTORS); - SystemTimer::get().sleep(1); - for (uint32_t sector = 0; sector < sector_count; sector++) { write_buffer(ATA_PORT_DATA, (uint16_t*)buffer + sector * device.words_per_sector(), device.words_per_sector()); diff --git a/kernel/kernel/Storage/ATA/ATAController.cpp b/kernel/kernel/Storage/ATA/ATAController.cpp index 312ff933..5f968566 100644 --- a/kernel/kernel/Storage/ATA/ATAController.cpp +++ b/kernel/kernel/Storage/ATA/ATAController.cpp @@ -7,7 +7,7 @@ namespace Kernel { - BAN::ErrorOr> ATAController::create(PCI::Device& pci_device) + BAN::ErrorOr> ATAController::create(PCI::Device& pci_device) { StorageController* controller_ptr = nullptr; @@ -29,7 +29,7 @@ namespace Kernel if (controller_ptr == nullptr) return BAN::Error::from_errno(ENOMEM); - auto controller = BAN::UniqPtr::adopt(controller_ptr); + auto controller = BAN::RefPtr::adopt(controller_ptr); TRY(controller->initialize()); return controller; } @@ -67,9 +67,6 @@ namespace Kernel dprintln("unsupported IDE ATABus in native mode"); } - for (auto& bus : buses) - bus->initialize_devfs(); - return {}; } diff --git a/kernel/kernel/Storage/ATA/ATADevice.cpp b/kernel/kernel/Storage/ATA/ATADevice.cpp index e5dfb248..357018fa 100644 --- a/kernel/kernel/Storage/ATA/ATADevice.cpp +++ b/kernel/kernel/Storage/ATA/ATADevice.cpp @@ -21,24 +21,11 @@ namespace Kernel return minor++; } - BAN::ErrorOr> ATADevice::create(BAN::RefPtr bus, ATABus::DeviceType type, bool is_secondary, BAN::Span identify_data) - { - auto* device_ptr = new ATADevice(bus, type, is_secondary); - if (device_ptr == nullptr) - return BAN::Error::from_errno(ENOMEM); - auto device = BAN::RefPtr::adopt(device_ptr); - TRY(device->initialize(identify_data)); - return device; - } - - ATADevice::ATADevice(BAN::RefPtr bus, ATABus::DeviceType type, bool is_secondary) - : m_bus(bus) - , m_type(type) - , m_is_secondary(is_secondary) - , m_rdev(makedev(get_ata_dev_major(), get_ata_dev_minor())) + detail::ATABaseDevice::ATABaseDevice() + : m_rdev(makedev(get_ata_dev_major(), get_ata_dev_minor())) { } - BAN::ErrorOr ATADevice::initialize(BAN::Span identify_data) + BAN::ErrorOr detail::ATABaseDevice::initialize(BAN::Span identify_data) { ASSERT(identify_data.size() >= 256); @@ -77,41 +64,74 @@ namespace Kernel } m_model[40] = 0; - dprintln("ATA disk {} MB", total_size() / 1024 / 1024); + size_t model_len = 40; + while (model_len > 0 && m_model[model_len - 1] == ' ') + model_len--; + + dprintln("Initialized disk '{}' {} MB", BAN::StringView(m_model, model_len), total_size() / 1024 / 1024); add_disk_cache(); + DevFileSystem::get().add_device(this); + if (auto res = initialize_partitions(); res.is_error()) + dprintln("{}", res.error()); + return {}; } - BAN::ErrorOr ATADevice::read_sectors_impl(uint64_t lba, uint8_t sector_count, uint8_t* buffer) + BAN::ErrorOr detail::ATABaseDevice::read_impl(off_t offset, void* buffer, size_t bytes) { - TRY(m_bus->read(*this, lba, sector_count, buffer)); - return {}; - } - - BAN::ErrorOr ATADevice::write_sectors_impl(uint64_t lba, uint8_t sector_count, const uint8_t* buffer) - { - TRY(m_bus->write(*this, lba, sector_count, buffer)); - return {}; - } - - BAN::ErrorOr ATADevice::read_impl(off_t offset, void* buffer, size_t bytes) - { - ASSERT(offset >= 0); - if (offset % sector_size() || bytes % sector_size()) + if (offset % sector_size()) + return BAN::Error::from_errno(EINVAL); + if (bytes % sector_size()) return BAN::Error::from_errno(EINVAL); - if ((size_t)offset == total_size()) - return 0; TRY(read_sectors(offset / sector_size(), bytes / sector_size(), (uint8_t*)buffer)); return bytes; } - BAN::StringView ATADevice::name() const + BAN::ErrorOr detail::ATABaseDevice::write_impl(off_t offset, const void* buffer, size_t bytes) + { + if (offset % sector_size()) + return BAN::Error::from_errno(EINVAL); + if (bytes % sector_size()) + return BAN::Error::from_errno(EINVAL); + TRY(write_sectors(offset / sector_size(), bytes / sector_size(), (const uint8_t*)buffer)); + return bytes; + } + + BAN::StringView detail::ATABaseDevice::name() const { static char device_name[] = "sda"; device_name[2] += minor(m_rdev); return device_name; } + BAN::ErrorOr> ATADevice::create(BAN::RefPtr bus, ATABus::DeviceType type, bool is_secondary, BAN::Span identify_data) + { + auto* device_ptr = new ATADevice(bus, type, is_secondary); + if (device_ptr == nullptr) + return BAN::Error::from_errno(ENOMEM); + auto device = BAN::RefPtr::adopt(device_ptr); + TRY(device->initialize(identify_data)); + return device; + } + + ATADevice::ATADevice(BAN::RefPtr bus, ATABus::DeviceType type, bool is_secondary) + : m_bus(bus) + , m_type(type) + , m_is_secondary(is_secondary) + { } + + BAN::ErrorOr ATADevice::read_sectors_impl(uint64_t lba, uint64_t sector_count, uint8_t* buffer) + { + TRY(m_bus->read(*this, lba, sector_count, buffer)); + return {}; + } + + BAN::ErrorOr ATADevice::write_sectors_impl(uint64_t lba, uint64_t sector_count, const uint8_t* buffer) + { + TRY(m_bus->write(*this, lba, sector_count, buffer)); + return {}; + } + } \ No newline at end of file diff --git a/kernel/kernel/Storage/StorageDevice.cpp b/kernel/kernel/Storage/StorageDevice.cpp index 7c517d73..a64b656a 100644 --- a/kernel/kernel/Storage/StorageDevice.cpp +++ b/kernel/kernel/Storage/StorageDevice.cpp @@ -283,9 +283,9 @@ namespace Kernel return {}; } - BAN::ErrorOr StorageDevice::read_sectors(uint64_t lba, uint8_t sector_count, uint8_t* buffer) + BAN::ErrorOr StorageDevice::read_sectors(uint64_t lba, uint64_t sector_count, uint8_t* buffer) { - for (uint8_t offset = 0; offset < sector_count; offset++) + for (uint64_t offset = 0; offset < sector_count; offset++) { LockGuard _(m_lock); Thread::TerminateBlocker blocker(Thread::current()); @@ -302,7 +302,7 @@ namespace Kernel return {}; } - BAN::ErrorOr StorageDevice::write_sectors(uint64_t lba, uint8_t sector_count, const uint8_t* buffer) + BAN::ErrorOr StorageDevice::write_sectors(uint64_t lba, uint64_t sector_count, const uint8_t* buffer) { // TODO: use disk cache for dirty pages. I don't wanna think about how to do it safely now for (uint8_t offset = 0; offset < sector_count; offset++) From a2b5e71654a29e8660a17144189934416d4935e1 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 12 Oct 2023 21:53:48 +0300 Subject: [PATCH 100/240] Kernel: Implement AHCI driver SATA drives can now be used with banan-os. This allows much faster disk access (writing 10 MiB from 30s to 1.5s). This can definitely be optimized but the main slow down is probably the whole disk structure in the os. AHCI drive is now the default when running qemu. --- kernel/CMakeLists.txt | 2 + .../kernel/Storage/ATA/AHCI/Controller.h | 43 +++ .../kernel/Storage/ATA/AHCI/Definitions.h | 294 ++++++++++++++++++ .../include/kernel/Storage/ATA/AHCI/Device.h | 49 +++ .../kernel/Storage/ATA/ATADefinitions.h | 4 + kernel/kernel/Storage/ATA/AHCI/Controller.cpp | 120 +++++++ kernel/kernel/Storage/ATA/AHCI/Device.cpp | 276 ++++++++++++++++ kernel/kernel/Storage/ATA/ATAController.cpp | 5 +- qemu.sh | 12 +- 9 files changed, 798 insertions(+), 7 deletions(-) create mode 100644 kernel/include/kernel/Storage/ATA/AHCI/Controller.h create mode 100644 kernel/include/kernel/Storage/ATA/AHCI/Definitions.h create mode 100644 kernel/include/kernel/Storage/ATA/AHCI/Device.h create mode 100644 kernel/kernel/Storage/ATA/AHCI/Controller.cpp create mode 100644 kernel/kernel/Storage/ATA/AHCI/Device.cpp diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index c5a2c033..2c29fa36 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -53,6 +53,8 @@ set(KERNEL_SOURCES kernel/Semaphore.cpp kernel/SpinLock.cpp kernel/SSP.cpp + kernel/Storage/ATA/AHCI/Controller.cpp + kernel/Storage/ATA/AHCI/Device.cpp kernel/Storage/ATA/ATABus.cpp kernel/Storage/ATA/ATAController.cpp kernel/Storage/ATA/ATADevice.cpp diff --git a/kernel/include/kernel/Storage/ATA/AHCI/Controller.h b/kernel/include/kernel/Storage/ATA/AHCI/Controller.h new file mode 100644 index 00000000..7a697bc6 --- /dev/null +++ b/kernel/include/kernel/Storage/ATA/AHCI/Controller.h @@ -0,0 +1,43 @@ +#pragma once + +#include +#include +#include +#include +#include +#include + +namespace Kernel +{ + + class AHCIController final : public StorageController, public Interruptable + { + BAN_NON_COPYABLE(AHCIController); + BAN_NON_MOVABLE(AHCIController); + + public: + ~AHCIController(); + + virtual void handle_irq() override; + + uint32_t command_slot_count() const { return m_command_slot_count; } + + private: + AHCIController(PCI::Device& pci_device) + : m_pci_device(pci_device) + { } + BAN::ErrorOr initialize(); + BAN::Optional check_port_type(volatile HBAPortMemorySpace&); + + private: + PCI::Device& m_pci_device; + BAN::UniqPtr m_abar; + + BAN::Array m_devices; + + uint32_t m_command_slot_count { 0 }; + + friend class ATAController; + }; + +} diff --git a/kernel/include/kernel/Storage/ATA/AHCI/Definitions.h b/kernel/include/kernel/Storage/ATA/AHCI/Definitions.h new file mode 100644 index 00000000..a2727bd4 --- /dev/null +++ b/kernel/include/kernel/Storage/ATA/AHCI/Definitions.h @@ -0,0 +1,294 @@ +#pragma once + +#include + +#define FIS_TYPE_REGISTER_H2D 0x27 +#define FIS_TYPE_REGISTER_D2H 0x34 +#define FIS_TYPE_DMA_ACT 0x39 +#define FIS_TYPE_DMA_SETUP 0x41 +#define FIS_TYPE_DATA 0x46 +#define FIS_TYPE_BIST 0x58 +#define FIS_TYPE_PIO_SETUP 0x5F +#define FIS_TYPE_SET_DEVIVE_BITS 0xA1 + +#define SATA_CAP_SUPPORTS64 (1 << 31) + +#define SATA_GHC_AHCI_ENABLE (1 << 31) +#define SATA_GHC_INTERRUPT_ENABLE (1 << 1) + +#define SATA_SIG_ATA 0x00000101 +#define SATA_SIG_ATAPI 0xEB140101 +#define SATA_SIG_SEMB 0xC33C0101 +#define SATA_SIG_PM 0x96690101 + +#define HBA_PORT_IPM_ACTIVE 1 +#define HBA_PORT_DET_PRESENT 3 + +#define HBA_PxCMD_ST 0x0001 +#define HBA_PxCMD_FRE 0x0010 +#define HBA_PxCMD_FR 0x4000 +#define HBA_PxCMD_CR 0x8000 + +namespace Kernel +{ + + static constexpr uint32_t s_hba_prdt_count { 8 }; + + struct FISRegisterH2D + { + uint8_t fis_type; // FIS_TYPE_REGISTER_H2D + + uint8_t pm_port : 4; // Port multiplier + uint8_t __reserved0 : 3; + uint8_t c : 1; // 1: Command, 0: Control + + uint8_t command; + uint8_t feature_lo; // Feature register, 7:0 + + uint8_t lba0; // LBA low register, 7:0 + uint8_t lba1; // LBA mid register, 15:8 + uint8_t lba2; // LBA high register, 23:16 + uint8_t device; + + uint8_t lba3; // LBA register, 31:24 + uint8_t lba4; // LBA register, 39:32 + uint8_t lba5; // LBA register, 47:40 + uint8_t feature_hi; // Feature register, 15:8 + + uint8_t count_lo; // Count register, 7:0 + uint8_t count_hi; // Count register, 15:8 + uint8_t icc; // Isochronous command completion + uint8_t control; + + uint8_t __reserved1[4]; + } __attribute__((packed)); + + struct FISRegisterD2H + { + uint8_t fis_type; // FIS_TYPE_REGISTER_D2H + + uint8_t pm_port : 4; // Port multiplier + uint8_t __reserved0 : 2; + uint8_t i : 1; // Interrupt bit + uint8_t __reserved1 : 1; + + uint8_t status; + uint8_t error; + + uint8_t lba0; // LBA low register, 7:0 + uint8_t lba1; // LBA mid register, 15:8 + uint8_t lba2; // LBA high register, 23:16 + uint8_t device; + + uint8_t lba3; // LBA register, 31:24 + uint8_t lba4; // LBA register, 39:32 + uint8_t lba5; // LBA register, 47:40 + uint8_t __reserved2; + + uint8_t count_lo; // Count register, 7:0 + uint8_t count_hi; // Count register, 15:8 + uint8_t __reserved3[2]; + + uint8_t __reserved4[4]; + } __attribute__((packed)); + + struct FISDataBI + { + uint8_t fis_type; // FIS_TYPE_DATA + + uint8_t pm_port : 4; // Port multiplier + uint8_t __reserved0 : 4; + + uint8_t __reserved1[2]; + + uint32_t data[0]; // Payload (1 - 2048 dwords) + } __attribute__((packed)); + + struct SetDeviceBitsD2H + { + uint8_t fis_type; // FIS_TYPE_SET_DEVICE_BITS + + uint8_t pm_port : 4; // Port multiplier + uint8_t __reserved0 : 2; + uint8_t i : 1; // Interrupt bit + uint8_t n : 1; // Notification bit + + uint8_t status; + uint8_t error; + + uint32_t __reserved1; + } __attribute__((packed)); + + struct PIOSetupD2H + { + uint8_t fis_type; // FIS_TYPE_PIO_SETUP + + uint8_t pm_port : 4; // Port multiplier + uint8_t __reserved0 : 1; + uint8_t d : 1; // Data transfer direction, 1 - device to host + uint8_t i : 1; // Interrupt bit + uint8_t __reserved1 : 1; + + uint8_t status; + uint8_t error; + + uint8_t lba0; // LBA low register, 7:0 + uint8_t lba1; // LBA mid register, 15:8 + uint8_t lba2; // LBA high register, 23:16 + uint8_t device; + + uint8_t lba3; // LBA register, 31:24 + uint8_t lba4; // LBA register, 39:32 + uint8_t lba5; // LBA register, 47:40 + uint8_t __reserved2; + + uint8_t count_lo; // Count register, 7:0 + uint8_t count_hi; // Count register, 15:8 + uint8_t __reserved3; + uint8_t e_status; // New value of status register + + uint16_t tc; // Transfer count + uint8_t __reserved4[2]; + } __attribute__((packed)); + + struct DMASetupBI + { + uint8_t fis_type; // FIS_TYPE_DMA_SETUP + + uint8_t pm_port : 4; // Port multiplier + uint8_t __reserved0 : 1; + uint8_t d : 1; // Data transfer direction, 1 - device to host + uint8_t i : 1; // Interrupt bit + uint8_t a : 1; // Auto-activate. Specifies if DMA Activate FIS is needed + + uint8_t __reserved1[2]; + + uint64_t dma_buffer_id; // DMA Buffer Identifier. Used to Identify DMA buffer in host memory. + // SATA Spec says host specific and not in Spec. Trying AHCI spec might work. + + uint32_t __reserved2; + + uint32_t dma_buffer_offset; // Byte offset into buffer. First 2 bits must be 0 + + uint32_t dma_transfer_count; // Number of bytes to transfer. Bit 0 must be 0 + + uint32_t __reserved3; + } __attribute__((packed)); + + struct HBAPortMemorySpace + { + uint32_t clb; // command list base address, 1K-byte aligned + uint32_t clbu; // command list base address upper 32 bits + uint32_t fb; // FIS base address, 256-byte aligned + uint32_t fbu; // FIS base address upper 32 bits + uint32_t is; // interrupt status + uint32_t ie; // interrupt enable + uint32_t cmd; // command and status + uint32_t __reserved0; + uint32_t tfd; // task file data + uint32_t sig; // signature + uint32_t ssts; // SATA status (SCR0:SStatus) + uint32_t sctl; // SATA control (SCR2:SControl) + uint32_t serr; // SATA error (SCR1:SError) + uint32_t sact; // SATA active (SCR3:SActive) + uint32_t ci; // command issue + uint32_t sntf; // SATA notification (SCR4:SNotification) + uint32_t fbs; // FIS-based switch control + uint32_t __reserved1[11]; + uint32_t vendor[4]; + } __attribute__((packed)); + + struct HBAGeneralMemorySpace + { + uint32_t cap; // Host capability + uint32_t ghc; // Global host control + uint32_t is; // Interrupt status + uint32_t pi; // Port implemented + uint32_t vs; // Version + uint32_t ccc_ctl; // Command completion coalescing control + uint32_t ccc_pts; // Command completion coalescing ports + uint32_t em_loc; // 0x1C, Enclosure management location + uint32_t em_ctl; // 0x20, Enclosure management control + uint32_t cap2; // 0x24, Host capabilities extended + uint32_t bohc; // 0x28, BIOS/OS handoff control and status + + uint8_t __reserved0[0xA0-0x2C]; + + uint8_t vendor[0x100-0xA0]; + + HBAPortMemorySpace ports[0]; // 1 - 32 ports + } __attribute__((packed)); + + struct ReceivedFIS + { + DMASetupBI dsfis; + uint8_t pad0[4]; + + PIOSetupD2H psfis; + uint8_t pad1[12]; + + FISRegisterD2H rfis; + uint8_t pad2[4]; + + SetDeviceBitsD2H sdbfis; + + uint8_t ufis[64]; + + uint8_t __reserved[0x100-0xA0]; + } __attribute__((packed)); + + struct HBACommandHeader + { + uint8_t cfl : 5; // Command FIS length in DWORDS, 2 ~ 16 + uint8_t a : 1; // ATAPI + uint8_t w : 1; // Write, 1: H2D, 0: D2H + uint8_t p : 1; // Prefetchable + + uint8_t r : 1; // Reset + uint8_t b : 1; // BIST + uint8_t c : 1; // Clear busy upon R_OK + uint8_t __reserved0 : 1; + uint8_t pmp : 4; // Port multiplier port + + uint16_t prdtl; // Physical region descriptor table length in entries + + volatile uint32_t prdbc; // Physical region descriptor byte count transferred + + uint32_t ctba; // Command table descriptor base address + uint32_t ctbau; // Command table descriptor base address upper 32 bits + + uint32_t __reserved1[4]; + } __attribute__((packed)); + + struct HBAPRDTEntry + { + uint32_t dba; // Data base address + uint32_t dbau; // Data base address upper 32 bits + uint32_t __reserved0; + + uint32_t dbc : 22; // Byte count, 4M max + uint32_t __reserved1 : 9; + uint32_t i : 1; // Interrupt on completion + } __attribute__((packed)); + + struct HBACommandTable + { + uint8_t cfis[64]; + uint8_t acmd[16]; + uint8_t __reserved[48]; + HBAPRDTEntry prdt_entry[s_hba_prdt_count]; + } __attribute__((packed)); + + enum class AHCIPortType + { + NONE, + SATA, + SATAPI, + SEMB, + PM + }; + + class AHCIController; + class AHCIDevice; + +} diff --git a/kernel/include/kernel/Storage/ATA/AHCI/Device.h b/kernel/include/kernel/Storage/ATA/AHCI/Device.h new file mode 100644 index 00000000..4e4c29fa --- /dev/null +++ b/kernel/include/kernel/Storage/ATA/AHCI/Device.h @@ -0,0 +1,49 @@ +#pragma once + +#include +#include +#include + +namespace Kernel +{ + + class AHCIDevice final : public detail::ATABaseDevice + { + public: + static BAN::ErrorOr> create(BAN::RefPtr, volatile HBAPortMemorySpace*); + ~AHCIDevice() = default; + + private: + AHCIDevice(BAN::RefPtr controller, volatile HBAPortMemorySpace* port) + : m_controller(controller) + , m_port(port) + { } + BAN::ErrorOr initialize(); + BAN::ErrorOr allocate_buffers(); + BAN::ErrorOr rebase(); + BAN::ErrorOr read_identify_data(); + + virtual BAN::ErrorOr read_sectors_impl(uint64_t lba, uint64_t sector_count, uint8_t* buffer) override; + virtual BAN::ErrorOr write_sectors_impl(uint64_t lba, uint64_t sector_count, const uint8_t* buffer) override; + BAN::ErrorOr send_command_and_block(uint64_t lba, uint64_t sector_count, Command command); + + BAN::Optional find_free_command_slot(); + + void handle_irq(); + void block_until_irq(); + + private: + BAN::RefPtr m_controller; + volatile HBAPortMemorySpace* const m_port; + + BAN::UniqPtr m_dma_region; + // Intermediate read/write buffer + // TODO: can we read straight to user buffer? + BAN::UniqPtr m_data_dma_region; + + volatile bool m_has_got_irq { false }; + + friend class AHCIController; + }; + +} \ No newline at end of file diff --git a/kernel/include/kernel/Storage/ATA/ATADefinitions.h b/kernel/include/kernel/Storage/ATA/ATADefinitions.h index 37686d34..e02697fe 100644 --- a/kernel/include/kernel/Storage/ATA/ATADefinitions.h +++ b/kernel/include/kernel/Storage/ATA/ATADefinitions.h @@ -33,7 +33,11 @@ #define ATA_STATUS_BSY 0x80 #define ATA_COMMAND_READ_SECTORS 0x20 +#define ATA_COMMAND_READ_DMA 0xC8 +#define ATA_COMMAND_READ_DMA_EXT 0x25 #define ATA_COMMAND_WRITE_SECTORS 0x30 +#define ATA_COMMAND_WRITE_DMA 0xCA +#define ATA_COMMAND_WRITE_DMA_EXT 0x35 #define ATA_COMMAND_IDENTIFY_PACKET 0xA1 #define ATA_COMMAND_CACHE_FLUSH 0xE7 #define ATA_COMMAND_IDENTIFY 0xEC diff --git a/kernel/kernel/Storage/ATA/AHCI/Controller.cpp b/kernel/kernel/Storage/ATA/AHCI/Controller.cpp new file mode 100644 index 00000000..23f81e00 --- /dev/null +++ b/kernel/kernel/Storage/ATA/AHCI/Controller.cpp @@ -0,0 +1,120 @@ +#include +#include +#include +#include +#include + +namespace Kernel +{ + + BAN::ErrorOr AHCIController::initialize() + { + m_abar = TRY(m_pci_device.allocate_bar_region(5)); + if (m_abar->type() != PCI::BarType::MEM) + { + dprintln("ABAR not MMIO"); + return BAN::Error::from_errno(EINVAL); + } + + auto& abar_mem = *(volatile HBAGeneralMemorySpace*)m_abar->vaddr(); + if (!(abar_mem.ghc & SATA_GHC_AHCI_ENABLE)) + { + dprintln("Controller not in AHCI mode"); + return BAN::Error::from_errno(EINVAL); + } + + // Enable interrupts and bus mastering + m_pci_device.enable_bus_mastering(); + m_pci_device.enable_pin_interrupts(); + set_irq(TRY(m_pci_device.get_irq())); + enable_interrupt(); + abar_mem.ghc = abar_mem.ghc | SATA_GHC_INTERRUPT_ENABLE; + + m_command_slot_count = ((abar_mem.cap >> 8) & 0x1F) + 1; + + uint32_t pi = abar_mem.pi; + for (uint32_t i = 0; i < 32 && pi; i++, pi >>= 1) + { + // Verify we don't access abar outside of its bounds + if (sizeof(HBAGeneralMemorySpace) + i * sizeof(HBAPortMemorySpace) > m_abar->size()) + break; + + if (!(pi & 1)) + continue; + + auto type = check_port_type(abar_mem.ports[i]); + if (!type.has_value()) + continue; + + if (type.value() != AHCIPortType::SATA) + { + dprintln("Non-SATA devices not supported"); + continue; + } + + auto device = AHCIDevice::create(this, &abar_mem.ports[i]); + if (device.is_error()) + { + dprintln("{}", device.error()); + continue; + } + + m_devices[i] = device.value().ptr(); + if (auto ret = m_devices[i]->initialize(); ret.is_error()) + { + dprintln("{}", ret.error()); + m_devices[i] = nullptr; + } + } + + return {}; + } + + AHCIController::~AHCIController() + { + } + + void AHCIController::handle_irq() + { + auto& abar_mem = *(volatile HBAGeneralMemorySpace*)m_abar->vaddr(); + + uint32_t is = abar_mem.is; + for (uint8_t i = 0; i < 32; i++) + { + if (is & (1 << i)) + { + ASSERT(m_devices[i]); + m_devices[i]->handle_irq(); + } + } + + abar_mem.is = is; + } + + BAN::Optional AHCIController::check_port_type(volatile HBAPortMemorySpace& port) + { + uint32_t ssts = port.ssts; + uint8_t ipm = (ssts >> 8) & 0x0F; + uint8_t det = (ssts >> 0) & 0x0F; + + if (det != HBA_PORT_DET_PRESENT) + return {}; + if (ipm != HBA_PORT_IPM_ACTIVE) + return {}; + + switch (port.sig) + { + case SATA_SIG_ATA: + return AHCIPortType::SATA; + case SATA_SIG_ATAPI: + return AHCIPortType::SATAPI; + case SATA_SIG_PM: + return AHCIPortType::PM; + case SATA_SIG_SEMB: + return AHCIPortType::SEMB; + } + + return {}; + } + +} diff --git a/kernel/kernel/Storage/ATA/AHCI/Device.cpp b/kernel/kernel/Storage/ATA/AHCI/Device.cpp new file mode 100644 index 00000000..8b0c2521 --- /dev/null +++ b/kernel/kernel/Storage/ATA/AHCI/Device.cpp @@ -0,0 +1,276 @@ +#include +#include +#include +#include +#include + +namespace Kernel +{ + + static void start_cmd(volatile HBAPortMemorySpace* port) + { + while (port->cmd & HBA_PxCMD_CR) + continue; + port->cmd = port->cmd | HBA_PxCMD_FRE; + port->cmd = port->cmd | HBA_PxCMD_ST; + } + + static void stop_cmd(volatile HBAPortMemorySpace* port) + { + port->cmd = port->cmd & ~HBA_PxCMD_ST; + port->cmd = port->cmd & ~HBA_PxCMD_FRE; + while (port->cmd & (HBA_PxCMD_FR | HBA_PxCMD_CR)) + continue; + } + + BAN::ErrorOr> AHCIDevice::create(BAN::RefPtr controller, volatile HBAPortMemorySpace* port) + { + auto* device_ptr = new AHCIDevice(controller, port); + if (device_ptr == nullptr) + return BAN::Error::from_errno(ENOMEM); + return BAN::RefPtr::adopt(device_ptr); + } + + BAN::ErrorOr AHCIDevice::initialize() + { + TRY(allocate_buffers()); + TRY(rebase()); + + // enable interrupts + m_port->ie = 0xFFFFFFFF; + + TRY(read_identify_data()); + TRY(detail::ATABaseDevice::initialize({ (const uint16_t*)m_data_dma_region->vaddr(), m_data_dma_region->size() })); + + return {}; + } + + BAN::ErrorOr AHCIDevice::allocate_buffers() + { + uint32_t command_slot_count = m_controller->command_slot_count(); + size_t needed_bytes = (sizeof(HBACommandHeader) + sizeof(HBACommandTable)) * command_slot_count + sizeof(ReceivedFIS); + + m_dma_region = TRY(DMARegion::create(needed_bytes)); + memset((void*)m_dma_region->vaddr(), 0x00, m_dma_region->size()); + + m_data_dma_region = TRY(DMARegion::create(PAGE_SIZE)); + memset((void*)m_data_dma_region->vaddr(), 0x00, m_data_dma_region->size()); + + return {}; + } + + BAN::ErrorOr AHCIDevice::rebase() + { + ASSERT(m_dma_region); + + uint32_t command_slot_count = m_controller->command_slot_count(); + + stop_cmd(m_port); + + paddr_t fis_paddr = m_dma_region->paddr(); + m_port->fb = fis_paddr & 0xFFFFFFFF; + m_port->fbu = fis_paddr >> 32; + + paddr_t command_list_paddr = fis_paddr + sizeof(ReceivedFIS); + m_port->clb = command_list_paddr & 0xFFFFFFFF; + m_port->clbu = command_list_paddr >> 32; + + auto* command_headers = (HBACommandHeader*)m_dma_region->paddr_to_vaddr(command_list_paddr); + paddr_t command_table_paddr = command_list_paddr + command_slot_count * sizeof(HBACommandHeader); + for (uint32_t i = 0; i < command_slot_count; i++) + { + uint64_t command_table_entry_paddr = command_table_paddr + i * sizeof(HBACommandTable); + command_headers[i].prdtl = s_hba_prdt_count; + command_headers[i].ctba = command_table_entry_paddr & 0xFFFFFFFF; + command_headers[i].ctbau = command_table_entry_paddr >> 32; + } + + start_cmd(m_port); + + return {}; + } + + BAN::ErrorOr AHCIDevice::read_identify_data() + { + ASSERT(m_data_dma_region); + + m_port->is = ~(uint32_t)0; + + auto slot = find_free_command_slot(); + ASSERT(slot.has_value()); + + auto& command_header = ((HBACommandHeader*)m_dma_region->paddr_to_vaddr(m_port->clb))[slot.value()]; + command_header.cfl = sizeof(FISRegisterH2D) / sizeof(uint32_t); + command_header.w = 0; + command_header.prdtl = 1; + + auto& command_table = *(HBACommandTable*)m_dma_region->paddr_to_vaddr(command_header.ctba); + memset(&command_table, 0x00, sizeof(HBACommandTable)); + command_table.prdt_entry[0].dba = m_data_dma_region->paddr(); + command_table.prdt_entry[0].dbc = 511; + command_table.prdt_entry[0].i = 1; + + auto& command = *(FISRegisterH2D*)command_table.cfis; + command.fis_type = FIS_TYPE_REGISTER_H2D; + command.c = 1; + command.command = ATA_COMMAND_IDENTIFY; + + while (m_port->tfd & (ATA_STATUS_BSY | ATA_STATUS_DRQ)) + continue; + + m_port->ci = 1 << slot.value(); + + // FIXME: timeout + do { block_until_irq(); } while (m_port->ci & (1 << slot.value())); + + return {}; + } + + static void print_error(uint16_t error) + { + dprintln("Disk error:"); + if (error & (1 << 11)) + dprintln(" Internal Error"); + if (error & (1 << 10)) + dprintln(" Protocol Error"); + if (error & (1 << 9)) + dprintln(" Persistent Communication or Data Integrity Error"); + if (error & (1 << 8)) + dprintln(" Transient Data Integrity Error"); + if (error & (1 << 1)) + dprintln(" Recovered Communications Error"); + if (error & (1 << 0)) + dprintln(" Recovered Data Integrity Error"); + } + + void AHCIDevice::handle_irq() + { + ASSERT(!m_has_got_irq); + uint16_t err = m_port->serr & 0xFFFF; + if (err) + print_error(err); + m_has_got_irq = true; + } + + void AHCIDevice::block_until_irq() + { + while (!__sync_bool_compare_and_swap(&m_has_got_irq, true, false)) + __builtin_ia32_pause(); + } + + BAN::ErrorOr AHCIDevice::read_sectors_impl(uint64_t lba, uint64_t sector_count, uint8_t* buffer) + { + const size_t sectors_per_page = PAGE_SIZE / sector_size(); + for (uint64_t sector_off = 0; sector_off < sector_count; sector_off += sectors_per_page) + { + uint64_t to_read = BAN::Math::min(sector_count - sector_off, sectors_per_page); + + TRY(send_command_and_block(lba + sector_off, to_read, Command::Read)); + memcpy(buffer + sector_off * sector_size(), (void*)m_data_dma_region->vaddr(), to_read * sector_size()); + } + + return {}; + } + + BAN::ErrorOr AHCIDevice::write_sectors_impl(uint64_t lba, uint64_t sector_count, const uint8_t* buffer) + { + const size_t sectors_per_page = PAGE_SIZE / sector_size(); + for (uint64_t sector_off = 0; sector_off < sector_count; sector_off += sectors_per_page) + { + uint64_t to_read = BAN::Math::min(sector_count - sector_off, sectors_per_page); + + memcpy((void*)m_data_dma_region->vaddr(), buffer + sector_off * sector_size(), to_read * sector_size()); + TRY(send_command_and_block(lba + sector_off, to_read, Command::Write)); + } + + return {}; + } + + BAN::ErrorOr AHCIDevice::send_command_and_block(uint64_t lba, uint64_t sector_count, Command command) + { + ASSERT(m_dma_region); + ASSERT(m_data_dma_region); + ASSERT(0 < sector_count && sector_count <= 0xFFFF + 1); + + ASSERT(sector_count * sector_size() <= m_data_dma_region->size()); + + m_port->is = ~(uint32_t)0; + + auto slot = find_free_command_slot(); + ASSERT(slot.has_value()); + + auto& command_header = ((HBACommandHeader*)m_dma_region->paddr_to_vaddr(m_port->clb))[slot.value()]; + command_header.cfl = sizeof(FISRegisterH2D) / sizeof(uint32_t); + command_header.prdtl = 1; + switch (command) + { + case Command::Read: + command_header.w = 0; + break; + case Command::Write: + command_header.w = 1; + break; + default: + ASSERT_NOT_REACHED(); + } + + auto& command_table = *(HBACommandTable*)m_dma_region->paddr_to_vaddr(command_header.ctba); + memset(&command_table, 0x00, sizeof(HBACommandTable)); + command_table.prdt_entry[0].dba = m_data_dma_region->paddr() & 0xFFFFFFFF; + command_table.prdt_entry[0].dbau = m_data_dma_region->paddr() >> 32; + command_table.prdt_entry[0].dbc = sector_count * sector_size() - 1; + command_table.prdt_entry[0].i = 1; + + auto& fis_command = *(FISRegisterH2D*)command_table.cfis; + memset(&fis_command, 0x00, sizeof(FISRegisterH2D)); + fis_command.fis_type = FIS_TYPE_REGISTER_H2D; + fis_command.c = 1; + + bool need_extended = lba >= (1 << 28) || sector_count > 0xFF; + ASSERT (!need_extended || (m_command_set & ATA_COMMANDSET_LBA48_SUPPORTED)); + + switch (command) + { + case Command::Read: + fis_command.command = need_extended ? ATA_COMMAND_READ_DMA_EXT : ATA_COMMAND_READ_DMA; + break; + case Command::Write: + fis_command.command = need_extended ? ATA_COMMAND_WRITE_DMA_EXT : ATA_COMMAND_WRITE_DMA; + break; + default: + ASSERT_NOT_REACHED(); + } + + fis_command.lba0 = (lba >> 0) & 0xFF; + fis_command.lba1 = (lba >> 8) & 0xFF; + fis_command.lba2 = (lba >> 16) & 0xFF; + fis_command.device = 1 << 6; // LBA mode + + fis_command.lba3 = (lba >> 24) & 0xFF; + fis_command.lba4 = (lba >> 32) & 0xFF; + fis_command.lba5 = (lba >> 40) & 0xFF; + + fis_command.count_lo = (sector_count >> 0) & 0xFF; + fis_command.count_hi = (sector_count >> 8) & 0xFF; + + while (m_port->tfd & (ATA_STATUS_BSY | ATA_STATUS_DRQ)) + continue; + + m_port->ci = 1 << slot.value(); + + // FIXME: timeout + do { block_until_irq(); } while (m_port->ci & (1 << slot.value())); + + return {}; + } + + BAN::Optional AHCIDevice::find_free_command_slot() + { + uint32_t slots = m_port->sact | m_port->ci; + for (uint32_t i = 0; i < m_controller->command_slot_count(); i++, slots >>= 1) + if (!(slots & 1)) + return i; + return {}; + } + +} diff --git a/kernel/kernel/Storage/ATA/ATAController.cpp b/kernel/kernel/Storage/ATA/ATAController.cpp index 5f968566..8a451a18 100644 --- a/kernel/kernel/Storage/ATA/ATAController.cpp +++ b/kernel/kernel/Storage/ATA/ATAController.cpp @@ -1,4 +1,5 @@ #include +#include #include #include #include @@ -20,8 +21,8 @@ namespace Kernel dwarnln("unsupported DMA ATA Controller"); return BAN::Error::from_errno(ENOTSUP); case 0x06: - dwarnln("unsupported SATA Controller"); - return BAN::Error::from_errno(ENOTSUP); + controller_ptr = new AHCIController(pci_device); + break; default: ASSERT_NOT_REACHED(); } diff --git a/qemu.sh b/qemu.sh index 00b38fba..f92acf2c 100755 --- a/qemu.sh +++ b/qemu.sh @@ -1,8 +1,10 @@ #!/bin/bash set -e -qemu-system-$BANAN_ARCH \ - -m 128 \ - -smp 2 \ - -drive format=raw,media=disk,file=${DISK_IMAGE_PATH} \ - $@ \ +qemu-system-$BANAN_ARCH \ + -m 128 \ + -smp 2 \ + -drive format=raw,id=disk,file=${DISK_IMAGE_PATH},if=none \ + -device ahci,id=ahci \ + -device ide-hd,drive=disk,bus=ahci.0 \ + $@ \ From f0820e6f24b9f48788b037d1b98cb97d9795485d Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 12 Oct 2023 22:24:27 +0300 Subject: [PATCH 101/240] Shell: Fix parsing $ with unknown character --- userspace/Shell/main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/userspace/Shell/main.cpp b/userspace/Shell/main.cpp index 2da632e1..7dd3f939 100644 --- a/userspace/Shell/main.cpp +++ b/userspace/Shell/main.cpp @@ -156,7 +156,9 @@ BAN::Optional parse_dollar(BAN::StringView command, size_t& i) return output; } - return "$"sv; + BAN::String temp = "$"sv; + MUST(temp.push_back(command[i])); + return temp; } BAN::StringView strip_whitespace(BAN::StringView sv) From 773dcdd3a27c51437cf54239582f62c4af1a9e02 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 12 Oct 2023 22:59:36 +0300 Subject: [PATCH 102/240] Kernel: Check whether ELF address space can be loaded Before reserving address space in SYS_EXEC verify that ELF address space is actually loadable. For example when trying to execute the kernel binary in userspace, binarys address space would overlap with current kernel address space. Now kernel won't crash anymore and will just send SIGKILL to the process calling exec*(). --- LibELF/LibELF/LoadableELF.cpp | 26 ++++++++++++++++++++++++++ LibELF/include/LibELF/LoadableELF.h | 2 ++ kernel/kernel/Process.cpp | 10 ++++++++++ 3 files changed, 38 insertions(+) diff --git a/LibELF/LibELF/LoadableELF.cpp b/LibELF/LibELF/LoadableELF.cpp index 7a580b3a..9ca3a8bb 100644 --- a/LibELF/LibELF/LoadableELF.cpp +++ b/LibELF/LibELF/LoadableELF.cpp @@ -27,6 +27,8 @@ namespace LibELF LoadableELF::~LoadableELF() { + if (!m_loaded) + return; for (const auto& program_header : m_program_headers) { switch (program_header.p_type) @@ -155,6 +157,29 @@ namespace LibELF return false; } + bool LoadableELF::is_address_space_free() const + { + for (const auto& program_header : m_program_headers) + { + switch (program_header.p_type) + { + case PT_NULL: + break; + case PT_LOAD: + { + vaddr_t page_vaddr = program_header.p_vaddr & PAGE_ADDR_MASK; + size_t pages = range_page_count(program_header.p_vaddr, program_header.p_memsz); + if (!m_page_table.is_range_free(page_vaddr, pages * PAGE_SIZE)) + return false; + break; + } + default: + ASSERT_NOT_REACHED(); + } + } + return true; + } + void LoadableELF::reserve_address_space() { for (const auto& program_header : m_program_headers) @@ -174,6 +199,7 @@ namespace LibELF ASSERT_NOT_REACHED(); } } + m_loaded = true; } BAN::ErrorOr LoadableELF::load_page_to_memory(vaddr_t address) diff --git a/LibELF/include/LibELF/LoadableELF.h b/LibELF/include/LibELF/LoadableELF.h index 1b3cc4ff..d4733fa0 100644 --- a/LibELF/include/LibELF/LoadableELF.h +++ b/LibELF/include/LibELF/LoadableELF.h @@ -27,6 +27,7 @@ namespace LibELF Kernel::vaddr_t entry_point() const; bool contains(Kernel::vaddr_t address) const; + bool is_address_space_free() const; void reserve_address_space(); BAN::ErrorOr load_page_to_memory(Kernel::vaddr_t address); @@ -47,6 +48,7 @@ namespace LibELF BAN::Vector m_program_headers; size_t m_virtual_page_count = 0; size_t m_physical_page_count = 0; + bool m_loaded { false }; }; } \ No newline at end of file diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index acce6aef..18ca6048 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -123,6 +123,11 @@ namespace Kernel TRY(process->m_cmdline.back().append(path)); process->m_loadable_elf = TRY(load_elf_for_exec(credentials, path, "/"sv, process->page_table())); + if (!process->m_loadable_elf->is_address_space_free()) + { + dprintln("Could not load ELF address space"); + return BAN::Error::from_errno(ENOEXEC); + } process->m_loadable_elf->reserve_address_space(); process->m_is_userspace = true; @@ -460,6 +465,11 @@ namespace Kernel m_loadable_elf.clear(); m_loadable_elf = TRY(load_elf_for_exec(m_credentials, executable_path, m_working_directory, page_table())); + if (!m_loadable_elf->is_address_space_free()) + { + dprintln("ELF has unloadable address space"); + MUST(sys_raise(SIGKILL)); + } m_loadable_elf->reserve_address_space(); m_userspace_info.entry = m_loadable_elf->entry_point(); From 39be6ab099e5a1587e84dea848b78fc9d3dd8a8f Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 13 Oct 2023 03:31:36 +0300 Subject: [PATCH 103/240] Kernel: Add temporary terminal output before controlling terminal Starting work on getting this boot on real hardware. --- kernel/kernel/Debug.cpp | 33 +++++++++++++++++++++++++++++++++ kernel/kernel/kernel.cpp | 12 +++++++----- 2 files changed, 40 insertions(+), 5 deletions(-) diff --git a/kernel/kernel/Debug.cpp b/kernel/kernel/Debug.cpp index ed338922..3fad4337 100644 --- a/kernel/kernel/Debug.cpp +++ b/kernel/kernel/Debug.cpp @@ -6,6 +6,10 @@ #include #include +#include + +extern TerminalDriver* g_terminal_driver; + namespace Debug { @@ -64,6 +68,35 @@ namespace Debug return Kernel::Serial::putchar_any(ch); if (Kernel::TTY::is_initialized()) return Kernel::TTY::putchar_current(ch); + + if (g_terminal_driver) + { + static uint32_t col = 0; + static uint32_t row = 0; + + if (ch == '\n') + { + row++; + col = 0; + } + else if (ch == '\r') + { + col = 0; + } + else + { + if (!isprint(ch)) + ch = '?'; + g_terminal_driver->putchar_at(ch, col, row, TerminalColor::BRIGHT_WHITE, TerminalColor::BLACK); + + col++; + if (col >= g_terminal_driver->width()) + { + row++; + col = 0; + } + } + } } void print_prefix(const char* file, int line) diff --git a/kernel/kernel/kernel.cpp b/kernel/kernel/kernel.cpp index f0430fe4..3dd2a67c 100644 --- a/kernel/kernel/kernel.cpp +++ b/kernel/kernel/kernel.cpp @@ -82,6 +82,8 @@ static void parse_command_line() extern "C" uint8_t g_userspace_start[]; extern "C" uint8_t g_userspace_end[]; +TerminalDriver* g_terminal_driver = nullptr; + static void init2(void*); extern "C" void kernel_main() @@ -114,6 +116,10 @@ extern "C" void kernel_main() PageTable::initialize(); dprintln("PageTable initialized"); + g_terminal_driver = VesaTerminalDriver::create(); + ASSERT(g_terminal_driver); + dprintln("VESA initialized"); + Heap::initialize(); dprintln("Heap initialzed"); @@ -141,11 +147,7 @@ extern "C" void kernel_main() dprintln("Serial devices initialized"); } - TerminalDriver* terminal_driver = VesaTerminalDriver::create(); - ASSERT(terminal_driver); - dprintln("VESA initialized"); - - auto vtty = MUST(VirtualTTY::create(terminal_driver)); + auto vtty = MUST(VirtualTTY::create(g_terminal_driver)); dprintln("Virtual TTY initialized"); MUST(Scheduler::initialize()); From 72f3c378dd0e20885c0d64e62f799f27469c6f19 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 13 Oct 2023 03:45:01 +0300 Subject: [PATCH 104/240] Kernel: Fix PhysicalRange mapping size --- kernel/kernel/Memory/PhysicalRange.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/kernel/kernel/Memory/PhysicalRange.cpp b/kernel/kernel/Memory/PhysicalRange.cpp index 9f42ced8..9f76feaa 100644 --- a/kernel/kernel/Memory/PhysicalRange.cpp +++ b/kernel/kernel/Memory/PhysicalRange.cpp @@ -23,7 +23,7 @@ namespace Kernel m_vaddr = PageTable::kernel().reserve_free_contiguous_pages(m_bitmap_pages, KERNEL_OFFSET); ASSERT(m_vaddr); - PageTable::kernel().map_range_at(m_paddr, m_vaddr, size, PageTable::Flags::ReadWrite | PageTable::Flags::Present); + PageTable::kernel().map_range_at(m_paddr, m_vaddr, m_bitmap_pages * PAGE_SIZE, PageTable::Flags::ReadWrite | PageTable::Flags::Present); memset((void*)m_vaddr, 0x00, m_bitmap_pages * PAGE_SIZE); @@ -36,8 +36,6 @@ namespace Kernel ull bits = m_data_pages % ull_bits; ull_bitmap_ptr()[off] = ~(~0ull << bits); } - - dprintln("physical range needs {} pages for bitmap", m_bitmap_pages); } paddr_t PhysicalRange::paddr_for_bit(ull bit) const From f842a9255fc7226d15d128b7d0a63ec58ee38f45 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 13 Oct 2023 11:24:21 +0300 Subject: [PATCH 105/240] Kernel: Allow getting ACPI headers with same signature --- kernel/include/kernel/ACPI.h | 2 +- kernel/kernel/ACPI.cpp | 13 ++++++++++--- kernel/kernel/APIC.cpp | 2 +- kernel/kernel/Timer/HPET.cpp | 2 +- kernel/kernel/lai_host.cpp | 3 +-- 5 files changed, 14 insertions(+), 8 deletions(-) diff --git a/kernel/include/kernel/ACPI.h b/kernel/include/kernel/ACPI.h index 4937a6af..69905c22 100644 --- a/kernel/include/kernel/ACPI.h +++ b/kernel/include/kernel/ACPI.h @@ -108,7 +108,7 @@ namespace Kernel static BAN::ErrorOr initialize(); static ACPI& get(); - const SDTHeader* get_header(const char[4]); + const SDTHeader* get_header(BAN::StringView signature, uint32_t index); private: ACPI() = default; diff --git a/kernel/kernel/ACPI.cpp b/kernel/kernel/ACPI.cpp index ae447ce3..ab995586 100644 --- a/kernel/kernel/ACPI.cpp +++ b/kernel/kernel/ACPI.cpp @@ -222,13 +222,20 @@ namespace Kernel return {}; } - const ACPI::SDTHeader* ACPI::get_header(const char signature[4]) + const ACPI::SDTHeader* ACPI::get_header(BAN::StringView signature, uint32_t index) { + if (signature.size() != 4) + { + dprintln("Trying to get ACPI header with {} byte signature ??", signature.size()); + return nullptr; + } + uint32_t cnt = 0; for (auto& mapped_header : m_mapped_headers) { auto* header = mapped_header.as_header(); - if (memcmp(header->signature, signature, 4) == 0) - return header; + if (memcmp(header->signature, signature.data(), 4) == 0) + if (cnt++ == index) + return header; } return nullptr; } diff --git a/kernel/kernel/APIC.cpp b/kernel/kernel/APIC.cpp index 02cfa9cc..1af40d70 100644 --- a/kernel/kernel/APIC.cpp +++ b/kernel/kernel/APIC.cpp @@ -95,7 +95,7 @@ namespace Kernel return nullptr; } - const MADT* madt = (const MADT*)Kernel::ACPI::get().get_header("APIC"); + const MADT* madt = (const MADT*)Kernel::ACPI::get().get_header("APIC"sv, 0); if (madt == nullptr) { dprintln("Could not find MADT header"); diff --git a/kernel/kernel/Timer/HPET.cpp b/kernel/kernel/Timer/HPET.cpp index e660b2d8..59089e90 100644 --- a/kernel/kernel/Timer/HPET.cpp +++ b/kernel/kernel/Timer/HPET.cpp @@ -46,7 +46,7 @@ namespace Kernel BAN::ErrorOr HPET::initialize(bool force_pic) { - auto* header = (ACPI::HPET*)ACPI::get().get_header("HPET"); + auto* header = (ACPI::HPET*)ACPI::get().get_header("HPET"sv, 0); if (header == nullptr) return BAN::Error::from_errno(ENODEV); diff --git a/kernel/kernel/lai_host.cpp b/kernel/kernel/lai_host.cpp index 3b3eba9d..d7b854b2 100644 --- a/kernel/kernel/lai_host.cpp +++ b/kernel/kernel/lai_host.cpp @@ -51,8 +51,7 @@ void laihost_panic(const char* msg) void* laihost_scan(const char* sig, size_t index) { - ASSERT(index == 0); - return (void*)ACPI::get().get_header(sig); + return (void*)ACPI::get().get_header(sig, index); } void* laihost_map(size_t address, size_t count) From 1d61bccfc3a0e5624d4319240635fd3a48abe187 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 13 Oct 2023 12:43:52 +0300 Subject: [PATCH 106/240] Kernel: Debug temporary debug print just to beginning when full --- kernel/kernel/Debug.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/kernel/kernel/Debug.cpp b/kernel/kernel/Debug.cpp index 3fad4337..cf3ad175 100644 --- a/kernel/kernel/Debug.cpp +++ b/kernel/kernel/Debug.cpp @@ -74,6 +74,8 @@ namespace Debug static uint32_t col = 0; static uint32_t row = 0; + uint32_t row_copy = row; + if (ch == '\n') { row++; @@ -96,6 +98,19 @@ namespace Debug col = 0; } } + + if (row >= g_terminal_driver->height()) + row = 0; + + if (row != row_copy) + { + for (uint32_t i = col; i < g_terminal_driver->width(); i++) + { + g_terminal_driver->putchar_at(' ', i, row, TerminalColor::BRIGHT_WHITE, TerminalColor::BLACK); + if (row + 1 < g_terminal_driver->height()) + g_terminal_driver->putchar_at(' ', i, row + 1, TerminalColor::BRIGHT_WHITE, TerminalColor::BLACK); + } + } } } From 5630f64175994e734f4753a71033afa8a284b2e2 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 13 Oct 2023 14:11:23 +0300 Subject: [PATCH 107/240] Kernel: Add 16 more irq handlers IDT will now panic if trying to assing handler for non supported irq. --- kernel/arch/x86_64/IDT.cpp | 121 ++++++-------------------------- kernel/arch/x86_64/interrupts.S | 16 +++++ 2 files changed, 36 insertions(+), 101 deletions(-) diff --git a/kernel/arch/x86_64/IDT.cpp b/kernel/arch/x86_64/IDT.cpp index cb12fbae..67ac57dc 100644 --- a/kernel/arch/x86_64/IDT.cpp +++ b/kernel/arch/x86_64/IDT.cpp @@ -1,3 +1,4 @@ +#include #include #include #include @@ -8,10 +9,8 @@ #include #include -#include - -#define REGISTER_ISR_HANDLER(i) register_interrupt_handler(i, isr ## i) -#define REGISTER_IRQ_HANDLER(i) register_interrupt_handler(IRQ_VECTOR_BASE + i, irq ## i) +#define ISR_LIST_X X(0) X(1) X(2) X(3) X(4) X(5) X(6) X(7) X(8) X(9) X(10) X(11) X(12) X(13) X(14) X(15) X(16) X(17) X(18) X(19) X(20) X(21) X(22) X(23) X(24) X(25) X(26) X(27) X(28) X(29) X(30) X(31) +#define IRQ_LIST_X X(0) X(1) X(2) X(3) X(4) X(5) X(6) X(7) X(8) X(9) X(10) X(11) X(12) X(13) X(14) X(15) X(16) X(17) X(18) X(19) X(20) X(21) X(22) X(23) X(24) X(25) X(26) X(27) X(28) X(29) X(30) X(31) namespace Kernel::IDT { @@ -63,7 +62,9 @@ namespace Kernel::IDT static IDTR s_idtr; static GateDescriptor* s_idt = nullptr; - static Interruptable* s_interruptables[0x10] {}; +#define X(num) 1 + + static BAN::Array s_interruptables; +#undef X enum ISR { @@ -356,58 +357,18 @@ done: void register_irq_handler(uint8_t irq, Interruptable* interruptable) { + if (irq > s_interruptables.size()) + Kernel::panic("Trying to assign handler for irq {} while only {} are supported", irq, s_interruptables.size()); s_interruptables[irq] = interruptable; } - extern "C" void isr0(); - extern "C" void isr1(); - extern "C" void isr2(); - extern "C" void isr3(); - extern "C" void isr4(); - extern "C" void isr5(); - extern "C" void isr6(); - extern "C" void isr7(); - extern "C" void isr8(); - extern "C" void isr9(); - extern "C" void isr10(); - extern "C" void isr11(); - extern "C" void isr12(); - extern "C" void isr13(); - extern "C" void isr14(); - extern "C" void isr15(); - extern "C" void isr16(); - extern "C" void isr17(); - extern "C" void isr18(); - extern "C" void isr19(); - extern "C" void isr20(); - extern "C" void isr21(); - extern "C" void isr22(); - extern "C" void isr23(); - extern "C" void isr24(); - extern "C" void isr25(); - extern "C" void isr26(); - extern "C" void isr27(); - extern "C" void isr28(); - extern "C" void isr29(); - extern "C" void isr30(); - extern "C" void isr31(); +#define X(num) extern "C" void isr ## num(); + ISR_LIST_X +#undef X - extern "C" void irq0(); - extern "C" void irq1(); - extern "C" void irq2(); - extern "C" void irq3(); - extern "C" void irq4(); - extern "C" void irq5(); - extern "C" void irq6(); - extern "C" void irq7(); - extern "C" void irq8(); - extern "C" void irq9(); - extern "C" void irq10(); - extern "C" void irq11(); - extern "C" void irq12(); - extern "C" void irq13(); - extern "C" void irq14(); - extern "C" void irq15(); +#define X(num) extern "C" void irq ## num(); + IRQ_LIST_X +#undef X extern "C" void syscall_asm(); @@ -420,55 +381,13 @@ done: s_idtr.offset = (uint64_t)s_idt; s_idtr.size = 0x100 * sizeof(GateDescriptor) - 1; - REGISTER_ISR_HANDLER(0); - REGISTER_ISR_HANDLER(1); - REGISTER_ISR_HANDLER(2); - REGISTER_ISR_HANDLER(3); - REGISTER_ISR_HANDLER(4); - REGISTER_ISR_HANDLER(5); - REGISTER_ISR_HANDLER(6); - REGISTER_ISR_HANDLER(7); - REGISTER_ISR_HANDLER(8); - REGISTER_ISR_HANDLER(9); - REGISTER_ISR_HANDLER(10); - REGISTER_ISR_HANDLER(11); - REGISTER_ISR_HANDLER(12); - REGISTER_ISR_HANDLER(13); - REGISTER_ISR_HANDLER(14); - REGISTER_ISR_HANDLER(15); - REGISTER_ISR_HANDLER(16); - REGISTER_ISR_HANDLER(17); - REGISTER_ISR_HANDLER(18); - REGISTER_ISR_HANDLER(19); - REGISTER_ISR_HANDLER(20); - REGISTER_ISR_HANDLER(21); - REGISTER_ISR_HANDLER(22); - REGISTER_ISR_HANDLER(23); - REGISTER_ISR_HANDLER(24); - REGISTER_ISR_HANDLER(25); - REGISTER_ISR_HANDLER(26); - REGISTER_ISR_HANDLER(27); - REGISTER_ISR_HANDLER(28); - REGISTER_ISR_HANDLER(29); - REGISTER_ISR_HANDLER(30); - REGISTER_ISR_HANDLER(31); +#define X(num) register_interrupt_handler(num, isr ## num); + ISR_LIST_X +#undef X - REGISTER_IRQ_HANDLER(0); - REGISTER_IRQ_HANDLER(1); - REGISTER_IRQ_HANDLER(2); - REGISTER_IRQ_HANDLER(3); - REGISTER_IRQ_HANDLER(4); - REGISTER_IRQ_HANDLER(5); - REGISTER_IRQ_HANDLER(6); - REGISTER_IRQ_HANDLER(7); - REGISTER_IRQ_HANDLER(8); - REGISTER_IRQ_HANDLER(9); - REGISTER_IRQ_HANDLER(10); - REGISTER_IRQ_HANDLER(11); - REGISTER_IRQ_HANDLER(12); - REGISTER_IRQ_HANDLER(13); - REGISTER_IRQ_HANDLER(14); - REGISTER_IRQ_HANDLER(15); +#define X(num) register_interrupt_handler(IRQ_VECTOR_BASE + num, irq ## num); + IRQ_LIST_X +#undef X register_syscall_handler(0x80, syscall_asm); diff --git a/kernel/arch/x86_64/interrupts.S b/kernel/arch/x86_64/interrupts.S index e0634861..37bea4f8 100644 --- a/kernel/arch/x86_64/interrupts.S +++ b/kernel/arch/x86_64/interrupts.S @@ -158,6 +158,22 @@ irq 12 irq 13 irq 14 irq 15 +irq 16 +irq 17 +irq 18 +irq 19 +irq 20 +irq 21 +irq 22 +irq 23 +irq 24 +irq 25 +irq 26 +irq 27 +irq 28 +irq 29 +irq 30 +irq 31 // arguments in RAX, RBX, RCX, RDX, RSI, RDI // System V ABI: RDI, RSI, RDX, RCX, R8, R9 From cf4f5f64a528e0a1f2334eff4ec61b564b109b45 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 13 Oct 2023 14:11:56 +0300 Subject: [PATCH 108/240] Kernel: add NEVER_INLINE and make Interruptable not constructable --- kernel/include/kernel/Attributes.h | 3 ++- kernel/include/kernel/InterruptController.h | 6 ++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/kernel/include/kernel/Attributes.h b/kernel/include/kernel/Attributes.h index a8168232..159d931f 100644 --- a/kernel/include/kernel/Attributes.h +++ b/kernel/include/kernel/Attributes.h @@ -1,3 +1,4 @@ #pragma once -#define ALWAYS_INLINE inline __attribute__((always_inline)) \ No newline at end of file +#define ALWAYS_INLINE inline __attribute__((always_inline)) +#define NEVER_INLINE __attribute__((noinline)) diff --git a/kernel/include/kernel/InterruptController.h b/kernel/include/kernel/InterruptController.h index 06ed0a8a..505f0343 100644 --- a/kernel/include/kernel/InterruptController.h +++ b/kernel/include/kernel/InterruptController.h @@ -11,14 +11,16 @@ namespace Kernel class Interruptable { public: - Interruptable() = default; - void set_irq(int irq); void enable_interrupt(); void disable_interrupt(); virtual void handle_irq() = 0; + protected: + Interruptable() = default; + ~Interruptable() {} + private: int m_irq { -1 }; }; From 6b180da4e86410878df34577f36bf6c659ae4aed Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 13 Oct 2023 14:14:05 +0300 Subject: [PATCH 109/240] Kernel: Separate scheduler execution and stack loading Not sure if this is actually needed, but this allows actual executing function to be in clean environment --- kernel/include/kernel/Scheduler.h | 1 + kernel/kernel/Scheduler.cpp | 20 +++++++++++++++++++- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/kernel/include/kernel/Scheduler.h b/kernel/include/kernel/Scheduler.h index be813856..e03cdd02 100644 --- a/kernel/include/kernel/Scheduler.h +++ b/kernel/include/kernel/Scheduler.h @@ -31,6 +31,7 @@ namespace Kernel static bool is_valid_tid(pid_t tid); [[noreturn]] void execute_current_thread(); + [[noreturn]] void _execute_current_thread(); [[noreturn]] void delete_current_process_and_thread(); private: diff --git a/kernel/kernel/Scheduler.cpp b/kernel/kernel/Scheduler.cpp index c33fda57..22ba59c2 100644 --- a/kernel/kernel/Scheduler.cpp +++ b/kernel/kernel/Scheduler.cpp @@ -7,7 +7,10 @@ #include #include -#if 1 +#define SCHEDULER_VERIFY_STACK 1 +#define SCHEDULER_VERIFY_INTERRUPT_STATE 1 + +#if SCHEDULER_VERIFY_INTERRUPT_STATE #define VERIFY_STI() ASSERT(interrupts_enabled()) #define VERIFY_CLI() ASSERT(!interrupts_enabled()) #else @@ -202,6 +205,7 @@ namespace Kernel delete thread; execute_current_thread(); + ASSERT_NOT_REACHED(); } void Scheduler::execute_current_thread() @@ -210,6 +214,20 @@ namespace Kernel load_temp_stack(); PageTable::kernel().load(); + _execute_current_thread(); + ASSERT_NOT_REACHED(); + } + + NEVER_INLINE void Scheduler::_execute_current_thread() + { + VERIFY_CLI(); + +#if SCHEDULER_VERIFY_STACK + vaddr_t rsp; + read_rsp(rsp); + ASSERT((vaddr_t)s_temp_stack <= rsp && rsp <= (vaddr_t)s_temp_stack + sizeof(s_temp_stack)); + ASSERT(&PageTable::current() == &PageTable::kernel()); +#endif Thread* current = ¤t_thread(); From 45a6783c3d4dba9f9ccbc9630d8c14b179e69f34 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 13 Oct 2023 16:18:22 +0300 Subject: [PATCH 110/240] Kernel: Cleanup GDT code --- kernel/arch/x86_64/GDT.cpp | 46 +++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 25 deletions(-) diff --git a/kernel/arch/x86_64/GDT.cpp b/kernel/arch/x86_64/GDT.cpp index eb04d2c0..0637cc28 100644 --- a/kernel/arch/x86_64/GDT.cpp +++ b/kernel/arch/x86_64/GDT.cpp @@ -1,4 +1,4 @@ -#include +#include #include #include @@ -56,44 +56,44 @@ namespace Kernel::GDT static constexpr uint16_t s_tss_offset = 0x28; - static TaskStateSegment* s_tss = nullptr; - static SegmentDescriptor* s_gdt = nullptr; + static TaskStateSegment s_tss; + static BAN::Array s_gdt; // null, kernel code, kernel data, user code, user data, tss low, tss high static GDTR s_gdtr; static void write_entry(uint8_t offset, uint32_t base, uint32_t limit, uint8_t access, uint8_t flags) { - SegmentDescriptor& desc = *(SegmentDescriptor*)((uintptr_t)s_gdt + offset); - desc.base1 = base; - desc.base2 = base >> 16; - desc.base3 = base >> 24; + ASSERT(offset % sizeof(SegmentDescriptor) == 0); - desc.limit1 = limit; - desc.limit2 = limit >> 16; + SegmentDescriptor& desc = s_gdt[offset / sizeof(SegmentDescriptor)]; + desc.base1 = (base >> 0) & 0xFFFF; + desc.base2 = (base >> 16) & 0xFF; + desc.base3 = (base >> 24) & 0xFF; - desc.access = access; + desc.limit1 = (limit >> 0) & 0xFFFF; + desc.limit2 = (limit >> 16) & 0x0F; - desc.flags = flags; + desc.access = access & 0xFF; + + desc.flags = flags & 0x0F; } static void write_tss() { - s_tss = new TaskStateSegment(); - ASSERT(s_tss); + memset(&s_tss, 0x00, sizeof(TaskStateSegment)); + s_tss.iopb = sizeof(TaskStateSegment); - memset(s_tss, 0x00, sizeof(TaskStateSegment)); - s_tss->rsp0 = 0; - - uintptr_t base = (uintptr_t)s_tss; + uint64_t base = (uint64_t)&s_tss; write_entry(s_tss_offset, (uint32_t)base, sizeof(TaskStateSegment), 0x89, 0x0); - SegmentDescriptor& desc = *(SegmentDescriptor*)((uintptr_t)s_gdt + s_tss_offset + 0x08); + + SegmentDescriptor& desc = s_gdt[s_tss_offset / sizeof(SegmentDescriptor) + 1]; desc.low = base >> 32; desc.high = 0; } void set_tss_stack(uintptr_t rsp) { - s_tss->rsp0 = rsp; + s_tss.rsp0 = rsp; } static void flush_gdt() @@ -108,12 +108,8 @@ namespace Kernel::GDT void initialize() { - constexpr uint32_t descriptor_count = 6 + 1; // tss takes 2 - s_gdt = new SegmentDescriptor[descriptor_count]; - ASSERT(s_gdt); - - s_gdtr.address = (uint64_t)s_gdt; - s_gdtr.size = descriptor_count * sizeof(SegmentDescriptor) - 1; + s_gdtr.address = (uint64_t)&s_gdt; + s_gdtr.size = s_gdt.size() * sizeof(SegmentDescriptor) - 1; write_entry(0x00, 0x00000000, 0x00000, 0x00, 0x0); // null write_entry(0x08, 0x00000000, 0xFFFFF, 0x9A, 0xA); // kernel code From c7b6fc950a0c2ec8447e5e8c7a5d5c47c8bf6cfe Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 13 Oct 2023 16:32:32 +0300 Subject: [PATCH 111/240] Kernel: Don't crash if header type != 0 in bar region creation Also remove spammy debug printing --- kernel/kernel/PCI.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/kernel/kernel/PCI.cpp b/kernel/kernel/PCI.cpp index 68b73f1f..3100ca09 100644 --- a/kernel/kernel/PCI.cpp +++ b/kernel/kernel/PCI.cpp @@ -190,7 +190,11 @@ namespace Kernel::PCI BAN::ErrorOr> BarRegion::create(PCI::Device& device, uint8_t bar_num) { - ASSERT(device.header_type() == 0x00); + if (device.header_type() != 0x00) + { + dprintln("BAR regions for non general devices are not supported"); + return BAN::Error::from_errno(ENOTSUP); + } // disable io/mem space while reading bar uint16_t command = device.read_word(PCI_REG_COMMAND); @@ -390,11 +394,9 @@ namespace Kernel::PCI { case 0x05: m_offset_msi = capability_offset; - dprintln("{}:{}.{} has MSI", m_bus, m_dev, m_func); break; case 0x11: m_offset_msi_x = capability_offset; - dprintln("{}:{}.{} has MSI-X", m_bus, m_dev, m_func); break; default: break; From dafc016293a956d47cfd190404715d6532f2a80e Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 13 Oct 2023 17:20:26 +0300 Subject: [PATCH 112/240] Kernel: Clear TTY when setting as current Actually this should replace from old buffer, but this works for now. --- kernel/include/kernel/Terminal/Serial.h | 4 +++- kernel/include/kernel/Terminal/TTY.h | 4 +++- kernel/include/kernel/Terminal/VirtualTTY.h | 5 +++-- kernel/kernel/Terminal/TTY.cpp | 1 + 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/kernel/include/kernel/Terminal/Serial.h b/kernel/include/kernel/Terminal/Serial.h index fc6032a4..4abea34e 100644 --- a/kernel/include/kernel/Terminal/Serial.h +++ b/kernel/include/kernel/Terminal/Serial.h @@ -43,7 +43,8 @@ namespace Kernel virtual uint32_t width() const override; virtual uint32_t height() const override; - virtual void putchar_impl(uint8_t) override; + + virtual void clear() override { putchar_impl('\e'); putchar_impl('['); putchar_impl('2'); putchar_impl('J'); } virtual void update() override; @@ -51,6 +52,7 @@ namespace Kernel protected: virtual BAN::StringView name() const override { return m_name; } + virtual void putchar_impl(uint8_t) override; private: SerialTTY(Serial); diff --git a/kernel/include/kernel/Terminal/TTY.h b/kernel/include/kernel/Terminal/TTY.h index 5b876a25..b5c87749 100644 --- a/kernel/include/kernel/Terminal/TTY.h +++ b/kernel/include/kernel/Terminal/TTY.h @@ -38,7 +38,8 @@ namespace Kernel virtual uint32_t height() const = 0; virtual uint32_t width() const = 0; void putchar(uint8_t ch); - virtual void putchar_impl(uint8_t ch) = 0; + + virtual void clear() = 0; virtual bool has_data_impl() const override; @@ -47,6 +48,7 @@ namespace Kernel : CharacterDevice(mode, uid, gid) { } + virtual void putchar_impl(uint8_t ch) = 0; virtual BAN::ErrorOr read_impl(off_t, void*, size_t) override; virtual BAN::ErrorOr write_impl(off_t, const void*, size_t) override; diff --git a/kernel/include/kernel/Terminal/VirtualTTY.h b/kernel/include/kernel/Terminal/VirtualTTY.h index 3f3fdbf4..e8b7a117 100644 --- a/kernel/include/kernel/Terminal/VirtualTTY.h +++ b/kernel/include/kernel/Terminal/VirtualTTY.h @@ -21,15 +21,16 @@ namespace Kernel virtual uint32_t height() const override { return m_height; } virtual uint32_t width() const override { return m_width; } - virtual void putchar_impl(uint8_t ch) override; + + virtual void clear() override; protected: virtual BAN::StringView name() const override { return m_name; } + virtual void putchar_impl(uint8_t ch) override; private: VirtualTTY(TerminalDriver*); - void clear(); void reset_ansi(); void handle_ansi_csi(uint8_t ch); void handle_ansi_csi_color(); diff --git a/kernel/kernel/Terminal/TTY.cpp b/kernel/kernel/Terminal/TTY.cpp index c25f7c38..de2ed755 100644 --- a/kernel/kernel/Terminal/TTY.cpp +++ b/kernel/kernel/Terminal/TTY.cpp @@ -27,6 +27,7 @@ namespace Kernel void TTY::set_as_current() { s_tty = this; + clear(); auto inode_or_error = DevFileSystem::get().root_inode()->find_inode("tty"sv); if (inode_or_error.is_error()) From cb65be3e3304c7c504d287347148a03e28f56180 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 16 Oct 2023 01:37:12 +0300 Subject: [PATCH 113/240] Toolchain: Build grub with efi capabilities --- toolchain/build.sh | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/toolchain/build.sh b/toolchain/build.sh index 5b351eea..1b9ec77d 100755 --- a/toolchain/build.sh +++ b/toolchain/build.sh @@ -3,6 +3,7 @@ set -e BINUTILS_VERSION="binutils-2.39" GCC_VERSION="gcc-12.2.0" +GRUB_VERSION="grub-2.06" cd $(dirname "$0") @@ -74,7 +75,7 @@ if [ ! -f ${PREFIX}/bin/${TARGET}-g++ ]; then fi mkdir -p build/${GCC_VERSION}/ - cd build/${GCC_VERSION}/ + pushd build/${GCC_VERSION}/ ../../${GCC_VERSION}/configure \ --target="$TARGET" \ @@ -87,4 +88,34 @@ if [ ! -f ${PREFIX}/bin/${TARGET}-g++ ]; then make -j $(nproc) all-target-libgcc CFLAGS_FOR_TARGET='-g -O2 -mcmodel=large -mno-red-zone' make install-gcc install-target-libgcc + popd + +fi + +if [ ! -f ${PREFIX}/bin/grub-mkstandalone ]; then + + echo "Building ${GRUB_VERSION}" + + if [ ! -f ${GRUB_VERSION}.tar.xz ]; then + wget https://ftp.gnu.org/gnu/grub/${GRUB_VERSION}.tar.xz + fi + + if [ ! -d $GRUB_VERSION ]; then + tar xvf ${GRUB_VERSION}.tar.xz + fi + + mkdir -p build/${GRUB_VERSION}/ + pushd build/${GRUB_VERSION}/ + + ../../${GRUB_VERSION}/configure \ + --target="$ARCH" \ + --prefix="$PREFIX" \ + --with-platform="efi" \ + --disable-werror + + make -j $(nproc) + make install + + popd + fi From 6b1b3d333c8a91f95fd7fdc25221839d0ad32c7f Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 16 Oct 2023 01:37:57 +0300 Subject: [PATCH 114/240] BuildSystem: add cmake variable UEFI_BOOT If this variable is defined in cmake, image will be build with esp and booted with uefi. --- .gitignore | 1 + CMakeLists.txt | 14 +++-- base-sysroot.tar.gz | Bin 8220 -> 7984 bytes image-full.sh | 82 +++++++++++++++++++-------- image.sh | 10 +++- qemu.sh | 9 +++ toolchain/local/grub-legacy-boot.cfg | 23 ++++++++ toolchain/local/grub-memdisk.cfg | 2 + toolchain/local/grub-uefi.cfg | 26 +++++++++ 9 files changed, 138 insertions(+), 29 deletions(-) create mode 100644 toolchain/local/grub-legacy-boot.cfg create mode 100644 toolchain/local/grub-memdisk.cfg create mode 100644 toolchain/local/grub-uefi.cfg diff --git a/.gitignore b/.gitignore index 9c177a55..fe19aea9 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,5 @@ base/ *.tar.* toolchain/*/ +!toolchain/local/ !base-sysroot.tar.gz diff --git a/CMakeLists.txt b/CMakeLists.txt index 4c3056da..5803ea0a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,6 +22,10 @@ if(DEFINED QEMU_ACCEL) set(QEMU_ACCEL -accel ${QEMU_ACCEL}) endif() +if(DEFINED UEFI_BOOT) + set(UEFI_BOOT 1) +endif() + add_compile_options(-mno-sse -mno-sse2) add_compile_definitions(__enable_sse=0) @@ -67,7 +71,7 @@ add_custom_target(libstdc++ ) add_custom_target(image - COMMAND ${CMAKE_COMMAND} -E env SYSROOT="${BANAN_SYSROOT}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" ${CMAKE_SOURCE_DIR}/image.sh + COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" SYSROOT="${BANAN_SYSROOT}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" TOOLCHAIN="${TOOLCHAIN_PREFIX}" UEFI_BOOT="${UEFI_BOOT}" ${CMAKE_SOURCE_DIR}/image.sh DEPENDS kernel-install DEPENDS ban-install DEPENDS libc-install @@ -77,7 +81,7 @@ add_custom_target(image ) add_custom_target(image-full - COMMAND ${CMAKE_COMMAND} -E env SYSROOT="${BANAN_SYSROOT}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" ${CMAKE_SOURCE_DIR}/image-full.sh + COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" SYSROOT="${BANAN_SYSROOT}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" TOOLCHAIN="${TOOLCHAIN_PREFIX}" UEFI_BOOT="${UEFI_BOOT}" ${CMAKE_SOURCE_DIR}/image-full.sh DEPENDS kernel-install DEPENDS ban-install DEPENDS libc-install @@ -92,19 +96,19 @@ add_custom_target(check-fs ) add_custom_target(qemu - COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" ${CMAKE_SOURCE_DIR}/qemu.sh -serial stdio ${QEMU_ACCEL} + COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" UEFI_BOOT="${UEFI_BOOT}" ${CMAKE_SOURCE_DIR}/qemu.sh -serial stdio ${QEMU_ACCEL} DEPENDS image USES_TERMINAL ) add_custom_target(qemu-nographic - COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" ${CMAKE_SOURCE_DIR}/qemu.sh -nographic ${QEMU_ACCEL} + COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" UEFI_BOOT="${UEFI_BOOT}" ${CMAKE_SOURCE_DIR}/qemu.sh -nographic ${QEMU_ACCEL} DEPENDS image USES_TERMINAL ) add_custom_target(qemu-debug - COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" ${CMAKE_SOURCE_DIR}/qemu.sh -serial stdio -d int -no-reboot + COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" UEFI_BOOT="${UEFI_BOOT}" ${CMAKE_SOURCE_DIR}/qemu.sh -serial stdio -d int -no-reboot DEPENDS image USES_TERMINAL ) diff --git a/base-sysroot.tar.gz b/base-sysroot.tar.gz index 310827bc1185cdb2f1d4c34ea49b64d5a46d5c60..f30cf5e6f2489fcf458c0254f1016e1c1e004b26 100644 GIT binary patch literal 7984 zcmV-0AJ5<)iwFP!000001MFN4d{otyzXo>d`kNn3ZM&T=ER4Wt6@@pMWHRCy6m4s@ zwOX~diuw}B6ZApS1mdfV!-zD+k6J{6U+r!b@dFVRLFG%+d3AQ%j)Cp&X0uHiv$MOg zyGtQmx0u~d=j{L9``(-P1_a%oiM7lb{_no??tS;`oO|v$cP2C}TEa$~6i{t#tw=$o zskjeUSJyC~< zm9qTDf*P03|HF}gxC&MvD&!w2um3S2F8_s1txK2GFK!&IHn@PJ)zwFle@%(}tCU)- ze`T~fTQVq|NVad6S2Pk8SM@p=l)-FOVg+y0E;dD*x&ysQSAQVh~@uB%l`jZP|KKo|96<& zj~f3~hs*LG3lj2gZJgiIIC`UV?f>s0|7fZGujTPy`TTG6iN}0RWzYV&rKO9T$L9Or zWBY&d`+sgH!b&7s{{DANh`ZRM-GBsN$)`K5>^>Y6cVvY*4a6@ z+H}TzzNjWLx)MutU3cb5F$}J;%zmWn1$=Z?nOu`NIbX?GCL2(+42$Wpw*G7zbXyhW z&^wj)6bSI1GA&MVjaR7T6R491mSu)m z>IR$aM>o-*Ax$@QZHNtHdK$C>%N!^aFi@5mIyBIo;q#cuWb~M5PepxbKHG0h5&*(XQbS>QyQgpf^`R0}#l%yTD`YS(v}dTC49J;}*vAa6AOQpVpt+X^ zDPnFo8U6(1I;g4`e?RB5U3~uic${q$d>-=@)74?#U#t{9<0FHr-ln0y3Tqbq^fNgD zgDRhZAzq)VF64@kzL+cZ&sqRa4)uu3JNDAl}={Ixcj z8oWM?zrdAMOn`ij{y@kNDhu*#lA;VM$|T1Ya|VyZ8t0T{ycz@gUTti)317^yYhe2Za2!xZhBfLW2Rl@CRfX(`BkNnWBC%F99nxvNDw#V{rXC#PzGK zUnqv?51*HSl^R)@^8N_<+w-Q!Vtn*<`asViyss)*>%FY?9<$09pY!n!L%e*tvF@^& zp8k}ajZA^@?TXs~A$A4hSTL*(r~iRU+oyC#wH>CKDs`~7*VG7|hjYiN1@eo=nENO}H2!5?vg@SJ_{C->i+bsQWv-H2s(tqnY?8C5X=(?c}XDxei z@U=aZyK^f!k>QLY{Dw&T5ayx)$p?H#~6U_0$iQ83+^OQmwD+jFUvxzruG)T&(SJGoSQ zF7@49YIQDkXD)SDF7+IpLQ`oPO{Wl@N~h81=yW=RX3&{*7R{ttq)?cuC_>d#Ls6=w z7@bYC=^TpFxl~7U=sY@~=F$apA$^{{KwqSb=u31lU6Nb1iM~uel^ZR73A@e>m*OGZZnd`{xAagyL50LpFnGccqFqw~#`2#Y4NakOX z`BxCb21-9l>BlI&fpRN1ryr;EMoK?H=_e`u6s4c0^d?F_L+QE0o?r>7A6`Md{s?-b3kEDg7E9?7W?F9oqp&cpaqK z@iNkt05oFV55R9j`XB%;SjX=n`E}5ab(?|Rc>fNR*#YbX|3I$eVchP*?H#!e=*znA z=Q>d7x(&GwXi~>3xP2to@k1oH=Q?;zyK)^*Be_4<@c{BSvTj??%rI=-S(M0p7F5a+#>v@=!=!Lip&i}T6ws>{yxi}=gW?Bd*q<^hBA zdP0)ZjvXfoQU@C}9d1ka`Z+#dkypDP@%gz|F{m^|_q*~f&%$;vm@6(TCBKiiIbk9X z_e6Q&B{`hs!$>|^^l4a{#|3KNBa-{gwO3t!q}u!XiVX$$_=_asChHy(7jeG^K6}L8 zmS&W`hz|O>D+_lz-8GQOXtU*WJZTe=PJ+jL+|!H8;l-U-V{RVatQzzC5J<}T5s&c1 z#d|0akH=-yY$kh&WN9vA#WyNse4Vl<1K}dV&x|!0ftZX314%ny7S9wM z-WT`ze0F)i48#3AKI2qCaGZDLBP#F8XNvU~@V*>#vHgTApWi3(zTfb6-8Ev1x5n$U z7NpNTde;P~)&f=YhWejU@d4^MDxY=%(sa8 zOiot)Lx&3dSi!De%(ZL2#rV`>|E&C;frNj8lh4OE`DM&wzj*!pn8cZ1=%vSgVHcR- z6Ql{1LwTtHR{27-};g?*wbQJOMakJdc+NG+Tq| zXNM7Nyww|i{%0?E&U3Tt=Al0xo>%ALb#H!5k5zi|*__4MEMYp{*em&>{owl#Z(p7p zHWcjk-8^sK&GYu$Jl{6l`yYSb&GYv?`ymR>m~U@zPf8wo_nLVB+1VSciZh{O4`emw3jKVzqGt%K&OX)x{n z^0lM$lUZv4p@4Ti#pgb>@zF;&J~UVMKd#%SW<`qXy?WIBpy2ZrcR!}ZF<$#DH$HdA z#vL2y7L7xR&%@mlRzlLhNLu*;#r=xmkGXbc-hFAH>&;^5C(X@rRrt&+V2PGboM;`) zIW4#<@T~7Z%x%d;|LkKshcJ4**Jf6{kuZIRpX}>&Nd^$&| z_3#DXAy27VWsc|lL%xECuXWzH^X>QT_TTa3zf;nmcbt4GA!dKe6>!BjoRY5nCZMcP z-2SrtJs2l$aNPSnHz01F8yt^6z)u_9yzb5Chs>UQ{>sGV(8uEcBX$63|3!Ol|ADvX=6QP_|3cRfEAR0iugLtW#D z)Tu-ZfJUG*v^lgTln)g`6K6~Sp9yKFhGv{LgJ?G++5@}_JOMlfyaKE}fhZUxIt5UG zsizQ~iu7z?HZUnTB^X8e7r~tszpOY=5yAarVD3z!^JjKffI|&a00jsG*8?~3T3IJ! z!4rZN!EwRy!9NN5f*%W>82r=VNx@mc8+eOoeJU^wm=1)1Q-RaiHnyW;cg0UDJ{zn; zxzFL*>A)H6(%@$>rWv?DlkKhebL5@Ho@JH6PXtd6elmDL@MPr9WYh6{7P~O`X>bb4 zhJh*|0#pMvKoqD2V!+wJY!*f7b8r_2&SmFebal9!1Dpq(56lHF04@YR4}1amB5)D# zCE#M<5_SgW@5{LR3UDd#Rp2tQKfLj0q_%?7WupCIRX_%qgaF=BLkowf%XQ%EBK?CvRM?e}dfgb~} zvl*C$4DS9K_#5CSz)yjn0a@S;pc~i=>|>SCmcPZ_&w;-K{vP-Tpa=LzpcnWj;1@t2 z&=33)7y#bnI*fiiiu5sH1F#u$vysmi>U|PvJ<_LgQO#!|2G;-KhW<0j(+}MRUHjim7f1cqvikqYfLCQeq8zd zpOw%5y)^pg|COHV%IE*(^Z)Ys|A%(|uPWv9|MK~N`TW0p{$D=-x2b&o?=>mq^Z)Ys zfBF3XkMjIqL=P_2IPCWzfs)^AWwppB+kYfs?oS@D|BH_5F)Mfn&)g9aR4YLLYj-xsVF}vlINN|$I)-K%X=Q7cGbF3e8)bmWQhb@X_qf#8Wh;%2Ai*3>$OjE zv%&f};LJdqd%y7W{jAGyNtLrnJfX8(4vNI zlO~~*Qb6JMy}%NAv<0CYi^{X2tKe#3O)JtS>Yh!kJXQ}!0blr{dVB#YzVL0Kq6P#k z^+8TO969-``bQ7V0j;Yi?)v@BA7JPcE) z!Q80(J)OhxnEJ_O!fb|@m$A>sY;=5Xvbx1a{wK1%^8NZ*>-Bf44|P$^A>HYv=T!$c z?G*1F?ELax{U`bR2-$wRn_nSd-{a`b-uHRjACf2%m&`i+CUtJ1{$e-J6ZJjq*yMgz zAN0}lW)`#YwP75D`uiH`%*OF)2chxbAwOngdu9hgoSq81-Z~C9@XcBth`jroNc}g84sHezBcMs`|GMQPqCvA46S#g>4V^{!8WQ z|HIb(4dqz}sp)@?zto&Bb@yb#^_RqU7zW%w;QCjwKgzcbR@=Uq&HS(G{9-$mOxyIL z-JbkA?)l>UnH@dtjGb05ki34_{*J#l%%+t;%JuJRe@txC`7{5o`aX|sy?^|@uD6eE z%C9_)PK*m9(vv1Pg@(S{Wgo4)%(qocL>t_9V71) zr29Kg{#{t@-z((Dg{%LYCqF4j1DKFI6neW_5Yy=f zA8*~)s}+Nxw3@+lvgX)C>?q^(xx^lk5b2rZCw&P$cfxmxYS@jn22JD4rEqV``VKZ=}Qj`BLeu^=V4 zV9gxFxJZ~=G? zxDZ?f)`E-We!4#)_FB3F$-lyS6JoCeuLoCxtH64BBI@Lgh`kxy0j{RrEgnQY-h_Q_ z2Dg9`_#pTYxD9+5d<5JMJ|+^Vue-#ymcNJ_ImrA!0ug8?f%jA`SZ|u(yK; z!Oy_M;OF2M;Fn+&JOUmCzXFee$H5ce*I*|IkWXvNF1m6QL#YWY+rbeaNlUEj!15T- z3Fd+n=)wAKdPaizU;$VN7J-w&sbCpc0Zs>JfiuB5;B4%B9+u~W)!;&~7OVr8A?*!V zUO{ni6hKrQ<;Styt#3JHT}y4+g*{a03{@wp+oCh~I?eb6^YN?*Z=v zEkLyV24~+!F{B=b<>BB+a1<@6#bP;|dJQ-hbb&ea#(=bWSRMzC2Pc4&z$xG~upF!e zXMlc?0q0T;V82yZUI5mBi@?R;5^y=vF2(Xnii7pwYVa1UpMx{L9?Q4UF(7^omTw0e z!1dsrU?X@JcsF=Iw*3IujQGu1J`V;Fe=jJ2-N@q);1Te2>kFl1t~>vuR{qY={Ev$l z*PH)war5^-XC%~{|B*fxh<3F_9c{3g3sQ%HvYJ9{cR3#09Z=eX$Y$E#QmI@j1^w*^ z$}W$LkBkKUed)eFWp65tlr{yK`I!atl|6z`j?-ta;(wlW<-R`-^1s@#auph^j^~~9 z=byA8C_Q@5U8SH8q2HX(x^;cd`5<(p$I~4_JahvqJs#V>mO4oE6f4D^c<5)x#AIc1 z!loa{*uFECPr=M>$@X`*UzD%p7sZ>~DKDciQW?nS8;Pv{4Q=qQU4_ohLpV2xol`S9 z#5&qwo^K_n3CkOte+t_6287xhSRLv66JA|H*)d~B@pY~I@WLONZ@M`IH-4Cdrl8CBZghi&_-)dt%+PEGoO zYlBIF6o#SSm0nuf;7z7Fmc^&Bw?boM@p-?{+TfhNrje~1Kz#p2<4C*L$@L9Vm`WS$ zsQFBNq^8sc=b{Ft$FgH7u+au{+t&s=(qN+v<~F%j`PgIs&~BPCmL`o=!O;fedS*#k zkjDe$Io1+JGBFV?@Xue;r4fey~%ziw7CQW&xUU{Q_d0zf39p}%kZ>=_%4u=Mlqsebg*cv@De04C> z2Gb14)Sq+vb^GmJlFcfq*AmnIb5rYA>97%)gii7KFgA?uwXL~IU zw(8)T&#-B!qg}1-rkux<+g4WmNX^uh9y7>18kf zvX_62_PF*ub(U6$$SZs}YlYW&GxzW?OXqVG^ZAPP{u|lajghU>CzF#b|GklIkFCnm z_j&Eu&T(wR-pIE5?_=rvBD+Q#tR{y)7;SJcy*9Y`bl0%es;lbK?+>ac9kez$I5=%E z-DzDr2)H(QC>%-_-TU)@TN@nIXoCZ#4R$VHQEA;Kqw?JM2f7}v9S-?pl}}8q4W7u_ z2Y?;jb<>;kKR4%pZqEPwzdir+hJkDHo3A}|zW_#GKL`5zf6JHB@4qbxo4@}&Gr|1C m`itlH|5h&5zyH_#{l{i#hGuAnW@v^(7XAfZD*!_Ppa1~$aeb!% literal 8220 zcmaiYi8s{$_rE1nh~5+$45@4}S+Xx>EwV&K_N`awOzDf9jZtt5%H#+^*KogK}t^H{rkcfZ-ybap-@x|#U}{BX-#zEZWd>$-DD z($=-KoKaq1Fgw@H_#{;k%&{1o0S}|VQqV7KLD#A0m-Z2b@5pT%65HkzDv^4J`)jt< z_upzZ_*+O+1Fc>)H-W*=1>`fSz|>kNps9=Q%FL8Ew|mLVqM&KYOlT=tlXYN!h5$Ds z+|s2&a}jd>cVVPZk{%HM^KaJlHHk`VJ_O0_6Vd`{k?ex2II7Me46cj+sCrewOAR*B z&gp4EH2QsO%nrA?!n`5jv7I;5(p(xapE>z;ujmeNwGv7l&HC`lU?cV5%L}+0QjFX< z)zt6_0Z(DP-p~-x_)&tnwN+AGA6EQOwgF;!tQLpSK7D>NL1j~VYBk)sSw6nVl&jFz z_4kZa)6k-EkZE4P@w>0>8*n2k-y-zJER}i6B@+*qE-7-G04I~98~jg(sBAGiVt-LA z4rdT3Zr2rRu_XNz+PsTyN`;4gB)c^*Leuup$))6%giJ@$s(w3l0jZ=6u~hMf?z&N! zrp_T90JGUN;Ka`67Vh2|J4Oyp`vaN@c9wujjkt&}3kpbG%Vy!}4`WVL6i?BxHb8t4hy`h|vik1=Q?Wa4!Y`@dNfNq% zyczJ`KAbWdi%)>Lr=xKP?megA6X!f%>gU&?_uH7@GU`OrCvMH+G6CG^x&Aw+9RzsNacEy0dqx4jZ8GQP8db zyC@_pTVD77_GEF(Y7v-R41S%c)*%M72;)yDI|l$Hi5zv3J2-ZROG1ue40iLh|a_UPp;IGmH(yP zlQqPH0~4wTsk$nE1u(dLZQb)*Lx8_w{Pp(0vzb^o(Ekgm7y>=_tBCK5_C{mi4RL}Q zh;#_-;M|7cz*DZON+LX6gU<*x-<=Oucu>+GSrGr$zaLpW;dW_4^#`DJy1ab2Y$tDG z!KBM*sqKF&FIl%t+ZMakNBU}*tMq9XZC`ncp+9l@d#>L;`So`CASj%*^L6EUPW{8M zrP%^CCl2|&aB%&$sod{o$K6tY)8g=g>T1u`!8iTI+nt;3lc-KC+kSu6 zxBdL4qEa3hY;f6D_7DA~@LL6Hf}u<8T#@6)?N=Dmw{z|-2sk#f^Bc{kT%sJkn3QG4 z7xp?-)P7Hp9#K*IT4K1!tuA6Fp{2Asne;6_J9Yoh6L~*N#M!uVF6=U~x%hj$$*<+h z4LKVk%|kijaf~s!UR| z{hHRVt%C#k0*6IemTq3IvyGzKqLJWhJC4#}$O#eYI&+<#HIw9o=#H&B=k=5K9KY6@ zCfSF4df)yCojT_D`DTaj=|H3Gn4?mzoKT%A-%0-24=?wxYb{oHW#-k=`_D4Uh4f^ljc=5A+&Ucqxpok;CNUR)j{5=%S+KwH&!=3l9IXc%BhMmcKIag!%S6&HE( zXx^@>(7gmF>&DyXMM|}GMt22*>Zn2RAIg$t4b5MtyumHzO_v?5z{2l^Kuz`Z@l7^^?B)@qN&C`||3$QyS3# z)>U(ruLnO8E=JY%Ud^lIt==+qaPz}{%6{Yi?uO1cVgCAcPTR0e)zifmCI0&$?Wl4V z9v-1v;$y)b(n-VpI|d**s5zgoC2pQ+VNW8mDUmnG0E{^L^h65JQ#z(cZ6lenR;qaP zCGq&+>?`Bv{!Z&=zHoq>u;%;IyJn@36i-E@WTV*ef-?z+N7FG39)VgO1@B(Zk?%UE z60Lf+3AnpRa1%aB*==YeSMbBaS^pl{3IFU(dJy`)!JKEUp6%^ZtQ?O+-xGQ75M-!Z zx}cG#;RgISvR+(h@SrX(3*RY;M@woNVsD>WOTXhiZ+bsbobrMcRn_P>>Un?@>uJr* zuL zUDTKkD`oZ$L!Kt~mfAq=yZ`+)ck=$8_yAM<@*g!5ADtE@s zr*Yp;WaKLipHAH5Rli$&+P+(Flwvo2s{9mr)WBJwR91ZNzVX`+MQ47z+Ag&Be;)bK z+H&B_}B`b_IW3r|z^xU6mm29|++>>N<_4S)C{m z6`;Y^gbL(fYfOc|(@C1Y_{*kLf902fDgMGQ15-~l>%z6BZBtKX*tO?JHXR3DZaWQ3%d7(Lx_ z(NondbrwD0Es`_c3D$$=|9YX<@t~AT^yI(2owj#%9Y*vihf0s?PhY+*r+w4Y3XXzb z{9IvXFk#$>uo65LF-0X*4JD9Zhs%}c%EXq0MOBlj&1u&tglA{+o}U#Yf1 zuFo5e|1NKIjlm@T+^U$r)V);WKKf;`JY0B6oC2x#s;g%mxuTgLWc4(kuiq%6Fj)?C z=SLQ_iT~h;GdOI)njd0$?Tdvk(ci2U`ci>0*6Zxm`r3&Xa?-h`O&G5)UW%EMOIqR3 zM(PyKLdN6vO%^@J)Hi>0OsUB}b06qmg`^!LcLSeT4Op{;zOL?&FcN{pUkRDZh*8Yl z0Y5H&e2FZ?uPP?UMc^|;FY^)0Y> zqV+q^S~6xJ0-1&X6NRE_hTtDG$T5lZ_Om* zO_z$s7Sr5EJs>;H903$2eP|7z13Tf4%ypT$+AP^S9cK=(X*Vs+>*?0O=dIkuxAt>w9&JkP-z{9gJwB54(|rt|e05^^E~#X!myI>mUO^=-^lA5Y z^^j!+TYv!bL4Ow1LMs=B{~lsg21^oC{_SS^EA?xT@(PdX!V}S2<<$za&Z79oSGnX9 zgKk`2PV&5CAuZEOmR7ZW64z9b+_GU7pGHZCu>0T36LDRN!2u#QlEipPRuA+ zbdqb_@P>ofVYi;9HN|(ZIE5eLH?fVXFFc#?{SAi!&z>~+joGjNxLa7xT)GmPF<^UC zL8Hx|F!4PYS7Q8q)j#W5?5U|Gy4bN~Pi1MF;Fqbetl@QI^Qd7Vn&&!v*D|1e zSnnmYWB-+$13gTle@k92et9`1Z?fNC)d_NaF66sne*P8LZol(kxBfNcOBk)7=61+C z$#zG|@4#xbWBv~Om!HSTJ5D*Kks9Tj|9+v7y1kZ^&8DP$s~7%!1jltaL<_4cMJc-@*rhf$s-a@(;dM!&Yq0idSW&?;?I`*p=zwd(-HXdyg>8aHp3NQn9e?elilgtsq;hUtGa zp#DMczukdFz6#Afcw;0~J@dvs)B~0uMAJ+%TT5hm&~DuMR(`|>rnxWS!SuT8zZ@D@ z0I}Dy$K)|K;tRV?h;i9ZMfZdoV=b=jA-_ioP69N1J1C998FmRqi-=B)P~`haD*kgaDt1rvNh4bTX5me^vH-V(^L+u!(UQ09|m6WH)B|MQ{I^HlC)R4zJDK zlH6^{X)a)h*}8EQpyEa6b+d+D;gSLm@#f*}q-=x7_7-i^W2n8vyDS(?FkoO-IFdqe^5+6Trbsfsje(KdaYjUD7HC7%< z<)MZo)m`!)!Q8Zy8mHsN{AVXx!_s`Ane$%c`UCNC#&7gkTBQiX&&=kue)I@hsb!z# z%XYWfx#ApRt9mRoSTuL;Qz5_H*&fhe#XAZxm}8705WT!VG;Vmp>B$m@rpwNlu}GG~ z%QdXCS9aN_#zYez#AwqqwcFC#GQ_gKi6xoK@)@#(1V>jbfRK@Kl& zyjC6K+6kkv=lCAS?m@%9;kT@2Cv=!i6xG2u6L04kMPM(eT(U}#HcG5Cw;hXsz2M!4 zx7@i{`A8sK#vzZXvF1q^ilHY0@h=;kDJZ-;W5V-%vn7m=N;!RHP`KRqhhoTh?B)|Y zIWJjbCap+h#3mb53)}Sh_{B2AauS9%UR~xM!&p5%>N|cB<9w(BISf{Tu>8Q7vhlv# zEWq%pynk?U>{aCIp)7szpO!3KtcnM%#{~~Yory^}Z5;+p2QZSAYdC^fiT4k|7&slk z(0+x?7(_qIkVK1Spn`%ph~VWwj0cUdzGlj-MI~hY1bjc!s_}PO6%n;B1b^g_hfZ0Bv{*45; zF8?1ZehOrgfPZqD|Bjy$MLvM-|D=G&OMw1CSJ4d^nZL)30IN*8dj1W`#`CeE;8r&Q zYrOxQ#P;$6^8&JZ6i4xZDaQ$QD<&_4w>*HT;NPzxI=QIR&B^kQU~cYs-Ibs#3MZ#E z>eH*gl2f6e!GopJQBN6@A?ArUvrhQ4s4g232wzQ9nDByFNE1)o-=UR&zskbKA(*eB zJVvH#;JNqe)aL8!MZ165mYjS~40`c%J9)|GU;8KHj})n6a!wT0P3%|V1!S3f#DdC# z*(w9TQeNw>a%N!R_~<8RGSst_CvZ2qtE=m36X`ZJjSxwCwuI*=@{FrPv zRHhPa9XMz@C$A?Uh8DKj0gGQt;OetAPAH)8`QxH1|6>SC5u<(YwP3kV2+~Dqs##U7> zvMM|`avM`rSRx4hc`L)@vPh1s3oKH9=!?X~S9it6-q~2TTQoObbKy7{g(iKTu;<)i zwtd#m^?8LEd;O;CgOYr;fnWB!Yt=j8Tsh4K9pNP+iQpe_x-n74`kC}9+?SvX8&yNA zZtgarcW*Q6?FdV3rA+9)Ww^Z;N7(wd;Am_%r2*s72S%^(J zfsB8u|Nb6DxM6LP@-v+jBgQh|1|JSD7|2d}V#}Q}1J`?_m(wgNlo`6Fz~W1(f(y-{ z+dC?S7OplmKoCkV2|kY4mhc&HD(=9ly3lkdRmOJah#PBt2Y%L>if<^Xl8p9LDnog= zKhG)P^2{^pcv{PSvV$9@$2q8^&$x7Ww2?y7AfTjV`mYR)^9PBt9b@Nh27rdyfwD`~ zHe*|R0lBUHEHRxw%$*r{KpR$g4zU$+lG#bWg-iy$+ou>(%ikTt>xcp(mti-(hcvel z6{o(OEqgq{tAPq1K;uzov@o??-QZ`WwR&$!+y-Lmpg%_x#V5gE+Xra1BG6d1@{S|J zJwc`C*Ie4TY}x6p=0rP{bIz}|6O7uhLWQKGfRNsSkI9a*Fg)H#r7-n&>l0;ipOb5C zPHp*VLbj2mQVXj0?NYnv4liFl>$*S&-mOPjX-Jsw?GQZfn3r!xIfV1}5v#YUPe+K_ z*5AG7RPE<#!`L@xV5y{Eq4R$OH~KR>1`pIjM-{12Y2L=JFj=L{;zpO!bM?(j4*Ozs%wWNM2AyN!v6v_>p_~~^AF4VQ0tKACq;kq4Ckn6TFI*eCv3CS=ZneYhUn)Dh%d@i zv!`e+&qvOFp^t5isC;dmCFn26rre)0EA&61;LY%1END~uJNOkTut@#RL@D(HVD@8- z!+HtzV`lv%!EpOM+ai?A`b#Yj$ln?n6WesuD?Z{cI&Gs`PuVY#hyR}Td9)v6xm6MR z%2Yco81;`|@g_vF72h_S3k)7t5(kI~ZCE+HUk=Ok%%&fmB%X63ZPp*e7eEZx`mrSRjGGwji6*c`0Vj z53BozGWQX^Z_l3>rH(7S9!g89)1^#C3k3~QMZNPR3ajz0dSyHw6|8-SD(j4<)W?|j z_7qAqv8M-wh8p5Vv-<5Kdwe~(R5p)}LNb7>Tgs7h?Oc_BH1%oWvCoA9|p2`{LA?9kC>awcbDCld6zRW?ejU?LUcU;Y%p{u6x zU>UzeRMNoG@H2K^3S}nB9r7)=VT9b7EOub-5++2oV{i@W>38tWW1&Xc&F~-6<8Zn# z;X{!_nPuY(^f8gh63+1B6*eN9Xq)I5?1XA~n)$Z68agn17qJPe zc+88pScZ0{5<2rKPh--J%Yp<2-ee}j3x)+kFYkV+clkwAO!pqcd+zXHQH9rt-jHdO zW|VG}c9cGgW;lX5!cc(ON>3t!^kO-Pq2_Y)<>njBjLrPsGb=$tF_8_J5e(8h{EBNR z=!0jzv_Lz5e-j-jVj-f59vKlxb8ulP(GAPw{*Wli%SLN`5e*WdgQfI=BZMP1%WOsN z;NOze^)?Pz_JG-Gxe01A^v|ifv(}w?AoULOTMO^r3yXFQT!k6$zc?`0s(u-q-`D9< zz1P}J*~5YMaEVH8f*RmGp8f3vB}toI+dDkQP3$2Zmx#7#`u+;SG=5bonn#}m&y5f?Y6%BxO8{IzHjN5 zXTGIYu7+9R=em7EjzUV*N7IDLhS2{Snu>hUVUz-mmKu>3E6-q;!s7N?xn0!Dx>WJ$i%@AFRl4&1?UV5QmagErVjToyiVEDG zm!}QojujYuwrH0)Qat~~UeCj8i96eB*suii4z#lh_QSqN{R5W)j&D-9Vp9L93f!s^FIMSkp z*BFa;Ii^q2cq`_*u1(gsGiLk@ex^wjcuG)G5#2d)R69U zY*DVT#T57s{b39gEO(CQU3|5&cYtsAWXs&OYcp7MPPmF9Ev)p)Ke=-re&EM2GpqmR zmp(d5e783_WcwePc_oYEMALt1X*G2s6&KT|$Z!y7BV1fY4b$aTnkvz^T|JAh^5lBu1i%x6PL3%iLHhm5NOZIHxrAdJ`#| uAFrNp;2?Qez;ap=4nW9M#}t8wQ5P=#ck9vrmys?dGjpEW_s|T`(EJ}8PVgcC diff --git a/image-full.sh b/image-full.sh index 934f7556..8ebc2ddc 100755 --- a/image-full.sh +++ b/image-full.sh @@ -4,29 +4,50 @@ set -e DISK_SIZE=$[50 * 1024 * 1024] MOUNT_DIR=/mnt -truncate -s 0 $DISK_IMAGE_PATH -truncate -s $DISK_SIZE $DISK_IMAGE_PATH +truncate -s 0 "$DISK_IMAGE_PATH" +truncate -s $DISK_SIZE "$DISK_IMAGE_PATH" -sed -e 's/\s*\([-\+[:alnum:]]*\).*/\1/' << EOF | fdisk $DISK_IMAGE_PATH > /dev/null - g # gpt - n # new partition - 1 # partition number 1 - # default (from the beginning of the disk) - +1MiB # bios boot partiton size - n # new partition - 2 # partition number 2 - # default (right after bios boot partition) - # default (to the end of disk) - t # set type - 1 # ... of partition 1 - 4 # bios boot partition - t # set type - 2 # ... of partition 2 - 20 # Linux filesystem - w # write changes +if [ "$UEFI_BOOT" == "1" ]; then + sed -e 's/\s*\([-\+[:alnum:]]*\).*/\1/' << EOF | fdisk "$DISK_IMAGE_PATH" > /dev/null + g # gpt + n # new partition + 1 # partition number 1 + # default (from the beginning of the disk) + +16M # efi system size + n # new partition + 2 # partition number 2 + # default (right after efi system partition) + # default (to the end of disk) + t # set type + 1 # ... of partition 1 + 1 # efi system + t # set type + 2 # ... of partition 2 + 20 # Linux filesystem + w # write changes EOF +else + sed -e 's/\s*\([-\+[:alnum:]]*\).*/\1/' << EOF | fdisk "$DISK_IMAGE_PATH" > /dev/null + g # gpt + n # new partition + 1 # partition number 1 + # default (from the beginning of the disk) + +1M # bios boot partition size + n # new partition + 2 # partition number 2 + # default (right after bios partition) + # default (to the end of disk) + t # set type + 1 # ... of partition 1 + 4 # bios boot partition + t # set type + 2 # ... of partition 2 + 20 # Linux filesystem + w # write changes +EOF +fi -LOOP_DEV=$(sudo losetup -f --show $DISK_IMAGE_PATH) +LOOP_DEV=$(sudo losetup -f --show "$DISK_IMAGE_PATH") sudo partprobe $LOOP_DEV PARTITION1=${LOOP_DEV}p1 @@ -34,8 +55,23 @@ PARTITION2=${LOOP_DEV}p2 sudo mkfs.ext2 -d $SYSROOT -b 1024 -q $PARTITION2 -sudo mount $PARTITION2 $MOUNT_DIR -sudo grub-install --no-floppy --target=i386-pc --modules="normal ext2 multiboot" --boot-directory=${MOUNT_DIR}/boot $LOOP_DEV -sudo umount $MOUNT_DIR +if [[ "$UEFI_BOOT" == "1" ]]; then + sudo mkfs.fat $PARTITION1 > /dev/null + sudo mount $PARTITION1 "$MOUNT_DIR" + sudo mkdir -p "$MOUNT_DIR/EFI/BOOT" + sudo "$TOOLCHAIN/bin/grub-mkstandalone" -O "$BANAN_ARCH-efi" -o "$MOUNT_DIR/EFI/BOOT/BOOTX64.EFI" "boot/grub/grub.cfg=$TOOLCHAIN/grub-memdisk.cfg" + sudo umount "$MOUNT_DIR" + + sudo mount $PARTITION2 "$MOUNT_DIR" + sudo mkdir -p "$MOUNT_DIR/boot/grub" + sudo cp "$TOOLCHAIN/grub-uefi.cfg" "$MOUNT_DIR/boot/grub/grub.cfg" + sudo umount "$MOUNT_DIR" +else + sudo mount $PARTITION2 "$MOUNT_DIR" + sudo grub-install --no-floppy --target=i386-pc --modules="normal ext2 multiboot" --boot-directory="$MOUNT_DIR/boot" $LOOP_DEV + sudo mkdir -p "$MOUNT_DIR/boot/grub" + sudo cp "$TOOLCHAIN/grub-legacy-boot.cfg" "$MOUNT_DIR/boot/grub/grub.cfg" + sudo umount "$MOUNT_DIR" +fi sudo losetup -d $LOOP_DEV diff --git a/image.sh b/image.sh index 18c38656..c0662b8e 100755 --- a/image.sh +++ b/image.sh @@ -1,11 +1,19 @@ #!/bin/bash -set -e if [ ! -f $DISK_IMAGE_PATH ]; then $(dirname "$0")/image-full.sh exit 0 fi +fdisk -l $DISK_IMAGE_PATH | grep -q 'EFI System'; IMAGE_IS_UEFI=$? +[[ $UEFI_BOOT == 1 ]]; CREATE_IS_UEFI=$? + +if [ $IMAGE_IS_UEFI -ne $CREATE_IS_UEFI ]; then + echo Converting disk image to/from UEFI + $(dirname "$0")/image-full.sh + exit 0 +fi + MOUNT_DIR=/mnt LOOP_DEV=$(sudo losetup -f --show $DISK_IMAGE_PATH) diff --git a/qemu.sh b/qemu.sh index f92acf2c..4530527a 100755 --- a/qemu.sh +++ b/qemu.sh @@ -1,9 +1,18 @@ #!/bin/bash set -e +if [ -z ${OVMF_PATH+x} ]; then + OVMF_PATH="/usr/share/ovmf/x64/OVMF.fd" +fi + +if [ "$UEFI_BOOT" == "1" ]; then + BIOS_ARGS="-bios $OVMF_PATH -net none" +fi + qemu-system-$BANAN_ARCH \ -m 128 \ -smp 2 \ + $BIOS_ARGS \ -drive format=raw,id=disk,file=${DISK_IMAGE_PATH},if=none \ -device ahci,id=ahci \ -device ide-hd,drive=disk,bus=ahci.0 \ diff --git a/toolchain/local/grub-legacy-boot.cfg b/toolchain/local/grub-legacy-boot.cfg new file mode 100644 index 00000000..1798a1e5 --- /dev/null +++ b/toolchain/local/grub-legacy-boot.cfg @@ -0,0 +1,23 @@ +menuentry "banan-os" { + multiboot /boot/banan-os.kernel root=/dev/sda2 +} + +menuentry "banan-os (no serial)" { + multiboot /boot/banan-os.kernel root=/dev/sda2 noserial +} + +menuentry "banan-os (only serial)" { + multiboot /boot/banan-os.kernel root=/dev/sda2 console=ttyS0 +} + +menuentry "banan-os (no apic)" { + multiboot /boot/banan-os.kernel root=/dev/sda2 noapic +} + +menuentry "banan-os (no apic, no serial)" { + multiboot /boot/banan-os.kernel root=/dev/sda2 noapic noserial +} + +menuentry "banan-os (no apic, only serial)" { + multiboot /boot/banan-os.kernel root=/dev/sda2 noapic console=ttyS0 +} diff --git a/toolchain/local/grub-memdisk.cfg b/toolchain/local/grub-memdisk.cfg new file mode 100644 index 00000000..149ca24d --- /dev/null +++ b/toolchain/local/grub-memdisk.cfg @@ -0,0 +1,2 @@ +insmod part_gpt +configfile (hd0,gpt2)/boot/grub/grub.cfg diff --git a/toolchain/local/grub-uefi.cfg b/toolchain/local/grub-uefi.cfg new file mode 100644 index 00000000..ca0ecb2c --- /dev/null +++ b/toolchain/local/grub-uefi.cfg @@ -0,0 +1,26 @@ +insmod part_gpt +set root=(hd0,gpt2) + +menuentry "banan-os" { + multiboot /boot/banan-os.kernel root=/dev/sda2 +} + +menuentry "banan-os (no serial)" { + multiboot /boot/banan-os.kernel root=/dev/sda2 noserial +} + +menuentry "banan-os (only serial)" { + multiboot /boot/banan-os.kernel root=/dev/sda2 console=ttyS0 +} + +menuentry "banan-os (no apic)" { + multiboot /boot/banan-os.kernel root=/dev/sda2 noapic +} + +menuentry "banan-os (no apic, no serial)" { + multiboot /boot/banan-os.kernel root=/dev/sda2 noapic noserial +} + +menuentry "banan-os (no apic, only serial)" { + multiboot /boot/banan-os.kernel root=/dev/sda2 noapic console=ttyS0 +} From 76f17bd5698fe442c195b090d69421bbe04865e3 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 16 Oct 2023 01:39:14 +0300 Subject: [PATCH 115/240] Kernel: PCIDevice stores its vendor id and device id --- kernel/include/kernel/PCI.h | 5 +++++ kernel/kernel/PCI.cpp | 9 +++++++++ 2 files changed, 14 insertions(+) diff --git a/kernel/include/kernel/PCI.h b/kernel/include/kernel/PCI.h index 79098096..0ca2d4d2 100644 --- a/kernel/include/kernel/PCI.h +++ b/kernel/include/kernel/PCI.h @@ -75,6 +75,9 @@ namespace Kernel::PCI uint8_t header_type() const { return m_header_type; } + uint16_t vendor_id() const { return m_vendor_id; } + uint16_t device_id() const { return m_device_id; } + BAN::ErrorOr get_irq(); BAN::ErrorOr> allocate_bar_region(uint8_t bar_num); @@ -107,6 +110,8 @@ namespace Kernel::PCI uint8_t m_prog_if; uint8_t m_header_type; + uint16_t m_vendor_id; + uint16_t m_device_id; BAN::Optional m_offset_msi; BAN::Optional m_offset_msi_x; diff --git a/kernel/kernel/PCI.cpp b/kernel/kernel/PCI.cpp index 3100ca09..3c69bd48 100644 --- a/kernel/kernel/PCI.cpp +++ b/kernel/kernel/PCI.cpp @@ -337,6 +337,15 @@ namespace Kernel::PCI m_prog_if = read_byte(0x09); m_header_type = read_byte(0x0E); + uint32_t device = read_dword(0x00); + m_vendor_id = device & 0xFFFF; + m_device_id = device >> 16; + + dprintln("PCI {2H}:{2H}.{2H} has {2H}.{2H}.{2H}", + m_bus, m_dev, m_func, + m_class_code, m_subclass, m_prog_if + ); + enumerate_capabilites(); } From 5977341610f6f43433bb1ecd90698106e1350e3a Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 16 Oct 2023 01:39:37 +0300 Subject: [PATCH 116/240] Kernel: PCI checks if ethernet device is E1000 before initialization I used to treat all ethernet deivices as E1000 but now it is actually verified before initialization --- kernel/include/kernel/Networking/E1000.h | 1 + kernel/kernel/Networking/E1000.cpp | 39 ++++++++++++++++++++++++ kernel/kernel/PCI.cpp | 5 +-- 3 files changed, 43 insertions(+), 2 deletions(-) diff --git a/kernel/include/kernel/Networking/E1000.h b/kernel/include/kernel/Networking/E1000.h index dad29613..a5246ce0 100644 --- a/kernel/include/kernel/Networking/E1000.h +++ b/kernel/include/kernel/Networking/E1000.h @@ -13,6 +13,7 @@ namespace Kernel class E1000 final : public NetworkDriver { public: + static bool probe(PCI::Device&); static BAN::ErrorOr> create(PCI::Device&); ~E1000(); diff --git a/kernel/kernel/Networking/E1000.cpp b/kernel/kernel/Networking/E1000.cpp index be45183e..666e5408 100644 --- a/kernel/kernel/Networking/E1000.cpp +++ b/kernel/kernel/Networking/E1000.cpp @@ -112,6 +112,45 @@ namespace Kernel volatile uint16_t special; } __attribute__((packed)); + // https://www.intel.com/content/dam/doc/manual/pci-pci-x-family-gbe-controllers-software-dev-manual.pdf (section 5.2) + bool E1000::probe(PCI::Device& pci_device) + { + // Intel device + if (pci_device.vendor_id() != 0x8086) + return false; + + switch (pci_device.device_id()) + { + case 0x1019: + case 0x101A: + case 0x1010: + case 0x1012: + case 0x101D: + case 0x1079: + case 0x107A: + case 0x107B: + case 0x100F: + case 0x1011: + case 0x1026: + case 0x1027: + case 0x1028: + case 0x1107: + case 0x1112: + case 0x1013: + case 0x1018: + case 0x1076: + case 0x1077: + case 0x1078: + case 0x1017: + case 0x1016: + case 0x100e: + case 0x1015: + return true; + default: + return false; + } + } + BAN::ErrorOr> E1000::create(PCI::Device& pci_device) { E1000* e1000 = new E1000(); diff --git a/kernel/kernel/PCI.cpp b/kernel/kernel/PCI.cpp index 3c69bd48..5fa243f0 100644 --- a/kernel/kernel/PCI.cpp +++ b/kernel/kernel/PCI.cpp @@ -173,8 +173,9 @@ namespace Kernel::PCI switch (pci_device.subclass()) { case 0x00: - if (auto res = E1000::create(pci_device); res.is_error()) - dprintln("E1000: {}", res.error()); + if (E1000::probe(pci_device)) + if (auto res = E1000::create(pci_device); res.is_error()) + dprintln("E1000: {}", res.error()); break; default: dprintln("unsupported ethernet device (pci {2H}.{2H}.{2H})", pci_device.class_code(), pci_device.subclass(), pci_device.prog_if()); From 31aa157201822d2ecd439fd2b5f6350b58fdff14 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 16 Oct 2023 01:41:01 +0300 Subject: [PATCH 117/240] Kernel: Don't require framebuffer Initializes virtual tty only if framebuffer is initialized --- kernel/kernel/kernel.cpp | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/kernel/kernel/kernel.cpp b/kernel/kernel/kernel.cpp index 3dd2a67c..2a88287a 100644 --- a/kernel/kernel/kernel.cpp +++ b/kernel/kernel/kernel.cpp @@ -117,8 +117,8 @@ extern "C" void kernel_main() dprintln("PageTable initialized"); g_terminal_driver = VesaTerminalDriver::create(); - ASSERT(g_terminal_driver); - dprintln("VESA initialized"); + if (g_terminal_driver) + dprintln("VESA initialized"); Heap::initialize(); dprintln("Heap initialzed"); @@ -147,8 +147,11 @@ extern "C" void kernel_main() dprintln("Serial devices initialized"); } - auto vtty = MUST(VirtualTTY::create(g_terminal_driver)); - dprintln("Virtual TTY initialized"); + if (g_terminal_driver) + { + auto vtty = MUST(VirtualTTY::create(g_terminal_driver)); + dprintln("Virtual TTY initialized"); + } MUST(Scheduler::initialize()); dprintln("Scheduler initialized"); From 6f8fce94a0c0af35b9b645dc4ef51037216c444c Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 16 Oct 2023 16:50:49 +0300 Subject: [PATCH 118/240] Kernel: Fix PCI bugs IO BarRegion used vaddr instead of the correct paddr. Add API for memory region iobase query. --- kernel/include/kernel/PCI.h | 5 +++-- kernel/kernel/PCI.cpp | 23 ++++++++++++++--------- 2 files changed, 17 insertions(+), 11 deletions(-) diff --git a/kernel/include/kernel/PCI.h b/kernel/include/kernel/PCI.h index 0ca2d4d2..64fd7167 100644 --- a/kernel/include/kernel/PCI.h +++ b/kernel/include/kernel/PCI.h @@ -29,8 +29,9 @@ namespace Kernel::PCI ~BarRegion(); BarType type() const { return m_type; } - vaddr_t vaddr() const { return m_vaddr; } - paddr_t paddr() const { return m_paddr; } + vaddr_t iobase() const { ASSERT(m_type == BarType::IO); return m_paddr; } + vaddr_t vaddr() const { ASSERT(m_type == BarType::MEM); return m_vaddr; } + paddr_t paddr() const { ASSERT(m_type == BarType::MEM); return m_paddr; } size_t size() const { return m_size; } void write8(off_t, uint8_t); diff --git a/kernel/kernel/PCI.cpp b/kernel/kernel/PCI.cpp index 5fa243f0..c7d75b05 100644 --- a/kernel/kernel/PCI.cpp +++ b/kernel/kernel/PCI.cpp @@ -77,7 +77,7 @@ namespace Kernel::PCI uint32_t temp = read_config_dword(bus, dev, func, offset & ~3); temp &= ~(0xFF << byte); temp |= (uint32_t)value << byte; - write_config_dword(bus, dev, func, offset, temp); + write_config_dword(bus, dev, func, offset & ~3, temp); } static uint16_t get_vendor_id(uint8_t bus, uint8_t dev, uint8_t func) @@ -252,8 +252,13 @@ namespace Kernel::PCI device.func() ); dprintln(" type: {}", region->type() == BarType::IO ? "IO" : "MEM"); - dprintln(" paddr {}", (void*)region->paddr()); - dprintln(" vaddr {}", (void*)region->vaddr()); + if (region->type() == BarType::IO) + dprintln(" iobase {8H}", region->iobase()); + else + { + dprintln(" paddr {}", (void*)region->paddr()); + dprintln(" vaddr {}", (void*)region->vaddr()); + } dprintln(" size {}", region->size()); #endif @@ -290,42 +295,42 @@ namespace Kernel::PCI void BarRegion::write8(off_t reg, uint8_t val) { if (m_type == BarType::IO) - return IO::outb(m_vaddr + reg, val); + return IO::outb(m_paddr + reg, val); MMIO::write8(m_vaddr + reg, val); } void BarRegion::write16(off_t reg, uint16_t val) { if (m_type == BarType::IO) - return IO::outw(m_vaddr + reg, val); + return IO::outw(m_paddr + reg, val); MMIO::write16(m_vaddr + reg, val); } void BarRegion::write32(off_t reg, uint32_t val) { if (m_type == BarType::IO) - return IO::outl(m_vaddr + reg, val); + return IO::outl(m_paddr + reg, val); MMIO::write32(m_vaddr + reg, val); } uint8_t BarRegion::read8(off_t reg) { if (m_type == BarType::IO) - return IO::inb(m_vaddr + reg); + return IO::inb(m_paddr + reg); return MMIO::read8(m_vaddr + reg); } uint16_t BarRegion::read16(off_t reg) { if (m_type == BarType::IO) - return IO::inw(m_vaddr + reg); + return IO::inw(m_paddr + reg); return MMIO::read16(m_vaddr + reg); } uint32_t BarRegion::read32(off_t reg) { if (m_type == BarType::IO) - return IO::inl(m_vaddr + reg); + return IO::inl(m_paddr + reg); return MMIO::read32(m_vaddr + reg); } From b767317a7a32397c4b503553a1bb511127f793c1 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 16 Oct 2023 16:52:15 +0300 Subject: [PATCH 119/240] Kernel: Fix ATADevice naming ATADevice now stores its name instead of using static buffer. Old static buffer was changing on every name query. I just hadn't noticed since virtual machine disks were always sda. --- kernel/include/kernel/Storage/ATA/ATADevice.h | 3 ++- kernel/kernel/Storage/ATA/ATADevice.cpp | 12 ++++-------- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/kernel/include/kernel/Storage/ATA/ATADevice.h b/kernel/include/kernel/Storage/ATA/ATADevice.h index f9f7ce1e..38a67bd7 100644 --- a/kernel/include/kernel/Storage/ATA/ATADevice.h +++ b/kernel/include/kernel/Storage/ATA/ATADevice.h @@ -28,7 +28,7 @@ namespace Kernel uint64_t sector_count() const { return m_lba_count; } BAN::StringView model() const { return m_model; } - BAN::StringView name() const; + BAN::StringView name() const { return m_name; } virtual dev_t rdev() const override { return m_rdev; } @@ -46,6 +46,7 @@ namespace Kernel uint32_t m_sector_words; uint64_t m_lba_count; char m_model[41]; + char m_name[4] {}; const dev_t m_rdev; }; diff --git a/kernel/kernel/Storage/ATA/ATADevice.cpp b/kernel/kernel/Storage/ATA/ATADevice.cpp index 357018fa..81cced96 100644 --- a/kernel/kernel/Storage/ATA/ATADevice.cpp +++ b/kernel/kernel/Storage/ATA/ATADevice.cpp @@ -23,7 +23,10 @@ namespace Kernel detail::ATABaseDevice::ATABaseDevice() : m_rdev(makedev(get_ata_dev_major(), get_ata_dev_minor())) - { } + { + strcpy(m_name, "sda"); + m_name[2] += minor(m_rdev); + } BAN::ErrorOr detail::ATABaseDevice::initialize(BAN::Span identify_data) { @@ -99,13 +102,6 @@ namespace Kernel return bytes; } - BAN::StringView detail::ATABaseDevice::name() const - { - static char device_name[] = "sda"; - device_name[2] += minor(m_rdev); - return device_name; - } - BAN::ErrorOr> ATADevice::create(BAN::RefPtr bus, ATABus::DeviceType type, bool is_secondary, BAN::Span identify_data) { auto* device_ptr = new ATADevice(bus, type, is_secondary); From 48980b56ab764caf89ce66682026a34b4db50284 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 16 Oct 2023 16:56:12 +0300 Subject: [PATCH 120/240] Kernel: ATABuses are but to compatibility mode if possible I don't support native mode ata bus (irq sharing) so ata buses are but to compatibility mode if possible. --- .../include/kernel/Storage/ATA/ATADefinitions.h | 6 ++++-- kernel/kernel/Storage/ATA/ATAController.cpp | 15 ++++++++++++++- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/kernel/include/kernel/Storage/ATA/ATADefinitions.h b/kernel/include/kernel/Storage/ATA/ATADefinitions.h index e02697fe..0ae0b5f5 100644 --- a/kernel/include/kernel/Storage/ATA/ATADefinitions.h +++ b/kernel/include/kernel/Storage/ATA/ATADefinitions.h @@ -1,7 +1,9 @@ #pragma once -#define ATA_PROGIF_PRIMARY_NATIVE (1 << 0) -#define ATA_PROGIF_SECONDARY_NATIVE (1 << 2) +#define ATA_PROGIF_PRIMARY_NATIVE (1 << 0) +#define ATA_PROGIF_CAN_MODIFY_PRIMARY_NATIVE (1 << 1) +#define ATA_PROGIF_SECONDARY_NATIVE (1 << 2) +#define ATA_PROGIF_CAN_MODIFY_SECONDARY_NATIVE (1 << 3) #define ATA_PORT_DATA 0x00 #define ATA_PORT_ERROR 0x00 diff --git a/kernel/kernel/Storage/ATA/ATAController.cpp b/kernel/kernel/Storage/ATA/ATAController.cpp index 8a451a18..1abc317a 100644 --- a/kernel/kernel/Storage/ATA/ATAController.cpp +++ b/kernel/kernel/Storage/ATA/ATAController.cpp @@ -41,6 +41,20 @@ namespace Kernel uint8_t prog_if = m_pci_device.read_byte(0x09); + if ((prog_if & ATA_PROGIF_CAN_MODIFY_PRIMARY_NATIVE) && (prog_if & ATA_PROGIF_PRIMARY_NATIVE)) + { + prog_if &= ~ATA_PROGIF_PRIMARY_NATIVE; + m_pci_device.write_byte(0x09, prog_if); + dprintln("enabling compatibility mode for bus 1"); + } + + if ((prog_if & ATA_PROGIF_CAN_MODIFY_SECONDARY_NATIVE) && (prog_if & ATA_PROGIF_SECONDARY_NATIVE)) + { + prog_if &= ~ATA_PROGIF_SECONDARY_NATIVE; + m_pci_device.write_byte(0x09, prog_if); + dprintln("enabling compatibility mode for bus 2"); + } + if (!(prog_if & ATA_PROGIF_PRIMARY_NATIVE)) { auto bus_or_error = ATABus::create(0x1F0, 0x3F6, 14); @@ -54,7 +68,6 @@ namespace Kernel dprintln("unsupported IDE ATABus in native mode"); } - // BUS 2 if (!(prog_if & ATA_PROGIF_SECONDARY_NATIVE)) { auto bus_or_error = ATABus::create(0x170, 0x376, 15); From e01928d186527367dc837d00bcc88e42d8558a92 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 16 Oct 2023 16:57:07 +0300 Subject: [PATCH 121/240] Kernel: Fix device identification with all bits as ones If device identification sends all ones, don't initialize the device. --- kernel/kernel/Storage/ATA/ATABus.cpp | 11 +++++++++++ kernel/kernel/Storage/ATA/ATADevice.cpp | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/kernel/kernel/Storage/ATA/ATABus.cpp b/kernel/kernel/Storage/ATA/ATABus.cpp index eb9d28a6..cd499312 100644 --- a/kernel/kernel/Storage/ATA/ATABus.cpp +++ b/kernel/kernel/Storage/ATA/ATABus.cpp @@ -73,6 +73,14 @@ namespace Kernel select_delay(); } + static bool identify_all_ones(BAN::Span identify_data) + { + for (size_t i = 0; i < 256; i++) + if (identify_data[i] != 0xFFFF) + return false; + return true; + } + BAN::ErrorOr ATABus::identify(bool secondary, BAN::Span buffer) { select_device(secondary); @@ -117,6 +125,9 @@ namespace Kernel ASSERT(buffer.size() >= 256); read_buffer(ATA_PORT_DATA, buffer.data(), 256); + if (identify_all_ones(buffer)) + return BAN::Error::from_errno(ENODEV); + return type; } diff --git a/kernel/kernel/Storage/ATA/ATADevice.cpp b/kernel/kernel/Storage/ATA/ATADevice.cpp index 81cced96..0eacead6 100644 --- a/kernel/kernel/Storage/ATA/ATADevice.cpp +++ b/kernel/kernel/Storage/ATA/ATADevice.cpp @@ -71,7 +71,7 @@ namespace Kernel while (model_len > 0 && m_model[model_len - 1] == ' ') model_len--; - dprintln("Initialized disk '{}' {} MB", BAN::StringView(m_model, model_len), total_size() / 1024 / 1024); + dprintln("Initialized disk '{}' {} MiB", BAN::StringView(m_model, model_len), total_size() / 1024 / 1024); add_disk_cache(); From 792bb2df1c9e192526568af8c05264a93be2c0b5 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 16 Oct 2023 16:58:17 +0300 Subject: [PATCH 122/240] Kernel: TTY doesn't panic if it doesn't find input device --- kernel/kernel/Terminal/TTY.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/kernel/kernel/Terminal/TTY.cpp b/kernel/kernel/Terminal/TTY.cpp index de2ed755..fd370573 100644 --- a/kernel/kernel/Terminal/TTY.cpp +++ b/kernel/kernel/Terminal/TTY.cpp @@ -81,7 +81,14 @@ namespace Kernel Process::create_kernel( [](void*) { - auto inode = MUST(VirtualFileSystem::get().file_from_absolute_path({ 0, 0, 0, 0 }, "/dev/input0"sv, O_RDONLY)).inode; + auto file_or_error = VirtualFileSystem::get().file_from_absolute_path({ 0, 0, 0, 0 }, "/dev/input0"sv, O_RDONLY); + if (file_or_error.is_error()) + { + dprintln("no input device found"); + return; + } + + auto inode = file_or_error.value().inode; while (true) { while (!TTY::current()->m_tty_ctrl.receive_input) From be3efb0b9213f82a0b0d4ddf67993f42878e2109 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Tue, 17 Oct 2023 01:06:24 +0300 Subject: [PATCH 123/240] Kernel: Start using multiboot2 instead of multiboot This allows better compatibility with (U)EFI and gives RSDP location instead of me having to scan ram to find it. --- kernel/arch/x86_64/PageTable.cpp | 11 +++ kernel/arch/x86_64/boot.S | 72 +++++++++--------- kernel/include/kernel/multiboot.h | 57 -------------- kernel/include/kernel/multiboot2.h | 75 +++++++++++++++++++ kernel/kernel/ACPI.cpp | 7 ++ kernel/kernel/Memory/Heap.cpp | 19 ++--- kernel/kernel/Terminal/VesaTerminalDriver.cpp | 55 +++++++------- kernel/kernel/kernel.cpp | 18 ++--- toolchain/local/grub-legacy-boot.cfg | 12 +-- toolchain/local/grub-uefi.cfg | 12 +-- 10 files changed, 185 insertions(+), 153 deletions(-) delete mode 100644 kernel/include/kernel/multiboot.h create mode 100644 kernel/include/kernel/multiboot2.h diff --git a/kernel/arch/x86_64/PageTable.cpp b/kernel/arch/x86_64/PageTable.cpp index fca738bc..24443797 100644 --- a/kernel/arch/x86_64/PageTable.cpp +++ b/kernel/arch/x86_64/PageTable.cpp @@ -4,6 +4,7 @@ #include #include #include +#include extern uint8_t g_kernel_start[]; extern uint8_t g_kernel_end[]; @@ -138,6 +139,16 @@ namespace Kernel // Map (0 -> phys_kernel_end) to (KERNEL_OFFSET -> virt_kernel_end) map_range_at(0, KERNEL_OFFSET, (uintptr_t)g_kernel_end - KERNEL_OFFSET, Flags::ReadWrite | Flags::Present); + // Map multiboot info + vaddr_t multiboot_data_start = (vaddr_t)g_multiboot2_info & PAGE_ADDR_MASK; + vaddr_t multiboot_data_end = (vaddr_t)g_multiboot2_info + g_multiboot2_info->total_size; + map_range_at( + V2P(multiboot_data_start), + multiboot_data_start, + multiboot_data_end - multiboot_data_start, + Flags::ReadWrite | Flags::Present + ); + // Map executable kernel memory as executable map_range_at( V2P(g_kernel_execute_start), diff --git a/kernel/arch/x86_64/boot.S b/kernel/arch/x86_64/boot.S index 98298b3a..b00995d9 100644 --- a/kernel/arch/x86_64/boot.S +++ b/kernel/arch/x86_64/boot.S @@ -1,11 +1,3 @@ -# Declare constants for the multiboot header -.set ALIGN, 1<<0 # align loaded modules on page boundaries -.set MEMINFO, 1<<1 # provide memory map -.set VIDEOINFO, 1<<2 # provide video info -.set MB_FLAGS, ALIGN | MEMINFO | VIDEOINFO # this is the Multiboot 'flag' field -.set MB_MAGIC, 0x1BADB002 # 'magic number' lets bootloader find the header -.set MB_CHECKSUM, -(MB_MAGIC + MB_FLAGS) #checksum of above, to prove we are multiboot - .set PG_PRESENT, 1<<0 .set PG_READ_WRITE, 1<<1 .set PG_PAGE_SIZE, 1<<7 @@ -15,19 +7,37 @@ .code32 -# Multiboot header +# multiboot2 header .section .multiboot, "aw" - .align 4 - .long MB_MAGIC - .long MB_FLAGS - .long MB_CHECKSUM - .skip 20 - +multiboot2_start: + .align 8 + .long 0xE85250D6 .long 0 - .long 800 - .long 600 + .long multiboot2_end - multiboot2_start + .long -(0xE85250D6 + (multiboot2_end - multiboot2_start)) + + # framebuffer tag + .align 8 + .short 5 + .short 0 + .long 20 + .long 1920 + .long 1080 .long 32 + # legacy start + .align 8 + .short 3 + .short 0 + .long 12 + .long V2P(_start) + + .align 8 + .short 0 + .short 0 + .long 8 +multiboot2_end: + .section .bss, "aw", @nobits # Create stack .global g_boot_stack_bottom @@ -40,11 +50,11 @@ g_kernel_cmdline: .skip 4096 - .global g_multiboot_info - g_multiboot_info: + .global g_multiboot2_info + g_multiboot2_info: .skip 8 - .global g_multiboot_magic - g_multiboot_magic: + .global g_multiboot2_magic + g_multiboot2_magic: .skip 8 .section .data @@ -119,19 +129,6 @@ check_requirements: .exit: jmp system_halt -copy_kernel_commandline: - pushl %esi - pushl %edi - movl V2P(g_multiboot_info), %esi - addl $16, %esi - movl (%esi), %esi - movl $1024, %ecx - movl $V2P(g_kernel_cmdline), %edi - rep movsl - popl %edi - popl %esi - ret - enable_sse: movl %cr0, %eax andw $0xFFFB, %ax @@ -170,10 +167,9 @@ initialize_paging: _start: # Initialize stack and multiboot info movl $V2P(g_boot_stack_top), %esp - movl %eax, V2P(g_multiboot_magic) - movl %ebx, V2P(g_multiboot_info) + movl %eax, V2P(g_multiboot2_magic) + movl %ebx, V2P(g_multiboot2_info) - call copy_kernel_commandline call check_requirements call enable_sse @@ -201,7 +197,7 @@ long_mode: jmp *%rcx higher_half: - addq $KERNEL_OFFSET, g_multiboot_info + addq $KERNEL_OFFSET, g_multiboot2_info # call global constuctors call _init diff --git a/kernel/include/kernel/multiboot.h b/kernel/include/kernel/multiboot.h deleted file mode 100644 index 2c42c876..00000000 --- a/kernel/include/kernel/multiboot.h +++ /dev/null @@ -1,57 +0,0 @@ -#pragma once - -#include - -#define MULTIBOOT_FLAGS_FRAMEBUFFER (1 << 12) - -#define MULTIBOOT_FRAMEBUFFER_TYPE_GRAPHICS 1 -#define MULTIBOOT_FRAMEBUFFER_TYPE_TEXT 2 - -struct framebuffer_info_t -{ - uint64_t addr; - uint32_t pitch; - uint32_t width; - uint32_t height; - uint8_t bpp; - uint8_t type; - uint8_t color_info[6]; -}; - -struct multiboot_memory_map_t -{ - uint32_t size; - uint64_t base_addr; - uint64_t length; - uint32_t type; -} __attribute__((packed)); - -// https://www.gnu.org/software/grub/manual/multiboot/multiboot.html#Boot-information-format -struct multiboot_info_t -{ - uint32_t flags; - uint32_t mem_lower; - uint32_t mem_upper; - uint32_t boot_device; - uint32_t cmdline; - uint32_t mods_count; - uint32_t mods_addr; - uint32_t syms[4]; - uint32_t mmap_length; - uint32_t mmap_addr; - uint32_t drives_length; - uint32_t drives_addr; - uint32_t config_table; - uint32_t boot_loader_name; - uint32_t apm_table; - uint32_t vbe_control_info; - uint32_t vbe_mode_info; - uint16_t vbe_mode; - uint16_t vbe_interface_seg; - uint16_t vbe_interface_off; - uint16_t vbe_interface_len; - framebuffer_info_t framebuffer; -}; - -extern "C" multiboot_info_t* g_multiboot_info; -extern "C" uint32_t g_multiboot_magic; diff --git a/kernel/include/kernel/multiboot2.h b/kernel/include/kernel/multiboot2.h new file mode 100644 index 00000000..fed08a8d --- /dev/null +++ b/kernel/include/kernel/multiboot2.h @@ -0,0 +1,75 @@ +#pragma once + +#include + +// https://www.gnu.org/software/grub/manual/multiboot2/multiboot.html#Boot-information + +#define MULTIBOOT2_TAG_END 0 +#define MULTIBOOT2_TAG_CMDLINE 1 +#define MULTIBOOT2_TAG_MMAP 6 +#define MULTIBOOT2_TAG_FRAMEBUFFER 8 +#define MULTIBOOT2_TAG_OLD_RSDP 14 +#define MULTIBOOT2_TAG_NEW_RSDP 15 + +#define MULTIBOOT2_FRAMEBUFFER_TYPE_RGB 1 + +struct multiboot2_tag_t +{ + uint32_t type; + uint32_t size; + multiboot2_tag_t* next() { return (multiboot2_tag_t*)((uintptr_t)this + ((size + 7) & ~7)); } +} __attribute__((packed)); + +struct multiboot2_cmdline_tag_t : public multiboot2_tag_t +{ + char cmdline[]; +} __attribute__((packed)); + +struct multiboot2_mmap_entry_t +{ + uint64_t base_addr; + uint64_t length; + uint32_t type; + uint32_t reserved; +} __attribute__((packed)); + +struct multiboot2_mmap_tag_t : public multiboot2_tag_t +{ + uint32_t entry_size; + uint32_t entry_version; + multiboot2_mmap_entry_t entries[]; +} __attribute__((packed)); + +struct multiboot2_framebuffer_tag_t : public multiboot2_tag_t +{ + uint64_t framebuffer_addr; + uint32_t framebuffer_pitch; + uint32_t framebuffer_width; + uint32_t framebuffer_height; + uint8_t framebuffer_bpp; + uint8_t framebuffer_type; + uint8_t reserved; +} __attribute__((packed)); + +struct multiboot2_rsdp_tag_t : public multiboot2_tag_t +{ + uint8_t data[]; +} __attribute__((packed)); + +struct multiboot2_info_t +{ + uint32_t total_size; + uint32_t reserved; + multiboot2_tag_t tags[]; +} __attribute__((packed)); + +extern "C" multiboot2_info_t* g_multiboot2_info; +extern "C" uint32_t g_multiboot2_magic; + +inline multiboot2_tag_t* multiboot2_find_tag(uint32_t type) +{ + for (auto* tag = g_multiboot2_info->tags; tag->type != MULTIBOOT2_TAG_END; tag = tag->next()) + if (tag->type == type) + return tag; + return nullptr; +} diff --git a/kernel/kernel/ACPI.cpp b/kernel/kernel/ACPI.cpp index ab995586..072f337a 100644 --- a/kernel/kernel/ACPI.cpp +++ b/kernel/kernel/ACPI.cpp @@ -2,6 +2,7 @@ #include #include #include +#include #include @@ -84,6 +85,12 @@ namespace Kernel static const RSDP* locate_rsdp() { + // Check the multiboot headers + if (auto* rsdp_new = (multiboot2_rsdp_tag_t*)multiboot2_find_tag(MULTIBOOT2_TAG_NEW_RSDP)) + return (const RSDP*)rsdp_new->data; + if (auto* rsdp_old = (multiboot2_rsdp_tag_t*)multiboot2_find_tag(MULTIBOOT2_TAG_OLD_RSDP)) + return (const RSDP*)rsdp_old->data; + // Look in main BIOS area below 1 MB for (uintptr_t addr = P2V(0x000E0000); addr < P2V(0x000FFFFF); addr += 16) if (is_rsdp(addr)) diff --git a/kernel/kernel/Memory/Heap.cpp b/kernel/kernel/Memory/Heap.cpp index 57ee9838..7be6a631 100644 --- a/kernel/kernel/Memory/Heap.cpp +++ b/kernel/kernel/Memory/Heap.cpp @@ -1,7 +1,7 @@ #include #include #include -#include +#include extern uint8_t g_kernel_end[]; @@ -26,21 +26,23 @@ namespace Kernel void Heap::initialize_impl() { - if (!(g_multiboot_info->flags & (1 << 6))) + auto* mmap_tag = (multiboot2_mmap_tag_t*)multiboot2_find_tag(MULTIBOOT2_TAG_MMAP); + if (mmap_tag == nullptr) Kernel::panic("Bootloader did not provide a memory map"); - - for (size_t i = 0; i < g_multiboot_info->mmap_length;) + + for (size_t offset = sizeof(*mmap_tag); offset < mmap_tag->size; offset += mmap_tag->entry_size) { - multiboot_memory_map_t* mmmt = (multiboot_memory_map_t*)P2V(g_multiboot_info->mmap_addr + i); - if (mmmt->type == 1) + auto* mmap_entry = (multiboot2_mmap_entry_t*)((uintptr_t)mmap_tag + offset); + + if (mmap_entry->type == 1) { - paddr_t start = mmmt->base_addr; + paddr_t start = mmap_entry->base_addr; if (start < V2P(g_kernel_end)) start = V2P(g_kernel_end); if (auto rem = start % PAGE_SIZE) start += PAGE_SIZE - rem; - paddr_t end = mmmt->base_addr + mmmt->length; + paddr_t end = mmap_entry->base_addr + mmap_entry->length; if (auto rem = end % PAGE_SIZE) end -= rem; @@ -48,7 +50,6 @@ namespace Kernel if (end > start + PAGE_SIZE) MUST(m_physical_ranges.emplace_back(start, end - start)); } - i += mmmt->size + sizeof(uint32_t); } size_t total = 0; diff --git a/kernel/kernel/Terminal/VesaTerminalDriver.cpp b/kernel/kernel/Terminal/VesaTerminalDriver.cpp index 2ac6445f..f53c678e 100644 --- a/kernel/kernel/Terminal/VesaTerminalDriver.cpp +++ b/kernel/kernel/Terminal/VesaTerminalDriver.cpp @@ -1,55 +1,54 @@ #include #include #include -#include +#include #include using namespace Kernel; VesaTerminalDriver* VesaTerminalDriver::create() { - if (!(g_multiboot_info->flags & MULTIBOOT_FLAGS_FRAMEBUFFER)) + auto* framebuffer_tag = (multiboot2_framebuffer_tag_t*)multiboot2_find_tag(MULTIBOOT2_TAG_FRAMEBUFFER); + if (framebuffer_tag == nullptr) { dprintln("Bootloader did not provide framebuffer"); return nullptr; } - auto& framebuffer = g_multiboot_info->framebuffer; - - if (framebuffer.type == MULTIBOOT_FRAMEBUFFER_TYPE_GRAPHICS) + if (framebuffer_tag->framebuffer_type != MULTIBOOT2_FRAMEBUFFER_TYPE_RGB) { - if (framebuffer.bpp != 24 && framebuffer.bpp != 32) - { - dprintln("Unsupported bpp {}", framebuffer.bpp); - return nullptr; - } - dprintln("Graphics Mode {}x{} ({} bpp)", framebuffer.width, framebuffer.height, framebuffer.bpp); - } - else if (framebuffer.type == MULTIBOOT_FRAMEBUFFER_TYPE_TEXT) - { - dprintln("Text Mode is currently not supported"); - return nullptr; - } - else - { - dprintln("Unknown framebuffer type {}", framebuffer.type); + dprintln("unsupported framebuffer type {}", framebuffer_tag->framebuffer_type); return nullptr; } - uint64_t first_page = framebuffer.addr / PAGE_SIZE; - uint64_t last_page = BAN::Math::div_round_up(framebuffer.addr + framebuffer.pitch * framebuffer.height, PAGE_SIZE); - uint64_t needed_pages = last_page - first_page + 1; + if (framebuffer_tag->framebuffer_bpp != 24 && framebuffer_tag->framebuffer_bpp != 32) + { + dprintln("Unsupported bpp {}", framebuffer_tag->framebuffer_bpp); + return nullptr; + } + + dprintln("Graphics Mode {}x{} ({} bpp)", + (uint32_t)framebuffer_tag->framebuffer_width, + (uint32_t)framebuffer_tag->framebuffer_height, + (uint8_t)framebuffer_tag->framebuffer_bpp + ); + + paddr_t paddr = framebuffer_tag->framebuffer_addr & PAGE_ADDR_MASK; + size_t needed_pages = range_page_count( + framebuffer_tag->framebuffer_addr, + framebuffer_tag->framebuffer_pitch * framebuffer_tag->framebuffer_height + ); vaddr_t vaddr = PageTable::kernel().reserve_free_contiguous_pages(needed_pages, KERNEL_OFFSET); ASSERT(vaddr); - PageTable::kernel().map_range_at(framebuffer.addr, vaddr, needed_pages * PAGE_SIZE, PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present); + PageTable::kernel().map_range_at(paddr, vaddr, needed_pages * PAGE_SIZE, PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present); auto* driver = new VesaTerminalDriver( - framebuffer.width, - framebuffer.height, - framebuffer.pitch, - framebuffer.bpp, + framebuffer_tag->framebuffer_width, + framebuffer_tag->framebuffer_height, + framebuffer_tag->framebuffer_pitch, + framebuffer_tag->framebuffer_bpp, vaddr ); driver->set_cursor_position(0, 0); diff --git a/kernel/kernel/kernel.cpp b/kernel/kernel/kernel.cpp index 2a88287a..08ce725d 100644 --- a/kernel/kernel/kernel.cpp +++ b/kernel/kernel/kernel.cpp @@ -12,7 +12,7 @@ #include #include #include -#include +#include #include #include #include @@ -23,8 +23,6 @@ #include #include -extern "C" const char g_kernel_cmdline[]; - struct ParsedCommandLine { bool force_pic = false; @@ -35,11 +33,12 @@ struct ParsedCommandLine static bool should_disable_serial() { - if (!(g_multiboot_info->flags & 0x02)) + auto* cmdline_tag = (multiboot2_cmdline_tag_t*)multiboot2_find_tag(MULTIBOOT2_TAG_CMDLINE); + if (cmdline_tag == nullptr) return false; - const char* start = g_kernel_cmdline; - const char* current = g_kernel_cmdline; + const char* start = cmdline_tag->cmdline; + const char* current = start; while (true) { if (!*current || *current == ' ' || *current == '\t') @@ -60,10 +59,11 @@ static ParsedCommandLine cmdline; static void parse_command_line() { - if (!(g_multiboot_info->flags & 0x02)) + auto* cmdline_tag = (multiboot2_cmdline_tag_t*)multiboot2_find_tag(MULTIBOOT2_TAG_CMDLINE); + if (cmdline_tag == nullptr) return; - BAN::StringView full_command_line(g_kernel_cmdline); + BAN::StringView full_command_line(cmdline_tag->cmdline); auto arguments = MUST(full_command_line.split(' ')); for (auto argument : arguments) @@ -98,7 +98,7 @@ extern "C" void kernel_main() dprintln("Serial output initialized"); } - if (g_multiboot_magic != 0x2BADB002) + if (g_multiboot2_magic != 0x36d76289) { dprintln("Invalid multiboot magic number"); return; diff --git a/toolchain/local/grub-legacy-boot.cfg b/toolchain/local/grub-legacy-boot.cfg index 1798a1e5..4a40c130 100644 --- a/toolchain/local/grub-legacy-boot.cfg +++ b/toolchain/local/grub-legacy-boot.cfg @@ -1,23 +1,23 @@ menuentry "banan-os" { - multiboot /boot/banan-os.kernel root=/dev/sda2 + multiboot2 /boot/banan-os.kernel root=/dev/sda2 } menuentry "banan-os (no serial)" { - multiboot /boot/banan-os.kernel root=/dev/sda2 noserial + multiboot2 /boot/banan-os.kernel root=/dev/sda2 noserial } menuentry "banan-os (only serial)" { - multiboot /boot/banan-os.kernel root=/dev/sda2 console=ttyS0 + multiboot2 /boot/banan-os.kernel root=/dev/sda2 console=ttyS0 } menuentry "banan-os (no apic)" { - multiboot /boot/banan-os.kernel root=/dev/sda2 noapic + multiboot2 /boot/banan-os.kernel root=/dev/sda2 noapic } menuentry "banan-os (no apic, no serial)" { - multiboot /boot/banan-os.kernel root=/dev/sda2 noapic noserial + multiboot2 /boot/banan-os.kernel root=/dev/sda2 noapic noserial } menuentry "banan-os (no apic, only serial)" { - multiboot /boot/banan-os.kernel root=/dev/sda2 noapic console=ttyS0 + multiboot2 /boot/banan-os.kernel root=/dev/sda2 noapic console=ttyS0 } diff --git a/toolchain/local/grub-uefi.cfg b/toolchain/local/grub-uefi.cfg index ca0ecb2c..69cb7ea4 100644 --- a/toolchain/local/grub-uefi.cfg +++ b/toolchain/local/grub-uefi.cfg @@ -2,25 +2,25 @@ insmod part_gpt set root=(hd0,gpt2) menuentry "banan-os" { - multiboot /boot/banan-os.kernel root=/dev/sda2 + multiboot2 /boot/banan-os.kernel root=/dev/sda2 } menuentry "banan-os (no serial)" { - multiboot /boot/banan-os.kernel root=/dev/sda2 noserial + multiboot2 /boot/banan-os.kernel root=/dev/sda2 noserial } menuentry "banan-os (only serial)" { - multiboot /boot/banan-os.kernel root=/dev/sda2 console=ttyS0 + multiboot2 /boot/banan-os.kernel root=/dev/sda2 console=ttyS0 } menuentry "banan-os (no apic)" { - multiboot /boot/banan-os.kernel root=/dev/sda2 noapic + multiboot2 /boot/banan-os.kernel root=/dev/sda2 noapic } menuentry "banan-os (no apic, no serial)" { - multiboot /boot/banan-os.kernel root=/dev/sda2 noapic noserial + multiboot2 /boot/banan-os.kernel root=/dev/sda2 noapic noserial } menuentry "banan-os (no apic, only serial)" { - multiboot /boot/banan-os.kernel root=/dev/sda2 noapic console=ttyS0 + multiboot2 /boot/banan-os.kernel root=/dev/sda2 noapic console=ttyS0 } From e2e5c31d54d398e55944269f4d684961f8d48835 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Tue, 17 Oct 2023 01:15:08 +0300 Subject: [PATCH 124/240] Kernel: Map multiboot2 memory in PageTable initialization It cannot be assumed that multiboot data lies between kernel_end and 2 GiB mark, so I properly allocate virtual address space for it. --- kernel/arch/x86_64/PageTable.cpp | 26 ++++++++++++++++---------- kernel/arch/x86_64/boot.S | 2 -- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/kernel/arch/x86_64/PageTable.cpp b/kernel/arch/x86_64/PageTable.cpp index 24443797..ef0db19f 100644 --- a/kernel/arch/x86_64/PageTable.cpp +++ b/kernel/arch/x86_64/PageTable.cpp @@ -138,16 +138,6 @@ namespace Kernel // Map (0 -> phys_kernel_end) to (KERNEL_OFFSET -> virt_kernel_end) map_range_at(0, KERNEL_OFFSET, (uintptr_t)g_kernel_end - KERNEL_OFFSET, Flags::ReadWrite | Flags::Present); - - // Map multiboot info - vaddr_t multiboot_data_start = (vaddr_t)g_multiboot2_info & PAGE_ADDR_MASK; - vaddr_t multiboot_data_end = (vaddr_t)g_multiboot2_info + g_multiboot2_info->total_size; - map_range_at( - V2P(multiboot_data_start), - multiboot_data_start, - multiboot_data_end - multiboot_data_start, - Flags::ReadWrite | Flags::Present - ); // Map executable kernel memory as executable map_range_at( @@ -164,6 +154,22 @@ namespace Kernel g_userspace_end - g_userspace_start, Flags::Execute | Flags::UserSupervisor | Flags::Present ); + + // Map multiboot memory + paddr_t multiboot2_data_start = (vaddr_t)g_multiboot2_info & PAGE_ADDR_MASK; + paddr_t multiboot2_data_end = (vaddr_t)g_multiboot2_info + g_multiboot2_info->total_size; + + size_t multiboot2_needed_pages = BAN::Math::div_round_up(multiboot2_data_end - multiboot2_data_start, PAGE_SIZE); + vaddr_t multiboot2_vaddr = reserve_free_contiguous_pages(multiboot2_needed_pages, KERNEL_OFFSET); + + map_range_at( + multiboot2_data_start, + multiboot2_vaddr, + multiboot2_needed_pages * PAGE_SIZE, + Flags::ReadWrite | Flags::Present + ); + + g_multiboot2_info = (multiboot2_info_t*)(multiboot2_vaddr + ((vaddr_t)g_multiboot2_info % PAGE_SIZE)); } BAN::ErrorOr PageTable::create_userspace() diff --git a/kernel/arch/x86_64/boot.S b/kernel/arch/x86_64/boot.S index b00995d9..ab4d54bf 100644 --- a/kernel/arch/x86_64/boot.S +++ b/kernel/arch/x86_64/boot.S @@ -197,8 +197,6 @@ long_mode: jmp *%rcx higher_half: - addq $KERNEL_OFFSET, g_multiboot2_info - # call global constuctors call _init From 781c950af6bcab5b3eb9e0f1e2a0b201924d5d7b Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 20 Oct 2023 04:59:08 +0300 Subject: [PATCH 125/240] BAN: add helper to cast Span to Span --- BAN/include/BAN/Span.h | 2 ++ CMakeLists.txt | 24 ++++++++++++++++-------- image-full.sh | 6 +++--- toolchain/build.sh | 24 ++++++++++++------------ toolchain/local/.gitignore | 1 + 5 files changed, 34 insertions(+), 23 deletions(-) create mode 100644 toolchain/local/.gitignore diff --git a/BAN/include/BAN/Span.h b/BAN/include/BAN/Span.h index a6b4ad09..ff3e6332 100644 --- a/BAN/include/BAN/Span.h +++ b/BAN/include/BAN/Span.h @@ -43,6 +43,8 @@ namespace BAN Span slice(size_type, size_type = ~size_type(0)); + Span as_const() const { return Span(m_data, m_size); } + private: T* m_data = nullptr; size_type m_size = 0; diff --git a/CMakeLists.txt b/CMakeLists.txt index 5803ea0a..0c5cc6ce 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -39,6 +39,14 @@ set(BANAN_BIN ${BANAN_SYSROOT}/usr/bin) set(BANAN_BOOT ${BANAN_SYSROOT}/boot) set(DISK_IMAGE_PATH ${CMAKE_BINARY_DIR}/banan-os.img) +set(BANAN_SCRIPT_ENV + BANAN_ARCH="${BANAN_ARCH}" + DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" + SYSROOT="${BANAN_SYSROOT}" + TOOLCHAIN_PREFIX="${TOOLCHAIN_PREFIX}" + UEFI_BOOT="${UEFI_BOOT}" +) + add_subdirectory(kernel) add_subdirectory(BAN) add_subdirectory(libc) @@ -59,7 +67,7 @@ add_custom_target(headers ) add_custom_target(toolchain - COMMAND ${CMAKE_COMMAND} -E env SYSROOT="${BANAN_SYSROOT}" PREFIX="${TOOLCHAIN_PREFIX}" ARCH="${BANAN_ARCH}" ${CMAKE_SOURCE_DIR}/toolchain/build.sh + COMMAND ${CMAKE_COMMAND} -E env ${BANAN_SCRIPT_ENV} ${CMAKE_SOURCE_DIR}/toolchain/build.sh DEPENDS headers USES_TERMINAL ) @@ -71,7 +79,7 @@ add_custom_target(libstdc++ ) add_custom_target(image - COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" SYSROOT="${BANAN_SYSROOT}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" TOOLCHAIN="${TOOLCHAIN_PREFIX}" UEFI_BOOT="${UEFI_BOOT}" ${CMAKE_SOURCE_DIR}/image.sh + COMMAND ${CMAKE_COMMAND} -E env ${BANAN_SCRIPT_ENV} ${CMAKE_SOURCE_DIR}/image.sh DEPENDS kernel-install DEPENDS ban-install DEPENDS libc-install @@ -81,7 +89,7 @@ add_custom_target(image ) add_custom_target(image-full - COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" SYSROOT="${BANAN_SYSROOT}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" TOOLCHAIN="${TOOLCHAIN_PREFIX}" UEFI_BOOT="${UEFI_BOOT}" ${CMAKE_SOURCE_DIR}/image-full.sh + COMMAND ${CMAKE_COMMAND} -E env ${BANAN_SCRIPT_ENV} ${CMAKE_SOURCE_DIR}/image-full.sh DEPENDS kernel-install DEPENDS ban-install DEPENDS libc-install @@ -91,30 +99,30 @@ add_custom_target(image-full ) add_custom_target(check-fs - COMMAND ${CMAKE_COMMAND} -E env DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" ${CMAKE_SOURCE_DIR}/check-fs.sh + COMMAND ${CMAKE_COMMAND} -E env ${BANAN_SCRIPT_ENV} ${CMAKE_SOURCE_DIR}/check-fs.sh USES_TERMINAL ) add_custom_target(qemu - COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" UEFI_BOOT="${UEFI_BOOT}" ${CMAKE_SOURCE_DIR}/qemu.sh -serial stdio ${QEMU_ACCEL} + COMMAND ${CMAKE_COMMAND} -E env ${BANAN_SCRIPT_ENV} ${CMAKE_SOURCE_DIR}/qemu.sh -serial stdio ${QEMU_ACCEL} DEPENDS image USES_TERMINAL ) add_custom_target(qemu-nographic - COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" UEFI_BOOT="${UEFI_BOOT}" ${CMAKE_SOURCE_DIR}/qemu.sh -nographic ${QEMU_ACCEL} + COMMAND ${CMAKE_COMMAND} -E env ${BANAN_SCRIPT_ENV} ${CMAKE_SOURCE_DIR}/qemu.sh -nographic ${QEMU_ACCEL} DEPENDS image USES_TERMINAL ) add_custom_target(qemu-debug - COMMAND ${CMAKE_COMMAND} -E env BANAN_ARCH="${BANAN_ARCH}" DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" UEFI_BOOT="${UEFI_BOOT}" ${CMAKE_SOURCE_DIR}/qemu.sh -serial stdio -d int -no-reboot + COMMAND ${CMAKE_COMMAND} -E env ${BANAN_SCRIPT_ENV} ${CMAKE_SOURCE_DIR}/qemu.sh -serial stdio -d int -no-reboot DEPENDS image USES_TERMINAL ) add_custom_target(bochs - COMMAND ${CMAKE_COMMAND} -E env DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" ${CMAKE_SOURCE_DIR}/bochs.sh + COMMAND ${CMAKE_COMMAND} -E env ${BANAN_SCRIPT_ENV} ${CMAKE_SOURCE_DIR}/bochs.sh DEPENDS image USES_TERMINAL ) diff --git a/image-full.sh b/image-full.sh index 8ebc2ddc..7725c7f0 100755 --- a/image-full.sh +++ b/image-full.sh @@ -59,18 +59,18 @@ if [[ "$UEFI_BOOT" == "1" ]]; then sudo mkfs.fat $PARTITION1 > /dev/null sudo mount $PARTITION1 "$MOUNT_DIR" sudo mkdir -p "$MOUNT_DIR/EFI/BOOT" - sudo "$TOOLCHAIN/bin/grub-mkstandalone" -O "$BANAN_ARCH-efi" -o "$MOUNT_DIR/EFI/BOOT/BOOTX64.EFI" "boot/grub/grub.cfg=$TOOLCHAIN/grub-memdisk.cfg" + sudo "$TOOLCHAIN_PREFIX/bin/grub-mkstandalone" -O "$BANAN_ARCH-efi" -o "$MOUNT_DIR/EFI/BOOT/BOOTX64.EFI" "boot/grub/grub.cfg=$TOOLCHAIN_PREFIX/grub-memdisk.cfg" sudo umount "$MOUNT_DIR" sudo mount $PARTITION2 "$MOUNT_DIR" sudo mkdir -p "$MOUNT_DIR/boot/grub" - sudo cp "$TOOLCHAIN/grub-uefi.cfg" "$MOUNT_DIR/boot/grub/grub.cfg" + sudo cp "$TOOLCHAIN_PREFIX/grub-uefi.cfg" "$MOUNT_DIR/boot/grub/grub.cfg" sudo umount "$MOUNT_DIR" else sudo mount $PARTITION2 "$MOUNT_DIR" sudo grub-install --no-floppy --target=i386-pc --modules="normal ext2 multiboot" --boot-directory="$MOUNT_DIR/boot" $LOOP_DEV sudo mkdir -p "$MOUNT_DIR/boot/grub" - sudo cp "$TOOLCHAIN/grub-legacy-boot.cfg" "$MOUNT_DIR/boot/grub/grub.cfg" + sudo cp "$TOOLCHAIN_PREFIX/grub-legacy-boot.cfg" "$MOUNT_DIR/boot/grub/grub.cfg" sudo umount "$MOUNT_DIR" fi diff --git a/toolchain/build.sh b/toolchain/build.sh index 1b9ec77d..8da3970e 100755 --- a/toolchain/build.sh +++ b/toolchain/build.sh @@ -19,19 +19,19 @@ if [[ -z $SYSROOT ]]; then exit 1 fi -if [[ -z $PREFIX ]]; then - echo "You must set the PREFIX environment variable" >&2 +if [[ -z $TOOLCHAIN_PREFIX ]]; then + echo "You must set the TOOLCHAIN_PREFIX environment variable" >&2 exit 1 fi -if [[ -z $ARCH ]]; then - echo "You must set the ARCH environment variable" >&2 +if [[ -z $BANAN_ARCH ]]; then + echo "You must set the BANAN_ARCH environment variable" >&2 exit 1 fi -TARGET="${ARCH}-banan_os" +TARGET="${BANAN_ARCH}-banan_os" -if [ ! -f ${PREFIX}/bin/${TARGET}-ld ]; then +if [ ! -f ${TOOLCHAIN_PREFIX}/bin/${TARGET}-ld ]; then echo "Building ${BINUTILS_VERSION}" @@ -49,7 +49,7 @@ if [ ! -f ${PREFIX}/bin/${TARGET}-ld ]; then ../../${BINUTILS_VERSION}/configure \ --target="$TARGET" \ - --prefix="$PREFIX" \ + --prefix="$TOOLCHAIN_PREFIX" \ --with-sysroot="$SYSROOT" \ --disable-nls \ --disable-werror @@ -61,7 +61,7 @@ if [ ! -f ${PREFIX}/bin/${TARGET}-ld ]; then fi -if [ ! -f ${PREFIX}/bin/${TARGET}-g++ ]; then +if [ ! -f ${TOOLCHAIN_PREFIX}/bin/${TARGET}-g++ ]; then echo "Building ${GCC_VERSION}" @@ -79,7 +79,7 @@ if [ ! -f ${PREFIX}/bin/${TARGET}-g++ ]; then ../../${GCC_VERSION}/configure \ --target="$TARGET" \ - --prefix="$PREFIX" \ + --prefix="$TOOLCHAIN_PREFIX" \ --with-sysroot="$SYSROOT" \ --disable-nls \ --enable-languages=c,c++ @@ -92,7 +92,7 @@ if [ ! -f ${PREFIX}/bin/${TARGET}-g++ ]; then fi -if [ ! -f ${PREFIX}/bin/grub-mkstandalone ]; then +if [ ! -f ${TOOLCHAIN_PREFIX}/bin/grub-mkstandalone ]; then echo "Building ${GRUB_VERSION}" @@ -108,8 +108,8 @@ if [ ! -f ${PREFIX}/bin/grub-mkstandalone ]; then pushd build/${GRUB_VERSION}/ ../../${GRUB_VERSION}/configure \ - --target="$ARCH" \ - --prefix="$PREFIX" \ + --target="$BANAN_ARCH" \ + --prefix="$TOOLCHAIN_PREFIX" \ --with-platform="efi" \ --disable-werror diff --git a/toolchain/local/.gitignore b/toolchain/local/.gitignore new file mode 100644 index 00000000..0a00d701 --- /dev/null +++ b/toolchain/local/.gitignore @@ -0,0 +1 @@ +*/ \ No newline at end of file From db5c24b2a56e3457d47e31f70f7680085f5628ed Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 20 Oct 2023 04:59:29 +0300 Subject: [PATCH 126/240] BAN: Implement ByteSpan This is a span over exisiting containers/data types. I'm not too happy with the constructors and assignment operators, but they will work for now --- BAN/include/BAN/ByteSpan.h | 121 +++++++++++++++++++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 BAN/include/BAN/ByteSpan.h diff --git a/BAN/include/BAN/ByteSpan.h b/BAN/include/BAN/ByteSpan.h new file mode 100644 index 00000000..589b988e --- /dev/null +++ b/BAN/include/BAN/ByteSpan.h @@ -0,0 +1,121 @@ +#pragma once + +#include + +namespace BAN +{ + + template + class ByteSpanGeneral + { + public: + using value_type = maybe_const_t; + using size_type = size_t; + + public: + ByteSpanGeneral() = default; + ByteSpanGeneral(value_type* data, size_type size) + : m_data(data) + , m_size(size) + { } + + ByteSpanGeneral(ByteSpanGeneral& other) + : m_data(other.data()) + , m_size(other.size()) + { } + template + ByteSpanGeneral(const ByteSpanGeneral& other) requires(CONST) + : m_data(other.data()) + , m_size(other.size()) + { } + ByteSpanGeneral(Span other) + : m_data(other.data()) + , m_size(other.size()) + { } + ByteSpanGeneral(const Span& other) requires(CONST) + : m_data(other.data()) + , m_size(other.size()) + { } + + ByteSpanGeneral& operator=(ByteSpanGeneral other) + { + m_data = other.data(); + m_size = other.size(); + return *this; + } + template + ByteSpanGeneral& operator=(const ByteSpanGeneral& other) requires(CONST) + { + m_data = other.data(); + m_size = other.size(); + return *this; + } + ByteSpanGeneral& operator=(Span other) + { + m_data = other.data(); + m_size = other.size(); + return *this; + } + ByteSpanGeneral& operator=(const Span& other) requires(CONST) + { + m_data = other.data(); + m_size = other.size(); + return *this; + } + + template + requires(CONST || !is_const_v) + static ByteSpanGeneral from(S& value) + { + return ByteSpanGeneral(reinterpret_cast(&value), sizeof(S)); + } + + template + requires(!CONST && !is_const_v) + S& as() + { + ASSERT(m_data); + ASSERT(m_size >= sizeof(S)); + return *reinterpret_cast(m_data); + } + + template + const S& as() const + { + ASSERT(m_data); + ASSERT(m_size >= sizeof(S)); + return *reinterpret_cast(m_data); + } + + ByteSpanGeneral slice(size_type offset, size_type length) + { + ASSERT(m_data); + ASSERT(m_size >= offset + length); + return ByteSpanGeneral(m_data + offset, length); + } + + value_type& operator[](size_type offset) + { + ASSERT(offset < m_size); + return m_data[offset]; + } + const value_type& operator[](size_type offset) const + { + ASSERT(offset < m_size); + return m_data[offset]; + } + + value_type* data() { return m_data; } + const value_type* data() const { return m_data; } + + size_type size() const { return m_size; } + + private: + value_type* m_data { nullptr }; + size_type m_size { 0 }; + }; + + using ByteSpan = ByteSpanGeneral; + using ConstByteSpan = ByteSpanGeneral; + +} \ No newline at end of file From 5bfeb9f3ca85d915a59ec5a9eeba81d58a1e8395 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 20 Oct 2023 05:07:44 +0300 Subject: [PATCH 127/240] Kernel: Rewrite all read/write functions to use BAN::ByteSpan This allows us to not work with raw pointers and use sized containers for reading and writing. --- LibELF/LibELF/LoadableELF.cpp | 6 +- kernel/include/kernel/Device/NullDevice.h | 4 +- kernel/include/kernel/Device/ZeroDevice.h | 4 +- kernel/include/kernel/FS/Ext2/FileSystem.h | 3 + kernel/include/kernel/FS/Ext2/Inode.h | 4 +- kernel/include/kernel/FS/Inode.h | 11 ++-- kernel/include/kernel/FS/Pipe.h | 4 +- kernel/include/kernel/FS/ProcFS/Inode.h | 10 +-- kernel/include/kernel/FS/RamFS/Inode.h | 4 +- kernel/include/kernel/Input/PS2Keyboard.h | 2 +- kernel/include/kernel/OpenFileDescriptorSet.h | 4 +- kernel/include/kernel/Process.h | 6 +- .../include/kernel/Storage/ATA/AHCI/Device.h | 4 +- kernel/include/kernel/Storage/ATA/ATABus.h | 5 +- kernel/include/kernel/Storage/ATA/ATADevice.h | 8 +-- kernel/include/kernel/Storage/DiskCache.h | 5 +- kernel/include/kernel/Storage/StorageDevice.h | 14 ++--- kernel/include/kernel/Terminal/TTY.h | 4 +- kernel/kernel/Device/ZeroDevice.cpp | 6 +- kernel/kernel/FS/Ext2/FileSystem.cpp | 10 +-- kernel/kernel/FS/Ext2/Inode.cpp | 35 ++++++----- kernel/kernel/FS/Inode.cpp | 8 +-- kernel/kernel/FS/Pipe.cpp | 14 ++--- kernel/kernel/FS/ProcFS/Inode.cpp | 8 +-- kernel/kernel/FS/RamFS/Inode.cpp | 16 ++--- kernel/kernel/Font.cpp | 2 +- kernel/kernel/Input/PS2Keyboard.cpp | 6 +- kernel/kernel/Memory/FileBackedRegion.cpp | 8 +-- kernel/kernel/OpenFileDescriptorSet.cpp | 8 +-- kernel/kernel/Process.cpp | 26 ++++---- kernel/kernel/Storage/ATA/AHCI/Device.cpp | 10 +-- kernel/kernel/Storage/ATA/ATABus.cpp | 12 ++-- kernel/kernel/Storage/ATA/ATADevice.cpp | 22 ++++--- kernel/kernel/Storage/DiskCache.cpp | 21 ++++--- kernel/kernel/Storage/StorageDevice.cpp | 63 ++++++++++++------- kernel/kernel/Terminal/TTY.cpp | 16 ++--- 36 files changed, 216 insertions(+), 177 deletions(-) diff --git a/LibELF/LibELF/LoadableELF.cpp b/LibELF/LibELF/LoadableELF.cpp index 9ca3a8bb..c5475bef 100644 --- a/LibELF/LibELF/LoadableELF.cpp +++ b/LibELF/LibELF/LoadableELF.cpp @@ -62,7 +62,7 @@ namespace LibELF return BAN::Error::from_errno(ENOEXEC); } - size_t nread = TRY(m_inode->read(0, &m_file_header, sizeof(m_file_header))); + size_t nread = TRY(m_inode->read(0, BAN::ByteSpan::from(m_file_header))); ASSERT(nread == sizeof(m_file_header)); if (m_file_header.e_ident[EI_MAG0] != ELFMAG0 || @@ -113,7 +113,7 @@ namespace LibELF TRY(m_program_headers.resize(m_file_header.e_phnum)); for (size_t i = 0; i < m_file_header.e_phnum; i++) { - TRY(m_inode->read(m_file_header.e_phoff + m_file_header.e_phentsize * i, &m_program_headers[i], m_file_header.e_phentsize)); + TRY(m_inode->read(m_file_header.e_phoff + m_file_header.e_phentsize * i, BAN::ByteSpan::from(m_program_headers[i]))); const auto& pheader = m_program_headers[i]; if (pheader.p_type != PT_NULL && pheader.p_type != PT_LOAD) @@ -242,7 +242,7 @@ namespace LibELF file_offset = vaddr - program_header.p_vaddr; size_t bytes = BAN::Math::min(PAGE_SIZE - vaddr_offset, program_header.p_filesz - file_offset); - TRY(m_inode->read(program_header.p_offset + file_offset, (void*)(vaddr + vaddr_offset), bytes)); + TRY(m_inode->read(program_header.p_offset + file_offset, { (uint8_t*)vaddr + vaddr_offset, bytes })); } return {}; diff --git a/kernel/include/kernel/Device/NullDevice.h b/kernel/include/kernel/Device/NullDevice.h index a5e09932..ec748f92 100644 --- a/kernel/include/kernel/Device/NullDevice.h +++ b/kernel/include/kernel/Device/NullDevice.h @@ -20,8 +20,8 @@ namespace Kernel , m_rdev(rdev) { } - virtual BAN::ErrorOr read_impl(off_t, void*, size_t) override { return 0; } - virtual BAN::ErrorOr write_impl(off_t, const void*, size_t size) override { return size; }; + virtual BAN::ErrorOr read_impl(off_t, BAN::ByteSpan) override { return 0; } + virtual BAN::ErrorOr write_impl(off_t, BAN::ConstByteSpan buffer) override { return buffer.size(); }; private: const dev_t m_rdev; diff --git a/kernel/include/kernel/Device/ZeroDevice.h b/kernel/include/kernel/Device/ZeroDevice.h index 86fb781f..90aa3f8a 100644 --- a/kernel/include/kernel/Device/ZeroDevice.h +++ b/kernel/include/kernel/Device/ZeroDevice.h @@ -18,8 +18,8 @@ namespace Kernel , m_rdev(rdev) { } - virtual BAN::ErrorOr read_impl(off_t, void*, size_t) override; - virtual BAN::ErrorOr write_impl(off_t, const void*, size_t size) override { return size; }; + virtual BAN::ErrorOr read_impl(off_t, BAN::ByteSpan) override; + virtual BAN::ErrorOr write_impl(off_t, BAN::ConstByteSpan buffer) override { return buffer.size(); }; private: const dev_t m_rdev; diff --git a/kernel/include/kernel/FS/Ext2/FileSystem.h b/kernel/include/kernel/FS/Ext2/FileSystem.h index 1d162271..717394c3 100644 --- a/kernel/include/kernel/FS/Ext2/FileSystem.h +++ b/kernel/include/kernel/FS/Ext2/FileSystem.h @@ -33,6 +33,9 @@ namespace Kernel uint8_t* data() { return m_buffer.data(); } const uint8_t* data() const { return m_buffer.data(); } + BAN::ByteSpan span() { return m_buffer; } + BAN::ConstByteSpan span() const { return m_buffer.as_const(); } + uint8_t& operator[](size_t index) { return m_buffer[index]; } uint8_t operator[](size_t index) const { return m_buffer[index]; } diff --git a/kernel/include/kernel/FS/Ext2/Inode.h b/kernel/include/kernel/FS/Ext2/Inode.h index e5cc01fe..dfcd24fd 100644 --- a/kernel/include/kernel/FS/Ext2/Inode.h +++ b/kernel/include/kernel/FS/Ext2/Inode.h @@ -34,8 +34,8 @@ namespace Kernel virtual BAN::ErrorOr link_target_impl() override; - virtual BAN::ErrorOr read_impl(off_t, void*, size_t) override; - virtual BAN::ErrorOr write_impl(off_t, const void*, size_t) override; + virtual BAN::ErrorOr read_impl(off_t, BAN::ByteSpan) override; + virtual BAN::ErrorOr write_impl(off_t, BAN::ConstByteSpan) override; virtual BAN::ErrorOr truncate_impl(size_t) override; private: diff --git a/kernel/include/kernel/FS/Inode.h b/kernel/include/kernel/FS/Inode.h index 9c4991d2..b13486bf 100644 --- a/kernel/include/kernel/FS/Inode.h +++ b/kernel/include/kernel/FS/Inode.h @@ -1,10 +1,11 @@ #pragma once +#include #include #include #include -#include #include +#include #include #include @@ -95,8 +96,8 @@ namespace Kernel BAN::ErrorOr link_target(); // General API - BAN::ErrorOr read(off_t, void*, size_t); - BAN::ErrorOr write(off_t, const void*, size_t); + BAN::ErrorOr read(off_t, BAN::ByteSpan buffer); + BAN::ErrorOr write(off_t, BAN::ConstByteSpan buffer); BAN::ErrorOr truncate(size_t); bool has_data() const; @@ -111,8 +112,8 @@ namespace Kernel virtual BAN::ErrorOr link_target_impl() { return BAN::Error::from_errno(ENOTSUP); } // General API - virtual BAN::ErrorOr read_impl(off_t, void*, size_t) { return BAN::Error::from_errno(ENOTSUP); } - virtual BAN::ErrorOr write_impl(off_t, const void*, size_t) { return BAN::Error::from_errno(ENOTSUP); } + virtual BAN::ErrorOr read_impl(off_t, BAN::ByteSpan) { return BAN::Error::from_errno(ENOTSUP); } + virtual BAN::ErrorOr write_impl(off_t, BAN::ConstByteSpan) { return BAN::Error::from_errno(ENOTSUP); } virtual BAN::ErrorOr truncate_impl(size_t) { return BAN::Error::from_errno(ENOTSUP); } virtual bool has_data_impl() const { dwarnln("nonblock not supported"); return true; } diff --git a/kernel/include/kernel/FS/Pipe.h b/kernel/include/kernel/FS/Pipe.h index 8617c9ec..6d90c572 100644 --- a/kernel/include/kernel/FS/Pipe.h +++ b/kernel/include/kernel/FS/Pipe.h @@ -31,8 +31,8 @@ namespace Kernel virtual dev_t rdev() const override { return 0; } // FIXME protected: - virtual BAN::ErrorOr read_impl(off_t, void*, size_t) override; - virtual BAN::ErrorOr write_impl(off_t, const void*, size_t) override; + virtual BAN::ErrorOr read_impl(off_t, BAN::ByteSpan) override; + virtual BAN::ErrorOr write_impl(off_t, BAN::ConstByteSpan) override; private: Pipe(const Credentials&); diff --git a/kernel/include/kernel/FS/ProcFS/Inode.h b/kernel/include/kernel/FS/ProcFS/Inode.h index 4300721e..628b9c71 100644 --- a/kernel/include/kernel/FS/ProcFS/Inode.h +++ b/kernel/include/kernel/FS/ProcFS/Inode.h @@ -23,23 +23,23 @@ namespace Kernel class ProcROInode final : public RamInode { public: - static BAN::ErrorOr> create(Process&, size_t (Process::*callback)(off_t, void*, size_t) const, RamFileSystem&, mode_t, uid_t, gid_t); + static BAN::ErrorOr> create(Process&, size_t (Process::*callback)(off_t, BAN::ByteSpan) const, RamFileSystem&, mode_t, uid_t, gid_t); ~ProcROInode() = default; protected: - virtual BAN::ErrorOr read_impl(off_t, void*, size_t) override; + virtual BAN::ErrorOr read_impl(off_t, BAN::ByteSpan) override; // You may not write here and this is always non blocking - virtual BAN::ErrorOr write_impl(off_t, const void*, size_t) override { return BAN::Error::from_errno(EINVAL); } + virtual BAN::ErrorOr write_impl(off_t, BAN::ConstByteSpan) override { return BAN::Error::from_errno(EINVAL); } virtual BAN::ErrorOr truncate_impl(size_t) override { return BAN::Error::from_errno(EINVAL); } virtual bool has_data_impl() const override { return true; } private: - ProcROInode(Process&, size_t (Process::*)(off_t, void*, size_t) const, RamFileSystem&, const FullInodeInfo&); + ProcROInode(Process&, size_t (Process::*)(off_t, BAN::ByteSpan) const, RamFileSystem&, const FullInodeInfo&); private: Process& m_process; - size_t (Process::*m_callback)(off_t, void*, size_t) const; + size_t (Process::*m_callback)(off_t, BAN::ByteSpan) const; }; } diff --git a/kernel/include/kernel/FS/RamFS/Inode.h b/kernel/include/kernel/FS/RamFS/Inode.h index c3ac0e0e..75bd4a54 100644 --- a/kernel/include/kernel/FS/RamFS/Inode.h +++ b/kernel/include/kernel/FS/RamFS/Inode.h @@ -70,8 +70,8 @@ namespace Kernel protected: RamFileInode(RamFileSystem&, const FullInodeInfo&); - virtual BAN::ErrorOr read_impl(off_t, void*, size_t) override; - virtual BAN::ErrorOr write_impl(off_t, const void*, size_t) override; + virtual BAN::ErrorOr read_impl(off_t, BAN::ByteSpan) override; + virtual BAN::ErrorOr write_impl(off_t, BAN::ConstByteSpan) override; virtual BAN::ErrorOr truncate_impl(size_t) override; private: diff --git a/kernel/include/kernel/Input/PS2Keyboard.h b/kernel/include/kernel/Input/PS2Keyboard.h index 62e8a57e..4ee18922 100644 --- a/kernel/include/kernel/Input/PS2Keyboard.h +++ b/kernel/include/kernel/Input/PS2Keyboard.h @@ -63,7 +63,7 @@ namespace Kernel::Input virtual dev_t rdev() const override { return m_rdev; } protected: - virtual BAN::ErrorOr read_impl(off_t, void*, size_t) override; + virtual BAN::ErrorOr read_impl(off_t, BAN::ByteSpan) override; private: const dev_t m_rdev; diff --git a/kernel/include/kernel/OpenFileDescriptorSet.h b/kernel/include/kernel/OpenFileDescriptorSet.h index 6996bc96..378b791b 100644 --- a/kernel/include/kernel/OpenFileDescriptorSet.h +++ b/kernel/include/kernel/OpenFileDescriptorSet.h @@ -41,8 +41,8 @@ namespace Kernel void close_all(); void close_cloexec(); - BAN::ErrorOr read(int fd, void* buffer, size_t count); - BAN::ErrorOr write(int fd, const void* buffer, size_t count); + BAN::ErrorOr read(int fd, BAN::ByteSpan); + BAN::ErrorOr write(int fd, BAN::ConstByteSpan); BAN::ErrorOr read_dir_entries(int fd, DirectoryEntryList* list, size_t list_size); diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index a0b23e96..3421a72e 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -139,9 +139,9 @@ namespace Kernel PageTable& page_table() { return m_page_table ? *m_page_table : PageTable::kernel(); } - size_t proc_meminfo(off_t offset, void* buffer, size_t buffer_size) const; - size_t proc_cmdline(off_t offset, void* buffer, size_t buffer_size) const; - size_t proc_environ(off_t offset, void* buffer, size_t buffer_size) const; + size_t proc_meminfo(off_t offset, BAN::ByteSpan) const; + size_t proc_cmdline(off_t offset, BAN::ByteSpan) const; + size_t proc_environ(off_t offset, BAN::ByteSpan) const; bool is_userspace() const { return m_is_userspace; } const userspace_info_t& userspace_info() const { return m_userspace_info; } diff --git a/kernel/include/kernel/Storage/ATA/AHCI/Device.h b/kernel/include/kernel/Storage/ATA/AHCI/Device.h index 4e4c29fa..42d39335 100644 --- a/kernel/include/kernel/Storage/ATA/AHCI/Device.h +++ b/kernel/include/kernel/Storage/ATA/AHCI/Device.h @@ -23,8 +23,8 @@ namespace Kernel BAN::ErrorOr rebase(); BAN::ErrorOr read_identify_data(); - virtual BAN::ErrorOr read_sectors_impl(uint64_t lba, uint64_t sector_count, uint8_t* buffer) override; - virtual BAN::ErrorOr write_sectors_impl(uint64_t lba, uint64_t sector_count, const uint8_t* buffer) override; + virtual BAN::ErrorOr read_sectors_impl(uint64_t lba, uint64_t sector_count, BAN::ByteSpan) override; + virtual BAN::ErrorOr write_sectors_impl(uint64_t lba, uint64_t sector_count, BAN::ConstByteSpan) override; BAN::ErrorOr send_command_and_block(uint64_t lba, uint64_t sector_count, Command command); BAN::Optional find_free_command_slot(); diff --git a/kernel/include/kernel/Storage/ATA/ATABus.h b/kernel/include/kernel/Storage/ATA/ATABus.h index 3c781d6b..95bdda8e 100644 --- a/kernel/include/kernel/Storage/ATA/ATABus.h +++ b/kernel/include/kernel/Storage/ATA/ATABus.h @@ -1,5 +1,6 @@ #pragma once +#include #include #include #include @@ -22,8 +23,8 @@ namespace Kernel public: static BAN::ErrorOr> create(uint16_t base, uint16_t ctrl, uint8_t irq); - BAN::ErrorOr read(ATADevice&, uint64_t, uint8_t, uint8_t*); - BAN::ErrorOr write(ATADevice&, uint64_t, uint8_t, const uint8_t*); + BAN::ErrorOr read(ATADevice&, uint64_t lba, uint64_t sector_count, BAN::ByteSpan); + BAN::ErrorOr write(ATADevice&, uint64_t lba, uint64_t sector_count, BAN::ConstByteSpan); virtual void handle_irq() override; diff --git a/kernel/include/kernel/Storage/ATA/ATADevice.h b/kernel/include/kernel/Storage/ATA/ATADevice.h index 38a67bd7..b91e27b5 100644 --- a/kernel/include/kernel/Storage/ATA/ATADevice.h +++ b/kernel/include/kernel/Storage/ATA/ATADevice.h @@ -32,8 +32,8 @@ namespace Kernel virtual dev_t rdev() const override { return m_rdev; } - virtual BAN::ErrorOr read_impl(off_t, void*, size_t) override; - virtual BAN::ErrorOr write_impl(off_t, const void*, size_t) override; + virtual BAN::ErrorOr read_impl(off_t, BAN::ByteSpan) override; + virtual BAN::ErrorOr write_impl(off_t, BAN::ConstByteSpan) override; protected: ATABaseDevice(); @@ -63,8 +63,8 @@ namespace Kernel private: ATADevice(BAN::RefPtr, ATABus::DeviceType, bool is_secodary); - virtual BAN::ErrorOr read_sectors_impl(uint64_t, uint64_t, uint8_t*) override; - virtual BAN::ErrorOr write_sectors_impl(uint64_t, uint64_t, const uint8_t*) override; + virtual BAN::ErrorOr read_sectors_impl(uint64_t, uint64_t, BAN::ByteSpan) override; + virtual BAN::ErrorOr write_sectors_impl(uint64_t, uint64_t, BAN::ConstByteSpan) override; private: BAN::RefPtr m_bus; diff --git a/kernel/include/kernel/Storage/DiskCache.h b/kernel/include/kernel/Storage/DiskCache.h index 99b88ce4..c0b082df 100644 --- a/kernel/include/kernel/Storage/DiskCache.h +++ b/kernel/include/kernel/Storage/DiskCache.h @@ -1,6 +1,7 @@ #pragma once #include +#include #include #include @@ -15,8 +16,8 @@ namespace Kernel DiskCache(size_t sector_size, StorageDevice&); ~DiskCache(); - bool read_from_cache(uint64_t sector, uint8_t* buffer); - BAN::ErrorOr write_to_cache(uint64_t sector, const uint8_t* buffer, bool dirty); + bool read_from_cache(uint64_t sector, BAN::ByteSpan); + BAN::ErrorOr write_to_cache(uint64_t sector, BAN::ConstByteSpan, bool dirty); BAN::ErrorOr sync(); size_t release_clean_pages(size_t); diff --git a/kernel/include/kernel/Storage/StorageDevice.h b/kernel/include/kernel/Storage/StorageDevice.h index 15a32903..4f433fb0 100644 --- a/kernel/include/kernel/Storage/StorageDevice.h +++ b/kernel/include/kernel/Storage/StorageDevice.h @@ -30,8 +30,8 @@ namespace Kernel const char* label() const { return m_label; } const StorageDevice& device() const { return m_device; } - BAN::ErrorOr read_sectors(uint64_t lba, uint8_t sector_count, uint8_t* buffer); - BAN::ErrorOr write_sectors(uint64_t lba, uint8_t sector_count, const uint8_t* buffer); + BAN::ErrorOr read_sectors(uint64_t lba, uint8_t sector_count, BAN::ByteSpan); + BAN::ErrorOr write_sectors(uint64_t lba, uint8_t sector_count, BAN::ConstByteSpan); virtual BAN::StringView name() const override { return m_name; } @@ -57,7 +57,7 @@ namespace Kernel virtual dev_t rdev() const override { return m_rdev; } protected: - virtual BAN::ErrorOr read_impl(off_t, void*, size_t) override; + virtual BAN::ErrorOr read_impl(off_t, BAN::ByteSpan) override; private: const dev_t m_rdev; @@ -73,8 +73,8 @@ namespace Kernel BAN::ErrorOr initialize_partitions(); - BAN::ErrorOr read_sectors(uint64_t lba, uint64_t sector_count, uint8_t* buffer); - BAN::ErrorOr write_sectors(uint64_t lba, uint64_t sector_count, const uint8_t* buffer); + BAN::ErrorOr read_sectors(uint64_t lba, uint64_t sector_count, BAN::ByteSpan); + BAN::ErrorOr write_sectors(uint64_t lba, uint64_t sector_count, BAN::ConstByteSpan); virtual uint32_t sector_size() const = 0; virtual uint64_t total_size() const = 0; @@ -86,8 +86,8 @@ namespace Kernel virtual bool is_storage_device() const override { return true; } protected: - virtual BAN::ErrorOr read_sectors_impl(uint64_t lba, uint64_t sector_count, uint8_t* buffer) = 0; - virtual BAN::ErrorOr write_sectors_impl(uint64_t lba, uint64_t sector_count, const uint8_t* buffer) = 0; + virtual BAN::ErrorOr read_sectors_impl(uint64_t lba, uint64_t sector_count, BAN::ByteSpan) = 0; + virtual BAN::ErrorOr write_sectors_impl(uint64_t lba, uint64_t sector_count, BAN::ConstByteSpan) = 0; void add_disk_cache(); private: diff --git a/kernel/include/kernel/Terminal/TTY.h b/kernel/include/kernel/Terminal/TTY.h index b5c87749..9c776167 100644 --- a/kernel/include/kernel/Terminal/TTY.h +++ b/kernel/include/kernel/Terminal/TTY.h @@ -49,8 +49,8 @@ namespace Kernel { } virtual void putchar_impl(uint8_t ch) = 0; - virtual BAN::ErrorOr read_impl(off_t, void*, size_t) override; - virtual BAN::ErrorOr write_impl(off_t, const void*, size_t) override; + virtual BAN::ErrorOr read_impl(off_t, BAN::ByteSpan) override; + virtual BAN::ErrorOr write_impl(off_t, BAN::ConstByteSpan) override; private: void do_backspace(); diff --git a/kernel/kernel/Device/ZeroDevice.cpp b/kernel/kernel/Device/ZeroDevice.cpp index 4a026c32..cf6d98fb 100644 --- a/kernel/kernel/Device/ZeroDevice.cpp +++ b/kernel/kernel/Device/ZeroDevice.cpp @@ -12,10 +12,10 @@ namespace Kernel return BAN::RefPtr::adopt(result); } - BAN::ErrorOr ZeroDevice::read_impl(off_t, void* buffer, size_t bytes) + BAN::ErrorOr ZeroDevice::read_impl(off_t, BAN::ByteSpan buffer) { - memset(buffer, 0, bytes); - return bytes; + memset(buffer.data(), 0, buffer.size()); + return buffer.size(); } } \ No newline at end of file diff --git a/kernel/kernel/FS/Ext2/FileSystem.cpp b/kernel/kernel/FS/Ext2/FileSystem.cpp index 47473965..37b1b55c 100644 --- a/kernel/kernel/FS/Ext2/FileSystem.cpp +++ b/kernel/kernel/FS/Ext2/FileSystem.cpp @@ -33,7 +33,7 @@ namespace Kernel BAN::Vector superblock_buffer; TRY(superblock_buffer.resize(sector_count * sector_size)); - TRY(m_partition.read_sectors(lba, sector_count, superblock_buffer.data())); + TRY(m_partition.read_sectors(lba, sector_count, superblock_buffer.span())); memcpy(&m_superblock, superblock_buffer.data(), sizeof(Ext2::Superblock)); } @@ -223,7 +223,7 @@ namespace Kernel ASSERT(block >= 2); ASSERT(buffer.size() >= block_size); - MUST(m_partition.read_sectors(sectors_before + (block - 2) * sectors_per_block, sectors_per_block, buffer.data())); + MUST(m_partition.read_sectors(sectors_before + (block - 2) * sectors_per_block, sectors_per_block, buffer.span())); } void Ext2FS::write_block(uint32_t block, const BlockBufferWrapper& buffer) @@ -237,7 +237,7 @@ namespace Kernel ASSERT(block >= 2); ASSERT(buffer.size() >= block_size); - MUST(m_partition.write_sectors(sectors_before + (block - 2) * sectors_per_block, sectors_per_block, buffer.data())); + MUST(m_partition.write_sectors(sectors_before + (block - 2) * sectors_per_block, sectors_per_block, buffer.span())); } void Ext2FS::sync_superblock() @@ -258,11 +258,11 @@ namespace Kernel BAN::Vector superblock_buffer; MUST(superblock_buffer.resize(sector_count * sector_size)); - MUST(m_partition.read_sectors(lba, sector_count, superblock_buffer.data())); + MUST(m_partition.read_sectors(lba, sector_count, superblock_buffer.span())); if (memcmp(superblock_buffer.data(), &m_superblock, superblock_bytes)) { memcpy(superblock_buffer.data(), &m_superblock, superblock_bytes); - MUST(m_partition.write_sectors(lba, sector_count, superblock_buffer.data())); + MUST(m_partition.write_sectors(lba, sector_count, superblock_buffer.span())); } } diff --git a/kernel/kernel/FS/Ext2/Inode.cpp b/kernel/kernel/FS/Ext2/Inode.cpp index b489a9ae..2781e36e 100644 --- a/kernel/kernel/FS/Ext2/Inode.cpp +++ b/kernel/kernel/FS/Ext2/Inode.cpp @@ -100,19 +100,21 @@ namespace Kernel return BAN::Error::from_errno(ENOTSUP); } - BAN::ErrorOr Ext2Inode::read_impl(off_t offset, void* buffer, size_t count) + BAN::ErrorOr Ext2Inode::read_impl(off_t offset, BAN::ByteSpan buffer) { // FIXME: update atime if needed ASSERT(!mode().ifdir()); ASSERT(offset >= 0); - if (offset >= UINT32_MAX || count >= UINT32_MAX || offset + count >= UINT32_MAX) + if (offset >= UINT32_MAX || buffer.size() >= UINT32_MAX || buffer.size() >= (size_t)(UINT32_MAX - offset)) return BAN::Error::from_errno(EOVERFLOW); if (offset >= m_inode.size) return 0; - if (offset + count > m_inode.size) + + uint32_t count = buffer.size(); + if (offset + buffer.size() > m_inode.size) count = m_inode.size - offset; const uint32_t block_size = blksize(); @@ -131,7 +133,7 @@ namespace Kernel uint32_t copy_offset = (offset + n_read) % block_size; uint32_t to_copy = BAN::Math::min(block_size - copy_offset, count - n_read); - memcpy((uint8_t*)buffer + n_read, block_buffer.data() + copy_offset, to_copy); + memcpy(buffer.data() + n_read, block_buffer.data() + copy_offset, to_copy); n_read += to_copy; } @@ -139,26 +141,25 @@ namespace Kernel return n_read; } - BAN::ErrorOr Ext2Inode::write_impl(off_t offset, const void* buffer, size_t count) + BAN::ErrorOr Ext2Inode::write_impl(off_t offset, BAN::ConstByteSpan buffer) { // FIXME: update atime if needed ASSERT(!mode().ifdir()); ASSERT(offset >= 0); - if (offset >= UINT32_MAX || count >= UINT32_MAX || offset + count >= UINT32_MAX) + if (offset >= UINT32_MAX || buffer.size() >= UINT32_MAX || buffer.size() >= (size_t)(UINT32_MAX - offset)) return BAN::Error::from_errno(EOVERFLOW); - if (m_inode.size < offset + count) - TRY(truncate_impl(offset + count)); + if (m_inode.size < offset + buffer.size()) + TRY(truncate_impl(offset + buffer.size())); const uint32_t block_size = blksize(); auto block_buffer = m_fs.get_block_buffer(); - const uint8_t* u8buffer = (const uint8_t*)buffer; - - size_t to_write = count; + size_t written = 0; + size_t to_write = buffer.size(); // Write partial block if (offset % block_size) @@ -169,10 +170,10 @@ namespace Kernel uint32_t to_copy = BAN::Math::min(block_size - block_offset, to_write); m_fs.read_block(block_index, block_buffer); - memcpy(block_buffer.data() + block_offset, u8buffer, to_copy); + memcpy(block_buffer.data() + block_offset, buffer.data(), to_copy); m_fs.write_block(block_index, block_buffer); - u8buffer += to_copy; + written += to_copy; offset += to_copy; to_write -= to_copy; } @@ -181,10 +182,10 @@ namespace Kernel { uint32_t block_index = fs_block_of_data_block_index(offset / block_size); - memcpy(block_buffer.data(), u8buffer, block_buffer.size()); + memcpy(block_buffer.data(), buffer.data() + written, block_buffer.size()); m_fs.write_block(block_index, block_buffer); - u8buffer += block_size; + written += block_size; offset += block_size; to_write -= block_size; } @@ -194,11 +195,11 @@ namespace Kernel uint32_t block_index = fs_block_of_data_block_index(offset / block_size); m_fs.read_block(block_index, block_buffer); - memcpy(block_buffer.data(), u8buffer, to_write); + memcpy(block_buffer.data(), buffer.data() + written, to_write); m_fs.write_block(block_index, block_buffer); } - return count; + return buffer.size(); } BAN::ErrorOr Ext2Inode::truncate_impl(size_t new_size) diff --git a/kernel/kernel/FS/Inode.cpp b/kernel/kernel/FS/Inode.cpp index 1e68a4d9..b66369b4 100644 --- a/kernel/kernel/FS/Inode.cpp +++ b/kernel/kernel/FS/Inode.cpp @@ -102,22 +102,22 @@ namespace Kernel return link_target_impl(); } - BAN::ErrorOr Inode::read(off_t offset, void* buffer, size_t bytes) + BAN::ErrorOr Inode::read(off_t offset, BAN::ByteSpan buffer) { LockGuard _(m_lock); Thread::TerminateBlocker blocker(Thread::current()); if (mode().ifdir()) return BAN::Error::from_errno(EISDIR); - return read_impl(offset, buffer, bytes); + return read_impl(offset, buffer); } - BAN::ErrorOr Inode::write(off_t offset, const void* buffer, size_t bytes) + BAN::ErrorOr Inode::write(off_t offset, BAN::ConstByteSpan buffer) { LockGuard _(m_lock); Thread::TerminateBlocker blocker(Thread::current()); if (mode().ifdir()) return BAN::Error::from_errno(EISDIR); - return write_impl(offset, buffer, bytes); + return write_impl(offset, buffer); } BAN::ErrorOr Inode::truncate(size_t size) diff --git a/kernel/kernel/FS/Pipe.cpp b/kernel/kernel/FS/Pipe.cpp index 3331cbe3..5893b7a9 100644 --- a/kernel/kernel/FS/Pipe.cpp +++ b/kernel/kernel/FS/Pipe.cpp @@ -39,7 +39,7 @@ namespace Kernel m_semaphore.unblock(); } - BAN::ErrorOr Pipe::read_impl(off_t, void* buffer, size_t count) + BAN::ErrorOr Pipe::read_impl(off_t, BAN::ByteSpan buffer) { LockGuard _(m_lock); while (m_buffer.empty()) @@ -51,8 +51,8 @@ namespace Kernel m_lock.lock(); } - size_t to_copy = BAN::Math::min(count, m_buffer.size()); - memcpy(buffer, m_buffer.data(), to_copy); + size_t to_copy = BAN::Math::min(buffer.size(), m_buffer.size()); + memcpy(buffer.data(), m_buffer.data(), to_copy); memmove(m_buffer.data(), m_buffer.data() + to_copy, m_buffer.size() - to_copy); MUST(m_buffer.resize(m_buffer.size() - to_copy)); @@ -64,14 +64,14 @@ namespace Kernel return to_copy; } - BAN::ErrorOr Pipe::write_impl(off_t, const void* buffer, size_t count) + BAN::ErrorOr Pipe::write_impl(off_t, BAN::ConstByteSpan buffer) { LockGuard _(m_lock); size_t old_size = m_buffer.size(); - TRY(m_buffer.resize(old_size + count)); - memcpy(m_buffer.data() + old_size, buffer, count); + TRY(m_buffer.resize(old_size + buffer.size())); + memcpy(m_buffer.data() + old_size, buffer.data(), buffer.size()); timespec current_time = SystemTimer::get().real_time(); m_mtime = current_time; @@ -79,7 +79,7 @@ namespace Kernel m_semaphore.unblock(); - return count; + return buffer.size(); } } \ No newline at end of file diff --git a/kernel/kernel/FS/ProcFS/Inode.cpp b/kernel/kernel/FS/ProcFS/Inode.cpp index 7bc0a392..e74e6237 100644 --- a/kernel/kernel/FS/ProcFS/Inode.cpp +++ b/kernel/kernel/FS/ProcFS/Inode.cpp @@ -25,7 +25,7 @@ namespace Kernel { } - BAN::ErrorOr> ProcROInode::create(Process& process, size_t (Process::*callback)(off_t, void*, size_t) const, RamFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) + BAN::ErrorOr> ProcROInode::create(Process& process, size_t (Process::*callback)(off_t, BAN::ByteSpan) const, RamFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) { FullInodeInfo inode_info(fs, mode, uid, gid); @@ -35,7 +35,7 @@ namespace Kernel return BAN::RefPtr::adopt(inode_ptr); } - ProcROInode::ProcROInode(Process& process, size_t (Process::*callback)(off_t, void*, size_t) const, RamFileSystem& fs, const FullInodeInfo& inode_info) + ProcROInode::ProcROInode(Process& process, size_t (Process::*callback)(off_t, BAN::ByteSpan) const, RamFileSystem& fs, const FullInodeInfo& inode_info) : RamInode(fs, inode_info) , m_process(process) , m_callback(callback) @@ -43,12 +43,12 @@ namespace Kernel m_inode_info.mode |= Inode::Mode::IFREG; } - BAN::ErrorOr ProcROInode::read_impl(off_t offset, void* buffer, size_t buffer_size) + BAN::ErrorOr ProcROInode::read_impl(off_t offset, BAN::ByteSpan buffer) { ASSERT(offset >= 0); if ((size_t)offset >= sizeof(proc_meminfo_t)) return 0; - return (m_process.*m_callback)(offset, buffer, buffer_size); + return (m_process.*m_callback)(offset, buffer); } } diff --git a/kernel/kernel/FS/RamFS/Inode.cpp b/kernel/kernel/FS/RamFS/Inode.cpp index f030ec12..2b7f7ffe 100644 --- a/kernel/kernel/FS/RamFS/Inode.cpp +++ b/kernel/kernel/FS/RamFS/Inode.cpp @@ -48,23 +48,23 @@ namespace Kernel m_inode_info.mode |= Inode::Mode::IFREG; } - BAN::ErrorOr RamFileInode::read_impl(off_t offset, void* buffer, size_t bytes) + BAN::ErrorOr RamFileInode::read_impl(off_t offset, BAN::ByteSpan buffer) { ASSERT(offset >= 0); if (offset >= size()) return 0; - size_t to_copy = BAN::Math::min(m_inode_info.size - offset, bytes); - memcpy(buffer, m_data.data(), to_copy); + size_t to_copy = BAN::Math::min(m_inode_info.size - offset, buffer.size()); + memcpy(buffer.data(), m_data.data(), to_copy); return to_copy; } - BAN::ErrorOr RamFileInode::write_impl(off_t offset, const void* buffer, size_t bytes) + BAN::ErrorOr RamFileInode::write_impl(off_t offset, BAN::ConstByteSpan buffer) { ASSERT(offset >= 0); - if (offset + bytes > (size_t)size()) - TRY(truncate_impl(offset + bytes)); - memcpy(m_data.data() + offset, buffer, bytes); - return bytes; + if (offset + buffer.size() > (size_t)size()) + TRY(truncate_impl(offset + buffer.size())); + memcpy(m_data.data() + offset, buffer.data(), buffer.size()); + return buffer.size(); } BAN::ErrorOr RamFileInode::truncate_impl(size_t new_size) diff --git a/kernel/kernel/Font.cpp b/kernel/kernel/Font.cpp index 93750a84..1d7d3822 100644 --- a/kernel/kernel/Font.cpp +++ b/kernel/kernel/Font.cpp @@ -43,7 +43,7 @@ namespace Kernel BAN::Vector file_data; TRY(file_data.resize(inode->size())); - TRY(inode->read(0, file_data.data(), file_data.size())); + TRY(inode->read(0, file_data.span())); if (file_data.size() < 4) return BAN::Error::from_error_code(ErrorCode::Font_FileTooSmall); diff --git a/kernel/kernel/Input/PS2Keyboard.cpp b/kernel/kernel/Input/PS2Keyboard.cpp index aba441f1..e4f7a3d5 100644 --- a/kernel/kernel/Input/PS2Keyboard.cpp +++ b/kernel/kernel/Input/PS2Keyboard.cpp @@ -217,9 +217,9 @@ namespace Kernel::Input append_command_queue(Command::SET_LEDS, new_leds); } - BAN::ErrorOr PS2Keyboard::read_impl(off_t, void* buffer, size_t size) + BAN::ErrorOr PS2Keyboard::read_impl(off_t, BAN::ByteSpan buffer) { - if (size < sizeof(KeyEvent)) + if (buffer.size() < sizeof(KeyEvent)) return BAN::Error::from_errno(ENOBUFS); while (true) @@ -231,7 +231,7 @@ namespace Kernel::Input if (m_event_queue.empty()) continue; - *(KeyEvent*)buffer = m_event_queue.front(); + buffer.as() = m_event_queue.front(); m_event_queue.pop(); return sizeof(KeyEvent); diff --git a/kernel/kernel/Memory/FileBackedRegion.cpp b/kernel/kernel/Memory/FileBackedRegion.cpp index b4314f6f..0592be5b 100644 --- a/kernel/kernel/Memory/FileBackedRegion.cpp +++ b/kernel/kernel/Memory/FileBackedRegion.cpp @@ -80,7 +80,7 @@ namespace Kernel page_table.unmap_page(0); } - if (auto ret = inode->write(i * PAGE_SIZE, page_buffer, PAGE_SIZE); ret.is_error()) + if (auto ret = inode->write(i * PAGE_SIZE, BAN::ConstByteSpan::from(page_buffer)); ret.is_error()) dwarnln("{}", ret.error()); } } @@ -109,7 +109,7 @@ namespace Kernel // Zero out the new page if (&PageTable::current() == &m_page_table) - read_ret = m_inode->read(file_offset, (void*)vaddr, bytes); + read_ret = m_inode->read(file_offset, BAN::ByteSpan((uint8_t*)vaddr, bytes)); else { auto& page_table = PageTable::current(); @@ -118,7 +118,7 @@ namespace Kernel ASSERT(page_table.is_page_free(0)); page_table.map_page_at(paddr, 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); - read_ret = m_inode->read(file_offset, (void*)0, bytes); + read_ret = m_inode->read(file_offset, BAN::ByteSpan((uint8_t*)0, bytes)); memset((void*)0, 0x00, PAGE_SIZE); page_table.unmap_page(0); } @@ -156,7 +156,7 @@ namespace Kernel size_t offset = vaddr - m_vaddr; size_t bytes = BAN::Math::min(m_size - offset, PAGE_SIZE); - TRY(m_inode->read(offset, m_shared_data->page_buffer, bytes)); + TRY(m_inode->read(offset, BAN::ByteSpan(m_shared_data->page_buffer, bytes))); auto& page_table = PageTable::current(); diff --git a/kernel/kernel/OpenFileDescriptorSet.cpp b/kernel/kernel/OpenFileDescriptorSet.cpp index f160f8ac..24ab36aa 100644 --- a/kernel/kernel/OpenFileDescriptorSet.cpp +++ b/kernel/kernel/OpenFileDescriptorSet.cpp @@ -264,24 +264,24 @@ namespace Kernel } } - BAN::ErrorOr OpenFileDescriptorSet::read(int fd, void* buffer, size_t count) + BAN::ErrorOr OpenFileDescriptorSet::read(int fd, BAN::ByteSpan buffer) { TRY(validate_fd(fd)); auto& open_file = m_open_files[fd]; if ((open_file->flags & O_NONBLOCK) && !open_file->inode->has_data()) return 0; - size_t nread = TRY(open_file->inode->read(open_file->offset, buffer, count)); + size_t nread = TRY(open_file->inode->read(open_file->offset, buffer)); open_file->offset += nread; return nread; } - BAN::ErrorOr OpenFileDescriptorSet::write(int fd, const void* buffer, size_t count) + BAN::ErrorOr OpenFileDescriptorSet::write(int fd, BAN::ConstByteSpan buffer) { TRY(validate_fd(fd)); auto& open_file = m_open_files[fd]; if (open_file->flags & O_APPEND) open_file->offset = open_file->inode->size(); - size_t nwrite = TRY(open_file->inode->write(open_file->offset, buffer, count)); + size_t nwrite = TRY(open_file->inode->write(open_file->offset, buffer)); open_file->offset += nwrite; return nwrite; } diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index 18ca6048..57180db2 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -260,7 +260,7 @@ namespace Kernel thread->set_terminating(); } - size_t Process::proc_meminfo(off_t offset, void* buffer, size_t buffer_size) const + size_t Process::proc_meminfo(off_t offset, BAN::ByteSpan buffer) const { ASSERT(offset >= 0); if ((size_t)offset >= sizeof(proc_meminfo_t)) @@ -290,12 +290,12 @@ namespace Kernel } } - size_t bytes = BAN::Math::min(sizeof(proc_meminfo_t) - offset, buffer_size); - memcpy(buffer, (uint8_t*)&meminfo + offset, bytes); + size_t bytes = BAN::Math::min(sizeof(proc_meminfo_t) - offset, buffer.size()); + memcpy(buffer.data(), (uint8_t*)&meminfo + offset, bytes); return bytes; } - static size_t read_from_vec_of_str(const BAN::Vector& container, size_t start, void* buffer, size_t buffer_size) + static size_t read_from_vec_of_str(const BAN::Vector& container, size_t start, BAN::ByteSpan buffer) { size_t offset = 0; size_t written = 0; @@ -307,11 +307,11 @@ namespace Kernel if (offset < start) elem_offset = start - offset; - size_t bytes = BAN::Math::min(elem.size() + 1 - elem_offset, buffer_size - written); - memcpy((uint8_t*)buffer + written, elem.data() + elem_offset, bytes); + size_t bytes = BAN::Math::min(elem.size() + 1 - elem_offset, buffer.size() - written); + memcpy(buffer.data() + written, elem.data() + elem_offset, bytes); written += bytes; - if (written >= buffer_size) + if (written >= buffer.size()) break; } offset += elem.size() + 1; @@ -319,16 +319,16 @@ namespace Kernel return written; } - size_t Process::proc_cmdline(off_t offset, void* buffer, size_t buffer_size) const + size_t Process::proc_cmdline(off_t offset, BAN::ByteSpan buffer) const { LockGuard _(m_lock); - return read_from_vec_of_str(m_cmdline, offset, buffer, buffer_size); + return read_from_vec_of_str(m_cmdline, offset, buffer); } - size_t Process::proc_environ(off_t offset, void* buffer, size_t buffer_size) const + size_t Process::proc_environ(off_t offset, BAN::ByteSpan buffer) const { LockGuard _(m_lock); - return read_from_vec_of_str(m_environ, offset, buffer, buffer_size); + return read_from_vec_of_str(m_environ, offset, buffer); } BAN::ErrorOr Process::sys_exit(int status) @@ -723,14 +723,14 @@ namespace Kernel { LockGuard _(m_lock); validate_pointer_access(buffer, count); - return TRY(m_open_file_descriptors.read(fd, buffer, count)); + return TRY(m_open_file_descriptors.read(fd, BAN::ByteSpan((uint8_t*)buffer, count))); } BAN::ErrorOr Process::sys_write(int fd, const void* buffer, size_t count) { LockGuard _(m_lock); validate_pointer_access(buffer, count); - return TRY(m_open_file_descriptors.write(fd, buffer, count)); + return TRY(m_open_file_descriptors.write(fd, BAN::ByteSpan((uint8_t*)buffer, count))); } BAN::ErrorOr Process::sys_pipe(int fildes[2]) diff --git a/kernel/kernel/Storage/ATA/AHCI/Device.cpp b/kernel/kernel/Storage/ATA/AHCI/Device.cpp index 8b0c2521..a087bd56 100644 --- a/kernel/kernel/Storage/ATA/AHCI/Device.cpp +++ b/kernel/kernel/Storage/ATA/AHCI/Device.cpp @@ -158,28 +158,30 @@ namespace Kernel __builtin_ia32_pause(); } - BAN::ErrorOr AHCIDevice::read_sectors_impl(uint64_t lba, uint64_t sector_count, uint8_t* buffer) + BAN::ErrorOr AHCIDevice::read_sectors_impl(uint64_t lba, uint64_t sector_count, BAN::ByteSpan buffer) { + ASSERT(buffer.size() >= sector_count * sector_size()); const size_t sectors_per_page = PAGE_SIZE / sector_size(); for (uint64_t sector_off = 0; sector_off < sector_count; sector_off += sectors_per_page) { uint64_t to_read = BAN::Math::min(sector_count - sector_off, sectors_per_page); TRY(send_command_and_block(lba + sector_off, to_read, Command::Read)); - memcpy(buffer + sector_off * sector_size(), (void*)m_data_dma_region->vaddr(), to_read * sector_size()); + memcpy(buffer.data() + sector_off * sector_size(), (void*)m_data_dma_region->vaddr(), to_read * sector_size()); } return {}; } - BAN::ErrorOr AHCIDevice::write_sectors_impl(uint64_t lba, uint64_t sector_count, const uint8_t* buffer) + BAN::ErrorOr AHCIDevice::write_sectors_impl(uint64_t lba, uint64_t sector_count, BAN::ConstByteSpan buffer) { + ASSERT(buffer.size() >= sector_count * sector_size()); const size_t sectors_per_page = PAGE_SIZE / sector_size(); for (uint64_t sector_off = 0; sector_off < sector_count; sector_off += sectors_per_page) { uint64_t to_read = BAN::Math::min(sector_count - sector_off, sectors_per_page); - memcpy((void*)m_data_dma_region->vaddr(), buffer + sector_off * sector_size(), to_read * sector_size()); + memcpy((void*)m_data_dma_region->vaddr(), buffer.data() + sector_off * sector_size(), to_read * sector_size()); TRY(send_command_and_block(lba + sector_off, to_read, Command::Write)); } diff --git a/kernel/kernel/Storage/ATA/ATABus.cpp b/kernel/kernel/Storage/ATA/ATABus.cpp index cd499312..bb0b0f48 100644 --- a/kernel/kernel/Storage/ATA/ATABus.cpp +++ b/kernel/kernel/Storage/ATA/ATABus.cpp @@ -228,8 +228,10 @@ namespace Kernel return BAN::Error::from_error_code(ErrorCode::None); } - BAN::ErrorOr ATABus::read(ATADevice& device, uint64_t lba, uint8_t sector_count, uint8_t* buffer) + BAN::ErrorOr ATABus::read(ATADevice& device, uint64_t lba, uint64_t sector_count, BAN::ByteSpan buffer) { + ASSERT(sector_count <= 0xFF); + ASSERT(buffer.size() >= sector_count * device.sector_size()); if (lba + sector_count > device.sector_count()) return BAN::Error::from_error_code(ErrorCode::Storage_Boundaries); @@ -251,7 +253,7 @@ namespace Kernel for (uint32_t sector = 0; sector < sector_count; sector++) { block_until_irq(); - read_buffer(ATA_PORT_DATA, (uint16_t*)buffer + sector * device.words_per_sector(), device.words_per_sector()); + read_buffer(ATA_PORT_DATA, (uint16_t*)buffer.data() + sector * device.words_per_sector(), device.words_per_sector()); } } else @@ -263,8 +265,10 @@ namespace Kernel return {}; } - BAN::ErrorOr ATABus::write(ATADevice& device, uint64_t lba, uint8_t sector_count, const uint8_t* buffer) + BAN::ErrorOr ATABus::write(ATADevice& device, uint64_t lba, uint64_t sector_count, BAN::ConstByteSpan buffer) { + ASSERT(sector_count <= 0xFF); + ASSERT(buffer.size() >= sector_count * device.sector_size()); if (lba + sector_count > device.sector_count()) return BAN::Error::from_error_code(ErrorCode::Storage_Boundaries); @@ -285,7 +289,7 @@ namespace Kernel for (uint32_t sector = 0; sector < sector_count; sector++) { - write_buffer(ATA_PORT_DATA, (uint16_t*)buffer + sector * device.words_per_sector(), device.words_per_sector()); + write_buffer(ATA_PORT_DATA, (uint16_t*)buffer.data() + sector * device.words_per_sector(), device.words_per_sector()); block_until_irq(); } } diff --git a/kernel/kernel/Storage/ATA/ATADevice.cpp b/kernel/kernel/Storage/ATA/ATADevice.cpp index 0eacead6..bb959054 100644 --- a/kernel/kernel/Storage/ATA/ATADevice.cpp +++ b/kernel/kernel/Storage/ATA/ATADevice.cpp @@ -82,24 +82,24 @@ namespace Kernel return {}; } - BAN::ErrorOr detail::ATABaseDevice::read_impl(off_t offset, void* buffer, size_t bytes) + BAN::ErrorOr detail::ATABaseDevice::read_impl(off_t offset, BAN::ByteSpan buffer) { if (offset % sector_size()) return BAN::Error::from_errno(EINVAL); - if (bytes % sector_size()) + if (buffer.size() % sector_size()) return BAN::Error::from_errno(EINVAL); - TRY(read_sectors(offset / sector_size(), bytes / sector_size(), (uint8_t*)buffer)); - return bytes; + TRY(read_sectors(offset / sector_size(), buffer.size() / sector_size(), buffer)); + return buffer.size(); } - BAN::ErrorOr detail::ATABaseDevice::write_impl(off_t offset, const void* buffer, size_t bytes) + BAN::ErrorOr detail::ATABaseDevice::write_impl(off_t offset, BAN::ConstByteSpan buffer) { if (offset % sector_size()) return BAN::Error::from_errno(EINVAL); - if (bytes % sector_size()) + if (buffer.size() % sector_size()) return BAN::Error::from_errno(EINVAL); - TRY(write_sectors(offset / sector_size(), bytes / sector_size(), (const uint8_t*)buffer)); - return bytes; + TRY(write_sectors(offset / sector_size(), buffer.size() / sector_size(), buffer)); + return buffer.size(); } BAN::ErrorOr> ATADevice::create(BAN::RefPtr bus, ATABus::DeviceType type, bool is_secondary, BAN::Span identify_data) @@ -118,14 +118,16 @@ namespace Kernel , m_is_secondary(is_secondary) { } - BAN::ErrorOr ATADevice::read_sectors_impl(uint64_t lba, uint64_t sector_count, uint8_t* buffer) + BAN::ErrorOr ATADevice::read_sectors_impl(uint64_t lba, uint64_t sector_count, BAN::ByteSpan buffer) { + ASSERT(buffer.size() >= sector_count * sector_size()); TRY(m_bus->read(*this, lba, sector_count, buffer)); return {}; } - BAN::ErrorOr ATADevice::write_sectors_impl(uint64_t lba, uint64_t sector_count, const uint8_t* buffer) + BAN::ErrorOr ATADevice::write_sectors_impl(uint64_t lba, uint64_t sector_count, BAN::ConstByteSpan buffer) { + ASSERT(buffer.size() >= sector_count * sector_size()); TRY(m_bus->write(*this, lba, sector_count, buffer)); return {}; } diff --git a/kernel/kernel/Storage/DiskCache.cpp b/kernel/kernel/Storage/DiskCache.cpp index afcc5675..05803ad7 100644 --- a/kernel/kernel/Storage/DiskCache.cpp +++ b/kernel/kernel/Storage/DiskCache.cpp @@ -24,8 +24,10 @@ namespace Kernel release_all_pages(); } - bool DiskCache::read_from_cache(uint64_t sector, uint8_t* buffer) + bool DiskCache::read_from_cache(uint64_t sector, BAN::ByteSpan buffer) { + ASSERT(buffer.size() >= m_sector_size); + uint64_t sectors_per_page = PAGE_SIZE / m_sector_size; uint64_t page_cache_offset = sector % sectors_per_page; uint64_t page_cache_start = sector - page_cache_offset; @@ -46,7 +48,7 @@ namespace Kernel CriticalScope _; page_table.map_page_at(cache.paddr, 0, PageTable::Flags::Present); - memcpy(buffer, (void*)(page_cache_offset * m_sector_size), m_sector_size); + memcpy(buffer.data(), (void*)(page_cache_offset * m_sector_size), m_sector_size); page_table.unmap_page(0); return true; @@ -55,8 +57,9 @@ namespace Kernel return false; }; - BAN::ErrorOr DiskCache::write_to_cache(uint64_t sector, const uint8_t* buffer, bool dirty) + BAN::ErrorOr DiskCache::write_to_cache(uint64_t sector, BAN::ConstByteSpan buffer, bool dirty) { + ASSERT(buffer.size() >= m_sector_size); uint64_t sectors_per_page = PAGE_SIZE / m_sector_size; uint64_t page_cache_offset = sector % sectors_per_page; uint64_t page_cache_start = sector - page_cache_offset; @@ -80,7 +83,7 @@ namespace Kernel { CriticalScope _; page_table.map_page_at(cache.paddr, 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); - memcpy((void*)(page_cache_offset * m_sector_size), buffer, m_sector_size); + memcpy((void*)(page_cache_offset * m_sector_size), buffer.data(), m_sector_size); page_table.unmap_page(0); } @@ -110,8 +113,8 @@ namespace Kernel { CriticalScope _; - page_table.map_page_at(cache.paddr, 0, PageTable::Flags::Present); - memcpy((void*)(page_cache_offset * m_sector_size), buffer, m_sector_size); + page_table.map_page_at(cache.paddr, 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); + memcpy((void*)(page_cache_offset * m_sector_size), buffer.data(), m_sector_size); page_table.unmap_page(0); } @@ -149,7 +152,8 @@ namespace Kernel else { dprintln_if(DEBUG_SYNC, "syncing {}->{}", cache.first_sector + sector_start, cache.first_sector + sector_start + sector_count); - TRY(m_device.write_sectors_impl(cache.first_sector + sector_start, sector_count, m_sync_cache.data() + sector_start * m_sector_size)); + auto data_slice = m_sync_cache.span().slice(sector_start * m_sector_size, sector_count * m_sector_size); + TRY(m_device.write_sectors_impl(cache.first_sector + sector_start, sector_count, data_slice)); sector_start += sector_count + 1; sector_count = 0; } @@ -158,7 +162,8 @@ namespace Kernel if (sector_count > 0) { dprintln_if(DEBUG_SYNC, "syncing {}->{}", cache.first_sector + sector_start, cache.first_sector + sector_start + sector_count); - TRY(m_device.write_sectors_impl(cache.first_sector + sector_start, sector_count, m_sync_cache.data() + sector_start * m_sector_size)); + auto data_slice = m_sync_cache.span().slice(sector_start * m_sector_size, sector_count * m_sector_size); + TRY(m_device.write_sectors_impl(cache.first_sector + sector_start, sector_count, data_slice)); } cache.dirty_mask = 0; diff --git a/kernel/kernel/Storage/StorageDevice.cpp b/kernel/kernel/Storage/StorageDevice.cpp index a64b656a..583a3a0b 100644 --- a/kernel/kernel/Storage/StorageDevice.cpp +++ b/kernel/kernel/Storage/StorageDevice.cpp @@ -153,8 +153,10 @@ namespace Kernel if (total_size() < sizeof(GPTHeader)) return BAN::Error::from_error_code(ErrorCode::Storage_GPTHeader); - BAN::Vector lba1(sector_size()); - TRY(read_sectors(1, 1, lba1.data())); + BAN::Vector lba1; + TRY(lba1.resize(sector_size())); + + TRY(read_sectors(1, 1, lba1.span())); const GPTHeader& header = *(const GPTHeader*)lba1.data(); if (!is_valid_gpt_header(header, sector_size())) @@ -169,7 +171,7 @@ namespace Kernel BAN::Vector entry_array; TRY(entry_array.resize(size)); - TRY(read_sectors(header.partition_entry_lba, size / sector_size(), entry_array.data())); + TRY(read_sectors(header.partition_entry_lba, size / sector_size(), entry_array.span())); if (!is_valid_gpt_crc32(header, lba1, entry_array)) return BAN::Error::from_error_code(ErrorCode::Storage_GPTHeader); @@ -226,8 +228,9 @@ namespace Kernel memcpy(m_label, label, sizeof(m_label)); } - BAN::ErrorOr Partition::read_sectors(uint64_t lba, uint8_t sector_count, uint8_t* buffer) + BAN::ErrorOr Partition::read_sectors(uint64_t lba, uint8_t sector_count, BAN::ByteSpan buffer) { + ASSERT(buffer.size() >= sector_count * m_device.sector_size()); const uint32_t sectors_in_partition = m_lba_end - m_lba_start; if (lba + sector_count > sectors_in_partition) return BAN::Error::from_error_code(ErrorCode::Storage_Boundaries); @@ -235,8 +238,9 @@ namespace Kernel return {}; } - BAN::ErrorOr Partition::write_sectors(uint64_t lba, uint8_t sector_count, const uint8_t* buffer) + BAN::ErrorOr Partition::write_sectors(uint64_t lba, uint8_t sector_count, BAN::ConstByteSpan buffer) { + ASSERT(buffer.size() >= sector_count * m_device.sector_size()); const uint32_t sectors_in_partition = m_lba_end - m_lba_start; if (lba + sector_count > sectors_in_partition) return BAN::Error::from_error_code(ErrorCode::Storage_Boundaries); @@ -244,23 +248,23 @@ namespace Kernel return {}; } - BAN::ErrorOr Partition::read_impl(off_t offset, void* buffer, size_t bytes) + BAN::ErrorOr Partition::read_impl(off_t offset, BAN::ByteSpan buffer) { ASSERT(offset >= 0); - if (offset % m_device.sector_size() || bytes % m_device.sector_size()) + if (offset % m_device.sector_size() || buffer.size() % m_device.sector_size()) return BAN::Error::from_errno(ENOTSUP); const uint32_t sectors_in_partition = m_lba_end - m_lba_start; uint32_t lba = offset / m_device.sector_size(); - uint32_t sector_count = bytes / m_device.sector_size(); + uint32_t sector_count = buffer.size() / m_device.sector_size(); if (lba == sectors_in_partition) return 0; if (lba + sector_count > sectors_in_partition) sector_count = sectors_in_partition - lba; - TRY(read_sectors(lba, sector_count, (uint8_t*)buffer)); + TRY(read_sectors(lba, sector_count, buffer)); return sector_count * m_device.sector_size(); } @@ -283,36 +287,51 @@ namespace Kernel return {}; } - BAN::ErrorOr StorageDevice::read_sectors(uint64_t lba, uint64_t sector_count, uint8_t* buffer) + BAN::ErrorOr StorageDevice::read_sectors(uint64_t lba, uint64_t sector_count, BAN::ByteSpan buffer) { + ASSERT(buffer.size() >= sector_count * sector_size()); + + { + LockGuard _(m_lock); + Thread::TerminateBlocker blocker(Thread::current()); + if (!m_disk_cache.has_value()) + return read_sectors_impl(lba, sector_count, buffer); + } + for (uint64_t offset = 0; offset < sector_count; offset++) { LockGuard _(m_lock); Thread::TerminateBlocker blocker(Thread::current()); - uint8_t* buffer_ptr = buffer + offset * sector_size(); - if (m_disk_cache.has_value()) - if (m_disk_cache->read_from_cache(lba + offset, buffer_ptr)) - continue; - TRY(read_sectors_impl(lba + offset, 1, buffer_ptr)); - if (m_disk_cache.has_value()) - (void)m_disk_cache->write_to_cache(lba + offset, buffer_ptr, false); + auto sector_buffer = buffer.slice(offset * sector_size(), sector_size()); + if (m_disk_cache->read_from_cache(lba + offset, sector_buffer)) + continue; + TRY(read_sectors_impl(lba + offset, 1, sector_buffer)); + (void)m_disk_cache->write_to_cache(lba + offset, sector_buffer, false); } return {}; } - BAN::ErrorOr StorageDevice::write_sectors(uint64_t lba, uint64_t sector_count, const uint8_t* buffer) + BAN::ErrorOr StorageDevice::write_sectors(uint64_t lba, uint64_t sector_count, BAN::ConstByteSpan buffer) { - // TODO: use disk cache for dirty pages. I don't wanna think about how to do it safely now + ASSERT(buffer.size() >= sector_count * sector_size()); + + { + LockGuard _(m_lock); + Thread::TerminateBlocker blocker(Thread::current()); + if (!m_disk_cache.has_value()) + return write_sectors_impl(lba, sector_count, buffer); + } + for (uint8_t offset = 0; offset < sector_count; offset++) { LockGuard _(m_lock); Thread::TerminateBlocker blocker(Thread::current()); - const uint8_t* buffer_ptr = buffer + offset * sector_size(); - if (!m_disk_cache.has_value() || m_disk_cache->write_to_cache(lba + offset, buffer_ptr, true).is_error()) - TRY(write_sectors_impl(lba + offset, 1, buffer_ptr)); + auto sector_buffer = buffer.slice(offset * sector_size(), sector_size()); + if (m_disk_cache->write_to_cache(lba + offset, sector_buffer, true).is_error()) + TRY(write_sectors_impl(lba + offset, 1, sector_buffer)); } return {}; diff --git a/kernel/kernel/Terminal/TTY.cpp b/kernel/kernel/Terminal/TTY.cpp index fd370573..77024d24 100644 --- a/kernel/kernel/Terminal/TTY.cpp +++ b/kernel/kernel/Terminal/TTY.cpp @@ -95,7 +95,7 @@ namespace Kernel TTY::current()->m_tty_ctrl.semaphore.block(); Input::KeyEvent event; - size_t read = MUST(inode->read(0, &event, sizeof(event))); + size_t read = MUST(inode->read(0, BAN::ByteSpan::from(event))); ASSERT(read == sizeof(event)); TTY::current()->on_key_event(event); } @@ -298,7 +298,7 @@ namespace Kernel putchar_impl(ch); } - BAN::ErrorOr TTY::read_impl(off_t, void* buffer, size_t count) + BAN::ErrorOr TTY::read_impl(off_t, BAN::ByteSpan buffer) { LockGuard _(m_lock); while (!m_output.flush) @@ -314,8 +314,8 @@ namespace Kernel return 0; } - size_t to_copy = BAN::Math::min(count, m_output.bytes); - memcpy(buffer, m_output.buffer.data(), to_copy); + size_t to_copy = BAN::Math::min(buffer.size(), m_output.bytes); + memcpy(buffer.data(), m_output.buffer.data(), to_copy); memmove(m_output.buffer.data(), m_output.buffer.data() + to_copy, m_output.bytes - to_copy); m_output.bytes -= to_copy; @@ -328,12 +328,12 @@ namespace Kernel return to_copy; } - BAN::ErrorOr TTY::write_impl(off_t, const void* buffer, size_t count) + BAN::ErrorOr TTY::write_impl(off_t, BAN::ConstByteSpan buffer) { LockGuard _(m_lock); - for (size_t i = 0; i < count; i++) - putchar(((uint8_t*)buffer)[i]); - return count; + for (size_t i = 0; i < buffer.size(); i++) + putchar(buffer[i]); + return buffer.size(); } bool TTY::has_data_impl() const From df69612bb185cba5391db3809deea3b7699e8b39 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 23 Oct 2023 13:27:23 +0300 Subject: [PATCH 128/240] BuildSystem: Rewrite whole build system structure Now you have to use script/build.sh for building and running banan-os --- CMakeLists.txt | 94 ++-------------------- PreLoad.cmake | 1 - check-fs.sh | 10 --- image.sh | 30 -------- qemu.sh | 19 ----- bochs.sh => script/bochs.sh | 2 +- script/build.sh | 107 ++++++++++++++++++++++++++ script/check-fs.sh | 14 ++++ script/config.sh | 27 +++++++ image-full.sh => script/image-full.sh | 42 +++++++--- script/image.sh | 45 +++++++++++ script/qemu.sh | 24 ++++++ toolchain/Toolchain.txt | 18 +++++ toolchain/build.sh | 88 +++++++++++---------- 14 files changed, 320 insertions(+), 201 deletions(-) delete mode 100644 PreLoad.cmake delete mode 100755 check-fs.sh delete mode 100755 image.sh delete mode 100755 qemu.sh rename bochs.sh => script/bochs.sh (85%) create mode 100755 script/build.sh create mode 100755 script/check-fs.sh create mode 100644 script/config.sh rename image-full.sh => script/image-full.sh (55%) create mode 100755 script/image.sh create mode 100755 script/qemu.sh create mode 100644 toolchain/Toolchain.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 0c5cc6ce..31f65d0a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,35 +1,13 @@ cmake_minimum_required(VERSION 3.26) -if(DEFINED ENV{BANAN_ARCH}) - set(BANAN_ARCH $ENV{BANAN_ARCH}) -else() - set(BANAN_ARCH x86_64) -endif() - -set(TOOLCHAIN_PREFIX ${CMAKE_SOURCE_DIR}/toolchain/local) - -if(EXISTS ${TOOLCHAIN_PREFIX}/bin/${BANAN_ARCH}-banan_os-g++) - set(CMAKE_CXX_STANDARD 20) - set(CMAKE_CXX_STANDARD_REQUIRED True) - set(CMAKE_CXX_COMPILER ${TOOLCHAIN_PREFIX}/bin/${BANAN_ARCH}-banan_os-g++) - set(CMAKE_CXX_COMPILER_WORKS True) - - set(CMAKE_C_COMPILER ${TOOLCHAIN_PREFIX}/bin/${BANAN_ARCH}-banan_os-gcc) - set(CMAKE_C_COMPILER_WORKS True) -endif() - -if(DEFINED QEMU_ACCEL) - set(QEMU_ACCEL -accel ${QEMU_ACCEL}) -endif() - -if(DEFINED UEFI_BOOT) - set(UEFI_BOOT 1) -endif() +if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "banan-os") + message(FATAL_ERROR "CMAKE_SYSTEM_NAME is not banan-os") +endif () add_compile_options(-mno-sse -mno-sse2) add_compile_definitions(__enable_sse=0) -project(banan-os CXX) +project(banan-os CXX C ASM) set(BANAN_BASE_SYSROOT ${CMAKE_SOURCE_DIR}/base-sysroot.tar.gz) set(BANAN_SYSROOT ${CMAKE_BINARY_DIR}/sysroot) @@ -37,15 +15,6 @@ set(BANAN_INCLUDE ${BANAN_SYSROOT}/usr/include) set(BANAN_LIB ${BANAN_SYSROOT}/usr/lib) set(BANAN_BIN ${BANAN_SYSROOT}/usr/bin) set(BANAN_BOOT ${BANAN_SYSROOT}/boot) -set(DISK_IMAGE_PATH ${CMAKE_BINARY_DIR}/banan-os.img) - -set(BANAN_SCRIPT_ENV - BANAN_ARCH="${BANAN_ARCH}" - DISK_IMAGE_PATH="${DISK_IMAGE_PATH}" - SYSROOT="${BANAN_SYSROOT}" - TOOLCHAIN_PREFIX="${TOOLCHAIN_PREFIX}" - UEFI_BOOT="${UEFI_BOOT}" -) add_subdirectory(kernel) add_subdirectory(BAN) @@ -66,63 +35,10 @@ add_custom_target(headers DEPENDS libelf-headers ) -add_custom_target(toolchain - COMMAND ${CMAKE_COMMAND} -E env ${BANAN_SCRIPT_ENV} ${CMAKE_SOURCE_DIR}/toolchain/build.sh - DEPENDS headers - USES_TERMINAL -) - -add_custom_target(libstdc++ - COMMAND ${CMAKE_COMMAND} -E env LIBSTDCPP="1" ${CMAKE_SOURCE_DIR}/toolchain/build.sh - DEPENDS libc-install - USES_TERMINAL -) - -add_custom_target(image - COMMAND ${CMAKE_COMMAND} -E env ${BANAN_SCRIPT_ENV} ${CMAKE_SOURCE_DIR}/image.sh +add_custom_target(install-sysroot DEPENDS kernel-install DEPENDS ban-install DEPENDS libc-install DEPENDS userspace-install DEPENDS libelf-install - USES_TERMINAL -) - -add_custom_target(image-full - COMMAND ${CMAKE_COMMAND} -E env ${BANAN_SCRIPT_ENV} ${CMAKE_SOURCE_DIR}/image-full.sh - DEPENDS kernel-install - DEPENDS ban-install - DEPENDS libc-install - DEPENDS userspace-install - DEPENDS libelf-install - USES_TERMINAL -) - -add_custom_target(check-fs - COMMAND ${CMAKE_COMMAND} -E env ${BANAN_SCRIPT_ENV} ${CMAKE_SOURCE_DIR}/check-fs.sh - USES_TERMINAL -) - -add_custom_target(qemu - COMMAND ${CMAKE_COMMAND} -E env ${BANAN_SCRIPT_ENV} ${CMAKE_SOURCE_DIR}/qemu.sh -serial stdio ${QEMU_ACCEL} - DEPENDS image - USES_TERMINAL -) - -add_custom_target(qemu-nographic - COMMAND ${CMAKE_COMMAND} -E env ${BANAN_SCRIPT_ENV} ${CMAKE_SOURCE_DIR}/qemu.sh -nographic ${QEMU_ACCEL} - DEPENDS image - USES_TERMINAL -) - -add_custom_target(qemu-debug - COMMAND ${CMAKE_COMMAND} -E env ${BANAN_SCRIPT_ENV} ${CMAKE_SOURCE_DIR}/qemu.sh -serial stdio -d int -no-reboot - DEPENDS image - USES_TERMINAL -) - -add_custom_target(bochs - COMMAND ${CMAKE_COMMAND} -E env ${BANAN_SCRIPT_ENV} ${CMAKE_SOURCE_DIR}/bochs.sh - DEPENDS image - USES_TERMINAL ) diff --git a/PreLoad.cmake b/PreLoad.cmake deleted file mode 100644 index 94a06cf8..00000000 --- a/PreLoad.cmake +++ /dev/null @@ -1 +0,0 @@ -set(CMAKE_GENERATOR "Ninja" CACHE INTERNAL "" FORCE) diff --git a/check-fs.sh b/check-fs.sh deleted file mode 100755 index 253c341c..00000000 --- a/check-fs.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -set -e - -LOOP_DEV=$(sudo losetup -f --show $DISK_IMAGE_PATH) -sudo partprobe $LOOP_DEV - -sudo fsck.ext2 -fn ${LOOP_DEV}p2 || true - -sudo losetup -d $LOOP_DEV diff --git a/image.sh b/image.sh deleted file mode 100755 index c0662b8e..00000000 --- a/image.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash - -if [ ! -f $DISK_IMAGE_PATH ]; then - $(dirname "$0")/image-full.sh - exit 0 -fi - -fdisk -l $DISK_IMAGE_PATH | grep -q 'EFI System'; IMAGE_IS_UEFI=$? -[[ $UEFI_BOOT == 1 ]]; CREATE_IS_UEFI=$? - -if [ $IMAGE_IS_UEFI -ne $CREATE_IS_UEFI ]; then - echo Converting disk image to/from UEFI - $(dirname "$0")/image-full.sh - exit 0 -fi - -MOUNT_DIR=/mnt - -LOOP_DEV=$(sudo losetup -f --show $DISK_IMAGE_PATH) -sudo partprobe $LOOP_DEV - -ROOT_PARTITON=${LOOP_DEV}p2 - -sudo mount $ROOT_PARTITON $MOUNT_DIR - -sudo rsync -a ${SYSROOT}/* ${MOUNT_DIR}/ - -sudo umount $MOUNT_DIR - -sudo losetup -d $LOOP_DEV diff --git a/qemu.sh b/qemu.sh deleted file mode 100755 index 4530527a..00000000 --- a/qemu.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash -set -e - -if [ -z ${OVMF_PATH+x} ]; then - OVMF_PATH="/usr/share/ovmf/x64/OVMF.fd" -fi - -if [ "$UEFI_BOOT" == "1" ]; then - BIOS_ARGS="-bios $OVMF_PATH -net none" -fi - -qemu-system-$BANAN_ARCH \ - -m 128 \ - -smp 2 \ - $BIOS_ARGS \ - -drive format=raw,id=disk,file=${DISK_IMAGE_PATH},if=none \ - -device ahci,id=ahci \ - -device ide-hd,drive=disk,bus=ahci.0 \ - $@ \ diff --git a/bochs.sh b/script/bochs.sh similarity index 85% rename from bochs.sh rename to script/bochs.sh index 5a842720..adc7442d 100755 --- a/bochs.sh +++ b/script/bochs.sh @@ -14,7 +14,7 @@ COM1_DEVICE=$(cat $COM1_DEVICE_FILE) rm $COM1_DEVICE_FILE cat > $BOCHS_CONFIG_FILE << EOF -ata0-master: type=disk, path=$DISK_IMAGE_PATH, status=inserted +ata0-master: type=disk, path=$BANAN_DISK_IMAGE_PATH, status=inserted boot: disk clock: sync=realtime, time0=local display_library: x, options="gui_debug" diff --git a/script/build.sh b/script/build.sh new file mode 100755 index 00000000..3dff508b --- /dev/null +++ b/script/build.sh @@ -0,0 +1,107 @@ +#!/bin/bash +set -e + +if [[ -z $BANAN_ARCH ]]; then + export BANAN_ARCH=x86_64 +fi + +export BANAN_SCRIPT_DIR=$(dirname $(realpath $0)) +source $BANAN_SCRIPT_DIR/config.sh + +make_build_dir () { + if ! [[ -d $BANAN_BUILD_DIR ]]; then + mkdir -p $BANAN_BUILD_DIR + cd $BANAN_BUILD_DIR + cmake --toolchain=$BANAN_TOOLCHAIN_DIR/Toolchain.txt -G Ninja $BANAN_ROOT_DIR $BANAN_CMAKE_ARGS + fi +} + +build_target () { + make_build_dir + if [[ -z $1 ]]; then + echo "No target provided" + exit 1 + fi + cd $BANAN_BUILD_DIR + ninja $1 +} + +build_toolchain () { + $BANAN_TOOLCHAIN_DIR/build.sh + build_target libc-install + $BANAN_TOOLCHAIN_DIR/build.sh libstdc++ +} + +create_image () { + build_target install-sysroot + if [[ "$1" == "full" ]]; then + $BANAN_SCRIPT_DIR/image-full.sh + else + $BANAN_SCRIPT_DIR/image.sh + fi +} + +run_qemu () { + create_image + $BANAN_SCRIPT_DIR/qemu.sh $@ +} + +run_bochs () { + create_image + $BANAN_SCRIPT_DIR/bochs.sh $@ +} + +if [[ "$1" == "toolchain" ]]; then + if [[ -f $BANAN_TOOLCHAIN_PREFIX/bin/$BANAN_TOOLCHAIN_TRIPLE_PREFIX-gcc ]]; then + echo "You already seem to have build toolchain." + read -e -p "Do you want to rebuild it [y/N]? " choice + if ! [[ "$choice" == [Yy]* ]]; then + echo "Aborting toolchain rebuild" + exit 0 + fi + fi + + build_toolchain + exit 0 +fi + +if [[ "$1" == "image" ]]; then + create_image + exit 0 +fi + +if [[ "$1" == "image-full" ]]; then + create_image full + exit 0 +fi + +if [[ "$(uname)" == "Linux" ]]; then + QEMU_ACCEL="-accel kvm" +fi + +if [[ "$1" == "qemu" ]]; then + run_qemu -serial stdio $QEMU_ACCEL + exit 0 +fi + +if [[ "$1" == "qemu-nographic" ]]; then + run_qemu -nographic $QEMU_ACCEL + exit 0 +fi + +if [[ "$1" == "qemu-debug" ]]; then + run_qemu -serial stdio -d int -no-reboot + exit 0 +fi + +if [[ "$1" == "bochs" ]]; then + run_bochs + exit 0 +fi + +if [[ "$1" == "check-fs" ]]; then + $BANAN_SCRIPT_DIR/check-fs.sh + exit 0 +fi + +build_target $1 diff --git a/script/check-fs.sh b/script/check-fs.sh new file mode 100755 index 00000000..9af3929b --- /dev/null +++ b/script/check-fs.sh @@ -0,0 +1,14 @@ +#!/bin/bash +set -e + +if [[ -z $BANAN_DISK_IMAGE_PATH ]]; then + echo "You must set BANAN_DISK_IMAGE_PATH environment variable" >&2 + exit 1 +fi + +LOOP_DEV=$(sudo losetup -f --show $BANAN_DISK_IMAGE_PATH) +sudo partprobe $LOOP_DEV + +sudo fsck.ext2 -fn ${LOOP_DEV}p2 || true + +sudo losetup -d $LOOP_DEV diff --git a/script/config.sh b/script/config.sh new file mode 100644 index 00000000..1c14b0d2 --- /dev/null +++ b/script/config.sh @@ -0,0 +1,27 @@ +if [[ -z $BANAN_ROOT_DIR ]]; then + if [[ -z $BANAN_SCRIPT_DIR ]]; then + export BANAN_ROOT_DIR=$BANAN_SCRIPT_DIR/.. + else + echo "You must set the BANAN_ROOT_DIR environment variable" >&2 + exit 1 + fi +fi + +if [[ -z $BANAN_ARCH ]]; then + echo "You must set the BANAN_ARCH environment variable" >&2 + exit 1 +fi + +export BANAN_TOOLCHAIN_DIR=$BANAN_ROOT_DIR/toolchain +export BANAN_TOOLCHAIN_PREFIX=$BANAN_TOOLCHAIN_DIR/local +export BANAN_TOOLCHAIN_TRIPLE_PREFIX=$BANAN_ARCH-banan_os + +export BANAN_BUILD_DIR=$BANAN_ROOT_DIR/build + +export BANAN_SYSROOT=$BANAN_BUILD_DIR/sysroot + +export BANAN_DISK_IMAGE_PATH=$BANAN_BUILD_DIR/banan-os.img + +if [[ -z $BANAN_UEFI_BOOT ]]; then + export BANAN_UEFI_BOOT=0 +fi diff --git a/image-full.sh b/script/image-full.sh similarity index 55% rename from image-full.sh rename to script/image-full.sh index 7725c7f0..25412a38 100755 --- a/image-full.sh +++ b/script/image-full.sh @@ -1,14 +1,34 @@ #!/bin/bash set -e +if [[ -z $BANAN_DISK_IMAGE_PATH ]]; then + echo "You must set the BANAN_DISK_IMAGE_PATH environment variable" >&2 + exit 1 +fi + +if [[ -z $BANAN_SYSROOT ]]; then + echo "You must set the BANAN_SYSROOT environment variable" >&2 + exit 1 +fi + +if [[ -z $BANAN_TOOLCHAIN_PREFIX ]]; then + echo "You must set the BANAN_TOOLCHAIN_PREFIX environment variable" >&2 + exit 1 +fi + +if [[ -z $BANAN_ARCH ]]; then + echo "You must set the BANAN_ARCH environment variable" >&2 + exit 1 +fi + DISK_SIZE=$[50 * 1024 * 1024] MOUNT_DIR=/mnt -truncate -s 0 "$DISK_IMAGE_PATH" -truncate -s $DISK_SIZE "$DISK_IMAGE_PATH" +truncate -s 0 "$BANAN_DISK_IMAGE_PATH" +truncate -s $DISK_SIZE "$BANAN_DISK_IMAGE_PATH" -if [ "$UEFI_BOOT" == "1" ]; then - sed -e 's/\s*\([-\+[:alnum:]]*\).*/\1/' << EOF | fdisk "$DISK_IMAGE_PATH" > /dev/null +if [ "$BANAN_UEFI_BOOT" == "1" ]; then + sed -e 's/\s*\([-\+[:alnum:]]*\).*/\1/' << EOF | fdisk "$BANAN_DISK_IMAGE_PATH" > /dev/null g # gpt n # new partition 1 # partition number 1 @@ -27,7 +47,7 @@ if [ "$UEFI_BOOT" == "1" ]; then w # write changes EOF else - sed -e 's/\s*\([-\+[:alnum:]]*\).*/\1/' << EOF | fdisk "$DISK_IMAGE_PATH" > /dev/null + sed -e 's/\s*\([-\+[:alnum:]]*\).*/\1/' << EOF | fdisk "$BANAN_DISK_IMAGE_PATH" > /dev/null g # gpt n # new partition 1 # partition number 1 @@ -47,30 +67,30 @@ else EOF fi -LOOP_DEV=$(sudo losetup -f --show "$DISK_IMAGE_PATH") +LOOP_DEV=$(sudo losetup -f --show "$BANAN_DISK_IMAGE_PATH") sudo partprobe $LOOP_DEV PARTITION1=${LOOP_DEV}p1 PARTITION2=${LOOP_DEV}p2 -sudo mkfs.ext2 -d $SYSROOT -b 1024 -q $PARTITION2 +sudo mkfs.ext2 -d $BANAN_SYSROOT -b 1024 -q $PARTITION2 -if [[ "$UEFI_BOOT" == "1" ]]; then +if [[ "$BANAN_UEFI_BOOT" == "1" ]]; then sudo mkfs.fat $PARTITION1 > /dev/null sudo mount $PARTITION1 "$MOUNT_DIR" sudo mkdir -p "$MOUNT_DIR/EFI/BOOT" - sudo "$TOOLCHAIN_PREFIX/bin/grub-mkstandalone" -O "$BANAN_ARCH-efi" -o "$MOUNT_DIR/EFI/BOOT/BOOTX64.EFI" "boot/grub/grub.cfg=$TOOLCHAIN_PREFIX/grub-memdisk.cfg" + sudo "$BANAN_TOOLCHAIN_PREFIX/bin/grub-mkstandalone" -O "$BANAN_ARCH-efi" -o "$MOUNT_DIR/EFI/BOOT/BOOTX64.EFI" "boot/grub/grub.cfg=$BANAN_TOOLCHAIN_PREFIX/grub-memdisk.cfg" sudo umount "$MOUNT_DIR" sudo mount $PARTITION2 "$MOUNT_DIR" sudo mkdir -p "$MOUNT_DIR/boot/grub" - sudo cp "$TOOLCHAIN_PREFIX/grub-uefi.cfg" "$MOUNT_DIR/boot/grub/grub.cfg" + sudo cp "$BANAN_TOOLCHAIN_PREFIX/grub-uefi.cfg" "$MOUNT_DIR/boot/grub/grub.cfg" sudo umount "$MOUNT_DIR" else sudo mount $PARTITION2 "$MOUNT_DIR" sudo grub-install --no-floppy --target=i386-pc --modules="normal ext2 multiboot" --boot-directory="$MOUNT_DIR/boot" $LOOP_DEV sudo mkdir -p "$MOUNT_DIR/boot/grub" - sudo cp "$TOOLCHAIN_PREFIX/grub-legacy-boot.cfg" "$MOUNT_DIR/boot/grub/grub.cfg" + sudo cp "$BANAN_TOOLCHAIN_PREFIX/grub-legacy-boot.cfg" "$MOUNT_DIR/boot/grub/grub.cfg" sudo umount "$MOUNT_DIR" fi diff --git a/script/image.sh b/script/image.sh new file mode 100755 index 00000000..26061b47 --- /dev/null +++ b/script/image.sh @@ -0,0 +1,45 @@ +#!/bin/bash + +if [[ -z $BANAN_ROOT_DIR ]]; then + echo "You must set the BANAN_ROOT_DIR environment variable" >&2 + exit 1 +fi + +if [[ -z $BANAN_DISK_IMAGE_PATH ]]; then + echo "You must set the BANAN_DISK_IMAGE_PATH environment variable" >&2 + exit 1 +fi + +if [[ -z $BANAN_SYSROOT ]]; then + echo "You must set the BANAN_SYSROOT environment variable" >&2 + exit 1 +fi + +if [[ ! -f $BANAN_DISK_IMAGE_PATH ]]; then + $BANAN_SCRIPT_DIR/image-full.sh + exit 0 +fi + +fdisk -l $BANAN_DISK_IMAGE_PATH | grep -q 'EFI System'; IMAGE_IS_UEFI=$? +[[ $BANAN_UEFI_BOOT == 1 ]]; CREATE_IS_UEFI=$? + +if [[ $IMAGE_IS_UEFI -ne $CREATE_IS_UEFI ]]; then + echo Converting disk image to/from UEFI + $BANAN_SCRIPT_DIR/image-full.sh + exit 0 +fi + +MOUNT_DIR=/mnt + +LOOP_DEV=$(sudo losetup -f --show $BANAN_DISK_IMAGE_PATH) +sudo partprobe $LOOP_DEV + +ROOT_PARTITON=${LOOP_DEV}p2 + +sudo mount $ROOT_PARTITON $MOUNT_DIR + +sudo rsync -a ${BANAN_SYSROOT}/* ${MOUNT_DIR}/ + +sudo umount $MOUNT_DIR + +sudo losetup -d $LOOP_DEV diff --git a/script/qemu.sh b/script/qemu.sh new file mode 100755 index 00000000..82b859ac --- /dev/null +++ b/script/qemu.sh @@ -0,0 +1,24 @@ +#!/bin/bash +set -e + +if [[ -z $BANAN_DISK_IMAGE_PATH ]]; then + echo "You must set the BANAN_DISK_IMAGE_PATH environment variable" >&2 + exit 1 +fi + +if [[ -z $OVMF_PATH ]]; then + OVMF_PATH="/usr/share/ovmf/x64/OVMF.fd" +fi + +if [[ "$BANAN_UEFI_BOOT" == "1" ]]; then + BIOS_ARGS="-bios $OVMF_PATH -net none" +fi + +qemu-system-$BANAN_ARCH \ + -m 128 \ + -smp 2 \ + $BIOS_ARGS \ + -drive format=raw,id=disk,file=${BANAN_DISK_IMAGE_PATH},if=none \ + -device ahci,id=ahci \ + -device ide-hd,drive=disk,bus=ahci.0 \ + $@ \ diff --git a/toolchain/Toolchain.txt b/toolchain/Toolchain.txt new file mode 100644 index 00000000..c208fd94 --- /dev/null +++ b/toolchain/Toolchain.txt @@ -0,0 +1,18 @@ +if (NOT DEFINED ENV{BANAN_ARCH}) + message(FATAL_ERROR "environment variable BANAN_ARCH not defined") +endif () + +set(BANAN_ARCH $ENV{BANAN_ARCH}) + +set(TOOLCHAIN_PREFIX ${CMAKE_SOURCE_DIR}/toolchain/local) + +set(CMAKE_SYSTEM_NAME banan-os) +set(CMAKE_SYSTEM_PROCESSOR AMD64) + +set(CMAKE_CXX_STANDARD 20) +set(CMAKE_CXX_STANDARD_REQUIRED True) +set(CMAKE_CXX_COMPILER ${TOOLCHAIN_PREFIX}/bin/${BANAN_ARCH}-banan_os-g++) +set(CMAKE_CXX_COMPILER_WORKS True) + +set(CMAKE_C_COMPILER ${TOOLCHAIN_PREFIX}/bin/${BANAN_ARCH}-banan_os-gcc) +set(CMAKE_C_COMPILER_WORKS True) diff --git a/toolchain/build.sh b/toolchain/build.sh index 8da3970e..057c475d 100755 --- a/toolchain/build.sh +++ b/toolchain/build.sh @@ -5,22 +5,23 @@ BINUTILS_VERSION="binutils-2.39" GCC_VERSION="gcc-12.2.0" GRUB_VERSION="grub-2.06" -cd $(dirname "$0") - -if [[ -n $LIBSTDCPP ]]; then - cd build/${GCC_VERSION}/ - make -j $(nproc) all-target-libstdc++-v3 - make install-target-libstdc++-v3 - exit 0 -fi - -if [[ -z $SYSROOT ]]; then - echo "You must set the SYSROOT environment variable" >&2 +if [[ -z $BANAN_SYSROOT ]]; then + echo "You must set the BANAN_SYSROOT environment variable" >&2 exit 1 fi -if [[ -z $TOOLCHAIN_PREFIX ]]; then - echo "You must set the TOOLCHAIN_PREFIX environment variable" >&2 +if [[ -z $BANAN_TOOLCHAIN_DIR ]]; then + echo "You must set the BANAN_TOOLCHAIN_DIR environment variable" >&2 + exit 1 +fi + +if [[ -z $BANAN_TOOLCHAIN_PREFIX ]]; then + echo "You must set the BANAN_TOOLCHAIN_PREFIX environment variable" >&2 + exit 1 +fi + +if [[ -z $BANAN_TOOLCHAIN_TRIPLE_PREFIX ]]; then + echo "You must set the BANAN_TOOLCHAIN_TRIPLE_PREFIX environment variable" >&2 exit 1 fi @@ -29,12 +30,11 @@ if [[ -z $BANAN_ARCH ]]; then exit 1 fi -TARGET="${BANAN_ARCH}-banan_os" - -if [ ! -f ${TOOLCHAIN_PREFIX}/bin/${TARGET}-ld ]; then - +build_binutils () { echo "Building ${BINUTILS_VERSION}" + cd $BANAN_TOOLCHAIN_DIR + if [ ! -f ${BINUTILS_VERSION}.tar.xz ]; then wget https://ftp.gnu.org/gnu/binutils/${BINUTILS_VERSION}.tar.xz fi @@ -45,26 +45,24 @@ if [ ! -f ${TOOLCHAIN_PREFIX}/bin/${TARGET}-ld ]; then fi mkdir -p build/${BINUTILS_VERSION}/ - pushd build/${BINUTILS_VERSION}/ + cd build/${BINUTILS_VERSION}/ ../../${BINUTILS_VERSION}/configure \ - --target="$TARGET" \ - --prefix="$TOOLCHAIN_PREFIX" \ - --with-sysroot="$SYSROOT" \ + --target="$BANAN_TOOLCHAIN_TRIPLE_PREFIX" \ + --prefix="$BANAN_TOOLCHAIN_PREFIX" \ + --with-sysroot="$BANAN_SYSROOT" \ --disable-nls \ --disable-werror make -j $(nproc) make install +} - popd - -fi - -if [ ! -f ${TOOLCHAIN_PREFIX}/bin/${TARGET}-g++ ]; then - +build_gcc () { echo "Building ${GCC_VERSION}" + cd $BANAN_TOOLCHAIN_DIR + if [ ! -f ${GCC_VERSION}.tar.xz ]; then wget https://ftp.gnu.org/gnu/gcc/${GCC_VERSION}/${GCC_VERSION}.tar.xz fi @@ -75,27 +73,25 @@ if [ ! -f ${TOOLCHAIN_PREFIX}/bin/${TARGET}-g++ ]; then fi mkdir -p build/${GCC_VERSION}/ - pushd build/${GCC_VERSION}/ + cd build/${GCC_VERSION}/ ../../${GCC_VERSION}/configure \ - --target="$TARGET" \ - --prefix="$TOOLCHAIN_PREFIX" \ - --with-sysroot="$SYSROOT" \ + --target="$BANAN_TOOLCHAIN_TRIPLE_PREFIX" \ + --prefix="$BANAN_TOOLCHAIN_PREFIX" \ + --with-sysroot="$BANAN_SYSROOT" \ --disable-nls \ --enable-languages=c,c++ make -j $(nproc) all-gcc make -j $(nproc) all-target-libgcc CFLAGS_FOR_TARGET='-g -O2 -mcmodel=large -mno-red-zone' make install-gcc install-target-libgcc +} - popd - -fi - -if [ ! -f ${TOOLCHAIN_PREFIX}/bin/grub-mkstandalone ]; then - +build_grub () { echo "Building ${GRUB_VERSION}" + cd $BANAN_TOOLCHAIN_DIR + if [ ! -f ${GRUB_VERSION}.tar.xz ]; then wget https://ftp.gnu.org/gnu/grub/${GRUB_VERSION}.tar.xz fi @@ -105,17 +101,29 @@ if [ ! -f ${TOOLCHAIN_PREFIX}/bin/grub-mkstandalone ]; then fi mkdir -p build/${GRUB_VERSION}/ - pushd build/${GRUB_VERSION}/ + cd build/${GRUB_VERSION}/ ../../${GRUB_VERSION}/configure \ --target="$BANAN_ARCH" \ - --prefix="$TOOLCHAIN_PREFIX" \ + --prefix="$BANAN_TOOLCHAIN_PREFIX" \ --with-platform="efi" \ --disable-werror make -j $(nproc) make install +} - popd +build_libstdcpp () { + cd build/${GCC_VERSION}/ + make -j $(nproc) all-target-libstdc++-v3 + make install-target-libstdc++-v3 +} +if [[ "$1" == "libstdc++" ]]; then + build_libstdcpp + exit 0 fi + +build_binutils +build_gcc +build_grub From 51ad27ea3c633021eb02a4c1155fb80a09a26888 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 23 Oct 2023 13:35:27 +0300 Subject: [PATCH 129/240] BuildSystem: Match README.md with the new buildsystem --- README.md | 33 ++++++++++++--------------------- 1 file changed, 12 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index 438df7e3..96ab9b93 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # banan-os -This is my hobby operating system written in C++. Currently supports only x86_64 architecture. We have a read-only ext2 filesystem, read-write ramfs, IDE disk drivers in ATA PIO mode, userspace processes, executable loading from ELF format, linear VBE graphics and multithreaded processing on single core. +This is my hobby operating system written in C++. Currently supports only x86_64 architecture. We have a read-only ext2 filesystem, read-write ramfs, IDE disk drivers in ATA PIO mode, ATA AHCI drivers, userspace processes, executable loading from ELF format, linear VBE graphics and multithreaded processing on single core. ![screenshot from qemu running banan-os](assets/banan-os.png) @@ -14,41 +14,32 @@ Each major component and library has its own subdirectory (kernel, userspace, li There does not exist a complete list of needed packages for building. From the top of my head I can say that *cmake*, *ninja*, *make*, *grub*, *rsync* and emulator (*qemu* or *bochs*) are needed. -You can and *should* pass cmake variable QEMU_ACCEL set to proper accelerator to cmake commands. For example on Linux this means adding -DQEMU_ACCEL=kvm to the end of all cmake commands. - -Create the build directory and cofigure cmake -```sh -mkdir build -cd build -cmake .. -``` - To build the toolchain for this os. You can run the following command. > ***NOTE:*** The following step has to be done only once. This might take a long time since we are compiling binutils and gcc. ```sh -ninja toolchain -cmake --fresh .. # We need to reconfigure cmake to use the new compiler -ninja libstdc++ +./script/build.sh toolchain ``` -To build the os itself you can run either of the following commands. You will need root access since the sysroot has "proper" permissions. +To build the os itself you can run one of the following commands. You will need root access since the sysroot has "proper" permissions. ```sh -ninja qemu -ninja bochs +./script/build.sh qemu +./script/build.sh qemu-nographic +./script/build.sh qemu-debug +./script/build.sh bochs ``` You can also build the kernel or disk image without running it: ```sh -ninja kernel -ninja image +./script/build.sh kernel +./script/build.sh image ``` -If you have corrupted your disk image or want to create new one, you can either manually delete *banan-os.img* and cmake will automatically create you a new one or you can run the following command. +If you have corrupted your disk image or want to create new one, you can either manually delete *build/banan-os.img* and build system will automatically create you a new one or you can run the following command. ```sh -ninja image-full +./script/build.sh image-full ``` -> ***NOTE*** ```ninja clean``` has to be ran with root permissions, since it deletes the root filesystem. +> ***NOTE*** ```ninja clean``` has to be ran with root permissions, since it deletes from the banan-so sysroot. ### Contributing From 00ee86920a73ca91333f84e58a74b30529eb9905 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Tue, 24 Oct 2023 11:56:25 +0300 Subject: [PATCH 130/240] Kernel: Add timeout to ACHI commands ACHI commands can now fail from timeouts. --- .../include/kernel/Storage/ATA/AHCI/Device.h | 5 ++- kernel/kernel/Storage/ATA/AHCI/Device.cpp | 34 +++++++++++++------ 2 files changed, 26 insertions(+), 13 deletions(-) diff --git a/kernel/include/kernel/Storage/ATA/AHCI/Device.h b/kernel/include/kernel/Storage/ATA/AHCI/Device.h index 42d39335..225c685b 100644 --- a/kernel/include/kernel/Storage/ATA/AHCI/Device.h +++ b/kernel/include/kernel/Storage/ATA/AHCI/Device.h @@ -30,7 +30,8 @@ namespace Kernel BAN::Optional find_free_command_slot(); void handle_irq(); - void block_until_irq(); + + BAN::ErrorOr block_until_command_completed(uint32_t command_slot); private: BAN::RefPtr m_controller; @@ -41,8 +42,6 @@ namespace Kernel // TODO: can we read straight to user buffer? BAN::UniqPtr m_data_dma_region; - volatile bool m_has_got_irq { false }; - friend class AHCIController; }; diff --git a/kernel/kernel/Storage/ATA/AHCI/Device.cpp b/kernel/kernel/Storage/ATA/AHCI/Device.cpp index a087bd56..f0056d4e 100644 --- a/kernel/kernel/Storage/ATA/AHCI/Device.cpp +++ b/kernel/kernel/Storage/ATA/AHCI/Device.cpp @@ -1,3 +1,4 @@ +#include #include #include #include @@ -40,7 +41,7 @@ namespace Kernel m_port->ie = 0xFFFFFFFF; TRY(read_identify_data()); - TRY(detail::ATABaseDevice::initialize({ (const uint16_t*)m_data_dma_region->vaddr(), m_data_dma_region->size() })); + TRY(detail::ATABaseDevice::initialize({ (const uint16_t*)m_data_dma_region->vaddr(), m_data_dma_region->size() / sizeof(uint16_t) })); return {}; } @@ -120,8 +121,7 @@ namespace Kernel m_port->ci = 1 << slot.value(); - // FIXME: timeout - do { block_until_irq(); } while (m_port->ci & (1 << slot.value())); + TRY(block_until_command_completed(slot.value())); return {}; } @@ -145,17 +145,32 @@ namespace Kernel void AHCIDevice::handle_irq() { - ASSERT(!m_has_got_irq); uint16_t err = m_port->serr & 0xFFFF; if (err) print_error(err); - m_has_got_irq = true; } - void AHCIDevice::block_until_irq() + BAN::ErrorOr AHCIDevice::block_until_command_completed(uint32_t command_slot) { - while (!__sync_bool_compare_and_swap(&m_has_got_irq, true, false)) - __builtin_ia32_pause(); + static constexpr uint64_t total_timeout_ms = 5000; + static constexpr uint64_t poll_timeout_ms = 10; + + auto start_time = SystemTimer::get().ms_since_boot(); + + while (start_time + poll_timeout_ms < SystemTimer::get().ns_since_boot()) + if (!(m_port->ci & (1 << command_slot))) + return {}; + + // FIXME: This should actually block once semaphores support blocking with timeout. + // This doesn't allow scheduler to go properly idle. + while (start_time + total_timeout_ms < SystemTimer::get().ns_since_boot()) + { + Scheduler::get().reschedule(); + if (!(m_port->ci & (1 << command_slot))) + return {}; + } + + return BAN::Error::from_errno(ETIMEDOUT); } BAN::ErrorOr AHCIDevice::read_sectors_impl(uint64_t lba, uint64_t sector_count, BAN::ByteSpan buffer) @@ -260,8 +275,7 @@ namespace Kernel m_port->ci = 1 << slot.value(); - // FIXME: timeout - do { block_until_irq(); } while (m_port->ci & (1 << slot.value())); + TRY(block_until_command_completed(slot.value())); return {}; } From e8d20bc6531be3ae5d04e0a6fa9b65c1f4417bd8 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Tue, 24 Oct 2023 16:48:46 +0300 Subject: [PATCH 131/240] BuildSystem: Fix bugs in new build system I had not tested the new build system with clean toolchain build but it seems to work now. --- .gitignore | 4 - script/bochs.sh | 3 +- script/build.sh | 102 ++++++++++----------- script/check-fs.sh | 1 - script/config.sh | 5 +- script/image-full.sh | 7 +- script/qemu.sh | 1 - toolchain/.gitignore | 1 + toolchain/build.sh | 71 ++++++++++---- toolchain/{local => }/grub-legacy-boot.cfg | 0 toolchain/{local => }/grub-memdisk.cfg | 0 toolchain/{local => }/grub-uefi.cfg | 0 toolchain/local/.gitignore | 1 - 13 files changed, 106 insertions(+), 90 deletions(-) create mode 100644 toolchain/.gitignore rename toolchain/{local => }/grub-legacy-boot.cfg (100%) rename toolchain/{local => }/grub-memdisk.cfg (100%) rename toolchain/{local => }/grub-uefi.cfg (100%) delete mode 100644 toolchain/local/.gitignore diff --git a/.gitignore b/.gitignore index fe19aea9..a9328e85 100644 --- a/.gitignore +++ b/.gitignore @@ -2,8 +2,4 @@ .idea/ build/ base/ -*.tar.* -toolchain/*/ -!toolchain/local/ -!base-sysroot.tar.gz diff --git a/script/bochs.sh b/script/bochs.sh index adc7442d..196783b1 100755 --- a/script/bochs.sh +++ b/script/bochs.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -e BOCHS_CONFIG_FILE=bochsrc COM1_TERMINAL=kitty @@ -25,4 +24,4 @@ EOF bochs -qf $BOCHS_CONFIG_FILE kill $COM1_TERM_PID -rm $BOCHS_CONFIG_FILE \ No newline at end of file +rm $BOCHS_CONFIG_FILE diff --git a/script/build.sh b/script/build.sh index 3dff508b..c8399d7c 100755 --- a/script/build.sh +++ b/script/build.sh @@ -1,24 +1,20 @@ #!/bin/bash set -e -if [[ -z $BANAN_ARCH ]]; then - export BANAN_ARCH=x86_64 -fi - export BANAN_SCRIPT_DIR=$(dirname $(realpath $0)) source $BANAN_SCRIPT_DIR/config.sh make_build_dir () { - if ! [[ -d $BANAN_BUILD_DIR ]]; then - mkdir -p $BANAN_BUILD_DIR - cd $BANAN_BUILD_DIR - cmake --toolchain=$BANAN_TOOLCHAIN_DIR/Toolchain.txt -G Ninja $BANAN_ROOT_DIR $BANAN_CMAKE_ARGS + mkdir -p $BANAN_BUILD_DIR + cd $BANAN_BUILD_DIR + if ! [[ -f "build.ninja" ]]; then + cmake --toolchain=$BANAN_TOOLCHAIN_DIR/Toolchain.txt -G Ninja $BANAN_ROOT_DIR fi } build_target () { make_build_dir - if [[ -z $1 ]]; then + if [[ $# -eq 0 ]]; then echo "No target provided" exit 1 fi @@ -27,6 +23,15 @@ build_target () { } build_toolchain () { + if [[ -f $BANAN_TOOLCHAIN_PREFIX/bin/$BANAN_TOOLCHAIN_TRIPLE_PREFIX-gcc ]]; then + echo "You already seem to have a toolchain." + read -e -p "Do you want to rebuild it [y/N]? " choice + if ! [[ "$choice" == [Yy]* ]]; then + echo "Aborting toolchain rebuild" + exit 0 + fi + fi + $BANAN_TOOLCHAIN_DIR/build.sh build_target libc-install $BANAN_TOOLCHAIN_DIR/build.sh libstdc++ @@ -51,57 +56,42 @@ run_bochs () { $BANAN_SCRIPT_DIR/bochs.sh $@ } -if [[ "$1" == "toolchain" ]]; then - if [[ -f $BANAN_TOOLCHAIN_PREFIX/bin/$BANAN_TOOLCHAIN_TRIPLE_PREFIX-gcc ]]; then - echo "You already seem to have build toolchain." - read -e -p "Do you want to rebuild it [y/N]? " choice - if ! [[ "$choice" == [Yy]* ]]; then - echo "Aborting toolchain rebuild" - exit 0 - fi - fi - - build_toolchain - exit 0 -fi - -if [[ "$1" == "image" ]]; then - create_image - exit 0 -fi - -if [[ "$1" == "image-full" ]]; then - create_image full - exit 0 -fi - if [[ "$(uname)" == "Linux" ]]; then QEMU_ACCEL="-accel kvm" fi -if [[ "$1" == "qemu" ]]; then - run_qemu -serial stdio $QEMU_ACCEL - exit 0 +if [[ $# -eq 0 ]]; then + echo "No argument given" + exit 1 fi -if [[ "$1" == "qemu-nographic" ]]; then - run_qemu -nographic $QEMU_ACCEL - exit 0 -fi +case $1 in + toolchain) + build_toolchain + ;; + image) + create_image + ;; + image-full) + create_image full + ;; + qemu) + run_qemu -serial stdio $QEMU_ACCEL + ;; + qemu-nographic) + run_qemu -nographic $QEMU_ACCEL + ;; + qemu-debug) + run_qemu -serial stdio -d int -no-reboot + ;; + bochs) + run_bochs + ;; + check-fs) + $BANAN_SCRIPT_DIR/check-fs.sh + ;; + *) + build_target $1 + ;; +esac -if [[ "$1" == "qemu-debug" ]]; then - run_qemu -serial stdio -d int -no-reboot - exit 0 -fi - -if [[ "$1" == "bochs" ]]; then - run_bochs - exit 0 -fi - -if [[ "$1" == "check-fs" ]]; then - $BANAN_SCRIPT_DIR/check-fs.sh - exit 0 -fi - -build_target $1 diff --git a/script/check-fs.sh b/script/check-fs.sh index 9af3929b..3e655fe4 100755 --- a/script/check-fs.sh +++ b/script/check-fs.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -e if [[ -z $BANAN_DISK_IMAGE_PATH ]]; then echo "You must set BANAN_DISK_IMAGE_PATH environment variable" >&2 diff --git a/script/config.sh b/script/config.sh index 1c14b0d2..ebdfc1f7 100644 --- a/script/config.sh +++ b/script/config.sh @@ -1,5 +1,5 @@ if [[ -z $BANAN_ROOT_DIR ]]; then - if [[ -z $BANAN_SCRIPT_DIR ]]; then + if ! [[ -z $BANAN_SCRIPT_DIR ]]; then export BANAN_ROOT_DIR=$BANAN_SCRIPT_DIR/.. else echo "You must set the BANAN_ROOT_DIR environment variable" >&2 @@ -8,8 +8,7 @@ if [[ -z $BANAN_ROOT_DIR ]]; then fi if [[ -z $BANAN_ARCH ]]; then - echo "You must set the BANAN_ARCH environment variable" >&2 - exit 1 + export BANAN_ARCH=x86_64 fi export BANAN_TOOLCHAIN_DIR=$BANAN_ROOT_DIR/toolchain diff --git a/script/image-full.sh b/script/image-full.sh index 25412a38..061dd10d 100755 --- a/script/image-full.sh +++ b/script/image-full.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -e if [[ -z $BANAN_DISK_IMAGE_PATH ]]; then echo "You must set the BANAN_DISK_IMAGE_PATH environment variable" >&2 @@ -79,18 +78,18 @@ if [[ "$BANAN_UEFI_BOOT" == "1" ]]; then sudo mkfs.fat $PARTITION1 > /dev/null sudo mount $PARTITION1 "$MOUNT_DIR" sudo mkdir -p "$MOUNT_DIR/EFI/BOOT" - sudo "$BANAN_TOOLCHAIN_PREFIX/bin/grub-mkstandalone" -O "$BANAN_ARCH-efi" -o "$MOUNT_DIR/EFI/BOOT/BOOTX64.EFI" "boot/grub/grub.cfg=$BANAN_TOOLCHAIN_PREFIX/grub-memdisk.cfg" + sudo "$BANAN_TOOLCHAIN_PREFIX/bin/grub-mkstandalone" -O "$BANAN_ARCH-efi" -o "$MOUNT_DIR/EFI/BOOT/BOOTX64.EFI" "boot/grub/grub.cfg=$BANAN_TOOLCHAIN_DIR/grub-memdisk.cfg" sudo umount "$MOUNT_DIR" sudo mount $PARTITION2 "$MOUNT_DIR" sudo mkdir -p "$MOUNT_DIR/boot/grub" - sudo cp "$BANAN_TOOLCHAIN_PREFIX/grub-uefi.cfg" "$MOUNT_DIR/boot/grub/grub.cfg" + sudo cp "$BANAN_TOOLCHAIN_DIR/grub-uefi.cfg" "$MOUNT_DIR/boot/grub/grub.cfg" sudo umount "$MOUNT_DIR" else sudo mount $PARTITION2 "$MOUNT_DIR" sudo grub-install --no-floppy --target=i386-pc --modules="normal ext2 multiboot" --boot-directory="$MOUNT_DIR/boot" $LOOP_DEV sudo mkdir -p "$MOUNT_DIR/boot/grub" - sudo cp "$BANAN_TOOLCHAIN_PREFIX/grub-legacy-boot.cfg" "$MOUNT_DIR/boot/grub/grub.cfg" + sudo cp "$BANAN_TOOLCHAIN_DIR/grub-legacy-boot.cfg" "$MOUNT_DIR/boot/grub/grub.cfg" sudo umount "$MOUNT_DIR" fi diff --git a/script/qemu.sh b/script/qemu.sh index 82b859ac..c472abf8 100755 --- a/script/qemu.sh +++ b/script/qemu.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -e if [[ -z $BANAN_DISK_IMAGE_PATH ]]; then echo "You must set the BANAN_DISK_IMAGE_PATH environment variable" >&2 diff --git a/toolchain/.gitignore b/toolchain/.gitignore new file mode 100644 index 00000000..355164c1 --- /dev/null +++ b/toolchain/.gitignore @@ -0,0 +1 @@ +*/ diff --git a/toolchain/build.sh b/toolchain/build.sh index 057c475d..34e7d1af 100755 --- a/toolchain/build.sh +++ b/toolchain/build.sh @@ -10,6 +10,16 @@ if [[ -z $BANAN_SYSROOT ]]; then exit 1 fi +if [[ -z $BANAN_ROOT_DIR ]]; then + echo "You must set the BANAN_ROOT_DIR environment variable" >&2 + exit 1 +fi + +if [[ -z $BANAN_BUILD_DIR ]]; then + echo "You must set the BANAN_BUILD_DIR environment variable" >&2 + exit 1 +fi + if [[ -z $BANAN_TOOLCHAIN_DIR ]]; then echo "You must set the BANAN_TOOLCHAIN_DIR environment variable" >&2 exit 1 @@ -30,10 +40,16 @@ if [[ -z $BANAN_ARCH ]]; then exit 1 fi +enter_clean_build () { + rm -rf build + mkdir build + cd build +} + build_binutils () { echo "Building ${BINUTILS_VERSION}" - cd $BANAN_TOOLCHAIN_DIR + cd $BANAN_BUILD_DIR/toolchain if [ ! -f ${BINUTILS_VERSION}.tar.xz ]; then wget https://ftp.gnu.org/gnu/binutils/${BINUTILS_VERSION}.tar.xz @@ -41,13 +57,13 @@ build_binutils () { if [ ! -d $BINUTILS_VERSION ]; then tar xvf ${BINUTILS_VERSION}.tar.xz - patch -s -p0 < ${BINUTILS_VERSION}.patch + patch -s -p0 < $BANAN_TOOLCHAIN_DIR/${BINUTILS_VERSION}.patch fi - mkdir -p build/${BINUTILS_VERSION}/ - cd build/${BINUTILS_VERSION}/ + cd $BINUTILS_VERSION + enter_clean_build - ../../${BINUTILS_VERSION}/configure \ + ../configure \ --target="$BANAN_TOOLCHAIN_TRIPLE_PREFIX" \ --prefix="$BANAN_TOOLCHAIN_PREFIX" \ --with-sysroot="$BANAN_SYSROOT" \ @@ -61,7 +77,7 @@ build_binutils () { build_gcc () { echo "Building ${GCC_VERSION}" - cd $BANAN_TOOLCHAIN_DIR + cd $BANAN_BUILD_DIR/toolchain if [ ! -f ${GCC_VERSION}.tar.xz ]; then wget https://ftp.gnu.org/gnu/gcc/${GCC_VERSION}/${GCC_VERSION}.tar.xz @@ -69,13 +85,13 @@ build_gcc () { if [ ! -d $GCC_VERSION ]; then tar xvf ${GCC_VERSION}.tar.xz - patch -s -p0 < ${GCC_VERSION}.patch + patch -s -p0 < $BANAN_TOOLCHAIN_DIR/${GCC_VERSION}.patch fi - mkdir -p build/${GCC_VERSION}/ - cd build/${GCC_VERSION}/ + cd ${GCC_VERSION} + enter_clean_build - ../../${GCC_VERSION}/configure \ + ../configure \ --target="$BANAN_TOOLCHAIN_TRIPLE_PREFIX" \ --prefix="$BANAN_TOOLCHAIN_PREFIX" \ --with-sysroot="$BANAN_SYSROOT" \ @@ -90,7 +106,7 @@ build_gcc () { build_grub () { echo "Building ${GRUB_VERSION}" - cd $BANAN_TOOLCHAIN_DIR + cd $BANAN_BUILD_DIR/toolchain if [ ! -f ${GRUB_VERSION}.tar.xz ]; then wget https://ftp.gnu.org/gnu/grub/${GRUB_VERSION}.tar.xz @@ -100,10 +116,10 @@ build_grub () { tar xvf ${GRUB_VERSION}.tar.xz fi - mkdir -p build/${GRUB_VERSION}/ - cd build/${GRUB_VERSION}/ + cd $GRUB_VERSION + enter_clean_build - ../../${GRUB_VERSION}/configure \ + ../configure \ --target="$BANAN_ARCH" \ --prefix="$BANAN_TOOLCHAIN_PREFIX" \ --with-platform="efi" \ @@ -114,16 +130,35 @@ build_grub () { } build_libstdcpp () { - cd build/${GCC_VERSION}/ + if ! [[ -d $BANAN_BUILD_DIR/toolchain/$GCC_VERSION/build ]]; then + echo "You have to build gcc first" + exit 1 + fi + + cd $BANAN_BUILD_DIR/toolchain/$GCC_VERSION/build make -j $(nproc) all-target-libstdc++-v3 make install-target-libstdc++-v3 } -if [[ "$1" == "libstdc++" ]]; then - build_libstdcpp - exit 0 +if [[ $# -ge 1 ]]; then + if [[ "$1" == "libstdc++" ]]; then + build_libstdcpp + exit 0 + fi + + echo "unrecognized arguments $@" + exit 1 fi +# NOTE: we have to manually create initial sysroot with libc headers +# since cmake cannot be invoked yet +echo "Syncing sysroot headers" +mkdir -p $BANAN_SYSROOT +sudo mkdir -p $BANAN_SYSROOT/usr/include +sudo rsync -a $BANAN_ROOT_DIR/libc/include/ $BANAN_SYSROOT/usr/include/ + +mkdir -p $BANAN_BUILD_DIR/toolchain + build_binutils build_gcc build_grub diff --git a/toolchain/local/grub-legacy-boot.cfg b/toolchain/grub-legacy-boot.cfg similarity index 100% rename from toolchain/local/grub-legacy-boot.cfg rename to toolchain/grub-legacy-boot.cfg diff --git a/toolchain/local/grub-memdisk.cfg b/toolchain/grub-memdisk.cfg similarity index 100% rename from toolchain/local/grub-memdisk.cfg rename to toolchain/grub-memdisk.cfg diff --git a/toolchain/local/grub-uefi.cfg b/toolchain/grub-uefi.cfg similarity index 100% rename from toolchain/local/grub-uefi.cfg rename to toolchain/grub-uefi.cfg diff --git a/toolchain/local/.gitignore b/toolchain/local/.gitignore deleted file mode 100644 index 0a00d701..00000000 --- a/toolchain/local/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*/ \ No newline at end of file From adbbdf73c4c49602171ea7cbcc80e0bd7b1690b0 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Tue, 24 Oct 2023 16:49:48 +0300 Subject: [PATCH 132/240] meminfo: fix g++ warning for oob write g++ doesn't realize that read can only return -1 --- userspace/meminfo/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userspace/meminfo/main.cpp b/userspace/meminfo/main.cpp index 147fae24..539daadb 100644 --- a/userspace/meminfo/main.cpp +++ b/userspace/meminfo/main.cpp @@ -45,7 +45,7 @@ int main() while (ssize_t nread = read(fd, path_buffer, sizeof(path_buffer) - 1)) { - if (nread == -1) + if (nread < 0) { perror("read"); break; From 988a4e1cd824255018a471271a75a74e2c4ab937 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Tue, 24 Oct 2023 17:23:45 +0300 Subject: [PATCH 133/240] BAN: Fix bug of size of splice after slice() I have no idea what was I doing before :D --- BAN/include/BAN/Span.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BAN/include/BAN/Span.h b/BAN/include/BAN/Span.h index ff3e6332..a04c22a3 100644 --- a/BAN/include/BAN/Span.h +++ b/BAN/include/BAN/Span.h @@ -127,8 +127,8 @@ namespace BAN ASSERT(start <= m_size); if (length == ~size_type(0)) length = m_size - start; - ASSERT(start + length <= m_size); - return Span(m_data + start, m_size - start - length); + ASSERT(m_size - start >= length); + return Span(m_data + start, length); } } \ No newline at end of file From 1e2c2fb973f59633cec6c9bb9920582895254bf1 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Tue, 24 Oct 2023 19:10:53 +0300 Subject: [PATCH 134/240] Shell: Set get old termios earlier I sourced the config file before getting old termios. Sourcing updated the termios so old_termios was always in non canonical, non echoing mode. --- userspace/Shell/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/userspace/Shell/main.cpp b/userspace/Shell/main.cpp index 7dd3f939..4dd8b411 100644 --- a/userspace/Shell/main.cpp +++ b/userspace/Shell/main.cpp @@ -833,6 +833,8 @@ int main(int argc, char** argv) if (signal(SIGINT, [](int) {}) == SIG_ERR) perror("signal"); + tcgetattr(0, &old_termios); + { FILE* fp = fopen("/etc/hostname", "r"); if (fp != NULL) @@ -876,8 +878,6 @@ int main(int argc, char** argv) source_shellrc(); - tcgetattr(0, &old_termios); - new_termios = old_termios; new_termios.c_lflag &= ~(ECHO | ICANON); tcsetattr(0, TCSANOW, &new_termios); From e8890062d68fa3dfcccf5b8b243cf5a554349d43 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 25 Oct 2023 00:07:25 +0300 Subject: [PATCH 135/240] Userspace: Implement basic cp This does not support any meaningful command line arguments but is a good start. --- userspace/CMakeLists.txt | 1 + userspace/cp/CMakeLists.txt | 17 +++++ userspace/cp/main.cpp | 143 ++++++++++++++++++++++++++++++++++++ 3 files changed, 161 insertions(+) create mode 100644 userspace/cp/CMakeLists.txt create mode 100644 userspace/cp/main.cpp diff --git a/userspace/CMakeLists.txt b/userspace/CMakeLists.txt index 276d0196..28f7f574 100644 --- a/userspace/CMakeLists.txt +++ b/userspace/CMakeLists.txt @@ -5,6 +5,7 @@ project(userspace CXX) set(USERSPACE_PROJECTS cat cat-mmap + cp dd echo id diff --git a/userspace/cp/CMakeLists.txt b/userspace/cp/CMakeLists.txt new file mode 100644 index 00000000..89f6e2af --- /dev/null +++ b/userspace/cp/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 3.26) + +project(cp CXX) + +set(SOURCES + main.cpp +) + +add_executable(cp ${SOURCES}) +target_compile_options(cp PUBLIC -O2 -g) +target_link_libraries(cp PUBLIC libc ban) + +add_custom_target(cp-install + COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/cp ${BANAN_BIN}/ + DEPENDS cp + USES_TERMINAL +) diff --git a/userspace/cp/main.cpp b/userspace/cp/main.cpp new file mode 100644 index 00000000..2e0c263c --- /dev/null +++ b/userspace/cp/main.cpp @@ -0,0 +1,143 @@ +#include +#include +#include +#include +#include +#include +#include + +#define STR_STARTS_WITH(str, arg) (strncmp(str, arg, sizeof(arg) - 1) == 0) +#define STR_EQUAL(str, arg) (strcmp(str, arg) == 0) + +bool copy_file(const BAN::String& source, BAN::String destination) +{ + struct stat st; + if (stat(source.data(), &st) == -1) + { + fprintf(stderr, "%s: ", source.data()); + perror("stat"); + return false; + } + if (!S_ISREG(st.st_mode)) + { + fprintf(stderr, "%s: not a directory\n", source.data()); + return false; + } + + if (stat(destination.data(), &st) != -1 && S_ISDIR(st.st_mode)) + { + MUST(destination.push_back('/')); + MUST(destination.append(MUST(source.sv().split('/')).back())); + } + + int src_fd = open(source.data(), O_RDONLY); + if (src_fd == -1) + { + fprintf(stderr, "%s: ", source.data()); + perror("open"); + return false; + } + + int dest_fd = open(destination.data(), O_CREAT | O_TRUNC | O_WRONLY, 0644); + if (dest_fd == -1) + { + fprintf(stderr, "%s: ", destination.data()); + perror("open"); + close(src_fd); + return false; + } + + bool ret = true; + char buffer[1024]; + while (ssize_t nread = read(src_fd, buffer, sizeof(buffer))) + { + if (nread < 0) + { + fprintf(stderr, "%s: ", source.data()); + perror("read"); + ret = false; + break; + } + + size_t written = 0; + while (written < nread) + { + ssize_t nwrite = write(dest_fd, buffer, nread - written); + if (nwrite < 0) + { + fprintf(stderr, "%s: ", destination.data()); + perror("write"); + ret = false; + } + if (nwrite == 0) + break; + written += nwrite; + } + + if (written < nread) + break; + } + + close(src_fd); + close(dest_fd); + return ret; +} + +bool copy_file_to_directory(const BAN::String& source, const BAN::String& destination) +{ + auto temp = destination; + MUST(temp.append(MUST(source.sv().split('/')).back())); + return copy_file(source, destination); +} + +void usage(const char* argv0, int ret) +{ + FILE* out = (ret == 0) ? stdout : stderr; + fprintf(out, "usage: %s [OPTIONS]... SOURCE... DEST\n", argv0); + fprintf(out, "Copies files SOURCE... to DEST\n"); + fprintf(out, "OPTIONS:\n"); + fprintf(out, " -h, --help\n"); + fprintf(out, " Show this message and exit\n"); + exit(ret); +} + +int main(int argc, char** argv) +{ + BAN::Vector src; + BAN::StringView dest; + + int i = 1; + for (; i < argc; i++) + { + if (STR_EQUAL(argv[i], "-h") || STR_EQUAL(argv[i], "--help")) + { + usage(argv[0], 0); + } + else if (argv[i][0] == '-') + { + fprintf(stderr, "Unknown argument %s\n", argv[i]); + usage(argv[0], 1); + } + else + { + break; + } + } + + for (; i < argc - 1; i++) + MUST(src.push_back(argv[i])); + dest = argv[argc - 1]; + + if (src.empty()) + { + fprintf(stderr, "Missing destination operand\n"); + usage(argv[0], 1); + } + + int ret = 0; + for (auto file_path : src) + if (!copy_file(file_path, dest)) + ret = 1; + + return ret; +} From 15bb1804efe9db45f5719c9a202b0acf116dedc8 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 25 Oct 2023 02:35:37 +0300 Subject: [PATCH 136/240] Kernel/LibC: implement chmod syscall + libc wrapper --- kernel/include/kernel/FS/Ext2/Inode.h | 1 + kernel/include/kernel/FS/Inode.h | 2 ++ kernel/include/kernel/FS/RamFS/Inode.h | 2 ++ kernel/include/kernel/Process.h | 2 ++ kernel/kernel/FS/Ext2/Inode.cpp | 10 ++++++++++ kernel/kernel/FS/Inode.cpp | 8 ++++++++ kernel/kernel/FS/RamFS/Inode.cpp | 12 ++++++++++-- kernel/kernel/Process.cpp | 15 +++++++++++++++ kernel/kernel/Syscall.cpp | 3 +++ libc/include/sys/syscall.h | 1 + libc/sys/stat.cpp | 5 +++++ 11 files changed, 59 insertions(+), 2 deletions(-) diff --git a/kernel/include/kernel/FS/Ext2/Inode.h b/kernel/include/kernel/FS/Ext2/Inode.h index dfcd24fd..10119f27 100644 --- a/kernel/include/kernel/FS/Ext2/Inode.h +++ b/kernel/include/kernel/FS/Ext2/Inode.h @@ -37,6 +37,7 @@ namespace Kernel virtual BAN::ErrorOr read_impl(off_t, BAN::ByteSpan) override; virtual BAN::ErrorOr write_impl(off_t, BAN::ConstByteSpan) override; virtual BAN::ErrorOr truncate_impl(size_t) override; + virtual BAN::ErrorOr chmod_impl(mode_t) override; private: uint32_t fs_block_of_data_block_index(uint32_t data_block_index); diff --git a/kernel/include/kernel/FS/Inode.h b/kernel/include/kernel/FS/Inode.h index b13486bf..d98d9fdb 100644 --- a/kernel/include/kernel/FS/Inode.h +++ b/kernel/include/kernel/FS/Inode.h @@ -99,6 +99,7 @@ namespace Kernel BAN::ErrorOr read(off_t, BAN::ByteSpan buffer); BAN::ErrorOr write(off_t, BAN::ConstByteSpan buffer); BAN::ErrorOr truncate(size_t); + BAN::ErrorOr chmod(mode_t); bool has_data() const; protected: @@ -115,6 +116,7 @@ namespace Kernel virtual BAN::ErrorOr read_impl(off_t, BAN::ByteSpan) { return BAN::Error::from_errno(ENOTSUP); } virtual BAN::ErrorOr write_impl(off_t, BAN::ConstByteSpan) { return BAN::Error::from_errno(ENOTSUP); } virtual BAN::ErrorOr truncate_impl(size_t) { return BAN::Error::from_errno(ENOTSUP); } + virtual BAN::ErrorOr chmod_impl(mode_t) { return BAN::Error::from_errno(ENOTSUP); } virtual bool has_data_impl() const { dwarnln("nonblock not supported"); return true; } private: diff --git a/kernel/include/kernel/FS/RamFS/Inode.h b/kernel/include/kernel/FS/RamFS/Inode.h index 75bd4a54..6119a409 100644 --- a/kernel/include/kernel/FS/RamFS/Inode.h +++ b/kernel/include/kernel/FS/RamFS/Inode.h @@ -56,6 +56,8 @@ namespace Kernel ASSERT((inode_info.mode & Inode::Mode::TYPE_MASK) == 0); } + virtual BAN::ErrorOr chmod_impl(mode_t) override; + protected: RamFileSystem& m_fs; FullInodeInfo m_inode_info; diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index 3421a72e..6fde6a69 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -97,6 +97,8 @@ namespace Kernel BAN::ErrorOr sys_read(int fd, void* buffer, size_t count); BAN::ErrorOr sys_write(int fd, const void* buffer, size_t count); + BAN::ErrorOr sys_chmod(const char*, mode_t); + BAN::ErrorOr sys_pipe(int fildes[2]); BAN::ErrorOr sys_dup(int fildes); BAN::ErrorOr sys_dup2(int fildes, int fildes2); diff --git a/kernel/kernel/FS/Ext2/Inode.cpp b/kernel/kernel/FS/Ext2/Inode.cpp index 2781e36e..85d306d2 100644 --- a/kernel/kernel/FS/Ext2/Inode.cpp +++ b/kernel/kernel/FS/Ext2/Inode.cpp @@ -242,6 +242,16 @@ namespace Kernel return {}; } + BAN::ErrorOr Ext2Inode::chmod_impl(mode_t mode) + { + ASSERT((mode & Inode::Mode::TYPE_MASK) == 0); + if (m_inode.mode == mode) + return {}; + m_inode.mode = (m_inode.mode & Inode::Mode::TYPE_MASK) | mode; + TRY(sync()); + return {}; + } + BAN::ErrorOr Ext2Inode::list_next_inodes_impl(off_t offset, DirectoryEntryList* list, size_t list_size) { ASSERT(mode().ifdir()); diff --git a/kernel/kernel/FS/Inode.cpp b/kernel/kernel/FS/Inode.cpp index b66369b4..f846ba4e 100644 --- a/kernel/kernel/FS/Inode.cpp +++ b/kernel/kernel/FS/Inode.cpp @@ -129,6 +129,14 @@ namespace Kernel return truncate_impl(size); } + BAN::ErrorOr Inode::chmod(mode_t mode) + { + ASSERT((mode & Inode::Mode::TYPE_MASK) == 0); + LockGuard _(m_lock); + Thread::TerminateBlocker blocker(Thread::current()); + return chmod_impl(mode); + } + bool Inode::has_data() const { LockGuard _(m_lock); diff --git a/kernel/kernel/FS/RamFS/Inode.cpp b/kernel/kernel/FS/RamFS/Inode.cpp index 2b7f7ffe..0492b00d 100644 --- a/kernel/kernel/FS/RamFS/Inode.cpp +++ b/kernel/kernel/FS/RamFS/Inode.cpp @@ -26,6 +26,14 @@ namespace Kernel this->rdev = 0; } + + BAN::ErrorOr RamInode::chmod_impl(mode_t mode) + { + ASSERT((mode & Inode::Mode::TYPE_MASK) == 0); + m_inode_info.mode = (m_inode_info.mode & Inode::Mode::TYPE_MASK) | mode; + return {}; + } + /* RAM FILE INODE @@ -193,9 +201,9 @@ namespace Kernel { BAN::RefPtr inode; if (Mode(mode).ifreg()) - inode = TRY(RamFileInode::create(m_fs, mode, uid, gid)); + inode = TRY(RamFileInode::create(m_fs, mode & ~Inode::Mode::TYPE_MASK, uid, gid)); else if (Mode(mode).ifdir()) - inode = TRY(RamDirectoryInode::create(m_fs, ino(), mode, uid, gid)); + inode = TRY(RamDirectoryInode::create(m_fs, ino(), mode & ~Inode::Mode::TYPE_MASK, uid, gid)); else ASSERT_NOT_REACHED(); diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index 57180db2..a2119eee 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -733,6 +733,21 @@ namespace Kernel return TRY(m_open_file_descriptors.write(fd, BAN::ByteSpan((uint8_t*)buffer, count))); } + BAN::ErrorOr Process::sys_chmod(const char* path, mode_t mode) + { + if (mode & S_IFMASK) + return BAN::Error::from_errno(EINVAL); + + LockGuard _(m_lock); + validate_string_access(path); + + auto absolute_path = TRY(absolute_path_of(path)); + auto file = TRY(VirtualFileSystem::get().file_from_absolute_path(m_credentials, absolute_path, O_WRONLY)); + TRY(file.inode->chmod(mode)); + + return 0; + } + BAN::ErrorOr Process::sys_pipe(int fildes[2]) { LockGuard _(m_lock); diff --git a/kernel/kernel/Syscall.cpp b/kernel/kernel/Syscall.cpp index 93f4c010..ccc9e894 100644 --- a/kernel/kernel/Syscall.cpp +++ b/kernel/kernel/Syscall.cpp @@ -199,6 +199,9 @@ namespace Kernel case SYS_POWEROFF: ret = Process::current().sys_poweroff((int)arg1); break; + case SYS_CHMOD: + ret = Process::current().sys_chmod((const char*)arg1, (mode_t)arg2); + break; default: dwarnln("Unknown syscall {}", syscall); break; diff --git a/libc/include/sys/syscall.h b/libc/include/sys/syscall.h index 797f8475..c5a51817 100644 --- a/libc/include/sys/syscall.h +++ b/libc/include/sys/syscall.h @@ -55,6 +55,7 @@ __BEGIN_DECLS #define SYS_MUNMAP 52 #define SYS_TTY_CTRL 53 #define SYS_POWEROFF 54 +#define SYS_CHMOD 55 __END_DECLS diff --git a/libc/sys/stat.cpp b/libc/sys/stat.cpp index 457e65ab..09b6140d 100644 --- a/libc/sys/stat.cpp +++ b/libc/sys/stat.cpp @@ -4,6 +4,11 @@ #include #include +int chmod(const char* path, mode_t mode) +{ + return syscall(SYS_CHMOD, path, mode); +} + int fstat(int fildes, struct stat* buf) { return syscall(SYS_FSTAT, fildes, buf); From 7a54a088b463a30341d0e8cd8185f5786cc55a11 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 25 Oct 2023 02:36:09 +0300 Subject: [PATCH 137/240] Userspace: Add basic chmod command --- userspace/CMakeLists.txt | 1 + userspace/chmod/CMakeLists.txt | 17 ++++++++++++++ userspace/chmod/main.cpp | 43 ++++++++++++++++++++++++++++++++++ 3 files changed, 61 insertions(+) create mode 100644 userspace/chmod/CMakeLists.txt create mode 100644 userspace/chmod/main.cpp diff --git a/userspace/CMakeLists.txt b/userspace/CMakeLists.txt index 28f7f574..cb9bf28c 100644 --- a/userspace/CMakeLists.txt +++ b/userspace/CMakeLists.txt @@ -5,6 +5,7 @@ project(userspace CXX) set(USERSPACE_PROJECTS cat cat-mmap + chmod cp dd echo diff --git a/userspace/chmod/CMakeLists.txt b/userspace/chmod/CMakeLists.txt new file mode 100644 index 00000000..29b3c28d --- /dev/null +++ b/userspace/chmod/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 3.26) + +project(chmod CXX) + +set(SOURCES + main.cpp +) + +add_executable(chmod ${SOURCES}) +target_compile_options(chmod PUBLIC -O2 -g) +target_link_libraries(chmod PUBLIC libc) + +add_custom_target(chmod-install + COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/chmod ${BANAN_BIN}/ + DEPENDS chmod + USES_TERMINAL +) diff --git a/userspace/chmod/main.cpp b/userspace/chmod/main.cpp new file mode 100644 index 00000000..522a674e --- /dev/null +++ b/userspace/chmod/main.cpp @@ -0,0 +1,43 @@ +#include +#include +#include +#include + +void usage(const char* argv0, int ret) +{ + FILE* out = (ret == 0) ? stdout : stderr; + fprintf(out, "usage: %s MODE FILE...\n", argv0); + fprintf(out, " Change the mode of each FILE to MODE.\n"); + exit(ret); +} + +int main(int argc, char** argv) +{ + if (argc <= 2) + usage(argv[0], 1); + + int base = (argv[1][0] == '0') ? 8 : 10; + + mode_t mode = 0; + for (const char* ptr = argv[1]; *ptr; ptr++) + { + if (!isdigit(*ptr)) + { + fprintf(stderr, "Invalid MODE %s\n", argv[1]); + usage(argv[0], 1); + } + mode = (mode * base) + (*ptr - '0'); + } + + int ret = 0; + for (int i = 2; i < argc; i++) + { + if (chmod(argv[i], mode) == -1) + { + perror("chmod"); + ret = 1; + } + } + + return ret; +} From 9e4adc12640eba6d162ed3ae4b42e58b5956ea51 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 25 Oct 2023 02:43:02 +0300 Subject: [PATCH 138/240] cp: abort copy if write fails --- userspace/cp/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userspace/cp/main.cpp b/userspace/cp/main.cpp index 2e0c263c..bfd2a8a8 100644 --- a/userspace/cp/main.cpp +++ b/userspace/cp/main.cpp @@ -69,7 +69,7 @@ bool copy_file(const BAN::String& source, BAN::String destination) perror("write"); ret = false; } - if (nwrite == 0) + if (nwrite <= 0) break; written += nwrite; } From 4f4b8ada8cd4e42ede9a1a65529fe1ec4d59a0e9 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 25 Oct 2023 02:53:20 +0300 Subject: [PATCH 139/240] Kernel: Fix read offset of RamFileInode --- kernel/kernel/FS/RamFS/Inode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/kernel/FS/RamFS/Inode.cpp b/kernel/kernel/FS/RamFS/Inode.cpp index 0492b00d..5c0f0231 100644 --- a/kernel/kernel/FS/RamFS/Inode.cpp +++ b/kernel/kernel/FS/RamFS/Inode.cpp @@ -62,7 +62,7 @@ namespace Kernel if (offset >= size()) return 0; size_t to_copy = BAN::Math::min(m_inode_info.size - offset, buffer.size()); - memcpy(buffer.data(), m_data.data(), to_copy); + memcpy(buffer.data(), m_data.data() + offset, to_copy); return to_copy; } From b890e2fc1427fac45a7b8c2217b3fb88ae12579d Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 25 Oct 2023 19:34:00 +0300 Subject: [PATCH 140/240] Kernel: Ext2FS now uses Ext2Inodes as cached values --- kernel/include/kernel/FS/Ext2/FileSystem.h | 4 ++-- kernel/include/kernel/FS/Ext2/Inode.h | 2 +- kernel/kernel/FS/Ext2/Inode.cpp | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/kernel/include/kernel/FS/Ext2/FileSystem.h b/kernel/include/kernel/FS/Ext2/FileSystem.h index 717394c3..be6e5bcf 100644 --- a/kernel/include/kernel/FS/Ext2/FileSystem.h +++ b/kernel/include/kernel/FS/Ext2/FileSystem.h @@ -69,7 +69,7 @@ namespace Kernel BAN::ErrorOr reserve_free_block(uint32_t primary_bgd); - BAN::HashMap>& inode_cache() { return m_inode_cache; } + BAN::HashMap>& inode_cache() { return m_inode_cache; } const Ext2::Superblock& superblock() const { return m_superblock; } @@ -110,7 +110,7 @@ namespace Kernel BAN::RefPtr m_root_inode; BAN::Vector m_superblock_backups; - BAN::HashMap> m_inode_cache; + BAN::HashMap> m_inode_cache; BlockBufferManager m_buffer_manager; diff --git a/kernel/include/kernel/FS/Ext2/Inode.h b/kernel/include/kernel/FS/Ext2/Inode.h index 10119f27..943eeb81 100644 --- a/kernel/include/kernel/FS/Ext2/Inode.h +++ b/kernel/include/kernel/FS/Ext2/Inode.h @@ -53,7 +53,7 @@ namespace Kernel , m_inode(inode) , m_ino(ino) {} - static BAN::ErrorOr> create(Ext2FS&, uint32_t); + static BAN::ErrorOr> create(Ext2FS&, uint32_t); private: Ext2FS& m_fs; diff --git a/kernel/kernel/FS/Ext2/Inode.cpp b/kernel/kernel/FS/Ext2/Inode.cpp index 85d306d2..13ad3e05 100644 --- a/kernel/kernel/FS/Ext2/Inode.cpp +++ b/kernel/kernel/FS/Ext2/Inode.cpp @@ -21,7 +21,7 @@ namespace Kernel return (m_ino - 1) / m_fs.superblock().blocks_per_group; } - BAN::ErrorOr> Ext2Inode::create(Ext2FS& fs, uint32_t inode_ino) + BAN::ErrorOr> Ext2Inode::create(Ext2FS& fs, uint32_t inode_ino) { if (fs.inode_cache().contains(inode_ino)) return fs.inode_cache()[inode_ino]; @@ -36,7 +36,7 @@ namespace Kernel Ext2Inode* result_ptr = new Ext2Inode(fs, inode, inode_ino); if (result_ptr == nullptr) return BAN::Error::from_errno(ENOMEM); - auto result = BAN::RefPtr::adopt(result_ptr); + auto result = BAN::RefPtr::adopt(result_ptr); TRY(fs.inode_cache().insert(inode_ino, result)); return result; } @@ -589,7 +589,7 @@ needs_new_block: const auto& entry = *(const Ext2::LinkedDirectoryEntry*)entry_addr; BAN::StringView entry_name(entry.name, entry.name_len); if (entry.inode && entry_name == file_name) - return TRY(Ext2Inode::create(m_fs, entry.inode)); + return BAN::RefPtr(TRY(Ext2Inode::create(m_fs, entry.inode))); entry_addr += entry.rec_len; } } From 6ee5576dcc22fb81c6cfb796fe6f3b65fbba1eae Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 25 Oct 2023 19:36:04 +0300 Subject: [PATCH 141/240] Kernel: Add Inode API for creating directories --- kernel/include/kernel/FS/Inode.h | 2 ++ kernel/include/kernel/Process.h | 2 +- kernel/kernel/FS/Inode.cpp | 13 +++++++++++++ kernel/kernel/Process.cpp | 19 ++++++++++++++++--- 4 files changed, 32 insertions(+), 4 deletions(-) diff --git a/kernel/include/kernel/FS/Inode.h b/kernel/include/kernel/FS/Inode.h index d98d9fdb..f5cd27c2 100644 --- a/kernel/include/kernel/FS/Inode.h +++ b/kernel/include/kernel/FS/Inode.h @@ -90,6 +90,7 @@ namespace Kernel BAN::ErrorOr> find_inode(BAN::StringView); BAN::ErrorOr list_next_inodes(off_t, DirectoryEntryList*, size_t); BAN::ErrorOr create_file(BAN::StringView, mode_t, uid_t, gid_t); + BAN::ErrorOr create_directory(BAN::StringView, mode_t, uid_t, gid_t); BAN::ErrorOr delete_inode(BAN::StringView); // Link API @@ -107,6 +108,7 @@ namespace Kernel virtual BAN::ErrorOr> find_inode_impl(BAN::StringView) { return BAN::Error::from_errno(ENOTSUP); } virtual BAN::ErrorOr list_next_inodes_impl(off_t, DirectoryEntryList*, size_t) { return BAN::Error::from_errno(ENOTSUP); } virtual BAN::ErrorOr create_file_impl(BAN::StringView, mode_t, uid_t, gid_t) { return BAN::Error::from_errno(ENOTSUP); } + virtual BAN::ErrorOr create_directory_impl(BAN::StringView, mode_t, uid_t, gid_t) { return BAN::Error::from_errno(ENOTSUP); } virtual BAN::ErrorOr delete_inode_impl(BAN::StringView) { return BAN::Error::from_errno(ENOTSUP); } // Link API diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index 6fde6a69..9fbe4aad 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -89,7 +89,7 @@ namespace Kernel BAN::ErrorOr sys_getegid() const { return m_credentials.egid(); } BAN::ErrorOr sys_getpgid(pid_t); - BAN::ErrorOr create_file(BAN::StringView name, mode_t mode); + BAN::ErrorOr create_file_or_dir(BAN::StringView name, mode_t mode); BAN::ErrorOr open_file(BAN::StringView path, int, mode_t = 0); BAN::ErrorOr sys_open(const char* path, int, mode_t); BAN::ErrorOr sys_openat(int, const char* path, int, mode_t); diff --git a/kernel/kernel/FS/Inode.cpp b/kernel/kernel/FS/Inode.cpp index f846ba4e..5712e980 100644 --- a/kernel/kernel/FS/Inode.cpp +++ b/kernel/kernel/FS/Inode.cpp @@ -81,9 +81,22 @@ namespace Kernel Thread::TerminateBlocker blocker(Thread::current()); if (!this->mode().ifdir()) return BAN::Error::from_errno(ENOTDIR); + if (Mode(mode).ifdir()) + return BAN::Error::from_errno(EINVAL); return create_file_impl(name, mode, uid, gid); } + BAN::ErrorOr Inode::create_directory(BAN::StringView name, mode_t mode, uid_t uid, gid_t gid) + { + LockGuard _(m_lock); + Thread::TerminateBlocker blocker(Thread::current()); + if (!this->mode().ifdir()) + return BAN::Error::from_errno(ENOTDIR); + if (!Mode(mode).ifdir()) + return BAN::Error::from_errno(EINVAL); + return create_directory_impl(name, mode, uid, gid); + } + BAN::ErrorOr Inode::delete_inode(BAN::StringView name) { LockGuard _(m_lock); diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index a2119eee..46083aff 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -611,8 +611,17 @@ namespace Kernel return 0; } - BAN::ErrorOr Process::create_file(BAN::StringView path, mode_t mode) + BAN::ErrorOr Process::create_file_or_dir(BAN::StringView path, mode_t mode) { + switch (mode & Inode::Mode::TYPE_MASK) + { + case Inode::Mode::IFREG: break; + case Inode::Mode::IFDIR: break; + case Inode::Mode::IFIFO: break; + default: + return BAN::Error::from_errno(EINVAL); + } + LockGuard _(m_lock); auto absolute_path = TRY(absolute_path_of(path)); @@ -626,7 +635,11 @@ namespace Kernel auto file_name = absolute_path.sv().substring(index); auto parent_inode = TRY(VirtualFileSystem::get().file_from_absolute_path(m_credentials, directory, O_WRONLY)).inode; - TRY(parent_inode->create_file(file_name, S_IFREG | (mode & 0777), m_credentials.euid(), m_credentials.egid())); + + if (Inode::Mode(mode).ifdir()) + TRY(parent_inode->create_directory(file_name, mode, m_credentials.euid(), m_credentials.egid())); + else + TRY(parent_inode->create_file(file_name, mode, m_credentials.euid(), m_credentials.egid())); return {}; } @@ -672,7 +685,7 @@ namespace Kernel if (file_or_error.is_error()) { if (file_or_error.error().get_error_code() == ENOENT) - TRY(create_file(path, mode)); + TRY(create_file_or_dir(path, Inode::Mode::IFREG | mode)); else return file_or_error.release_error(); } From e85f9ac6a135dd62ddd43fc4aa0c9aabcc6d71ff Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 25 Oct 2023 19:37:04 +0300 Subject: [PATCH 142/240] Kernel: Implement Ext2 directory creation --- kernel/include/kernel/FS/Ext2/Inode.h | 3 + kernel/kernel/FS/Ext2/Inode.cpp | 115 +++++++++++++++++++------- 2 files changed, 87 insertions(+), 31 deletions(-) diff --git a/kernel/include/kernel/FS/Ext2/Inode.h b/kernel/include/kernel/FS/Ext2/Inode.h index 943eeb81..14ba10ed 100644 --- a/kernel/include/kernel/FS/Ext2/Inode.h +++ b/kernel/include/kernel/FS/Ext2/Inode.h @@ -31,6 +31,7 @@ namespace Kernel virtual BAN::ErrorOr> find_inode_impl(BAN::StringView) override; virtual BAN::ErrorOr list_next_inodes_impl(off_t, DirectoryEntryList*, size_t) override; virtual BAN::ErrorOr create_file_impl(BAN::StringView, mode_t, uid_t, gid_t) override; + virtual BAN::ErrorOr create_directory_impl(BAN::StringView, mode_t, uid_t, gid_t) override; virtual BAN::ErrorOr link_target_impl() override; @@ -42,6 +43,8 @@ namespace Kernel private: uint32_t fs_block_of_data_block_index(uint32_t data_block_index); + BAN::ErrorOr link_inode_to_directory(Ext2Inode&, BAN::StringView name); + BAN::ErrorOr allocate_new_block(); BAN::ErrorOr sync(); diff --git a/kernel/kernel/FS/Ext2/Inode.cpp b/kernel/kernel/FS/Ext2/Inode.cpp index 13ad3e05..332619ef 100644 --- a/kernel/kernel/FS/Ext2/Inode.cpp +++ b/kernel/kernel/FS/Ext2/Inode.cpp @@ -317,7 +317,86 @@ namespace Kernel return {}; } + static bool mode_has_valid_type(mode_t mode) + { + switch (mode & Inode::Mode::TYPE_MASK) + { + case Inode::Mode::IFIFO: return true; + case Inode::Mode::IFCHR: return true; + case Inode::Mode::IFDIR: return true; + case Inode::Mode::IFBLK: return true; + case Inode::Mode::IFREG: return true; + case Inode::Mode::IFLNK: return true; + case Inode::Mode::IFSOCK: return true; + } + return false; + } + + static Ext2::Inode initialize_new_inode_info(mode_t mode, uid_t uid, gid_t gid) + { + ASSERT(mode_has_valid_type(mode)); + + timespec current_time = SystemTimer::get().real_time(); + return Ext2::Inode + { + .mode = (uint16_t)mode, + .uid = (uint16_t)uid, + .size = 0, + .atime = (uint32_t)current_time.tv_sec, + .ctime = (uint32_t)current_time.tv_sec, + .mtime = (uint32_t)current_time.tv_sec, + .dtime = 0, + .gid = (uint16_t)gid, + .links_count = 0, + .blocks = 0, + .flags = 0, + .osd1 = 0, + .block = {}, + .generation = 0, + .file_acl = 0, + .dir_acl = 0, + .faddr = 0, + .osd2 = {} + }; + } + BAN::ErrorOr Ext2Inode::create_file_impl(BAN::StringView name, mode_t mode, uid_t uid, gid_t gid) + { + // FIXME: handle errors + + ASSERT(this->mode().ifdir()); + + if (!(Mode(mode).ifreg())) + return BAN::Error::from_errno(ENOTSUP); + + const uint32_t new_ino = TRY(m_fs.create_inode(initialize_new_inode_info(mode, uid, gid))); + + auto inode = MUST(Ext2Inode::create(m_fs, new_ino)); + + MUST(link_inode_to_directory(*inode, name)); + + return {}; + } + + BAN::ErrorOr Ext2Inode::create_directory_impl(BAN::StringView name, mode_t mode, uid_t uid, gid_t gid) + { + // FIXME: handle errors + + ASSERT(this->mode().ifdir()); + ASSERT(Mode(mode).ifdir()); + + const uint32_t new_ino = TRY(m_fs.create_inode(initialize_new_inode_info(mode, uid, gid))); + + auto inode = MUST(Ext2Inode::create(m_fs, new_ino)); + MUST(inode->link_inode_to_directory(*inode, "."sv)); + MUST(inode->link_inode_to_directory(*this, ".."sv)); + + MUST(link_inode_to_directory(*inode, name)); + + return {}; + } + + BAN::ErrorOr Ext2Inode::link_inode_to_directory(Ext2Inode& inode, BAN::StringView name) { if (!this->mode().ifdir()) return BAN::Error::from_errno(ENOTDIR); @@ -325,9 +404,6 @@ namespace Kernel if (name.size() > 255) return BAN::Error::from_errno(ENAMETOOLONG); - if (!(Mode(mode).ifreg())) - return BAN::Error::from_errno(EINVAL); - if (m_inode.flags & Ext2::Enum::INDEX_FL) { dwarnln("file creation to indexed directory not supported"); @@ -340,39 +416,13 @@ namespace Kernel if (error_or.error().get_error_code() != ENOENT) return error_or.error(); - timespec current_time = SystemTimer::get().real_time(); - - Ext2::Inode ext2_inode - { - .mode = (uint16_t)mode, - .uid = (uint16_t)uid, - .size = 0, - .atime = (uint32_t)current_time.tv_sec, - .ctime = (uint32_t)current_time.tv_sec, - .mtime = (uint32_t)current_time.tv_sec, - .dtime = 0, - .gid = (uint16_t)gid, - .links_count = 1, - .blocks = 0, - .flags = 0, - .osd1 = 0, - .block = {}, - .generation = 0, - .file_acl = 0, - .dir_acl = 0, - .faddr = 0, - .osd2 = {} - }; - - const uint32_t inode_index = TRY(m_fs.create_inode(ext2_inode)); - const uint32_t block_size = m_fs.block_size(); auto block_buffer = m_fs.get_block_buffer(); auto write_inode = [&](uint32_t entry_offset, uint32_t entry_rec_len) { - auto typed_mode = Mode(mode); + auto typed_mode = inode.mode(); uint8_t file_type = (m_fs.superblock().rev_level == Ext2::Enum::GOOD_OLD_REV) ? 0 : typed_mode.ifreg() ? Ext2::Enum::REG_FILE : typed_mode.ifdir() ? Ext2::Enum::DIR @@ -384,11 +434,14 @@ namespace Kernel : 0; auto& new_entry = *(Ext2::LinkedDirectoryEntry*)(block_buffer.data() + entry_offset); - new_entry.inode = inode_index; + new_entry.inode = inode.ino(); new_entry.rec_len = entry_rec_len; new_entry.name_len = name.size(); new_entry.file_type = file_type; memcpy(new_entry.name, name.data(), name.size()); + + inode.m_inode.links_count++; + MUST(inode.sync()); }; uint32_t block_index = 0; From 1f794e4ac099389199356ad02f8a45a48e356261 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 25 Oct 2023 19:41:34 +0300 Subject: [PATCH 143/240] Kernel: Implement directory creation for RamFS --- kernel/include/kernel/FS/RamFS/Inode.h | 1 + kernel/kernel/FS/RamFS/Inode.cpp | 13 ++++++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/kernel/include/kernel/FS/RamFS/Inode.h b/kernel/include/kernel/FS/RamFS/Inode.h index 6119a409..7cefae9c 100644 --- a/kernel/include/kernel/FS/RamFS/Inode.h +++ b/kernel/include/kernel/FS/RamFS/Inode.h @@ -96,6 +96,7 @@ namespace Kernel virtual BAN::ErrorOr> find_inode_impl(BAN::StringView) override; virtual BAN::ErrorOr list_next_inodes_impl(off_t, DirectoryEntryList*, size_t) override; virtual BAN::ErrorOr create_file_impl(BAN::StringView, mode_t, uid_t, gid_t) override; + virtual BAN::ErrorOr create_directory_impl(BAN::StringView, mode_t, uid_t, gid_t) override; virtual BAN::ErrorOr delete_inode_impl(BAN::StringView) override; private: diff --git a/kernel/kernel/FS/RamFS/Inode.cpp b/kernel/kernel/FS/RamFS/Inode.cpp index 5c0f0231..c1e034b8 100644 --- a/kernel/kernel/FS/RamFS/Inode.cpp +++ b/kernel/kernel/FS/RamFS/Inode.cpp @@ -202,16 +202,23 @@ namespace Kernel BAN::RefPtr inode; if (Mode(mode).ifreg()) inode = TRY(RamFileInode::create(m_fs, mode & ~Inode::Mode::TYPE_MASK, uid, gid)); - else if (Mode(mode).ifdir()) - inode = TRY(RamDirectoryInode::create(m_fs, ino(), mode & ~Inode::Mode::TYPE_MASK, uid, gid)); else - ASSERT_NOT_REACHED(); + return BAN::Error::from_errno(ENOTSUP); TRY(add_inode(name, inode)); return {}; } + BAN::ErrorOr RamDirectoryInode::create_directory_impl(BAN::StringView name, mode_t mode, uid_t uid, gid_t gid) + { + if (!Mode(mode).ifdir()) + return BAN::Error::from_errno(EINVAL); + auto inode = TRY(RamDirectoryInode::create(m_fs, ino(), mode & ~Inode::Mode::TYPE_MASK, uid, gid)); + TRY(add_inode(name, inode)); + return {}; + } + static uint8_t get_type(Inode::Mode mode) { if (mode.ifreg()) From 8bb47aee02090ede7613658bc71bfd3cec867f2b Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 25 Oct 2023 19:45:18 +0300 Subject: [PATCH 144/240] Kernel/LibC/Userspace: Implement mkdir and creat Touch now uses creat insteadd of open with O_CREAT flag --- CMakeLists.txt | 2 +- kernel/include/kernel/Process.h | 2 ++ kernel/kernel/Process.cpp | 16 ++++++++++++++++ kernel/kernel/Syscall.cpp | 6 ++++++ libc/fcntl.cpp | 5 +++++ libc/include/sys/syscall.h | 2 ++ libc/sys/stat.cpp | 5 +++++ userspace/CMakeLists.txt | 1 + userspace/mkdir/CMakeLists.txt | 17 +++++++++++++++++ userspace/mkdir/main.cpp | 23 +++++++++++++++++++++++ userspace/touch/main.cpp | 14 +++++--------- 11 files changed, 83 insertions(+), 10 deletions(-) create mode 100644 userspace/mkdir/CMakeLists.txt create mode 100644 userspace/mkdir/main.cpp diff --git a/CMakeLists.txt b/CMakeLists.txt index 31f65d0a..e6533eba 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ add_subdirectory(LibELF) add_subdirectory(userspace) add_custom_target(sysroot - COMMAND mkdir -p ${BANAN_SYSROOT} + COMMAND ${CMAKE_COMMAND} -E make_directory ${BANAN_SYSROOT} COMMAND cd ${BANAN_SYSROOT} && sudo tar xf ${BANAN_BASE_SYSROOT} USES_TERMINAL ) diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index 9fbe4aad..54884377 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -96,6 +96,8 @@ namespace Kernel BAN::ErrorOr sys_close(int fd); BAN::ErrorOr sys_read(int fd, void* buffer, size_t count); BAN::ErrorOr sys_write(int fd, const void* buffer, size_t count); + BAN::ErrorOr sys_create(const char*, mode_t); + BAN::ErrorOr sys_create_dir(const char*, mode_t); BAN::ErrorOr sys_chmod(const char*, mode_t); diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index 46083aff..b6edb963 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -746,6 +746,22 @@ namespace Kernel return TRY(m_open_file_descriptors.write(fd, BAN::ByteSpan((uint8_t*)buffer, count))); } + BAN::ErrorOr Process::sys_create(const char* path, mode_t mode) + { + LockGuard _(m_lock); + validate_string_access(path); + TRY(create_file_or_dir(path, mode)); + return 0; + } + + BAN::ErrorOr Process::sys_create_dir(const char* path, mode_t mode) + { + LockGuard _(m_lock); + validate_string_access(path); + TRY(create_file_or_dir(path, Inode::Mode::IFDIR | mode)); + return 0; + } + BAN::ErrorOr Process::sys_chmod(const char* path, mode_t mode) { if (mode & S_IFMASK) diff --git a/kernel/kernel/Syscall.cpp b/kernel/kernel/Syscall.cpp index ccc9e894..6b0a4249 100644 --- a/kernel/kernel/Syscall.cpp +++ b/kernel/kernel/Syscall.cpp @@ -202,6 +202,12 @@ namespace Kernel case SYS_CHMOD: ret = Process::current().sys_chmod((const char*)arg1, (mode_t)arg2); break; + case SYS_CREATE: + ret = Process::current().sys_create((const char*)arg1, (mode_t)arg2); + break; + case SYS_CREATE_DIR: + ret = Process::current().sys_create_dir((const char*)arg1, (mode_t)arg2); + break; default: dwarnln("Unknown syscall {}", syscall); break; diff --git a/libc/fcntl.cpp b/libc/fcntl.cpp index 4a796461..4c6e7fd7 100644 --- a/libc/fcntl.cpp +++ b/libc/fcntl.cpp @@ -4,6 +4,11 @@ #include #include +int creat(const char* path, mode_t mode) +{ + return syscall(SYS_CREATE, path, S_IFREG | mode); +} + int open(const char* path, int oflag, ...) { va_list args; diff --git a/libc/include/sys/syscall.h b/libc/include/sys/syscall.h index c5a51817..0daa6d7a 100644 --- a/libc/include/sys/syscall.h +++ b/libc/include/sys/syscall.h @@ -56,6 +56,8 @@ __BEGIN_DECLS #define SYS_TTY_CTRL 53 #define SYS_POWEROFF 54 #define SYS_CHMOD 55 +#define SYS_CREATE 56 // creat, mkfifo +#define SYS_CREATE_DIR 57 // mkdir __END_DECLS diff --git a/libc/sys/stat.cpp b/libc/sys/stat.cpp index 09b6140d..923e6dec 100644 --- a/libc/sys/stat.cpp +++ b/libc/sys/stat.cpp @@ -28,3 +28,8 @@ int stat(const char* __restrict path, struct stat* __restrict buf) { return syscall(SYS_STAT, path, buf, 0); } + +int mkdir(const char* path, mode_t mode) +{ + return syscall(SYS_CREATE_DIR, path, mode); +} diff --git a/userspace/CMakeLists.txt b/userspace/CMakeLists.txt index cb9bf28c..a1b64e04 100644 --- a/userspace/CMakeLists.txt +++ b/userspace/CMakeLists.txt @@ -13,6 +13,7 @@ set(USERSPACE_PROJECTS init ls meminfo + mkdir mmap-shared-test poweroff Shell diff --git a/userspace/mkdir/CMakeLists.txt b/userspace/mkdir/CMakeLists.txt new file mode 100644 index 00000000..9568f08f --- /dev/null +++ b/userspace/mkdir/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 3.26) + +project(mkdir CXX) + +set(SOURCES + main.cpp +) + +add_executable(mkdir ${SOURCES}) +target_compile_options(mkdir PUBLIC -O2 -g) +target_link_libraries(mkdir PUBLIC libc) + +add_custom_target(mkdir-install + COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/mkdir ${BANAN_BIN}/ + DEPENDS mkdir + USES_TERMINAL +) diff --git a/userspace/mkdir/main.cpp b/userspace/mkdir/main.cpp new file mode 100644 index 00000000..07afcd8c --- /dev/null +++ b/userspace/mkdir/main.cpp @@ -0,0 +1,23 @@ +#include +#include + +int main(int argc, char** argv) +{ + if (argc <= 1) + { + fprintf(stderr, "Missing operand\n"); + return 1; + } + + int ret = 0; + for (int i = 1; i < argc; i++) + { + if (mkdir(argv[i], 0755) == -1) + { + perror("mkdir"); + ret = 1; + } + } + + return ret; +} diff --git a/userspace/touch/main.cpp b/userspace/touch/main.cpp index 23ddd8ac..2f74dcde 100644 --- a/userspace/touch/main.cpp +++ b/userspace/touch/main.cpp @@ -4,18 +4,14 @@ int main(int argc, char** argv) { + int ret = 0; for (int i = 1; i < argc; i++) { - int fd = open(argv[i], O_WRONLY | O_CREAT, 0644); - if (fd == -1) + if (creat(argv[i], 0644) == -1 && errno != EEXIST) { - if (errno != EEXISTS) - perror(argv[i]); - } - else - { - close(fd); + perror(argv[i]); + ret = 1; } } - return 0; + return ret; } From fda4a4ad24962179831d7897ff56e949b04bff87 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 25 Oct 2023 21:40:11 +0300 Subject: [PATCH 145/240] BAN: ByteSpan can be sliced without specified size This will give span with all remaining size after offset --- BAN/include/BAN/ByteSpan.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/BAN/include/BAN/ByteSpan.h b/BAN/include/BAN/ByteSpan.h index 589b988e..b920f6db 100644 --- a/BAN/include/BAN/ByteSpan.h +++ b/BAN/include/BAN/ByteSpan.h @@ -87,9 +87,12 @@ namespace BAN return *reinterpret_cast(m_data); } - ByteSpanGeneral slice(size_type offset, size_type length) + ByteSpanGeneral slice(size_type offset, size_type length = size_type(-1)) { ASSERT(m_data); + ASSERT(m_size >= offset); + if (length == size_type(-1)) + length = m_size - offset; ASSERT(m_size >= offset + length); return ByteSpanGeneral(m_data + offset, length); } From 091c5b6a669c17adb8ca2f8a1dbd8c4d9a7c6576 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 25 Oct 2023 21:43:36 +0300 Subject: [PATCH 146/240] BAN: Implement Ext2 file unlinking Ext2 inodes can now be unlinked from directories and after last inode closes (destructor gets called) we check if link count is 0 and cleanup the inode from filesystem --- kernel/include/kernel/FS/Ext2/FileSystem.h | 3 +- kernel/include/kernel/FS/Ext2/Inode.h | 5 ++ kernel/include/kernel/FS/Inode.h | 4 +- kernel/include/kernel/FS/RamFS/Inode.h | 2 +- kernel/kernel/FS/Ext2/FileSystem.cpp | 70 +++++++++++++++++- kernel/kernel/FS/Ext2/Inode.cpp | 85 ++++++++++++++++++++-- kernel/kernel/FS/Inode.cpp | 4 +- kernel/kernel/FS/ProcFS/FileSystem.cpp | 2 +- kernel/kernel/FS/RamFS/Inode.cpp | 3 +- 9 files changed, 160 insertions(+), 18 deletions(-) diff --git a/kernel/include/kernel/FS/Ext2/FileSystem.h b/kernel/include/kernel/FS/Ext2/FileSystem.h index be6e5bcf..ff0ff6e9 100644 --- a/kernel/include/kernel/FS/Ext2/FileSystem.h +++ b/kernel/include/kernel/FS/Ext2/FileSystem.h @@ -58,7 +58,7 @@ namespace Kernel BAN::ErrorOr initialize_root_inode(); BAN::ErrorOr create_inode(const Ext2::Inode&); - BAN::ErrorOr delete_inode(uint32_t); + void delete_inode(uint32_t); BAN::ErrorOr resize_inode(uint32_t, size_t); void read_block(uint32_t, BlockBufferWrapper&); @@ -68,6 +68,7 @@ namespace Kernel BlockBufferWrapper get_block_buffer(); BAN::ErrorOr reserve_free_block(uint32_t primary_bgd); + void release_block(uint32_t block); BAN::HashMap>& inode_cache() { return m_inode_cache; } diff --git a/kernel/include/kernel/FS/Ext2/Inode.h b/kernel/include/kernel/FS/Ext2/Inode.h index 14ba10ed..b42fe34d 100644 --- a/kernel/include/kernel/FS/Ext2/Inode.h +++ b/kernel/include/kernel/FS/Ext2/Inode.h @@ -13,6 +13,8 @@ namespace Kernel class Ext2Inode final : public Inode { public: + ~Ext2Inode(); + virtual ino_t ino() const override { return m_ino; }; virtual Mode mode() const override { return { m_inode.mode }; } virtual nlink_t nlink() const override { return m_inode.links_count; } @@ -32,6 +34,7 @@ namespace Kernel virtual BAN::ErrorOr list_next_inodes_impl(off_t, DirectoryEntryList*, size_t) override; virtual BAN::ErrorOr create_file_impl(BAN::StringView, mode_t, uid_t, gid_t) override; virtual BAN::ErrorOr create_directory_impl(BAN::StringView, mode_t, uid_t, gid_t) override; + virtual BAN::ErrorOr unlink_impl(BAN::StringView) override; virtual BAN::ErrorOr link_target_impl() override; @@ -45,6 +48,8 @@ namespace Kernel BAN::ErrorOr link_inode_to_directory(Ext2Inode&, BAN::StringView name); + void cleanup_from_fs(); + BAN::ErrorOr allocate_new_block(); BAN::ErrorOr sync(); diff --git a/kernel/include/kernel/FS/Inode.h b/kernel/include/kernel/FS/Inode.h index f5cd27c2..4cdc16e3 100644 --- a/kernel/include/kernel/FS/Inode.h +++ b/kernel/include/kernel/FS/Inode.h @@ -91,7 +91,7 @@ namespace Kernel BAN::ErrorOr list_next_inodes(off_t, DirectoryEntryList*, size_t); BAN::ErrorOr create_file(BAN::StringView, mode_t, uid_t, gid_t); BAN::ErrorOr create_directory(BAN::StringView, mode_t, uid_t, gid_t); - BAN::ErrorOr delete_inode(BAN::StringView); + BAN::ErrorOr unlink(BAN::StringView); // Link API BAN::ErrorOr link_target(); @@ -109,7 +109,7 @@ namespace Kernel virtual BAN::ErrorOr list_next_inodes_impl(off_t, DirectoryEntryList*, size_t) { return BAN::Error::from_errno(ENOTSUP); } virtual BAN::ErrorOr create_file_impl(BAN::StringView, mode_t, uid_t, gid_t) { return BAN::Error::from_errno(ENOTSUP); } virtual BAN::ErrorOr create_directory_impl(BAN::StringView, mode_t, uid_t, gid_t) { return BAN::Error::from_errno(ENOTSUP); } - virtual BAN::ErrorOr delete_inode_impl(BAN::StringView) { return BAN::Error::from_errno(ENOTSUP); } + virtual BAN::ErrorOr unlink_impl(BAN::StringView) { return BAN::Error::from_errno(ENOTSUP); } // Link API virtual BAN::ErrorOr link_target_impl() { return BAN::Error::from_errno(ENOTSUP); } diff --git a/kernel/include/kernel/FS/RamFS/Inode.h b/kernel/include/kernel/FS/RamFS/Inode.h index 7cefae9c..cc047ec1 100644 --- a/kernel/include/kernel/FS/RamFS/Inode.h +++ b/kernel/include/kernel/FS/RamFS/Inode.h @@ -97,7 +97,7 @@ namespace Kernel virtual BAN::ErrorOr list_next_inodes_impl(off_t, DirectoryEntryList*, size_t) override; virtual BAN::ErrorOr create_file_impl(BAN::StringView, mode_t, uid_t, gid_t) override; virtual BAN::ErrorOr create_directory_impl(BAN::StringView, mode_t, uid_t, gid_t) override; - virtual BAN::ErrorOr delete_inode_impl(BAN::StringView) override; + virtual BAN::ErrorOr unlink_impl(BAN::StringView) override; private: static constexpr size_t m_name_max = NAME_MAX; diff --git a/kernel/kernel/FS/Ext2/FileSystem.cpp b/kernel/kernel/FS/Ext2/FileSystem.cpp index 37b1b55c..8a0dccd8 100644 --- a/kernel/kernel/FS/Ext2/FileSystem.cpp +++ b/kernel/kernel/FS/Ext2/FileSystem.cpp @@ -212,6 +212,40 @@ namespace Kernel return BAN::Error::from_error_code(ErrorCode::Ext2_Corrupted); } + void Ext2FS::delete_inode(uint32_t ino) + { + LockGuard _(m_lock); + + ASSERT(ino <= superblock().inodes_count); + + auto bgd_buffer = get_block_buffer(); + auto bitmap_buffer = get_block_buffer(); + + const uint32_t inode_group = (ino - 1) / superblock().inodes_per_group; + const uint32_t inode_index = (ino - 1) % superblock().inodes_per_group; + + auto bgd_location = locate_block_group_descriptior(inode_group); + read_block(bgd_location.block, bgd_buffer); + + auto& bgd = bgd_buffer.span().slice(bgd_location.offset).as(); + read_block(bgd.inode_bitmap, bitmap_buffer); + + const uint32_t byte = inode_index / 8; + const uint32_t bit = inode_index % 8; + ASSERT(bitmap_buffer[byte] & (1 << bit)); + + bitmap_buffer[byte] &= ~(1 << bit); + write_block(bgd.inode_bitmap, bitmap_buffer); + + bgd.free_inodes_count++; + write_block(bgd_location.block, bgd_buffer); + + if (m_inode_cache.contains(ino)) + m_inode_cache.remove(ino); + + dprintln("succesfully deleted inode {}", ino); + } + void Ext2FS::read_block(uint32_t block, BlockBufferWrapper& buffer) { LockGuard _(m_lock); @@ -255,8 +289,7 @@ namespace Kernel const uint32_t lba = 1024 / sector_size; const uint32_t sector_count = BAN::Math::div_round_up(superblock_bytes, sector_size); - BAN::Vector superblock_buffer; - MUST(superblock_buffer.resize(sector_count * sector_size)); + auto superblock_buffer = get_block_buffer(); MUST(m_partition.read_sectors(lba, sector_count, superblock_buffer.span())); if (memcmp(superblock_buffer.data(), &m_superblock, superblock_bytes)) @@ -266,7 +299,6 @@ namespace Kernel } } - Ext2FS::BlockBufferWrapper Ext2FS::get_block_buffer() { LockGuard _(m_lock); @@ -334,6 +366,38 @@ namespace Kernel return BAN::Error::from_error_code(ErrorCode::Ext2_Corrupted); } + void Ext2FS::release_block(uint32_t block) + { + LockGuard _(m_lock); + + ASSERT(block >= m_superblock.first_data_block); + ASSERT(block < m_superblock.blocks_count); + + const uint32_t block_group = (block - m_superblock.first_data_block) / m_superblock.blocks_per_group; + const uint32_t block_offset = (block - m_superblock.first_data_block) % m_superblock.blocks_per_group; + + auto bgd_buffer = get_block_buffer(); + auto bitmap_buffer = get_block_buffer(); + + auto bgd_location = locate_block_group_descriptior(block_group); + read_block(bgd_location.block, bgd_buffer); + + auto& bgd = bgd_buffer.span().slice(bgd_location.offset).as(); + read_block(bgd.block_bitmap, bitmap_buffer); + + const uint32_t byte = block_offset / 8; + const uint32_t bit = block_offset % 8; + ASSERT(bitmap_buffer[byte] & (1 << bit)); + + bitmap_buffer[byte] &= ~(1 << bit); + write_block(bgd.block_bitmap, bitmap_buffer); + + bgd.free_blocks_count++; + write_block(bgd_location.block, bgd_buffer); + + dprintln("successfully freed block {}", block); + } + Ext2FS::BlockLocation Ext2FS::locate_inode(uint32_t ino) { LockGuard _(m_lock); diff --git a/kernel/kernel/FS/Ext2/Inode.cpp b/kernel/kernel/FS/Ext2/Inode.cpp index 332619ef..570e3ec6 100644 --- a/kernel/kernel/FS/Ext2/Inode.cpp +++ b/kernel/kernel/FS/Ext2/Inode.cpp @@ -41,6 +41,12 @@ namespace Kernel return result; } + Ext2Inode::~Ext2Inode() + { + if ((mode().ifdir() && m_inode.links_count == 1) || m_inode.links_count == 0) + cleanup_from_fs(); + } + #define VERIFY_AND_READ_BLOCK(expr) do { const uint32_t block_index = expr; ASSERT(block_index); m_fs.read_block(block_index, block_buffer); } while (false) #define VERIFY_AND_RETURN(expr) ({ const uint32_t result = expr; ASSERT(result); return result; }) @@ -252,6 +258,21 @@ namespace Kernel return {}; } + void Ext2Inode::cleanup_from_fs() + { + if (mode().ifdir()) + { + // FIXME: cleanup entires '.' and '..' and verify + // there are no other entries + ASSERT_NOT_REACHED(); + } + + ASSERT(m_inode.links_count == 0); + for (uint32_t i = 0; i < blocks(); i++) + m_fs.release_block(fs_block_of_data_block_index(i)); + m_fs.delete_inode(ino()); + } + BAN::ErrorOr Ext2Inode::list_next_inodes_impl(off_t offset, DirectoryEntryList* list, size_t list_size) { ASSERT(mode().ifdir()); @@ -371,9 +392,16 @@ namespace Kernel const uint32_t new_ino = TRY(m_fs.create_inode(initialize_new_inode_info(mode, uid, gid))); - auto inode = MUST(Ext2Inode::create(m_fs, new_ino)); + auto inode_or_error = Ext2Inode::create(m_fs, new_ino); + if (inode_or_error.is_error()) + { + m_fs.delete_inode(new_ino); + return inode_or_error.release_error(); + } - MUST(link_inode_to_directory(*inode, name)); + auto inode = inode_or_error.release_value(); + + TRY(link_inode_to_directory(*inode, name)); return {}; } @@ -386,12 +414,19 @@ namespace Kernel ASSERT(Mode(mode).ifdir()); const uint32_t new_ino = TRY(m_fs.create_inode(initialize_new_inode_info(mode, uid, gid))); - - auto inode = MUST(Ext2Inode::create(m_fs, new_ino)); - MUST(inode->link_inode_to_directory(*inode, "."sv)); - MUST(inode->link_inode_to_directory(*this, ".."sv)); + + auto inode_or_error = Ext2Inode::create(m_fs, new_ino); + if (inode_or_error.is_error()) + { + m_fs.delete_inode(new_ino); + return inode_or_error.release_error(); + } + + auto inode = inode_or_error.release_value(); + TRY(inode->link_inode_to_directory(*inode, "."sv)); + TRY(inode->link_inode_to_directory(*this, ".."sv)); - MUST(link_inode_to_directory(*inode, name)); + TRY(link_inode_to_directory(*inode, name)); return {}; } @@ -496,6 +531,42 @@ needs_new_block: return {}; } + BAN::ErrorOr Ext2Inode::unlink_impl(BAN::StringView name) + { + ASSERT(mode().ifdir()); + + auto block_buffer = m_fs.get_block_buffer(); + + for (uint32_t i = 0; i < blocks(); i++) + { + const uint32_t block = fs_block_of_data_block_index(i); + m_fs.read_block(block, block_buffer); + + blksize_t offset = 0; + while (offset < blksize()) + { + auto& entry = block_buffer.span().slice(offset).as(); + if (entry.inode && name == entry.name) + { + auto inode = TRY(Ext2Inode::create(m_fs, entry.inode)); + if (inode->nlink() == 0) + dprintln("Corrupted filesystem. Deleting inode with 0 links"); + else + inode->m_inode.links_count--; + + TRY(sync()); + + // FIXME: This should expand the last inode if exists + entry.inode = 0; + m_fs.write_block(block, block_buffer); + } + offset += entry.rec_len; + } + } + + return {}; + } + #define READ_OR_ALLOCATE_BASE_BLOCK(index_) \ do { \ if (m_inode.block[index_] != 0) \ diff --git a/kernel/kernel/FS/Inode.cpp b/kernel/kernel/FS/Inode.cpp index 5712e980..535a9d35 100644 --- a/kernel/kernel/FS/Inode.cpp +++ b/kernel/kernel/FS/Inode.cpp @@ -97,13 +97,13 @@ namespace Kernel return create_directory_impl(name, mode, uid, gid); } - BAN::ErrorOr Inode::delete_inode(BAN::StringView name) + BAN::ErrorOr Inode::unlink(BAN::StringView name) { LockGuard _(m_lock); Thread::TerminateBlocker blocker(Thread::current()); if (!mode().ifdir()) return BAN::Error::from_errno(ENOTDIR); - return delete_inode_impl(name); + return unlink_impl(name); } BAN::ErrorOr Inode::link_target() diff --git a/kernel/kernel/FS/ProcFS/FileSystem.cpp b/kernel/kernel/FS/ProcFS/FileSystem.cpp index 1c807857..451862f7 100644 --- a/kernel/kernel/FS/ProcFS/FileSystem.cpp +++ b/kernel/kernel/FS/ProcFS/FileSystem.cpp @@ -40,7 +40,7 @@ namespace Kernel void ProcFileSystem::on_process_delete(Process& process) { auto path = BAN::String::formatted("{}", process.pid()); - MUST(m_root_inode->delete_inode(path)); + MUST(m_root_inode->unlink(path)); } } diff --git a/kernel/kernel/FS/RamFS/Inode.cpp b/kernel/kernel/FS/RamFS/Inode.cpp index c1e034b8..52ce1773 100644 --- a/kernel/kernel/FS/RamFS/Inode.cpp +++ b/kernel/kernel/FS/RamFS/Inode.cpp @@ -263,8 +263,9 @@ namespace Kernel return {}; } - BAN::ErrorOr RamDirectoryInode::delete_inode_impl(BAN::StringView name) + BAN::ErrorOr RamDirectoryInode::unlink_impl(BAN::StringView name) { + // FIXME: delete inodes contents only after they are closed for (size_t i = 0; i < m_entries.size(); i++) { if (name == m_entries[i].name) From 74bfb930f2b3d4d7941bca0cab4cc7654456fb2b Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 25 Oct 2023 21:45:04 +0300 Subject: [PATCH 147/240] Kernel/LibC: Add syscall and wrapper for unlink --- kernel/include/kernel/Process.h | 1 + kernel/kernel/Process.cpp | 22 +++++++++++++++++++++- kernel/kernel/Syscall.cpp | 3 +++ libc/include/sys/syscall.h | 1 + libc/unistd.cpp | 5 +++++ 5 files changed, 31 insertions(+), 1 deletion(-) diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index 54884377..95139aee 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -98,6 +98,7 @@ namespace Kernel BAN::ErrorOr sys_write(int fd, const void* buffer, size_t count); BAN::ErrorOr sys_create(const char*, mode_t); BAN::ErrorOr sys_create_dir(const char*, mode_t); + BAN::ErrorOr sys_unlink(const char*); BAN::ErrorOr sys_chmod(const char*, mode_t); diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index b6edb963..e8bee629 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -634,7 +634,7 @@ namespace Kernel auto directory = absolute_path.sv().substring(0, index); auto file_name = absolute_path.sv().substring(index); - auto parent_inode = TRY(VirtualFileSystem::get().file_from_absolute_path(m_credentials, directory, O_WRONLY)).inode; + auto parent_inode = TRY(VirtualFileSystem::get().file_from_absolute_path(m_credentials, directory, O_EXEC | O_WRONLY)).inode; if (Inode::Mode(mode).ifdir()) TRY(parent_inode->create_directory(file_name, mode, m_credentials.euid(), m_credentials.egid())); @@ -762,6 +762,26 @@ namespace Kernel return 0; } + BAN::ErrorOr Process::sys_unlink(const char* path) + { + LockGuard _(m_lock); + validate_string_access(path); + + auto absolute_path = TRY(absolute_path_of(path)); + + size_t index = absolute_path.size(); + for (; index > 0; index--) + if (absolute_path[index - 1] == '/') + break; + auto directory = absolute_path.sv().substring(0, index); + auto file_name = absolute_path.sv().substring(index); + + auto parent = TRY(VirtualFileSystem::get().file_from_absolute_path(m_credentials, directory, O_EXEC | O_WRONLY)).inode; + TRY(parent->unlink(file_name)); + + return 0; + } + BAN::ErrorOr Process::sys_chmod(const char* path, mode_t mode) { if (mode & S_IFMASK) diff --git a/kernel/kernel/Syscall.cpp b/kernel/kernel/Syscall.cpp index 6b0a4249..ab7c3ce8 100644 --- a/kernel/kernel/Syscall.cpp +++ b/kernel/kernel/Syscall.cpp @@ -208,6 +208,9 @@ namespace Kernel case SYS_CREATE_DIR: ret = Process::current().sys_create_dir((const char*)arg1, (mode_t)arg2); break; + case SYS_UNLINK: + ret = Process::current().sys_unlink((const char*)arg1); + break; default: dwarnln("Unknown syscall {}", syscall); break; diff --git a/libc/include/sys/syscall.h b/libc/include/sys/syscall.h index 0daa6d7a..b6eacdf8 100644 --- a/libc/include/sys/syscall.h +++ b/libc/include/sys/syscall.h @@ -58,6 +58,7 @@ __BEGIN_DECLS #define SYS_CHMOD 55 #define SYS_CREATE 56 // creat, mkfifo #define SYS_CREATE_DIR 57 // mkdir +#define SYS_UNLINK 58 __END_DECLS diff --git a/libc/unistd.cpp b/libc/unistd.cpp index b334b4d4..b118da95 100644 --- a/libc/unistd.cpp +++ b/libc/unistd.cpp @@ -210,6 +210,11 @@ void syncsync(int should_block) syscall(SYS_SYNC, should_block); } +int unlink(const char* path) +{ + return syscall(SYS_UNLINK, path); +} + pid_t getpid(void) { return syscall(SYS_GET_PID); From 126edea1192189702cf93b743f5facbd02884142 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 25 Oct 2023 21:45:27 +0300 Subject: [PATCH 148/240] Userspace: implement basic rm command --- userspace/CMakeLists.txt | 1 + userspace/rm/CMakeLists.txt | 17 +++++++++++++++++ userspace/rm/main.cpp | 22 ++++++++++++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 userspace/rm/CMakeLists.txt create mode 100644 userspace/rm/main.cpp diff --git a/userspace/CMakeLists.txt b/userspace/CMakeLists.txt index a1b64e04..9874d570 100644 --- a/userspace/CMakeLists.txt +++ b/userspace/CMakeLists.txt @@ -16,6 +16,7 @@ set(USERSPACE_PROJECTS mkdir mmap-shared-test poweroff + rm Shell snake stat diff --git a/userspace/rm/CMakeLists.txt b/userspace/rm/CMakeLists.txt new file mode 100644 index 00000000..672839c7 --- /dev/null +++ b/userspace/rm/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 3.26) + +project(rm CXX) + +set(SOURCES + main.cpp +) + +add_executable(rm ${SOURCES}) +target_compile_options(rm PUBLIC -O2 -g) +target_link_libraries(rm PUBLIC libc) + +add_custom_target(rm-install + COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/rm ${BANAN_BIN}/ + DEPENDS rm + USES_TERMINAL +) diff --git a/userspace/rm/main.cpp b/userspace/rm/main.cpp new file mode 100644 index 00000000..42896b6c --- /dev/null +++ b/userspace/rm/main.cpp @@ -0,0 +1,22 @@ +#include +#include + +int main(int argc, char** argv) +{ + if (argc <= 1) + { + fprintf(stderr, "Missing operand\n"); + return 1; + } + + int ret = 0; + for (int i = 1; i < argc; i++) + { + if (unlink(argv[i]) == -1) + { + perror(argv[i]); + ret = 1; + } + } + return ret; +} From d09310f3888ed510de3704ba719e53fefcd0c6a4 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 26 Oct 2023 02:05:05 +0300 Subject: [PATCH 149/240] Kernel: Fix ext2 inode deletion fsck now reports clean filesystem even after deleting files --- kernel/include/kernel/FS/Ext2/FileSystem.h | 2 +- kernel/include/kernel/FS/Ext2/Inode.h | 4 +- kernel/kernel/FS/Ext2/FileSystem.cpp | 32 ++++- kernel/kernel/FS/Ext2/Inode.cpp | 143 +++++++++++++++++---- kernel/kernel/FS/Inode.cpp | 2 + 5 files changed, 152 insertions(+), 31 deletions(-) diff --git a/kernel/include/kernel/FS/Ext2/FileSystem.h b/kernel/include/kernel/FS/Ext2/FileSystem.h index ff0ff6e9..b911a0b6 100644 --- a/kernel/include/kernel/FS/Ext2/FileSystem.h +++ b/kernel/include/kernel/FS/Ext2/FileSystem.h @@ -58,7 +58,7 @@ namespace Kernel BAN::ErrorOr initialize_root_inode(); BAN::ErrorOr create_inode(const Ext2::Inode&); - void delete_inode(uint32_t); + void delete_inode(uint32_t ino); BAN::ErrorOr resize_inode(uint32_t, size_t); void read_block(uint32_t, BlockBufferWrapper&); diff --git a/kernel/include/kernel/FS/Ext2/Inode.h b/kernel/include/kernel/FS/Ext2/Inode.h index b42fe34d..d93d68d8 100644 --- a/kernel/include/kernel/FS/Ext2/Inode.h +++ b/kernel/include/kernel/FS/Ext2/Inode.h @@ -47,11 +47,13 @@ namespace Kernel uint32_t fs_block_of_data_block_index(uint32_t data_block_index); BAN::ErrorOr link_inode_to_directory(Ext2Inode&, BAN::StringView name); + BAN::ErrorOr is_directory_empty(); + BAN::ErrorOr cleanup_default_links(); void cleanup_from_fs(); BAN::ErrorOr allocate_new_block(); - BAN::ErrorOr sync(); + void sync(); uint32_t block_group() const; diff --git a/kernel/kernel/FS/Ext2/FileSystem.cpp b/kernel/kernel/FS/Ext2/FileSystem.cpp index 8a0dccd8..8a2bb6af 100644 --- a/kernel/kernel/FS/Ext2/FileSystem.cpp +++ b/kernel/kernel/FS/Ext2/FileSystem.cpp @@ -184,6 +184,8 @@ namespace Kernel write_block(bgd->inode_bitmap, inode_bitmap); bgd->free_inodes_count--; + if (Inode::Mode(ext2_inode.mode).ifdir()) + bgd->used_dirs_count++; write_block(bgd_location.block, bgd_buffer); const uint32_t inode_table_offset = ino_index * superblock().inode_size; @@ -216,34 +218,49 @@ namespace Kernel { LockGuard _(m_lock); + ASSERT(ino >= superblock().first_ino); ASSERT(ino <= superblock().inodes_count); auto bgd_buffer = get_block_buffer(); auto bitmap_buffer = get_block_buffer(); + auto inode_buffer = get_block_buffer(); const uint32_t inode_group = (ino - 1) / superblock().inodes_per_group; const uint32_t inode_index = (ino - 1) % superblock().inodes_per_group; auto bgd_location = locate_block_group_descriptior(inode_group); read_block(bgd_location.block, bgd_buffer); - auto& bgd = bgd_buffer.span().slice(bgd_location.offset).as(); + + // update inode bitmap read_block(bgd.inode_bitmap, bitmap_buffer); - const uint32_t byte = inode_index / 8; - const uint32_t bit = inode_index % 8; + const uint32_t bit = inode_index % 8; ASSERT(bitmap_buffer[byte] & (1 << bit)); - bitmap_buffer[byte] &= ~(1 << bit); write_block(bgd.inode_bitmap, bitmap_buffer); + // memset inode to zero or fsck will complain + auto inode_location = locate_inode(ino); + read_block(inode_location.block, inode_buffer); + auto& inode = inode_buffer.span().slice(inode_location.offset).as(); + bool is_directory = Inode::Mode(inode.mode).ifdir(); + memset(&inode, 0x00, m_superblock.inode_size); + write_block(inode_location.block, inode_buffer); + + // update bgd counts bgd.free_inodes_count++; + if (is_directory) + bgd.used_dirs_count--; write_block(bgd_location.block, bgd_buffer); + // update superblock inode count + m_superblock.free_inodes_count++; + sync_superblock(); + + // remove inode from cache if (m_inode_cache.contains(ino)) m_inode_cache.remove(ino); - - dprintln("succesfully deleted inode {}", ino); } void Ext2FS::read_block(uint32_t block, BlockBufferWrapper& buffer) @@ -395,7 +412,8 @@ namespace Kernel bgd.free_blocks_count++; write_block(bgd_location.block, bgd_buffer); - dprintln("successfully freed block {}", block); + m_superblock.free_blocks_count++; + sync_superblock(); } Ext2FS::BlockLocation Ext2FS::locate_inode(uint32_t ino) diff --git a/kernel/kernel/FS/Ext2/Inode.cpp b/kernel/kernel/FS/Ext2/Inode.cpp index 570e3ec6..29b81bc7 100644 --- a/kernel/kernel/FS/Ext2/Inode.cpp +++ b/kernel/kernel/FS/Ext2/Inode.cpp @@ -1,4 +1,5 @@ #include +#include #include #include #include @@ -43,7 +44,7 @@ namespace Kernel Ext2Inode::~Ext2Inode() { - if ((mode().ifdir() && m_inode.links_count == 1) || m_inode.links_count == 0) + if (m_inode.links_count == 0) cleanup_from_fs(); } @@ -220,7 +221,7 @@ namespace Kernel if (new_size < m_inode.size) { m_inode.size = new_size; - TRY(sync()); + sync(); return {}; } @@ -243,7 +244,7 @@ namespace Kernel } m_inode.size = new_size; - TRY(sync()); + sync(); return {}; } @@ -254,19 +255,12 @@ namespace Kernel if (m_inode.mode == mode) return {}; m_inode.mode = (m_inode.mode & Inode::Mode::TYPE_MASK) | mode; - TRY(sync()); + sync(); return {}; } void Ext2Inode::cleanup_from_fs() { - if (mode().ifdir()) - { - // FIXME: cleanup entires '.' and '..' and verify - // there are no other entries - ASSERT_NOT_REACHED(); - } - ASSERT(m_inode.links_count == 0); for (uint32_t i = 0; i < blocks(); i++) m_fs.release_block(fs_block_of_data_block_index(i)); @@ -383,8 +377,6 @@ namespace Kernel BAN::ErrorOr Ext2Inode::create_file_impl(BAN::StringView name, mode_t mode, uid_t uid, gid_t gid) { - // FIXME: handle errors - ASSERT(this->mode().ifdir()); if (!(Mode(mode).ifreg())) @@ -408,8 +400,6 @@ namespace Kernel BAN::ErrorOr Ext2Inode::create_directory_impl(BAN::StringView name, mode_t mode, uid_t uid, gid_t gid) { - // FIXME: handle errors - ASSERT(this->mode().ifdir()); ASSERT(Mode(mode).ifdir()); @@ -423,11 +413,15 @@ namespace Kernel } auto inode = inode_or_error.release_value(); + BAN::ScopeGuard cleanup([&] { inode->cleanup_from_fs(); }); + TRY(inode->link_inode_to_directory(*inode, "."sv)); TRY(inode->link_inode_to_directory(*this, ".."sv)); TRY(link_inode_to_directory(*inode, name)); + cleanup.disable(); + return {}; } @@ -476,7 +470,7 @@ namespace Kernel memcpy(new_entry.name, name.data(), name.size()); inode.m_inode.links_count++; - MUST(inode.sync()); + inode.sync(); }; uint32_t block_index = 0; @@ -531,9 +525,100 @@ needs_new_block: return {}; } + BAN::ErrorOr Ext2Inode::is_directory_empty() + { + ASSERT(mode().ifdir()); + if (m_inode.flags & Ext2::Enum::INDEX_FL) + { + dwarnln("deletion of indexed directory is not supported"); + return BAN::Error::from_errno(ENOTSUP); + } + + auto block_buffer = m_fs.get_block_buffer(); + + // Confirm that this doesn't contain anything else than '.' or '..' + for (uint32_t i = 0; i < blocks(); i++) + { + const uint32_t block = fs_block_of_data_block_index(i); + m_fs.read_block(block, block_buffer); + + blksize_t offset = 0; + while (offset < blksize()) + { + auto& entry = block_buffer.span().slice(offset).as(); + + if (entry.inode) + { + BAN::StringView entry_name(entry.name, entry.name_len); + if (entry_name != "."sv && entry_name != ".."sv) + return false; + } + + offset += entry.rec_len; + } + } + + return true; + } + + BAN::ErrorOr Ext2Inode::cleanup_default_links() + { + ASSERT(mode().ifdir()); + + auto block_buffer = m_fs.get_block_buffer(); + + for (uint32_t i = 0; i < blocks(); i++) + { + const uint32_t block = fs_block_of_data_block_index(i); + m_fs.read_block(block, block_buffer); + + bool modified = false; + + blksize_t offset = 0; + while (offset < blksize()) + { + auto& entry = block_buffer.span().slice(offset).as(); + + if (entry.inode) + { + BAN::StringView entry_name(entry.name, entry.name_len); + + if (entry_name == "."sv) + { + m_inode.links_count--; + sync(); + } + else if (entry_name == ".."sv) + { + auto parent = TRY(Ext2Inode::create(m_fs, entry.inode)); + parent->m_inode.links_count--; + parent->sync(); + } + else + ASSERT_NOT_REACHED(); + + modified = true; + entry.inode = 0; + } + + offset += entry.rec_len; + } + + if (modified) + m_fs.write_block(block, block_buffer); + } + + return {}; + } + BAN::ErrorOr Ext2Inode::unlink_impl(BAN::StringView name) { ASSERT(mode().ifdir()); + if (m_inode.flags & Ext2::Enum::INDEX_FL) + { + dwarnln("deletion from indexed directory is not supported"); + return BAN::Error::from_errno(ENOTSUP); + } auto block_buffer = m_fs.get_block_buffer(); @@ -546,15 +631,31 @@ needs_new_block: while (offset < blksize()) { auto& entry = block_buffer.span().slice(offset).as(); - if (entry.inode && name == entry.name) + if (entry.inode && name == BAN::StringView(entry.name, entry.name_len)) { auto inode = TRY(Ext2Inode::create(m_fs, entry.inode)); + if (inode->mode().ifdir()) + { + if (!TRY(inode->is_directory_empty())) + return BAN::Error::from_errno(ENOTEMPTY); + TRY(inode->cleanup_default_links()); + } + if (inode->nlink() == 0) dprintln("Corrupted filesystem. Deleting inode with 0 links"); else inode->m_inode.links_count--; - TRY(sync()); + sync(); + + // NOTE: If this was the last link to inode we must + // remove it from inode cache to trigger cleanup + if (inode->nlink() == 0) + { + auto& cache = m_fs.inode_cache(); + if (cache.contains(inode->ino())) + cache.remove(inode->ino()); + } // FIXME: This should expand the last inode if exists entry.inode = 0; @@ -620,7 +721,7 @@ needs_new_block: { if (mode().ifdir()) m_inode.size += blksize(); - MUST(sync()); + sync(); }; // direct block @@ -676,7 +777,7 @@ needs_new_block: #undef READ_OR_ALLOCATE_INDIRECT_BLOCK #undef WRITE_BLOCK_AND_RETURN - BAN::ErrorOr Ext2Inode::sync() + void Ext2Inode::sync() { auto inode_location = m_fs.locate_inode(ino()); auto block_buffer = m_fs.get_block_buffer(); @@ -687,8 +788,6 @@ needs_new_block: memcpy(block_buffer.data() + inode_location.offset, &m_inode, sizeof(Ext2::Inode)); m_fs.write_block(inode_location.block, block_buffer); } - - return {}; } BAN::ErrorOr> Ext2Inode::find_inode_impl(BAN::StringView file_name) diff --git a/kernel/kernel/FS/Inode.cpp b/kernel/kernel/FS/Inode.cpp index 535a9d35..72279342 100644 --- a/kernel/kernel/FS/Inode.cpp +++ b/kernel/kernel/FS/Inode.cpp @@ -103,6 +103,8 @@ namespace Kernel Thread::TerminateBlocker blocker(Thread::current()); if (!mode().ifdir()) return BAN::Error::from_errno(ENOTDIR); + if (name == "."sv || name == ".."sv) + return BAN::Error::from_errno(EINVAL); return unlink_impl(name); } From 1ec341e2dd99275cb7aff4d26229b55f8a78766e Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 26 Oct 2023 02:32:49 +0300 Subject: [PATCH 150/240] rm: add option to remove recursively --- userspace/rm/CMakeLists.txt | 2 +- userspace/rm/main.cpp | 121 ++++++++++++++++++++++++++++++++++-- 2 files changed, 116 insertions(+), 7 deletions(-) diff --git a/userspace/rm/CMakeLists.txt b/userspace/rm/CMakeLists.txt index 672839c7..2cf60338 100644 --- a/userspace/rm/CMakeLists.txt +++ b/userspace/rm/CMakeLists.txt @@ -8,7 +8,7 @@ set(SOURCES add_executable(rm ${SOURCES}) target_compile_options(rm PUBLIC -O2 -g) -target_link_libraries(rm PUBLIC libc) +target_link_libraries(rm PUBLIC libc ban) add_custom_target(rm-install COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/rm ${BANAN_BIN}/ diff --git a/userspace/rm/main.cpp b/userspace/rm/main.cpp index 42896b6c..664fccc1 100644 --- a/userspace/rm/main.cpp +++ b/userspace/rm/main.cpp @@ -1,21 +1,130 @@ +#include +#include #include +#include +#include +#include #include +bool delete_recursive(const char* path) +{ + struct stat st; + if (stat(path, &st) == -1) + { + perror(path); + return false; + } + + bool ret = true; + + if (S_ISDIR(st.st_mode)) + { + DIR* dir = opendir(path); + while (struct dirent* dirent = readdir(dir)) + { + if (strcmp(dirent->d_name, ".") == 0 || strcmp(dirent->d_name, "..") == 0) + continue; + + BAN::String dirent_path; + MUST(dirent_path.append(path)); + MUST(dirent_path.push_back('/')); + MUST(dirent_path.append(dirent->d_name)); + + if (dirent->d_type == DT_DIR) + { + if (!delete_recursive(dirent_path.data())) + ret = false; + } + else + { + if (unlink(dirent_path.data()) == -1) + { + perror(dirent_path.data()); + ret = false; + } + } + } + + closedir(dir); + } + + if (unlink(path) == -1) + { + perror(path); + return false; + } + + return true; +} + +void usage(const char* argv0, int ret) +{ + FILE* out = (ret == 0) ? stdout : stderr; + fprintf(out, "usage: %s [OPTIONS]... FILE...\n"); + fprintf(out, " remove each FILE\n"); + fprintf(out, "OPTIONS:\n"); + fprintf(out, " -r remove directories and their contents recursively\n"); + fprintf(out, " -h, --help show this message and exit\n"); + exit(ret); +} + int main(int argc, char** argv) { - if (argc <= 1) + bool recursive = false; + + int i = 1; + for (; i < argc; i++) { - fprintf(stderr, "Missing operand\n"); + if (argv[i][0] != '-') + break; + + if (strcmp(argv[i], "-r") == 0) + recursive = true; + else if (strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "--help") == 0) + usage(argv[0], 0); + else + { + fprintf(stderr, "unrecognized argument %s. use --help for more information\n", argv[i]); + return 1; + } + } + + if (i >= argc) + { + fprintf(stderr, "missing operand. use --help for more information\n"); return 1; } int ret = 0; - for (int i = 1; i < argc; i++) + for (; i < argc; i++) { - if (unlink(argv[i]) == -1) + if (recursive) { - perror(argv[i]); - ret = 1; + if (!delete_recursive(argv[i])) + ret = 1; + } + else + { + struct stat st; + if (stat(argv[i], &st) == -1) + { + perror(argv[i]); + ret = 1; + continue; + } + + if (S_ISDIR(st.st_mode)) + { + fprintf(stderr, "%s: %s\n", argv[i], strerror(EISDIR)); + ret = 1; + continue; + } + + if (unlink(argv[i]) == -1) + { + perror(argv[i]); + ret = 1; + } } } return ret; From 98d702ac60690c607ba92970b3a92747d74b1cff Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 26 Oct 2023 13:26:10 +0300 Subject: [PATCH 151/240] All: Remove read only from ext2 filesystem :) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 96ab9b93..6671064d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # banan-os -This is my hobby operating system written in C++. Currently supports only x86_64 architecture. We have a read-only ext2 filesystem, read-write ramfs, IDE disk drivers in ATA PIO mode, ATA AHCI drivers, userspace processes, executable loading from ELF format, linear VBE graphics and multithreaded processing on single core. +This is my hobby operating system written in C++. Currently supports only x86_64 architecture. We have a ext2 filesystem, basic ramfs, IDE disk drivers in ATA PIO mode, ATA AHCI drivers, userspace processes, executable loading from ELF format, linear VBE graphics and multithreaded processing on single core. ![screenshot from qemu running banan-os](assets/banan-os.png) @@ -43,4 +43,4 @@ If you have corrupted your disk image or want to create new one, you can either ### Contributing -Currently I don't accept contributions to this repository unless explicitly told otherwise. This is a learning project for me and I want to do everything myself. Feel free to fork/clone this repo and tinker with it yourself. \ No newline at end of file +Currently I don't accept contributions to this repository unless explicitly told otherwise. This is a learning project for me and I want to do everything myself. Feel free to fork/clone this repo and tinker with it yourself. From 99bde9aa495268d318398bdcb2c0b5f472a11bc1 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 28 Oct 2023 16:48:19 +0300 Subject: [PATCH 152/240] Kernel: Fix ext2 inode deletion cleanup I now cleanup all blocks (including direct) in i_block array --- kernel/include/kernel/FS/Ext2/Inode.h | 1 + kernel/kernel/FS/Ext2/FileSystem.cpp | 5 +++ kernel/kernel/FS/Ext2/Inode.cpp | 47 +++++++++++++++++++++++++-- 3 files changed, 51 insertions(+), 2 deletions(-) diff --git a/kernel/include/kernel/FS/Ext2/Inode.h b/kernel/include/kernel/FS/Ext2/Inode.h index d93d68d8..c5329b11 100644 --- a/kernel/include/kernel/FS/Ext2/Inode.h +++ b/kernel/include/kernel/FS/Ext2/Inode.h @@ -49,6 +49,7 @@ namespace Kernel BAN::ErrorOr link_inode_to_directory(Ext2Inode&, BAN::StringView name); BAN::ErrorOr is_directory_empty(); + void cleanup_indirect_block(uint32_t block, uint32_t depth); BAN::ErrorOr cleanup_default_links(); void cleanup_from_fs(); diff --git a/kernel/kernel/FS/Ext2/FileSystem.cpp b/kernel/kernel/FS/Ext2/FileSystem.cpp index 8a2bb6af..48da9e3f 100644 --- a/kernel/kernel/FS/Ext2/FileSystem.cpp +++ b/kernel/kernel/FS/Ext2/FileSystem.cpp @@ -4,6 +4,7 @@ #define EXT2_DEBUG_PRINT 0 #define EXT2_VERIFY_INODE 0 +#define EXT2_VERIFY_NO_BLOCKS 1 namespace Kernel { @@ -244,6 +245,10 @@ namespace Kernel auto inode_location = locate_inode(ino); read_block(inode_location.block, inode_buffer); auto& inode = inode_buffer.span().slice(inode_location.offset).as(); +#if EXT2_VERIFY_NO_BLOCKS + static const char zero_buffer[sizeof(inode.block)] {}; + ASSERT(memcmp(inode.block, zero_buffer, sizeof(inode.block)) == 0); +#endif bool is_directory = Inode::Mode(inode.mode).ifdir(); memset(&inode, 0x00, m_superblock.inode_size); write_block(inode_location.block, inode_buffer); diff --git a/kernel/kernel/FS/Ext2/Inode.cpp b/kernel/kernel/FS/Ext2/Inode.cpp index 29b81bc7..28c0afc7 100644 --- a/kernel/kernel/FS/Ext2/Inode.cpp +++ b/kernel/kernel/FS/Ext2/Inode.cpp @@ -259,11 +259,54 @@ namespace Kernel return {}; } + void Ext2Inode::cleanup_indirect_block(uint32_t block, uint32_t depth) + { + ASSERT(block); + + if (depth == 0) + { + m_fs.release_block(block); + return; + } + + auto block_buffer = m_fs.get_block_buffer(); + m_fs.read_block(block, block_buffer); + + const uint32_t ids_per_block = blksize() / sizeof(uint32_t); + for (uint32_t i = 0; i < ids_per_block; i++) + { + const uint32_t idx = ((uint32_t*)block_buffer.data())[i]; + if (idx > 0) + cleanup_indirect_block(idx, depth - 1); + } + + m_fs.release_block(block); + } + void Ext2Inode::cleanup_from_fs() { ASSERT(m_inode.links_count == 0); - for (uint32_t i = 0; i < blocks(); i++) - m_fs.release_block(fs_block_of_data_block_index(i)); + + // cleanup direct blocks + for (uint32_t i = 0; i < 12; i++) + if (m_inode.block[i]) + m_fs.release_block(m_inode.block[i]); + + // cleanup indirect blocks + if (m_inode.block[12]) + cleanup_indirect_block(m_inode.block[12], 1); + if (m_inode.block[13]) + cleanup_indirect_block(m_inode.block[13], 2); + if (m_inode.block[14]) + cleanup_indirect_block(m_inode.block[14], 3); + + // mark blocks as deleted + memset(m_inode.block, 0x00, sizeof(m_inode.block)); + + // FIXME: this is only required since fs does not get + // deleting inode from its cache + sync(); + m_fs.delete_inode(ino()); } From 8d583c8b67ee0cb8f6d047b2904473ab635a2a12 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 28 Oct 2023 16:48:54 +0300 Subject: [PATCH 153/240] Kernel: Fix ext2 inode block allocation with triply indirect blocks --- kernel/kernel/FS/Ext2/Inode.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kernel/kernel/FS/Ext2/Inode.cpp b/kernel/kernel/FS/Ext2/Inode.cpp index 28c0afc7..92aef05f 100644 --- a/kernel/kernel/FS/Ext2/Inode.cpp +++ b/kernel/kernel/FS/Ext2/Inode.cpp @@ -806,9 +806,8 @@ needs_new_block: // triply indirect block if (block_array_index < indices_per_fs_block * indices_per_fs_block * indices_per_fs_block) { - dwarnln("here"); READ_OR_ALLOCATE_BASE_BLOCK(14); - READ_OR_ALLOCATE_INDIRECT_BLOCK(indirect_block, block_array_index / (indices_per_fs_block * indices_per_fs_block), 14); + READ_OR_ALLOCATE_INDIRECT_BLOCK(indirect_block, block_array_index / (indices_per_fs_block * indices_per_fs_block), m_inode.block[14]); READ_OR_ALLOCATE_INDIRECT_BLOCK(direct_block, (block_array_index / indices_per_fs_block) % indices_per_fs_block, indirect_block); WRITE_BLOCK_AND_RETURN(block_array_index % indices_per_fs_block, direct_block); } From 3bffbe330d8af9a54d786d0e800f85d141669f5a Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 28 Oct 2023 22:10:33 +0300 Subject: [PATCH 154/240] BAN: Update ByteSpan API Add ByteSpan::as_span and const versions of as() and as_span() require T to be const. --- BAN/include/BAN/ByteSpan.h | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/BAN/include/BAN/ByteSpan.h b/BAN/include/BAN/ByteSpan.h index b920f6db..e86ba8f8 100644 --- a/BAN/include/BAN/ByteSpan.h +++ b/BAN/include/BAN/ByteSpan.h @@ -80,13 +80,30 @@ namespace BAN } template - const S& as() const + requires(is_const_v) + S& as() const { ASSERT(m_data); ASSERT(m_size >= sizeof(S)); return *reinterpret_cast(m_data); } + template + requires(!CONST && !is_const_v) + Span as_span() + { + ASSERT(m_data); + return Span(reinterpret_cast(m_data), m_size / sizeof(S)); + } + + template + requires(is_const_v) + Span as_span() const + { + ASSERT(m_data); + return Span(reinterpret_cast(m_data), m_size / sizeof(S)); + } + ByteSpanGeneral slice(size_type offset, size_type length = size_type(-1)) { ASSERT(m_data); From 0757834176dd233ded5fd28e1178f6f8f5ddf756 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 28 Oct 2023 22:12:33 +0300 Subject: [PATCH 155/240] Kernel: Rewrite a lot of ext2 code This commit consists of multiple big changes 1. blocks for inodes are now allocated on demand - reading from non allocated block will just return zeroes - writing to non allocated block allocates it 2. code doesn't really use raw pointers anymore - all casts to uint32_t or structures are now replaced with spans. either as or as_span which both are bounds checked 3. code doesn't depend on random macros for accessing indirect blocks - i added some recursive functions which take care of this :) --- kernel/include/kernel/FS/Ext2/Inode.h | 10 +- kernel/kernel/FS/Ext2/Inode.cpp | 378 +++++++++++--------------- 2 files changed, 169 insertions(+), 219 deletions(-) diff --git a/kernel/include/kernel/FS/Ext2/Inode.h b/kernel/include/kernel/FS/Ext2/Inode.h index c5329b11..390b5a47 100644 --- a/kernel/include/kernel/FS/Ext2/Inode.h +++ b/kernel/include/kernel/FS/Ext2/Inode.h @@ -44,7 +44,12 @@ namespace Kernel virtual BAN::ErrorOr chmod_impl(mode_t) override; private: - uint32_t fs_block_of_data_block_index(uint32_t data_block_index); + // Returns maximum number of data blocks in use + // NOTE: the inode might have more blocks than what this suggests if it has been shrinked + uint32_t max_used_data_block_count() const { return size() / blksize(); } + + BAN::Optional block_from_indirect_block(uint32_t block, uint32_t index, uint32_t depth); + BAN::Optional fs_block_of_data_block_index(uint32_t data_block_index); BAN::ErrorOr link_inode_to_directory(Ext2Inode&, BAN::StringView name); BAN::ErrorOr is_directory_empty(); @@ -53,7 +58,8 @@ namespace Kernel BAN::ErrorOr cleanup_default_links(); void cleanup_from_fs(); - BAN::ErrorOr allocate_new_block(); + BAN::ErrorOr allocate_new_block_to_indirect_block(uint32_t& block, uint32_t index, uint32_t depth); + BAN::ErrorOr allocate_new_block(uint32_t data_block_index); void sync(); uint32_t block_group() const; diff --git a/kernel/kernel/FS/Ext2/Inode.cpp b/kernel/kernel/FS/Ext2/Inode.cpp index 92aef05f..0729ec85 100644 --- a/kernel/kernel/FS/Ext2/Inode.cpp +++ b/kernel/kernel/FS/Ext2/Inode.cpp @@ -32,12 +32,9 @@ namespace Kernel auto block_buffer = fs.get_block_buffer(); fs.read_block(inode_location.block, block_buffer); - auto& inode = *(Ext2::Inode*)(block_buffer.data() + inode_location.offset); + auto& inode = block_buffer.span().slice(inode_location.offset).as(); - Ext2Inode* result_ptr = new Ext2Inode(fs, inode, inode_ino); - if (result_ptr == nullptr) - return BAN::Error::from_errno(ENOMEM); - auto result = BAN::RefPtr::adopt(result_ptr); + auto result = TRY(BAN::RefPtr::create(fs, inode, inode_ino)); TRY(fs.inode_cache().insert(inode_ino, result)); return result; } @@ -48,57 +45,56 @@ namespace Kernel cleanup_from_fs(); } -#define VERIFY_AND_READ_BLOCK(expr) do { const uint32_t block_index = expr; ASSERT(block_index); m_fs.read_block(block_index, block_buffer); } while (false) -#define VERIFY_AND_RETURN(expr) ({ const uint32_t result = expr; ASSERT(result); return result; }) - - uint32_t Ext2Inode::fs_block_of_data_block_index(uint32_t data_block_index) + BAN::Optional Ext2Inode::block_from_indirect_block(uint32_t block, uint32_t index, uint32_t depth) { - ASSERT(data_block_index < blocks()); + if (block == 0) + return {}; + ASSERT(depth >= 1); + + auto block_buffer = m_fs.get_block_buffer(); + m_fs.read_block(block, block_buffer); const uint32_t indices_per_block = blksize() / sizeof(uint32_t); - // Direct block - if (data_block_index < 12) - VERIFY_AND_RETURN(m_inode.block[data_block_index]); + uint32_t divisor = 1; + for (uint32_t i = 1; i < depth; i++) + divisor *= indices_per_block; + const uint32_t next_block = block_buffer.span().as_span()[(index / divisor) % indices_per_block]; + if (next_block == 0) + return {}; + if (depth == 1) + return next_block; + + return block_from_indirect_block(next_block, index, depth - 1); + } + + BAN::Optional Ext2Inode::fs_block_of_data_block_index(uint32_t data_block_index) + { + const uint32_t indices_per_block = blksize() / sizeof(uint32_t); + + if (data_block_index < 12) + { + if (m_inode.block[data_block_index] == 0) + return {}; + return m_inode.block[data_block_index]; + } data_block_index -= 12; - auto block_buffer = m_fs.get_block_buffer(); - - // Singly indirect block if (data_block_index < indices_per_block) - { - VERIFY_AND_READ_BLOCK(m_inode.block[12]); - VERIFY_AND_RETURN(((uint32_t*)block_buffer.data())[data_block_index]); - } - + return block_from_indirect_block(m_inode.block[12], data_block_index, 1); data_block_index -= indices_per_block; - // Doubly indirect blocks if (data_block_index < indices_per_block * indices_per_block) - { - VERIFY_AND_READ_BLOCK(m_inode.block[13]); - VERIFY_AND_READ_BLOCK(((uint32_t*)block_buffer.data())[data_block_index / indices_per_block]); - VERIFY_AND_RETURN(((uint32_t*)block_buffer.data())[data_block_index % indices_per_block]); - } - + return block_from_indirect_block(m_inode.block[13], data_block_index, 2); data_block_index -= indices_per_block * indices_per_block; - // Triply indirect blocks if (data_block_index < indices_per_block * indices_per_block * indices_per_block) - { - VERIFY_AND_READ_BLOCK(m_inode.block[14]); - VERIFY_AND_READ_BLOCK(((uint32_t*)block_buffer.data())[data_block_index / (indices_per_block * indices_per_block)]); - VERIFY_AND_READ_BLOCK(((uint32_t*)block_buffer.data())[(data_block_index / indices_per_block) % indices_per_block]); - VERIFY_AND_RETURN(((uint32_t*)block_buffer.data())[data_block_index % indices_per_block]); - } + return block_from_indirect_block(m_inode.block[14], data_block_index, 3); ASSERT_NOT_REACHED(); } -#undef VERIFY_AND_READ_BLOCK -#undef VERIFY_AND_RETURN - BAN::ErrorOr Ext2Inode::link_target_impl() { ASSERT(mode().iflnk()); @@ -119,7 +115,7 @@ namespace Kernel if (offset >= m_inode.size) return 0; - + uint32_t count = buffer.size(); if (offset + buffer.size() > m_inode.size) count = m_inode.size - offset; @@ -135,8 +131,11 @@ namespace Kernel for (uint32_t data_block_index = first_block; data_block_index < last_block; data_block_index++) { - uint32_t block_index = fs_block_of_data_block_index(data_block_index); - m_fs.read_block(block_index, block_buffer); + auto block_index = fs_block_of_data_block_index(data_block_index); + if (block_index.has_value()) + m_fs.read_block(block_index.value(), block_buffer); + else + memset(block_buffer.data(), 0x00, block_buffer.size()); uint32_t copy_offset = (offset + n_read) % block_size; uint32_t to_copy = BAN::Math::min(block_size - copy_offset, count - n_read); @@ -171,14 +170,20 @@ namespace Kernel // Write partial block if (offset % block_size) { - uint32_t block_index = fs_block_of_data_block_index(offset / block_size); - uint32_t block_offset = offset % block_size; + auto block_index = fs_block_of_data_block_index(offset / block_size); + if (block_index.has_value()) + m_fs.read_block(block_index.value(), block_buffer); + else + { + block_index = TRY(allocate_new_block(offset / block_size));; + memset(block_buffer.data(), 0x00, block_buffer.size()); + } + uint32_t block_offset = offset % block_size; uint32_t to_copy = BAN::Math::min(block_size - block_offset, to_write); - m_fs.read_block(block_index, block_buffer); memcpy(block_buffer.data() + block_offset, buffer.data(), to_copy); - m_fs.write_block(block_index, block_buffer); + m_fs.write_block(block_index.value(), block_buffer); written += to_copy; offset += to_copy; @@ -187,10 +192,12 @@ namespace Kernel while (to_write >= block_size) { - uint32_t block_index = fs_block_of_data_block_index(offset / block_size); + auto block_index = fs_block_of_data_block_index(offset / block_size); + if (!block_index.has_value()) + block_index = TRY(allocate_new_block(offset / block_size)); memcpy(block_buffer.data(), buffer.data() + written, block_buffer.size()); - m_fs.write_block(block_index, block_buffer); + m_fs.write_block(block_index.value(), block_buffer); written += block_size; offset += block_size; @@ -199,11 +206,17 @@ namespace Kernel if (to_write > 0) { - uint32_t block_index = fs_block_of_data_block_index(offset / block_size); + auto block_index = fs_block_of_data_block_index(offset / block_size); + if (block_index.has_value()) + m_fs.read_block(block_index.value(), block_buffer); + else + { + block_index = TRY(allocate_new_block(offset / block_size)); + memset(block_buffer.data(), 0x00, block_buffer.size()); + } - m_fs.read_block(block_index, block_buffer); memcpy(block_buffer.data(), buffer.data() + written, to_write); - m_fs.write_block(block_index, block_buffer); + m_fs.write_block(block_index.value(), block_buffer); } return buffer.size(); @@ -214,34 +227,7 @@ namespace Kernel if (m_inode.size == new_size) return {}; - const uint32_t block_size = blksize(); - const uint32_t current_data_blocks = blocks(); - const uint32_t needed_data_blocks = BAN::Math::div_round_up(new_size, block_size); - - if (new_size < m_inode.size) - { - m_inode.size = new_size; - sync(); - return {}; - } - - auto block_buffer = m_fs.get_block_buffer(); - - if (uint32_t rem = m_inode.size % block_size) - { - uint32_t last_block_index = fs_block_of_data_block_index(current_data_blocks - 1); - - m_fs.read_block(last_block_index, block_buffer); - memset(block_buffer.data() + rem, 0, block_size - rem); - m_fs.write_block(last_block_index, block_buffer); - } - - memset(block_buffer.data(), 0, block_size); - while (blocks() < needed_data_blocks) - { - uint32_t block_index = TRY(allocate_new_block()); - m_fs.write_block(block_index, block_buffer); - } + // TODO: we should remove unused blocks on shrink m_inode.size = new_size; sync(); @@ -275,9 +261,10 @@ namespace Kernel const uint32_t ids_per_block = blksize() / sizeof(uint32_t); for (uint32_t i = 0; i < ids_per_block; i++) { - const uint32_t idx = ((uint32_t*)block_buffer.data())[i]; - if (idx > 0) - cleanup_indirect_block(idx, depth - 1); + const uint32_t next_block = block_buffer.span().as_span()[i]; + if (next_block == 0) + continue; + cleanup_indirect_block(next_block, depth - 1); } m_fs.release_block(block); @@ -299,14 +286,14 @@ namespace Kernel cleanup_indirect_block(m_inode.block[13], 2); if (m_inode.block[14]) cleanup_indirect_block(m_inode.block[14], 3); - + // mark blocks as deleted memset(m_inode.block, 0x00, sizeof(m_inode.block)); // FIXME: this is only required since fs does not get // deleting inode from its cache sync(); - + m_fs.delete_inode(ino()); } @@ -322,8 +309,8 @@ namespace Kernel return {}; } - const uint32_t block_size = blksize(); - const uint32_t block_index = fs_block_of_data_block_index(offset); + // FIXME: can we actually assume directories have all their blocks allocated + const uint32_t block_index = fs_block_of_data_block_index(offset).value(); auto block_buffer = m_fs.get_block_buffer(); @@ -331,16 +318,15 @@ namespace Kernel // First determine if we have big enough list { - const uint8_t* block_buffer_end = block_buffer.data() + block_size; - const uint8_t* entry_addr = block_buffer.data(); + BAN::ConstByteSpan entry_span = block_buffer.span(); size_t needed_size = sizeof(DirectoryEntryList); - while (entry_addr < block_buffer_end) + while (entry_span.size() >= sizeof(Ext2::LinkedDirectoryEntry)) { - auto& entry = *(Ext2::LinkedDirectoryEntry*)entry_addr; + auto& entry = entry_span.as(); if (entry.inode) needed_size += sizeof(DirectoryEntry) + entry.name_len + 1; - entry_addr += entry.rec_len; + entry_span = entry_span.slice(entry.rec_len); } if (needed_size > list_size) @@ -352,11 +338,10 @@ namespace Kernel DirectoryEntry* ptr = list->array; list->entry_count = 0; - const uint8_t* block_buffer_end = block_buffer.data() + block_size; - const uint8_t* entry_addr = block_buffer.data(); - while (entry_addr < block_buffer_end) + BAN::ConstByteSpan entry_span = block_buffer.span(); + while (entry_span.size() >= sizeof(Ext2::LinkedDirectoryEntry)) { - auto& entry = *(Ext2::LinkedDirectoryEntry*)entry_addr; + auto& entry = entry_span.as(); if (entry.inode) { ptr->dirent.d_ino = entry.inode; @@ -368,7 +353,7 @@ namespace Kernel ptr = ptr->next(); list->entry_count++; } - entry_addr += entry.rec_len; + entry_span = entry_span.slice(entry.rec_len); } } @@ -460,7 +445,7 @@ namespace Kernel TRY(inode->link_inode_to_directory(*inode, "."sv)); TRY(inode->link_inode_to_directory(*this, ".."sv)); - + TRY(link_inode_to_directory(*inode, name)); cleanup.disable(); @@ -505,7 +490,7 @@ namespace Kernel : typed_mode.iflnk() ? Ext2::Enum::SYMLINK : 0; - auto& new_entry = *(Ext2::LinkedDirectoryEntry*)(block_buffer.data() + entry_offset); + auto& new_entry = block_buffer.span().slice(entry_offset).as(); new_entry.inode = inode.ino(); new_entry.rec_len = entry_rec_len; new_entry.name_len = name.size(); @@ -523,17 +508,18 @@ namespace Kernel if (auto rem = needed_entry_len % 4) needed_entry_len += 4 - rem; - const uint32_t data_block_count = blocks(); + // FIXME: can we actually assume directories have all their blocks allocated + const uint32_t data_block_count = max_used_data_block_count(); if (data_block_count == 0) goto needs_new_block; // Try to insert inode to last data block - block_index = fs_block_of_data_block_index(data_block_count - 1); + block_index = fs_block_of_data_block_index(data_block_count - 1).value(); m_fs.read_block(block_index, block_buffer); while (entry_offset < block_size) { - auto& entry = *(Ext2::LinkedDirectoryEntry*)(block_buffer.data() + entry_offset); + auto& entry = block_buffer.span().slice(entry_offset).as(); uint32_t entry_min_rec_len = sizeof(Ext2::LinkedDirectoryEntry) + entry.name_len; if (auto rem = entry_min_rec_len % 4) @@ -559,9 +545,10 @@ namespace Kernel } needs_new_block: - block_index = TRY(allocate_new_block()); + block_index = TRY(allocate_new_block(data_block_count)); + m_inode.size += blksize(); - m_fs.read_block(block_index, block_buffer); + memset(block_buffer.data(), 0x00, block_buffer.size()); write_inode(0, block_size); m_fs.write_block(block_index, block_buffer); @@ -571,19 +558,15 @@ needs_new_block: BAN::ErrorOr Ext2Inode::is_directory_empty() { ASSERT(mode().ifdir()); - if (m_inode.flags & Ext2::Enum::INDEX_FL) - { - dwarnln("deletion of indexed directory is not supported"); - return BAN::Error::from_errno(ENOTSUP); - } auto block_buffer = m_fs.get_block_buffer(); // Confirm that this doesn't contain anything else than '.' or '..' - for (uint32_t i = 0; i < blocks(); i++) + for (uint32_t i = 0; i < max_used_data_block_count(); i++) { - const uint32_t block = fs_block_of_data_block_index(i); - m_fs.read_block(block, block_buffer); + // FIXME: can we actually assume directories have all their blocks allocated + const uint32_t block_index = fs_block_of_data_block_index(i).value(); + m_fs.read_block(block_index, block_buffer); blksize_t offset = 0; while (offset < blksize()) @@ -607,13 +590,19 @@ needs_new_block: BAN::ErrorOr Ext2Inode::cleanup_default_links() { ASSERT(mode().ifdir()); + if (m_inode.flags & Ext2::Enum::INDEX_FL) + { + dwarnln("deletion of indexed directory is not supported"); + return BAN::Error::from_errno(ENOTSUP); + } auto block_buffer = m_fs.get_block_buffer(); - for (uint32_t i = 0; i < blocks(); i++) + for (uint32_t i = 0; i < max_used_data_block_count(); i++) { - const uint32_t block = fs_block_of_data_block_index(i); - m_fs.read_block(block, block_buffer); + // FIXME: can we actually assume directories have all their blocks allocated + const uint32_t block_index = fs_block_of_data_block_index(i).value(); + m_fs.read_block(block_index, block_buffer); bool modified = false; @@ -648,7 +637,7 @@ needs_new_block: } if (modified) - m_fs.write_block(block, block_buffer); + m_fs.write_block(block_index, block_buffer); } return {}; @@ -665,10 +654,11 @@ needs_new_block: auto block_buffer = m_fs.get_block_buffer(); - for (uint32_t i = 0; i < blocks(); i++) + for (uint32_t i = 0; i < max_used_data_block_count(); i++) { - const uint32_t block = fs_block_of_data_block_index(i); - m_fs.read_block(block, block_buffer); + // FIXME: can we actually assume directories have all their blocks allocated + const uint32_t block_index = fs_block_of_data_block_index(i).value(); + m_fs.read_block(block_index, block_buffer); blksize_t offset = 0; while (offset < blksize()) @@ -702,7 +692,7 @@ needs_new_block: // FIXME: This should expand the last inode if exists entry.inode = 0; - m_fs.write_block(block, block_buffer); + m_fs.write_block(block_index, block_buffer); } offset += entry.rec_len; } @@ -711,114 +701,72 @@ needs_new_block: return {}; } -#define READ_OR_ALLOCATE_BASE_BLOCK(index_) \ - do { \ - if (m_inode.block[index_] != 0) \ - m_fs.read_block(m_inode.block[index_], block_buffer); \ - else \ - { \ - m_inode.block[index_] = TRY(m_fs.reserve_free_block(block_group())); \ - memset(block_buffer.data(), 0x00, block_buffer.size()); \ - } \ - } while (false) - -#define READ_OR_ALLOCATE_INDIRECT_BLOCK(result_, buffer_index_, parent_block_) \ - uint32_t result_ = ((uint32_t*)block_buffer.data())[buffer_index_]; \ - if (result_ != 0) \ - m_fs.read_block(result_, block_buffer); \ - else \ - { \ - const uint32_t new_block_ = TRY(m_fs.reserve_free_block(block_group())); \ - \ - ((uint32_t*)block_buffer.data())[buffer_index_] = new_block_; \ - m_fs.write_block(parent_block_, block_buffer); \ - \ - result_ = new_block_; \ - memset(block_buffer.data(), 0x00, block_buffer.size()); \ - } \ - do {} while (false) - -#define WRITE_BLOCK_AND_RETURN(buffer_index_, parent_block_) \ - do { \ - const uint32_t block_ = TRY(m_fs.reserve_free_block(block_group())); \ - \ - ASSERT(((uint32_t*)block_buffer.data())[buffer_index_] == 0); \ - ((uint32_t*)block_buffer.data())[buffer_index_] = block_; \ - m_fs.write_block(parent_block_, block_buffer); \ - \ - m_inode.blocks += blocks_per_fs_block; \ - update_and_sync(); \ - \ - return block_; \ - } while (false) - - BAN::ErrorOr Ext2Inode::allocate_new_block() + BAN::ErrorOr Ext2Inode::allocate_new_block_to_indirect_block(uint32_t& block, uint32_t index, uint32_t depth) { - const uint32_t blocks_per_fs_block = blksize() / 512; + const uint32_t inode_blocks_per_fs_block = blksize() / 512; const uint32_t indices_per_fs_block = blksize() / sizeof(uint32_t); - uint32_t block_array_index = blocks(); + if (depth == 0) + ASSERT(block == 0); - auto update_and_sync = - [&] - { - if (mode().ifdir()) - m_inode.size += blksize(); - sync(); - }; - - // direct block - if (block_array_index < 12) + if (block == 0) { - const uint32_t block = TRY(m_fs.reserve_free_block(block_group())); + block = TRY(m_fs.reserve_free_block(block_group())); + m_inode.blocks += inode_blocks_per_fs_block; - ASSERT(m_inode.block[block_array_index] == 0); - m_inode.block[block_array_index] = block; - - m_inode.blocks += blocks_per_fs_block; - update_and_sync(); - return block; + auto block_buffer = m_fs.get_block_buffer(); + memset(block_buffer.data(), 0x00, block_buffer.size()); + m_fs.write_block(block, block_buffer); } - block_array_index -= 12; + if (depth == 0) + return block; auto block_buffer = m_fs.get_block_buffer(); + m_fs.read_block(block, block_buffer); - // singly indirect block - if (block_array_index < indices_per_fs_block) + uint32_t divisor = 1; + for (uint32_t i = 1; i < depth; i++) + divisor *= indices_per_fs_block; + + uint32_t& new_block = block_buffer.span().as_span()[(index / divisor) % indices_per_fs_block]; + + uint32_t allocated_block = TRY(allocate_new_block_to_indirect_block(new_block, index, depth - 1)); + m_fs.write_block(block, block_buffer); + + return allocated_block; + } + + BAN::ErrorOr Ext2Inode::allocate_new_block(uint32_t data_block_index) + { + const uint32_t inode_blocks_per_fs_block = blksize() / 512; + const uint32_t indices_per_fs_block = blksize() / sizeof(uint32_t); + + BAN::ScopeGuard syncer([&] { sync(); }); + + if (data_block_index < 12) { - READ_OR_ALLOCATE_BASE_BLOCK(12); - WRITE_BLOCK_AND_RETURN(block_array_index, m_inode.block[12]); + ASSERT(m_inode.block[data_block_index] == 0); + m_inode.block[data_block_index] = TRY(m_fs.reserve_free_block(block_group())); + m_inode.blocks += inode_blocks_per_fs_block; + return m_inode.block[data_block_index]; } + data_block_index -= 12; - block_array_index -= indices_per_fs_block; + if (data_block_index < indices_per_fs_block) + return TRY(allocate_new_block_to_indirect_block(m_inode.block[12], data_block_index, 1)); + data_block_index -= indices_per_fs_block; - // doubly indirect block - if (block_array_index < indices_per_fs_block * indices_per_fs_block) - { - READ_OR_ALLOCATE_BASE_BLOCK(13); - READ_OR_ALLOCATE_INDIRECT_BLOCK(direct_block, block_array_index / indices_per_fs_block, m_inode.block[13]); - WRITE_BLOCK_AND_RETURN(block_array_index % indices_per_fs_block, direct_block); - } + if (data_block_index < indices_per_fs_block * indices_per_fs_block) + return TRY(allocate_new_block_to_indirect_block(m_inode.block[13], data_block_index, 2)); + data_block_index -= indices_per_fs_block; - block_array_index -= indices_per_fs_block * indices_per_fs_block; - - // triply indirect block - if (block_array_index < indices_per_fs_block * indices_per_fs_block * indices_per_fs_block) - { - READ_OR_ALLOCATE_BASE_BLOCK(14); - READ_OR_ALLOCATE_INDIRECT_BLOCK(indirect_block, block_array_index / (indices_per_fs_block * indices_per_fs_block), m_inode.block[14]); - READ_OR_ALLOCATE_INDIRECT_BLOCK(direct_block, (block_array_index / indices_per_fs_block) % indices_per_fs_block, indirect_block); - WRITE_BLOCK_AND_RETURN(block_array_index % indices_per_fs_block, direct_block); - } + if (data_block_index < indices_per_fs_block * indices_per_fs_block * indices_per_fs_block) + return TRY(allocate_new_block_to_indirect_block(m_inode.block[14], data_block_index, 3)); ASSERT_NOT_REACHED(); } -#undef READ_OR_ALLOCATE_BASE_BLOCK -#undef READ_OR_ALLOCATE_INDIRECT_BLOCK -#undef WRITE_BLOCK_AND_RETURN - void Ext2Inode::sync() { auto inode_location = m_fs.locate_inode(ino()); @@ -836,26 +784,22 @@ needs_new_block: { ASSERT(mode().ifdir()); - const uint32_t block_size = blksize(); - const uint32_t data_block_count = blocks(); - auto block_buffer = m_fs.get_block_buffer(); - for (uint32_t i = 0; i < data_block_count; i++) + for (uint32_t i = 0; i < max_used_data_block_count(); i++) { - const uint32_t block_index = fs_block_of_data_block_index(i); + // FIXME: can we actually assume directories have all their blocks allocated + const uint32_t block_index = fs_block_of_data_block_index(i).value(); m_fs.read_block(block_index, block_buffer); - const uint8_t* block_buffer_end = block_buffer.data() + block_size; - const uint8_t* entry_addr = block_buffer.data(); - - while (entry_addr < block_buffer_end) + BAN::ConstByteSpan entry_span = block_buffer.span(); + while (entry_span.size() >= sizeof(Ext2::LinkedDirectoryEntry)) { - const auto& entry = *(const Ext2::LinkedDirectoryEntry*)entry_addr; + auto& entry = entry_span.as(); BAN::StringView entry_name(entry.name, entry.name_len); if (entry.inode && entry_name == file_name) return BAN::RefPtr(TRY(Ext2Inode::create(m_fs, entry.inode))); - entry_addr += entry.rec_len; + entry_span = entry_span.slice(entry.rec_len); } } From 3940f532319de4642d83b7c2fded96f5b6c7ffb5 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 28 Oct 2023 22:23:29 +0300 Subject: [PATCH 156/240] BuildSystem: Add bos short hand for building with zsh completions :) --- README.md | 4 ++++ bos | 1 + script/shell-completion/zsh/_bos | 18 ++++++++++++++++++ 3 files changed, 23 insertions(+) create mode 120000 bos create mode 100644 script/shell-completion/zsh/_bos diff --git a/README.md b/README.md index 6671064d..959f09a4 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,10 @@ If you have corrupted your disk image or want to create new one, you can either > ***NOTE*** ```ninja clean``` has to be ran with root permissions, since it deletes from the banan-so sysroot. +If you feel like ```./script/build.sh``` is too verbose, there exists a symlink _bos_ in this projects root directory. All build commands can be used with ```./bos args...``` instead. + +I have also created shell completion script for zsh. You can either copy the file in _script/shell-completion/zsh/\_bos_ to _/usr/share/zsh/site-functions/_ or add the _script/shell-completion/zsh_ to your fpath in _.zshrc_. + ### Contributing Currently I don't accept contributions to this repository unless explicitly told otherwise. This is a learning project for me and I want to do everything myself. Feel free to fork/clone this repo and tinker with it yourself. diff --git a/bos b/bos new file mode 120000 index 00000000..1dd2819b --- /dev/null +++ b/bos @@ -0,0 +1 @@ +script/build.sh \ No newline at end of file diff --git a/script/shell-completion/zsh/_bos b/script/shell-completion/zsh/_bos new file mode 100644 index 00000000..d695cafc --- /dev/null +++ b/script/shell-completion/zsh/_bos @@ -0,0 +1,18 @@ +#compdef bos + +__ninja_targets() { + ninja -C build -f build.ninja -t targets all 2>/dev/null | cut -d: -f1 | grep -vi cmake +} + +__build_targets() { + grep -o '[a-zA-Z-]\+)$' script/build.sh 2>/dev/null | cut -d')' -f1 +} + +__targets() { + local -a targets + targets=($(__ninja_targets) $(__build_targets)) + _describe 'targets' targets +} + +_arguments '*::targets:__targets' + From 09fcc613c7dd7c031b468ac72985a84c29db7468 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sun, 29 Oct 2023 02:28:55 +0300 Subject: [PATCH 157/240] BAN: Add variant to ForwardList I should be using the forward list more --- BAN/include/BAN/ForwardList.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BAN/include/BAN/ForwardList.h b/BAN/include/BAN/ForwardList.h index bc7601df..6d1f0d5e 100644 --- a/BAN/include/BAN/ForwardList.h +++ b/BAN/include/BAN/ForwardList.h @@ -1,5 +1,6 @@ #pragma once +#include #include namespace BAN @@ -14,5 +15,6 @@ namespace BAN class StringView; template class Vector; template class LinkedList; + template requires (!is_const_v && ...) class Variant; } From 1af3ca19abd24272318ab942122648ced162fcc9 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sun, 29 Oct 2023 02:29:49 +0300 Subject: [PATCH 158/240] BAN: Rewrite String with small string optimizations String now holds a 15 byte sso buffer. I'm not sure what the size should actually be but 15 will work for now. Maybe the sso buffer should be contained in an union with one bit flag in size instead of variant that uses extra 8 bytes for type index. This patch buffs sizeof(String) from 24 bytes to 32 bytes on 64 bit. I assume this is much better version than the old which had to make allocation even for empty strings :D. --- BAN/BAN/String.cpp | 298 ++++++++++++++++++++------------------- BAN/include/BAN/String.h | 55 +++++--- 2 files changed, 186 insertions(+), 167 deletions(-) diff --git a/BAN/BAN/String.cpp b/BAN/BAN/String.cpp index 96f26936..5f94a52b 100644 --- a/BAN/BAN/String.cpp +++ b/BAN/BAN/String.cpp @@ -1,102 +1,108 @@ -#include -#include -#include -#include #include -#include - -#include +#include +#include namespace BAN { String::String() { - MUST(copy_impl(""sv)); } String::String(const String& other) { - MUST(copy_impl(other.sv())); + *this = other; } String::String(String&& other) { - move_impl(move(other)); + *this = move(other); } String::String(StringView other) { - MUST(copy_impl(other)); + *this = other; } String::~String() { - BAN::deallocator(m_data); + clear(); } String& String::operator=(const String& other) { - MUST(copy_impl(other.sv())); + clear(); + if (!other.fits_in_sso()) + MUST(ensure_capacity(other.size())); + memcpy(data(), other.data(), other.size() + 1); + m_size = other.size(); return *this; } String& String::operator=(String&& other) { - BAN::deallocator(m_data); - move_impl(move(other)); + clear(); + + if (other.fits_in_sso()) + memcpy(data(), other.data(), other.size() + 1); + else + m_storage = other.m_storage.get(); + m_size = other.m_size; + + other.m_size = 0; + other.m_storage = SSOStorage(); + return *this; } String& String::operator=(StringView other) { - MUST(copy_impl(other)); + clear(); + if (!fits_in_sso(other.size())) + MUST(ensure_capacity(other.size())); + memcpy(data(), other.data(), other.size()); + m_size = other.size(); + data()[m_size] = '\0'; return *this; } - ErrorOr String::push_back(char ch) + ErrorOr String::push_back(char c) { - TRY(ensure_capacity(m_size + 2)); - m_data[m_size] = ch; + TRY(ensure_capacity(m_size + 1)); + data()[m_size] = c; m_size++; - m_data[m_size] = '\0'; + data()[m_size] = '\0'; return {}; } - ErrorOr String::insert(char ch, size_type index) + ErrorOr String::insert(char c, size_type index) { ASSERT(index <= m_size); - TRY(ensure_capacity(m_size + 1 + 1)); - memmove(m_data + index + 1, m_data + index, m_size - index); - m_data[index] = ch; - m_size += 1; - m_data[m_size] = '\0'; + TRY(ensure_capacity(m_size + 1)); + memmove(data() + index + 1, data() + index, m_size - index); + data()[index] = c; + m_size++; + data()[m_size] = '\0'; return {}; } - ErrorOr String::insert(StringView other, size_type index) + ErrorOr String::insert(StringView str, size_type index) { ASSERT(index <= m_size); - TRY(ensure_capacity(m_size + other.size() + 1)); - memmove(m_data + index + other.size(), m_data + index, m_size - index); - memcpy(m_data + index, other.data(), other.size()); - m_size += other.size(); - m_data[m_size] = '\0'; + TRY(ensure_capacity(m_size + str.size())); + memmove(data() + index + str.size(), data() + index, m_size - index); + memcpy(data() + index, str.data(), str.size()); + m_size += str.size(); + data()[m_size] = '\0'; return {}; } - ErrorOr String::append(StringView other) + ErrorOr String::append(StringView str) { - TRY(ensure_capacity(m_size + other.size() + 1)); - memcpy(m_data + m_size, other.data(), other.size()); - m_size += other.size(); - m_data[m_size] = '\0'; - return {}; - } - - ErrorOr String::append(const String& string) - { - TRY(append(string.sv())); + TRY(ensure_capacity(m_size + str.size())); + memcpy(data() + m_size, str.data(), str.size()); + m_size += str.size(); + data()[m_size] = '\0'; return {}; } @@ -104,159 +110,161 @@ namespace BAN { ASSERT(m_size > 0); m_size--; - m_data[m_size] = '\0'; + data()[m_size] = '\0'; } void String::remove(size_type index) { - erase(index, 1); - } - - void String::erase(size_type index, size_type count) - { - ASSERT(index + count <= m_size); - memmove(m_data + index, m_data + index + count, m_size - index - count); - m_size -= count; - m_data[m_size] = '\0'; + ASSERT(index < m_size); + memcpy(data() + index, data() + index + 1, m_size - index); + m_size--; + data()[m_size] = '\0'; } void String::clear() { + if (!has_sso()) + { + deallocator(m_storage.get().data); + m_storage = SSOStorage(); + } m_size = 0; - m_data[0] = '\0'; + data()[m_size] = '\0'; } - char String::operator[](size_type index) const + bool String::operator==(StringView str) const { - ASSERT(index < m_size); - return m_data[index]; - } - - char& String::operator[](size_type index) - { - ASSERT(index < m_size); - return m_data[index]; - } - - bool String::operator==(const String& other) const - { - if (m_size != other.m_size) + if (size() != str.size()) return false; - return memcmp(m_data, other.m_data, m_size) == 0; - } - - bool String::operator==(StringView other) const - { - if (m_size != other.size()) - return false; - return memcmp(m_data, other.data(), m_size) == 0; - } - - bool String::operator==(const char* other) const - { - for (size_type i = 0; i <= m_size; i++) - if (m_data[i] != other[i]) + for (size_type i = 0; i < m_size; i++) + if (data()[i] != str.data()[i]) return false; return true; } - ErrorOr String::resize(size_type size, char ch) + bool String::operator==(const char* cstr) const { - if (size < m_size) + for (size_type i = 0; i < m_size; i++) + if (data()[i] != cstr[i]) + return false; + if (cstr[size()] != '\0') + return false; + return true; + } + + ErrorOr String::resize(size_type new_size, char init_c) + { + if (m_size == new_size) + return {}; + + // expanding + if (m_size < new_size) { - m_data[size] = '\0'; - m_size = size; + TRY(ensure_capacity(new_size)); + memset(data() + m_size, init_c, new_size - m_size); + m_size = new_size; + data()[m_size] = '\0'; + return {}; } - else if (size > m_size) + + // shrink general -> sso + if (!has_sso() && fits_in_sso(new_size)) { - TRY(ensure_capacity(size + 1)); - for (size_type i = m_size; i < size; i++) - m_data[i] = ch; - m_data[size] = '\0'; - m_size = size; + char* data = m_storage.get().data; + m_storage = SSOStorage(); + memcpy(m_storage.get().storage, data, new_size); + deallocator(data); } - m_size = size; + + m_size = new_size; + data()[m_size] = '\0'; return {}; } - ErrorOr String::reserve(size_type size) + ErrorOr String::reserve(size_type new_size) { - TRY(ensure_capacity(size)); + TRY(ensure_capacity(new_size)); return {}; } ErrorOr String::shrink_to_fit() { - size_type temp = m_capacity; - m_capacity = 0; - auto error_or = ensure_capacity(m_size); - if (error_or.is_error()) + if (has_sso()) + return {}; + + if (fits_in_sso()) { - m_capacity = temp; - return error_or; + char* data = m_storage.get().data; + m_storage = SSOStorage(); + memcpy(m_storage.get().storage, data, m_size + 1); + deallocator(data); + return {}; } + + GeneralStorage& storage = m_storage.get(); + if (storage.capacity == m_size) + return {}; + + char* new_data = (char*)allocator(m_size + 1); + if (new_data == nullptr) + return BAN::Error::from_errno(ENOMEM); + + memcpy(new_data, storage.data, m_size); + deallocator(storage.data); + + storage.capacity = m_size; + storage.data = new_data; + return {}; } - StringView String::sv() const - { - return StringView(*this); - } - - bool String::empty() const - { - return m_size == 0; - } - - String::size_type String::size() const - { - return m_size; - } - String::size_type String::capacity() const { - return m_capacity; + if (has_sso()) + return sso_capacity; + return m_storage.get().capacity; + } + + char* String::data() + { + if (has_sso()) + return m_storage.get().storage; + return m_storage.get().data; } const char* String::data() const { - return m_data; + if (has_sso()) + return m_storage.get().storage; + return m_storage.get().data; } - ErrorOr String::ensure_capacity(size_type size) + ErrorOr String::ensure_capacity(size_type new_size) { - if (m_capacity >= size) + if (m_size >= new_size || fits_in_sso(new_size)) return {}; - size_type new_cap = BAN::Math::max(size, m_capacity * 2); - void* new_data = BAN::allocator(new_cap); + + char* new_data = (char*)allocator(new_size + 1); if (new_data == nullptr) - return Error::from_errno(ENOMEM); - if (m_data) - memcpy(new_data, m_data, m_size + 1); - BAN::deallocator(m_data); - m_data = (char*)new_data; - m_capacity = new_cap; + return BAN::Error::from_errno(ENOMEM); + + memcpy(new_data, data(), m_size + 1); + + if (has_sso()) + m_storage = GeneralStorage(); + else + deallocator(m_storage.get().data); + + auto& storage = m_storage.get(); + storage.capacity = new_size; + storage.data = new_data; + return {}; } - ErrorOr String::copy_impl(StringView other) + bool String::has_sso() const { - TRY(ensure_capacity(other.size() + 1)); - memcpy(m_data, other.data(), other.size()); - m_size = other.size(); - m_data[m_size] = '\0'; - return {}; - } - - void String::move_impl(String&& other) - { - m_data = other.m_data; - m_size = other.m_size; - m_capacity = other.m_capacity; - - other.m_data = nullptr; - other.m_size = 0; - other.m_capacity = 0; + return m_storage.has(); } } diff --git a/BAN/include/BAN/String.h b/BAN/include/BAN/String.h index f1c4f3ab..26685afd 100644 --- a/BAN/include/BAN/String.h +++ b/BAN/include/BAN/String.h @@ -1,8 +1,8 @@ #pragma once #include -#include #include +#include #include #include @@ -15,6 +15,7 @@ namespace BAN using size_type = size_t; using iterator = IteratorSimple; using const_iterator = ConstIteratorSimple; + static constexpr size_type sso_capacity = 15; public: String(); @@ -34,29 +35,26 @@ namespace BAN ErrorOr insert(char, size_type); ErrorOr insert(StringView, size_type); ErrorOr append(StringView); - ErrorOr append(const String&); void pop_back(); void remove(size_type); - void erase(size_type, size_type); void clear(); - const_iterator begin() const { return const_iterator(m_data); } - iterator begin() { return iterator(m_data); } - const_iterator end() const { return const_iterator(m_data + m_size); } - iterator end() { return iterator(m_data + m_size); } + const_iterator begin() const { return const_iterator(data()); } + iterator begin() { return iterator(data()); } + const_iterator end() const { return const_iterator(data() + size()); } + iterator end() { return iterator(data() + size()); } - char front() const { ASSERT(!empty()); return m_data[0]; } - char& front() { ASSERT(!empty()); return m_data[0]; } + char front() const { ASSERT(m_size > 0); return data()[0]; } + char& front() { ASSERT(m_size > 0); return data()[0]; } - char back() const { ASSERT(!empty()); return m_data[m_size - 1]; } - char& back() { ASSERT(!empty()); return m_data[m_size - 1]; } + char back() const { ASSERT(m_size > 0); return data()[m_size - 1]; } + char& back() { ASSERT(m_size > 0); return data()[m_size - 1]; } - char operator[](size_type) const; - char& operator[](size_type); + char operator[](size_type index) const { ASSERT(index < m_size); return data()[index]; } + char& operator[](size_type index) { ASSERT(index < m_size); return data()[index]; } - bool operator==(const String&) const; bool operator==(StringView) const; bool operator==(const char*) const; @@ -64,24 +62,37 @@ namespace BAN ErrorOr reserve(size_type); ErrorOr shrink_to_fit(); - StringView sv() const; + StringView sv() const { return StringView(data(), size()); } - bool empty() const; - size_type size() const; + bool empty() const { return m_size == 0; } + size_type size() const { return m_size; } size_type capacity() const; + char* data(); const char* data() const; private: ErrorOr ensure_capacity(size_type); - ErrorOr copy_impl(StringView); - void move_impl(String&&); + bool has_sso() const; + + bool fits_in_sso() const { return fits_in_sso(m_size); } + static bool fits_in_sso(size_type size) { return size < sso_capacity; } private: - char* m_data = nullptr; - size_type m_capacity = 0; - size_type m_size = 0; + struct SSOStorage + { + char storage[sso_capacity + 1] {}; + }; + struct GeneralStorage + { + size_type capacity { 0 }; + char* data; + }; + + private: + Variant m_storage { SSOStorage() }; + size_type m_size { 0 }; }; template From f312c3a4d727aed4e67f6935f238a3f1f37aba85 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sun, 29 Oct 2023 21:35:11 +0200 Subject: [PATCH 159/240] Kernel: Fix ACPI DSDT address Read x_dsdt address only if fadt's length contains it. Bochs seems to have version 1 fadt without the x_* fields. --- kernel/kernel/ACPI.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kernel/kernel/ACPI.cpp b/kernel/kernel/ACPI.cpp index 072f337a..86ac0a3a 100644 --- a/kernel/kernel/ACPI.cpp +++ b/kernel/kernel/ACPI.cpp @@ -211,7 +211,10 @@ namespace Kernel if (memcmp(header->signature, "FACP", 4) == 0) { auto* fadt = (FADT*)header; - paddr_t dsdt_paddr = fadt->x_dsdt; + + paddr_t dsdt_paddr = 0; + if (fadt->length > 140) // 140 is the offset of x_dsdt + dsdt_paddr = fadt->x_dsdt; if (dsdt_paddr == 0 || !PageTable::is_valid_pointer(dsdt_paddr)) dsdt_paddr = fadt->dsdt; From ea5ed3001e9644b990e10a7c8e8dbc523fcc36ed Mon Sep 17 00:00:00 2001 From: Bananymous Date: Mon, 30 Oct 2023 11:02:57 +0200 Subject: [PATCH 160/240] Toolchain: Clone GCC and Binutils from git This feels much cleaner than just downloading tar balls from pregiven urls. Also patching works much better like this! I added --disable-initfini-array since global constructors were not called. --- toolchain/binutils-2.39.patch | 21612 +---- toolchain/build.sh | 33 +- toolchain/gcc-12.2.0.patch | 131820 +------------------------------ 3 files changed, 195 insertions(+), 153270 deletions(-) diff --git a/toolchain/binutils-2.39.patch b/toolchain/binutils-2.39.patch index 272affae..39b6b48a 100644 --- a/toolchain/binutils-2.39.patch +++ b/toolchain/binutils-2.39.patch @@ -1,30 +1,48 @@ -diff -ruN binutils-2.39/bfd/config.bfd binutils-2.39_banan/bfd/config.bfd ---- binutils-2.39/bfd/config.bfd 2022-07-08 12:46:47.000000000 +0300 -+++ binutils-2.39_banan/bfd/config.bfd 2023-04-05 21:16:22.006486238 +0300 -@@ -429,6 +429,19 @@ - targ_defvec=avr_elf32_vec +From 0c0f7c2421aa650b11ae3914200c4be153718ca8 Mon Sep 17 00:00:00 2001 +From: Bananymous +Date: Sun, 29 Oct 2023 17:39:44 +0200 +Subject: [PATCH] Add target banan_os for i386 and x86_64 + +--- + bfd/config.bfd | 10 ++++++++++ + config.sub | 2 +- + gas/configure.tgt | 1 + + ld/configure.tgt | 6 ++++++ + 4 files changed, 18 insertions(+), 1 deletion(-) + +diff --git a/bfd/config.bfd b/bfd/config.bfd +index a4c6c8e885..1f083e596f 100644 +--- a/bfd/config.bfd ++++ b/bfd/config.bfd +@@ -602,6 +602,11 @@ case "${targ}" in + targ_defvec=i386_elf32_vec + targ_selvecs=iamcu_elf32_vec ;; - + i[3-7]86-*-banan_os*) + targ_defvec=i386_elf32_vec -+ targ_selvecs= -+ targ64_selvecs=x86_64_elf64_vec -+ ;; -+#ifdef BFD64 ++ targ_selvecs= ++ targ64_selvecs=x86_64_elf64_vec ++ ;; + i[3-7]86-*-dicos*) + targ_defvec=i386_elf32_vec + targ_selvecs=iamcu_elf32_vec +@@ -656,6 +661,11 @@ case "${targ}" in + targ64_selvecs=x86_64_elf64_vec + ;; + #ifdef BFD64 + x86_64-*-banan_os*) + targ_defvec=x86_64_elf64_vec -+ targ_selvecs=i386_elf32_vec -+ want64=true -+ ;; -+#endif -+ - bfin-*-*) - targ_defvec=bfin_elf32_vec - targ_selvecs=bfin_elf32_fdpic_vec -diff -ruN binutils-2.39/config.sub binutils-2.39_banan/config.sub ---- binutils-2.39/config.sub 2022-07-08 12:46:47.000000000 +0300 -+++ binutils-2.39_banan/config.sub 2023-04-05 21:13:22.429335849 +0300 -@@ -1754,7 +1754,7 @@ ++ targ_selvecs=i386_elf32_vec ++ want64=true ++ ;; + x86_64-*-cloudabi*) + targ_defvec=x86_64_elf64_cloudabi_vec + want64=true +diff --git a/config.sub b/config.sub +index dba16e84c7..9a37bb30fd 100755 +--- a/config.sub ++++ b/config.sub +@@ -1754,7 +1754,7 @@ case $os in | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \ | midnightbsd* | amdhsa* | unleashed* | emscripten* | wasi* \ | nsk* | powerunix* | genode* | zvmoe* | qnx* | emx* | zephyr* \ @@ -33,10 +51,11 @@ diff -ruN binutils-2.39/config.sub binutils-2.39_banan/config.sub ;; # This one is extra strict with allowed versions sco3.2v2 | sco3.2v[4-9]* | sco5v6*) -diff -ruN binutils-2.39/gas/configure.tgt binutils-2.39_banan/gas/configure.tgt ---- binutils-2.39/gas/configure.tgt 2022-07-08 12:46:47.000000000 +0300 -+++ binutils-2.39_banan/gas/configure.tgt 2023-04-05 21:17:52.545030175 +0300 -@@ -221,6 +221,7 @@ +diff --git a/gas/configure.tgt b/gas/configure.tgt +index 62f806bdfe..e05db38382 100644 +--- a/gas/configure.tgt ++++ b/gas/configure.tgt +@@ -221,6 +221,7 @@ case ${generic_target} in h8300-*-elf) fmt=elf ;; h8300-*-linux*) fmt=elf em=linux ;; @@ -44,21531 +63,30 @@ diff -ruN binutils-2.39/gas/configure.tgt binutils-2.39_banan/gas/configure.tgt i386-*-beospe*) fmt=coff em=pe ;; i386-*-beos*) fmt=elf ;; i386-*-elfiamcu) fmt=elf arch=iamcu ;; -diff -ruN binutils-2.39/ld/autom4te.cache/output.0 binutils-2.39_banan/ld/autom4te.cache/output.0 ---- binutils-2.39/ld/autom4te.cache/output.0 1970-01-01 02:00:00.000000000 +0200 -+++ binutils-2.39_banan/ld/autom4te.cache/output.0 2023-04-05 21:25:27.027638963 +0300 -@@ -0,0 +1,20178 @@ -+@%:@! /bin/sh -+@%:@ Guess values for system-dependent variables and create Makefiles. -+@%:@ Generated by GNU Autoconf 2.69 for ld 2.39. -+@%:@ -+@%:@ -+@%:@ Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. -+@%:@ -+@%:@ -+@%:@ This configure script is free software; the Free Software Foundation -+@%:@ gives unlimited permission to copy, distribute and modify it. -+## -------------------- ## -+## M4sh Initialization. ## -+## -------------------- ## -+ -+# Be more Bourne compatible -+DUALCASE=1; export DUALCASE # for MKS sh -+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : -+ emulate sh -+ NULLCMD=: -+ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which -+ # is contrary to our usage. Disable this feature. -+ alias -g '${1+"$@"}'='"$@"' -+ setopt NO_GLOB_SUBST -+else -+ case `(set -o) 2>/dev/null` in @%:@( -+ *posix*) : -+ set -o posix ;; @%:@( -+ *) : -+ ;; -+esac -+fi -+ -+ -+as_nl=' -+' -+export as_nl -+# Printing a long string crashes Solaris 7 /usr/bin/printf. -+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -+# Prefer a ksh shell builtin over an external printf program on Solaris, -+# but without wasting forks for bash or zsh. -+if test -z "$BASH_VERSION$ZSH_VERSION" \ -+ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then -+ as_echo='print -r --' -+ as_echo_n='print -rn --' -+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then -+ as_echo='printf %s\n' -+ as_echo_n='printf %s' -+else -+ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then -+ as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' -+ as_echo_n='/usr/ucb/echo -n' -+ else -+ as_echo_body='eval expr "X$1" : "X\\(.*\\)"' -+ as_echo_n_body='eval -+ arg=$1; -+ case $arg in @%:@( -+ *"$as_nl"*) -+ expr "X$arg" : "X\\(.*\\)$as_nl"; -+ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; -+ esac; -+ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" -+ ' -+ export as_echo_n_body -+ as_echo_n='sh -c $as_echo_n_body as_echo' -+ fi -+ export as_echo_body -+ as_echo='sh -c $as_echo_body as_echo' -+fi -+ -+# The user is always right. -+if test "${PATH_SEPARATOR+set}" != set; then -+ PATH_SEPARATOR=: -+ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { -+ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || -+ PATH_SEPARATOR=';' -+ } -+fi -+ -+ -+# IFS -+# We need space, tab and new line, in precisely that order. Quoting is -+# there to prevent editors from complaining about space-tab. -+# (If _AS_PATH_WALK were called with IFS unset, it would disable word -+# splitting by setting IFS to empty value.) -+IFS=" "" $as_nl" -+ -+# Find who we are. Look in the path if we contain no directory separator. -+as_myself= -+case $0 in @%:@(( -+ *[\\/]* ) as_myself=$0 ;; -+ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -+ done -+IFS=$as_save_IFS -+ -+ ;; -+esac -+# We did not find ourselves, most probably we were run as `sh COMMAND' -+# in which case we are not to be found in the path. -+if test "x$as_myself" = x; then -+ as_myself=$0 -+fi -+if test ! -f "$as_myself"; then -+ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 -+ exit 1 -+fi -+ -+# Unset variables that we do not need and which cause bugs (e.g. in -+# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -+# suppresses any "Segmentation fault" message there. '((' could -+# trigger a bug in pdksh 5.2.14. -+for as_var in BASH_ENV ENV MAIL MAILPATH -+do eval test x\${$as_var+set} = xset \ -+ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -+done -+PS1='$ ' -+PS2='> ' -+PS4='+ ' -+ -+# NLS nuisances. -+LC_ALL=C -+export LC_ALL -+LANGUAGE=C -+export LANGUAGE -+ -+# CDPATH. -+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH -+ -+# Use a proper internal environment variable to ensure we don't fall -+ # into an infinite loop, continuously re-executing ourselves. -+ if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then -+ _as_can_reexec=no; export _as_can_reexec; -+ # We cannot yet assume a decent shell, so we have to provide a -+# neutralization value for shells without unset; and this also -+# works around shells that cannot unset nonexistent variables. -+# Preserve -v and -x to the replacement shell. -+BASH_ENV=/dev/null -+ENV=/dev/null -+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV -+case $- in @%:@ (((( -+ *v*x* | *x*v* ) as_opts=-vx ;; -+ *v* ) as_opts=-v ;; -+ *x* ) as_opts=-x ;; -+ * ) as_opts= ;; -+esac -+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} -+# Admittedly, this is quite paranoid, since all the known shells bail -+# out after a failed `exec'. -+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 -+as_fn_exit 255 -+ fi -+ # We don't want this to propagate to other subprocesses. -+ { _as_can_reexec=; unset _as_can_reexec;} -+if test "x$CONFIG_SHELL" = x; then -+ as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : -+ emulate sh -+ NULLCMD=: -+ # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which -+ # is contrary to our usage. Disable this feature. -+ alias -g '\${1+\"\$@\"}'='\"\$@\"' -+ setopt NO_GLOB_SUBST -+else -+ case \`(set -o) 2>/dev/null\` in @%:@( -+ *posix*) : -+ set -o posix ;; @%:@( -+ *) : -+ ;; -+esac -+fi -+" -+ as_required="as_fn_return () { (exit \$1); } -+as_fn_success () { as_fn_return 0; } -+as_fn_failure () { as_fn_return 1; } -+as_fn_ret_success () { return 0; } -+as_fn_ret_failure () { return 1; } -+ -+exitcode=0 -+as_fn_success || { exitcode=1; echo as_fn_success failed.; } -+as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } -+as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } -+as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } -+if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : -+ -+else -+ exitcode=1; echo positional parameters were not saved. -+fi -+test x\$exitcode = x0 || exit 1 -+test -x / || exit 1" -+ as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO -+ as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO -+ eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && -+ test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 -+test \$(( 1 + 1 )) = 2 || exit 1 -+ -+ test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( -+ ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -+ ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO -+ ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO -+ PATH=/empty FPATH=/empty; export PATH FPATH -+ test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ -+ || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1" -+ if (eval "$as_required") 2>/dev/null; then : -+ as_have_required=yes -+else -+ as_have_required=no -+fi -+ if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : -+ -+else -+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+as_found=false -+for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ as_found=: -+ case $as_dir in @%:@( -+ /*) -+ for as_base in sh bash ksh sh5; do -+ # Try only shells that exist, to save several forks. -+ as_shell=$as_dir/$as_base -+ if { test -f "$as_shell" || test -f "$as_shell.exe"; } && -+ { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : -+ CONFIG_SHELL=$as_shell as_have_required=yes -+ if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : -+ break 2 -+fi -+fi -+ done;; -+ esac -+ as_found=false -+done -+$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && -+ { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : -+ CONFIG_SHELL=$SHELL as_have_required=yes -+fi; } -+IFS=$as_save_IFS -+ -+ -+ if test "x$CONFIG_SHELL" != x; then : -+ export CONFIG_SHELL -+ # We cannot yet assume a decent shell, so we have to provide a -+# neutralization value for shells without unset; and this also -+# works around shells that cannot unset nonexistent variables. -+# Preserve -v and -x to the replacement shell. -+BASH_ENV=/dev/null -+ENV=/dev/null -+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV -+case $- in @%:@ (((( -+ *v*x* | *x*v* ) as_opts=-vx ;; -+ *v* ) as_opts=-v ;; -+ *x* ) as_opts=-x ;; -+ * ) as_opts= ;; -+esac -+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} -+# Admittedly, this is quite paranoid, since all the known shells bail -+# out after a failed `exec'. -+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 -+exit 255 -+fi -+ -+ if test x$as_have_required = xno; then : -+ $as_echo "$0: This script requires a shell more modern than all" -+ $as_echo "$0: the shells that I found on your system." -+ if test x${ZSH_VERSION+set} = xset ; then -+ $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" -+ $as_echo "$0: be upgraded to zsh 4.3.4 or later." -+ else -+ $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, -+$0: including any error possibly output before this -+$0: message. Then install a modern shell, or manually run -+$0: the script under such a shell if you do have one." -+ fi -+ exit 1 -+fi -+fi -+fi -+SHELL=${CONFIG_SHELL-/bin/sh} -+export SHELL -+# Unset more variables known to interfere with behavior of common tools. -+CLICOLOR_FORCE= GREP_OPTIONS= -+unset CLICOLOR_FORCE GREP_OPTIONS -+ -+## --------------------- ## -+## M4sh Shell Functions. ## -+## --------------------- ## -+@%:@ as_fn_unset VAR -+@%:@ --------------- -+@%:@ Portably unset VAR. -+as_fn_unset () -+{ -+ { eval $1=; unset $1;} -+} -+as_unset=as_fn_unset -+ -+@%:@ as_fn_set_status STATUS -+@%:@ ----------------------- -+@%:@ Set @S|@? to STATUS, without forking. -+as_fn_set_status () -+{ -+ return $1 -+} @%:@ as_fn_set_status -+ -+@%:@ as_fn_exit STATUS -+@%:@ ----------------- -+@%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -+as_fn_exit () -+{ -+ set +e -+ as_fn_set_status $1 -+ exit $1 -+} @%:@ as_fn_exit -+ -+@%:@ as_fn_mkdir_p -+@%:@ ------------- -+@%:@ Create "@S|@as_dir" as a directory, including parents if necessary. -+as_fn_mkdir_p () -+{ -+ -+ case $as_dir in #( -+ -*) as_dir=./$as_dir;; -+ esac -+ test -d "$as_dir" || eval $as_mkdir_p || { -+ as_dirs= -+ while :; do -+ case $as_dir in #( -+ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( -+ *) as_qdir=$as_dir;; -+ esac -+ as_dirs="'$as_qdir' $as_dirs" -+ as_dir=`$as_dirname -- "$as_dir" || -+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ -+ X"$as_dir" : 'X\(//\)[^/]' \| \ -+ X"$as_dir" : 'X\(//\)$' \| \ -+ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -+$as_echo X"$as_dir" | -+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)[^/].*/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\).*/{ -+ s//\1/ -+ q -+ } -+ s/.*/./; q'` -+ test -d "$as_dir" && break -+ done -+ test -z "$as_dirs" || eval "mkdir $as_dirs" -+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" -+ -+ -+} @%:@ as_fn_mkdir_p -+ -+@%:@ as_fn_executable_p FILE -+@%:@ ----------------------- -+@%:@ Test if FILE is an executable regular file. -+as_fn_executable_p () -+{ -+ test -f "$1" && test -x "$1" -+} @%:@ as_fn_executable_p -+@%:@ as_fn_append VAR VALUE -+@%:@ ---------------------- -+@%:@ Append the text in VALUE to the end of the definition contained in VAR. Take -+@%:@ advantage of any shell optimizations that allow amortized linear growth over -+@%:@ repeated appends, instead of the typical quadratic growth present in naive -+@%:@ implementations. -+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : -+ eval 'as_fn_append () -+ { -+ eval $1+=\$2 -+ }' -+else -+ as_fn_append () -+ { -+ eval $1=\$$1\$2 -+ } -+fi # as_fn_append -+ -+@%:@ as_fn_arith ARG... -+@%:@ ------------------ -+@%:@ Perform arithmetic evaluation on the ARGs, and store the result in the -+@%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments -+@%:@ must be portable across @S|@(()) and expr. -+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : -+ eval 'as_fn_arith () -+ { -+ as_val=$(( $* )) -+ }' -+else -+ as_fn_arith () -+ { -+ as_val=`expr "$@" || test $? -eq 1` -+ } -+fi # as_fn_arith -+ -+ -+@%:@ as_fn_error STATUS ERROR [LINENO LOG_FD] -+@%:@ ---------------------------------------- -+@%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are -+@%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the -+@%:@ script with STATUS, using 1 if that was 0. -+as_fn_error () -+{ -+ as_status=$1; test $as_status -eq 0 && as_status=1 -+ if test "$4"; then -+ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 -+ fi -+ $as_echo "$as_me: error: $2" >&2 -+ as_fn_exit $as_status -+} @%:@ as_fn_error -+ -+if expr a : '\(a\)' >/dev/null 2>&1 && -+ test "X`expr 00001 : '.*\(...\)'`" = X001; then -+ as_expr=expr -+else -+ as_expr=false -+fi -+ -+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then -+ as_basename=basename -+else -+ as_basename=false -+fi -+ -+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then -+ as_dirname=dirname -+else -+ as_dirname=false -+fi -+ -+as_me=`$as_basename -- "$0" || -+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ -+ X"$0" : 'X\(//\)$' \| \ -+ X"$0" : 'X\(/\)' \| . 2>/dev/null || -+$as_echo X/"$0" | -+ sed '/^.*\/\([^/][^/]*\)\/*$/{ -+ s//\1/ -+ q -+ } -+ /^X\/\(\/\/\)$/{ -+ s//\1/ -+ q -+ } -+ /^X\/\(\/\).*/{ -+ s//\1/ -+ q -+ } -+ s/.*/./; q'` -+ -+# Avoid depending upon Character Ranges. -+as_cr_letters='abcdefghijklmnopqrstuvwxyz' -+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -+as_cr_Letters=$as_cr_letters$as_cr_LETTERS -+as_cr_digits='0123456789' -+as_cr_alnum=$as_cr_Letters$as_cr_digits -+ -+ -+ as_lineno_1=$LINENO as_lineno_1a=$LINENO -+ as_lineno_2=$LINENO as_lineno_2a=$LINENO -+ eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && -+ test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { -+ # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) -+ sed -n ' -+ p -+ /[$]LINENO/= -+ ' <$as_myself | -+ sed ' -+ s/[$]LINENO.*/&-/ -+ t lineno -+ b -+ :lineno -+ N -+ :loop -+ s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ -+ t loop -+ s/-\n.*// -+ ' >$as_me.lineno && -+ chmod +x "$as_me.lineno" || -+ { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } -+ -+ # If we had to re-execute with $CONFIG_SHELL, we're ensured to have -+ # already done that, so ensure we don't try to do so again and fall -+ # in an infinite loop. This has already happened in practice. -+ _as_can_reexec=no; export _as_can_reexec -+ # Don't try to exec as it changes $[0], causing all sort of problems -+ # (the dirname of $[0] is not the place where we might find the -+ # original and so on. Autoconf is especially sensitive to this). -+ . "./$as_me.lineno" -+ # Exit status is that of the last command. -+ exit -+} -+ -+ECHO_C= ECHO_N= ECHO_T= -+case `echo -n x` in @%:@((((( -+-n*) -+ case `echo 'xy\c'` in -+ *c*) ECHO_T=' ';; # ECHO_T is single tab character. -+ xy) ECHO_C='\c';; -+ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null -+ ECHO_T=' ';; -+ esac;; -+*) -+ ECHO_N='-n';; -+esac -+ -+rm -f conf$$ conf$$.exe conf$$.file -+if test -d conf$$.dir; then -+ rm -f conf$$.dir/conf$$.file -+else -+ rm -f conf$$.dir -+ mkdir conf$$.dir 2>/dev/null -+fi -+if (echo >conf$$.file) 2>/dev/null; then -+ if ln -s conf$$.file conf$$ 2>/dev/null; then -+ as_ln_s='ln -s' -+ # ... but there are two gotchas: -+ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. -+ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. -+ # In both cases, we have to default to `cp -pR'. -+ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || -+ as_ln_s='cp -pR' -+ elif ln conf$$.file conf$$ 2>/dev/null; then -+ as_ln_s=ln -+ else -+ as_ln_s='cp -pR' -+ fi -+else -+ as_ln_s='cp -pR' -+fi -+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -+rmdir conf$$.dir 2>/dev/null -+ -+if mkdir -p . 2>/dev/null; then -+ as_mkdir_p='mkdir -p "$as_dir"' -+else -+ test -d ./-p && rmdir ./-p -+ as_mkdir_p=false -+fi -+ -+as_test_x='test -x' -+as_executable_p=as_fn_executable_p -+ -+# Sed expression to map a string onto a valid CPP name. -+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" -+ -+# Sed expression to map a string onto a valid variable name. -+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" -+ -+SHELL=${CONFIG_SHELL-/bin/sh} -+ -+ -+test -n "$DJDIR" || exec 7<&0 &1 -+ -+# Name of the host. -+# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, -+# so uname gets run too. -+ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` -+ -+# -+# Initializations. -+# -+ac_default_prefix=/usr/local -+ac_clean_files= -+ac_config_libobj_dir=. -+LIB@&t@OBJS= -+cross_compiling=no -+subdirs= -+MFLAGS= -+MAKEFLAGS= -+ -+# Identity of this package. -+PACKAGE_NAME='ld' -+PACKAGE_TARNAME='ld' -+PACKAGE_VERSION='2.39' -+PACKAGE_STRING='ld 2.39' -+PACKAGE_BUGREPORT='' -+PACKAGE_URL='' -+ -+ac_unique_file="ldmain.c" -+# Factoring default headers for most tests. -+ac_includes_default="\ -+#include -+#ifdef HAVE_SYS_TYPES_H -+# include -+#endif -+#ifdef HAVE_SYS_STAT_H -+# include -+#endif -+#ifdef STDC_HEADERS -+# include -+# include -+#else -+# ifdef HAVE_STDLIB_H -+# include -+# endif -+#endif -+#ifdef HAVE_STRING_H -+# if !defined STDC_HEADERS && defined HAVE_MEMORY_H -+# include -+# endif -+# include -+#endif -+#ifdef HAVE_STRINGS_H -+# include -+#endif -+#ifdef HAVE_INTTYPES_H -+# include -+#endif -+#ifdef HAVE_STDINT_H -+# include -+#endif -+#ifdef HAVE_UNISTD_H -+# include -+#endif" -+ -+ac_header_list= -+ac_subst_vars='am__EXEEXT_FALSE -+am__EXEEXT_TRUE -+LTLIBOBJS -+LIB@&t@OBJS -+TESTCTFLIB -+TESTBFDLIB -+EMULATION_LIBPATH -+LIB_PATH -+EMUL_EXTRA_OFILES -+EMULATION_OFILES -+TDIRS -+EMUL -+elf_plt_unwind_list_options -+elf_shlib_list_options -+elf_list_options -+STRINGIFY -+zlibinc -+zlibdir -+NATIVE_LIB_DIRS -+HDEFINES -+do_compare -+GENINSRC_NEVER_FALSE -+GENINSRC_NEVER_TRUE -+LEXLIB -+LEX_OUTPUT_ROOT -+LEX -+YFLAGS -+YACC -+MSGMERGE -+MSGFMT -+MKINSTALLDIRS -+CATOBJEXT -+GENCAT -+INSTOBJEXT -+DATADIRNAME -+CATALOGS -+POSUB -+GMSGFMT -+XGETTEXT -+INCINTL -+LIBINTL_DEP -+LIBINTL -+USE_NLS -+WARN_WRITE_STRINGS -+NO_WERROR -+WARN_CFLAGS_FOR_BUILD -+WARN_CFLAGS -+JANSSON_LIBS -+JANSSON_CFLAGS -+PKG_CONFIG_LIBDIR -+PKG_CONFIG_PATH -+PKG_CONFIG -+enable_libctf -+ENABLE_LIBCTF_FALSE -+ENABLE_LIBCTF_TRUE -+enable_initfini_array -+installed_linker -+install_as_default -+TARGET_SYSTEM_ROOT_DEFINE -+TARGET_SYSTEM_ROOT -+use_sysroot -+ENABLE_BFD_64_BIT_FALSE -+ENABLE_BFD_64_BIT_TRUE -+LARGEFILE_CPPFLAGS -+CXXCPP -+OTOOL64 -+OTOOL -+LIPO -+NMEDIT -+DSYMUTIL -+RANLIB -+AR -+OBJDUMP -+LN_S -+NM -+ac_ct_DUMPBIN -+DUMPBIN -+LD -+FGREP -+SED -+LIBTOOL -+EGREP -+CPP -+GREP -+am__fastdepCXX_FALSE -+am__fastdepCXX_TRUE -+CXXDEPMODE -+ac_ct_CXX -+CXXFLAGS -+CXX -+am__fastdepCC_FALSE -+am__fastdepCC_TRUE -+CCDEPMODE -+am__nodep -+AMDEPBACKSLASH -+AMDEP_FALSE -+AMDEP_TRUE -+am__quote -+am__include -+DEPDIR -+OBJEXT -+EXEEXT -+ac_ct_CC -+CPPFLAGS -+LDFLAGS -+CFLAGS -+CC -+MAINT -+MAINTAINER_MODE_FALSE -+MAINTAINER_MODE_TRUE -+AM_BACKSLASH -+AM_DEFAULT_VERBOSITY -+AM_DEFAULT_V -+AM_V -+am__untar -+am__tar -+AMTAR -+am__leading_dot -+SET_MAKE -+AWK -+mkdir_p -+MKDIR_P -+INSTALL_STRIP_PROGRAM -+STRIP -+install_sh -+MAKEINFO -+AUTOHEADER -+AUTOMAKE -+AUTOCONF -+ACLOCAL -+VERSION -+PACKAGE -+CYGPATH_W -+am__isrc -+INSTALL_DATA -+INSTALL_SCRIPT -+INSTALL_PROGRAM -+target_os -+target_vendor -+target_cpu -+target -+host_os -+host_vendor -+host_cpu -+host -+build_os -+build_vendor -+build_cpu -+build -+target_alias -+host_alias -+build_alias -+LIBS -+ECHO_T -+ECHO_N -+ECHO_C -+DEFS -+mandir -+localedir -+libdir -+psdir -+pdfdir -+dvidir -+htmldir -+infodir -+docdir -+oldincludedir -+includedir -+localstatedir -+sharedstatedir -+sysconfdir -+datadir -+datarootdir -+libexecdir -+sbindir -+bindir -+program_transform_name -+prefix -+exec_prefix -+PACKAGE_URL -+PACKAGE_BUGREPORT -+PACKAGE_STRING -+PACKAGE_VERSION -+PACKAGE_TARNAME -+PACKAGE_NAME -+PATH_SEPARATOR -+SHELL' -+ac_subst_files='' -+ac_user_opts=' -+enable_option_checking -+enable_silent_rules -+enable_maintainer_mode -+enable_dependency_tracking -+enable_shared -+enable_static -+with_pic -+enable_fast_install -+with_gnu_ld -+enable_libtool_lock -+enable_plugins -+enable_largefile -+enable_checking -+with_lib_path -+enable_targets -+enable_64_bit_bfd -+with_sysroot -+enable_gold -+enable_got -+enable_compressed_debug_sections -+enable_new_dtags -+enable_relro -+enable_textrel_check -+enable_separate_code -+enable_warn_execstack -+enable_warn_rwx_segments -+enable_default_execstack -+enable_error_handling_script -+enable_default_hash_style -+enable_initfini_array -+enable_libctf -+enable_jansson -+enable_werror -+enable_build_warnings -+enable_nls -+with_system_zlib -+' -+ ac_precious_vars='build_alias -+host_alias -+target_alias -+CC -+CFLAGS -+LDFLAGS -+LIBS -+CPPFLAGS -+CXX -+CXXFLAGS -+CCC -+CPP -+CXXCPP -+PKG_CONFIG -+PKG_CONFIG_PATH -+PKG_CONFIG_LIBDIR -+JANSSON_CFLAGS -+JANSSON_LIBS -+YACC -+YFLAGS' -+ -+ -+# Initialize some variables set by options. -+ac_init_help= -+ac_init_version=false -+ac_unrecognized_opts= -+ac_unrecognized_sep= -+# The variables have the same names as the options, with -+# dashes changed to underlines. -+cache_file=/dev/null -+exec_prefix=NONE -+no_create= -+no_recursion= -+prefix=NONE -+program_prefix=NONE -+program_suffix=NONE -+program_transform_name=s,x,x, -+silent= -+site= -+srcdir= -+verbose= -+x_includes=NONE -+x_libraries=NONE -+ -+# Installation directory options. -+# These are left unexpanded so users can "make install exec_prefix=/foo" -+# and all the variables that are supposed to be based on exec_prefix -+# by default will actually change. -+# Use braces instead of parens because sh, perl, etc. also accept them. -+# (The list follows the same order as the GNU Coding Standards.) -+bindir='${exec_prefix}/bin' -+sbindir='${exec_prefix}/sbin' -+libexecdir='${exec_prefix}/libexec' -+datarootdir='${prefix}/share' -+datadir='${datarootdir}' -+sysconfdir='${prefix}/etc' -+sharedstatedir='${prefix}/com' -+localstatedir='${prefix}/var' -+includedir='${prefix}/include' -+oldincludedir='/usr/include' -+docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' -+infodir='${datarootdir}/info' -+htmldir='${docdir}' -+dvidir='${docdir}' -+pdfdir='${docdir}' -+psdir='${docdir}' -+libdir='${exec_prefix}/lib' -+localedir='${datarootdir}/locale' -+mandir='${datarootdir}/man' -+ -+ac_prev= -+ac_dashdash= -+for ac_option -+do -+ # If the previous option needs an argument, assign it. -+ if test -n "$ac_prev"; then -+ eval $ac_prev=\$ac_option -+ ac_prev= -+ continue -+ fi -+ -+ case $ac_option in -+ *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; -+ *=) ac_optarg= ;; -+ *) ac_optarg=yes ;; -+ esac -+ -+ # Accept the important Cygnus configure options, so we can diagnose typos. -+ -+ case $ac_dashdash$ac_option in -+ --) -+ ac_dashdash=yes ;; -+ -+ -bindir | --bindir | --bindi | --bind | --bin | --bi) -+ ac_prev=bindir ;; -+ -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) -+ bindir=$ac_optarg ;; -+ -+ -build | --build | --buil | --bui | --bu) -+ ac_prev=build_alias ;; -+ -build=* | --build=* | --buil=* | --bui=* | --bu=*) -+ build_alias=$ac_optarg ;; -+ -+ -cache-file | --cache-file | --cache-fil | --cache-fi \ -+ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) -+ ac_prev=cache_file ;; -+ -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ -+ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) -+ cache_file=$ac_optarg ;; -+ -+ --config-cache | -C) -+ cache_file=config.cache ;; -+ -+ -datadir | --datadir | --datadi | --datad) -+ ac_prev=datadir ;; -+ -datadir=* | --datadir=* | --datadi=* | --datad=*) -+ datadir=$ac_optarg ;; -+ -+ -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ -+ | --dataroo | --dataro | --datar) -+ ac_prev=datarootdir ;; -+ -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ -+ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) -+ datarootdir=$ac_optarg ;; -+ -+ -disable-* | --disable-*) -+ ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` -+ # Reject names that are not valid shell variable names. -+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && -+ as_fn_error $? "invalid feature name: $ac_useropt" -+ ac_useropt_orig=$ac_useropt -+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` -+ case $ac_user_opts in -+ *" -+"enable_$ac_useropt" -+"*) ;; -+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" -+ ac_unrecognized_sep=', ';; -+ esac -+ eval enable_$ac_useropt=no ;; -+ -+ -docdir | --docdir | --docdi | --doc | --do) -+ ac_prev=docdir ;; -+ -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) -+ docdir=$ac_optarg ;; -+ -+ -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) -+ ac_prev=dvidir ;; -+ -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) -+ dvidir=$ac_optarg ;; -+ -+ -enable-* | --enable-*) -+ ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` -+ # Reject names that are not valid shell variable names. -+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && -+ as_fn_error $? "invalid feature name: $ac_useropt" -+ ac_useropt_orig=$ac_useropt -+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` -+ case $ac_user_opts in -+ *" -+"enable_$ac_useropt" -+"*) ;; -+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" -+ ac_unrecognized_sep=', ';; -+ esac -+ eval enable_$ac_useropt=\$ac_optarg ;; -+ -+ -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ -+ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ -+ | --exec | --exe | --ex) -+ ac_prev=exec_prefix ;; -+ -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ -+ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ -+ | --exec=* | --exe=* | --ex=*) -+ exec_prefix=$ac_optarg ;; -+ -+ -gas | --gas | --ga | --g) -+ # Obsolete; use --with-gas. -+ with_gas=yes ;; -+ -+ -help | --help | --hel | --he | -h) -+ ac_init_help=long ;; -+ -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) -+ ac_init_help=recursive ;; -+ -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) -+ ac_init_help=short ;; -+ -+ -host | --host | --hos | --ho) -+ ac_prev=host_alias ;; -+ -host=* | --host=* | --hos=* | --ho=*) -+ host_alias=$ac_optarg ;; -+ -+ -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) -+ ac_prev=htmldir ;; -+ -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ -+ | --ht=*) -+ htmldir=$ac_optarg ;; -+ -+ -includedir | --includedir | --includedi | --included | --include \ -+ | --includ | --inclu | --incl | --inc) -+ ac_prev=includedir ;; -+ -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ -+ | --includ=* | --inclu=* | --incl=* | --inc=*) -+ includedir=$ac_optarg ;; -+ -+ -infodir | --infodir | --infodi | --infod | --info | --inf) -+ ac_prev=infodir ;; -+ -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) -+ infodir=$ac_optarg ;; -+ -+ -libdir | --libdir | --libdi | --libd) -+ ac_prev=libdir ;; -+ -libdir=* | --libdir=* | --libdi=* | --libd=*) -+ libdir=$ac_optarg ;; -+ -+ -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ -+ | --libexe | --libex | --libe) -+ ac_prev=libexecdir ;; -+ -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ -+ | --libexe=* | --libex=* | --libe=*) -+ libexecdir=$ac_optarg ;; -+ -+ -localedir | --localedir | --localedi | --localed | --locale) -+ ac_prev=localedir ;; -+ -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) -+ localedir=$ac_optarg ;; -+ -+ -localstatedir | --localstatedir | --localstatedi | --localstated \ -+ | --localstate | --localstat | --localsta | --localst | --locals) -+ ac_prev=localstatedir ;; -+ -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ -+ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) -+ localstatedir=$ac_optarg ;; -+ -+ -mandir | --mandir | --mandi | --mand | --man | --ma | --m) -+ ac_prev=mandir ;; -+ -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) -+ mandir=$ac_optarg ;; -+ -+ -nfp | --nfp | --nf) -+ # Obsolete; use --without-fp. -+ with_fp=no ;; -+ -+ -no-create | --no-create | --no-creat | --no-crea | --no-cre \ -+ | --no-cr | --no-c | -n) -+ no_create=yes ;; -+ -+ -no-recursion | --no-recursion | --no-recursio | --no-recursi \ -+ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) -+ no_recursion=yes ;; -+ -+ -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ -+ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ -+ | --oldin | --oldi | --old | --ol | --o) -+ ac_prev=oldincludedir ;; -+ -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ -+ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ -+ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) -+ oldincludedir=$ac_optarg ;; -+ -+ -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) -+ ac_prev=prefix ;; -+ -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) -+ prefix=$ac_optarg ;; -+ -+ -program-prefix | --program-prefix | --program-prefi | --program-pref \ -+ | --program-pre | --program-pr | --program-p) -+ ac_prev=program_prefix ;; -+ -program-prefix=* | --program-prefix=* | --program-prefi=* \ -+ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) -+ program_prefix=$ac_optarg ;; -+ -+ -program-suffix | --program-suffix | --program-suffi | --program-suff \ -+ | --program-suf | --program-su | --program-s) -+ ac_prev=program_suffix ;; -+ -program-suffix=* | --program-suffix=* | --program-suffi=* \ -+ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) -+ program_suffix=$ac_optarg ;; -+ -+ -program-transform-name | --program-transform-name \ -+ | --program-transform-nam | --program-transform-na \ -+ | --program-transform-n | --program-transform- \ -+ | --program-transform | --program-transfor \ -+ | --program-transfo | --program-transf \ -+ | --program-trans | --program-tran \ -+ | --progr-tra | --program-tr | --program-t) -+ ac_prev=program_transform_name ;; -+ -program-transform-name=* | --program-transform-name=* \ -+ | --program-transform-nam=* | --program-transform-na=* \ -+ | --program-transform-n=* | --program-transform-=* \ -+ | --program-transform=* | --program-transfor=* \ -+ | --program-transfo=* | --program-transf=* \ -+ | --program-trans=* | --program-tran=* \ -+ | --progr-tra=* | --program-tr=* | --program-t=*) -+ program_transform_name=$ac_optarg ;; -+ -+ -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) -+ ac_prev=pdfdir ;; -+ -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) -+ pdfdir=$ac_optarg ;; -+ -+ -psdir | --psdir | --psdi | --psd | --ps) -+ ac_prev=psdir ;; -+ -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) -+ psdir=$ac_optarg ;; -+ -+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \ -+ | -silent | --silent | --silen | --sile | --sil) -+ silent=yes ;; -+ -+ -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) -+ ac_prev=sbindir ;; -+ -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ -+ | --sbi=* | --sb=*) -+ sbindir=$ac_optarg ;; -+ -+ -sharedstatedir | --sharedstatedir | --sharedstatedi \ -+ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ -+ | --sharedst | --shareds | --shared | --share | --shar \ -+ | --sha | --sh) -+ ac_prev=sharedstatedir ;; -+ -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ -+ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ -+ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ -+ | --sha=* | --sh=*) -+ sharedstatedir=$ac_optarg ;; -+ -+ -site | --site | --sit) -+ ac_prev=site ;; -+ -site=* | --site=* | --sit=*) -+ site=$ac_optarg ;; -+ -+ -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) -+ ac_prev=srcdir ;; -+ -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) -+ srcdir=$ac_optarg ;; -+ -+ -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ -+ | --syscon | --sysco | --sysc | --sys | --sy) -+ ac_prev=sysconfdir ;; -+ -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ -+ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) -+ sysconfdir=$ac_optarg ;; -+ -+ -target | --target | --targe | --targ | --tar | --ta | --t) -+ ac_prev=target_alias ;; -+ -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) -+ target_alias=$ac_optarg ;; -+ -+ -v | -verbose | --verbose | --verbos | --verbo | --verb) -+ verbose=yes ;; -+ -+ -version | --version | --versio | --versi | --vers | -V) -+ ac_init_version=: ;; -+ -+ -with-* | --with-*) -+ ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` -+ # Reject names that are not valid shell variable names. -+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && -+ as_fn_error $? "invalid package name: $ac_useropt" -+ ac_useropt_orig=$ac_useropt -+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` -+ case $ac_user_opts in -+ *" -+"with_$ac_useropt" -+"*) ;; -+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" -+ ac_unrecognized_sep=', ';; -+ esac -+ eval with_$ac_useropt=\$ac_optarg ;; -+ -+ -without-* | --without-*) -+ ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` -+ # Reject names that are not valid shell variable names. -+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && -+ as_fn_error $? "invalid package name: $ac_useropt" -+ ac_useropt_orig=$ac_useropt -+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` -+ case $ac_user_opts in -+ *" -+"with_$ac_useropt" -+"*) ;; -+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" -+ ac_unrecognized_sep=', ';; -+ esac -+ eval with_$ac_useropt=no ;; -+ -+ --x) -+ # Obsolete; use --with-x. -+ with_x=yes ;; -+ -+ -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ -+ | --x-incl | --x-inc | --x-in | --x-i) -+ ac_prev=x_includes ;; -+ -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ -+ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) -+ x_includes=$ac_optarg ;; -+ -+ -x-libraries | --x-libraries | --x-librarie | --x-librari \ -+ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) -+ ac_prev=x_libraries ;; -+ -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ -+ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) -+ x_libraries=$ac_optarg ;; -+ -+ -*) as_fn_error $? "unrecognized option: \`$ac_option' -+Try \`$0 --help' for more information" -+ ;; -+ -+ *=*) -+ ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` -+ # Reject names that are not valid shell variable names. -+ case $ac_envvar in #( -+ '' | [0-9]* | *[!_$as_cr_alnum]* ) -+ as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; -+ esac -+ eval $ac_envvar=\$ac_optarg -+ export $ac_envvar ;; -+ -+ *) -+ # FIXME: should be removed in autoconf 3.0. -+ $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 -+ expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && -+ $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 -+ : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" -+ ;; -+ -+ esac -+done -+ -+if test -n "$ac_prev"; then -+ ac_option=--`echo $ac_prev | sed 's/_/-/g'` -+ as_fn_error $? "missing argument to $ac_option" -+fi -+ -+if test -n "$ac_unrecognized_opts"; then -+ case $enable_option_checking in -+ no) ;; -+ fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; -+ *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; -+ esac -+fi -+ -+# Check all directory arguments for consistency. -+for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ -+ datadir sysconfdir sharedstatedir localstatedir includedir \ -+ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ -+ libdir localedir mandir -+do -+ eval ac_val=\$$ac_var -+ # Remove trailing slashes. -+ case $ac_val in -+ */ ) -+ ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` -+ eval $ac_var=\$ac_val;; -+ esac -+ # Be sure to have absolute directory names. -+ case $ac_val in -+ [\\/$]* | ?:[\\/]* ) continue;; -+ NONE | '' ) case $ac_var in *prefix ) continue;; esac;; -+ esac -+ as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" -+done -+ -+# There might be people who depend on the old broken behavior: `$host' -+# used to hold the argument of --host etc. -+# FIXME: To remove some day. -+build=$build_alias -+host=$host_alias -+target=$target_alias -+ -+# FIXME: To remove some day. -+if test "x$host_alias" != x; then -+ if test "x$build_alias" = x; then -+ cross_compiling=maybe -+ elif test "x$build_alias" != "x$host_alias"; then -+ cross_compiling=yes -+ fi -+fi -+ -+ac_tool_prefix= -+test -n "$host_alias" && ac_tool_prefix=$host_alias- -+ -+test "$silent" = yes && exec 6>/dev/null -+ -+ -+ac_pwd=`pwd` && test -n "$ac_pwd" && -+ac_ls_di=`ls -di .` && -+ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || -+ as_fn_error $? "working directory cannot be determined" -+test "X$ac_ls_di" = "X$ac_pwd_ls_di" || -+ as_fn_error $? "pwd does not report name of working directory" -+ -+ -+# Find the source files, if location was not specified. -+if test -z "$srcdir"; then -+ ac_srcdir_defaulted=yes -+ # Try the directory containing this script, then the parent directory. -+ ac_confdir=`$as_dirname -- "$as_myself" || -+$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ -+ X"$as_myself" : 'X\(//\)[^/]' \| \ -+ X"$as_myself" : 'X\(//\)$' \| \ -+ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || -+$as_echo X"$as_myself" | -+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)[^/].*/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\).*/{ -+ s//\1/ -+ q -+ } -+ s/.*/./; q'` -+ srcdir=$ac_confdir -+ if test ! -r "$srcdir/$ac_unique_file"; then -+ srcdir=.. -+ fi -+else -+ ac_srcdir_defaulted=no -+fi -+if test ! -r "$srcdir/$ac_unique_file"; then -+ test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." -+ as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" -+fi -+ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" -+ac_abs_confdir=`( -+ cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" -+ pwd)` -+# When building in place, set srcdir=. -+if test "$ac_abs_confdir" = "$ac_pwd"; then -+ srcdir=. -+fi -+# Remove unnecessary trailing slashes from srcdir. -+# Double slashes in file names in object file debugging info -+# mess up M-x gdb in Emacs. -+case $srcdir in -+*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; -+esac -+for ac_var in $ac_precious_vars; do -+ eval ac_env_${ac_var}_set=\${${ac_var}+set} -+ eval ac_env_${ac_var}_value=\$${ac_var} -+ eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} -+ eval ac_cv_env_${ac_var}_value=\$${ac_var} -+done -+ -+# -+# Report the --help message. -+# -+if test "$ac_init_help" = "long"; then -+ # Omit some internal or obsolete options to make the list less imposing. -+ # This message is too long to be a string in the A/UX 3.1 sh. -+ cat <<_ACEOF -+\`configure' configures ld 2.39 to adapt to many kinds of systems. -+ -+Usage: $0 [OPTION]... [VAR=VALUE]... -+ -+To assign environment variables (e.g., CC, CFLAGS...), specify them as -+VAR=VALUE. See below for descriptions of some of the useful variables. -+ -+Defaults for the options are specified in brackets. -+ -+Configuration: -+ -h, --help display this help and exit -+ --help=short display options specific to this package -+ --help=recursive display the short help of all the included packages -+ -V, --version display version information and exit -+ -q, --quiet, --silent do not print \`checking ...' messages -+ --cache-file=FILE cache test results in FILE [disabled] -+ -C, --config-cache alias for \`--cache-file=config.cache' -+ -n, --no-create do not create output files -+ --srcdir=DIR find the sources in DIR [configure dir or \`..'] -+ -+Installation directories: -+ --prefix=PREFIX install architecture-independent files in PREFIX -+ @<:@@S|@ac_default_prefix@:>@ -+ --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX -+ @<:@PREFIX@:>@ -+ -+By default, \`make install' will install all the files in -+\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify -+an installation prefix other than \`$ac_default_prefix' using \`--prefix', -+for instance \`--prefix=\$HOME'. -+ -+For better control, use the options below. -+ -+Fine tuning of the installation directories: -+ --bindir=DIR user executables [EPREFIX/bin] -+ --sbindir=DIR system admin executables [EPREFIX/sbin] -+ --libexecdir=DIR program executables [EPREFIX/libexec] -+ --sysconfdir=DIR read-only single-machine data [PREFIX/etc] -+ --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] -+ --localstatedir=DIR modifiable single-machine data [PREFIX/var] -+ --libdir=DIR object code libraries [EPREFIX/lib] -+ --includedir=DIR C header files [PREFIX/include] -+ --oldincludedir=DIR C header files for non-gcc [/usr/include] -+ --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] -+ --datadir=DIR read-only architecture-independent data [DATAROOTDIR] -+ --infodir=DIR info documentation [DATAROOTDIR/info] -+ --localedir=DIR locale-dependent data [DATAROOTDIR/locale] -+ --mandir=DIR man documentation [DATAROOTDIR/man] -+ --docdir=DIR documentation root @<:@DATAROOTDIR/doc/ld@:>@ -+ --htmldir=DIR html documentation [DOCDIR] -+ --dvidir=DIR dvi documentation [DOCDIR] -+ --pdfdir=DIR pdf documentation [DOCDIR] -+ --psdir=DIR ps documentation [DOCDIR] -+_ACEOF -+ -+ cat <<\_ACEOF -+ -+Program names: -+ --program-prefix=PREFIX prepend PREFIX to installed program names -+ --program-suffix=SUFFIX append SUFFIX to installed program names -+ --program-transform-name=PROGRAM run sed PROGRAM on installed program names -+ -+System types: -+ --build=BUILD configure for building on BUILD [guessed] -+ --host=HOST cross-compile to build programs to run on HOST [BUILD] -+ --target=TARGET configure for building compilers for TARGET [HOST] -+_ACEOF -+fi -+ -+if test -n "$ac_init_help"; then -+ case $ac_init_help in -+ short | recursive ) echo "Configuration of ld 2.39:";; -+ esac -+ cat <<\_ACEOF -+ -+Optional Features: -+ --disable-option-checking ignore unrecognized --enable/--with options -+ --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) -+ --enable-FEATURE[=ARG] include FEATURE [ARG=yes] -+ --enable-silent-rules less verbose build output (undo: "make V=1") -+ --disable-silent-rules verbose build output (undo: "make V=0") -+ --enable-maintainer-mode -+ enable make rules and dependencies not useful (and -+ sometimes confusing) to the casual installer -+ --enable-dependency-tracking -+ do not reject slow dependency extractors -+ --disable-dependency-tracking -+ speeds up one-time build -+ --enable-shared@<:@=PKGS@:>@ build shared libraries @<:@default=yes@:>@ -+ --enable-static@<:@=PKGS@:>@ build static libraries @<:@default=yes@:>@ -+ --enable-fast-install@<:@=PKGS@:>@ -+ optimize for fast installation @<:@default=yes@:>@ -+ --disable-libtool-lock avoid locking (might break parallel builds) -+ --enable-plugins Enable support for plugins -+ --disable-largefile omit support for large files -+ --enable-checking enable run-time checks -+ --enable-targets alternative target configurations -+ --enable-64-bit-bfd 64-bit support (on hosts with narrower word sizes) -+ --enable-gold[=ARG] build gold [ARG={default,yes,no}] -+ --enable-got= GOT handling scheme (target, single, negative, -+ multigot) -+ --enable-compressed-debug-sections={all,ld,none} -+ compress debug sections by default] -+ --enable-new-dtags set DT_RUNPATH instead of DT_RPATH by default] -+ --enable-relro enable -z relro in ELF linker by default -+ --enable-textrel-check=@<:@yes|no|warning|error@:>@ -+ enable DT_TEXTREL check in ELF linker -+ --enable-separate-code enable -z separate-code in ELF linker by default -+ --enable-warn-execstack enable warnings when creating an executable stack -+ --enable-warn-rwx-segments -+ enable warnings when creating segements with RWX -+ permissions -+ --enable-default-execstack -+ create an executable stack if an input file is -+ missing a .note.GNU-stack section -+ --enable-error-handling-script -+ enable/disable support for the -+ --error-handling-script option -+ --enable-default-hash-style={sysv,gnu,both} -+ use this default hash style -+ --disable-initfini-array do not use .init_array/.fini_array sections -+ --enable-libctf Handle .ctf type-info sections @<:@default=yes@:>@ -+ --enable-jansson enable jansson @<:@default=no@:>@ -+ --enable-werror treat compile warnings as errors -+ --enable-build-warnings enable build-time compiler warnings -+ --disable-nls do not use Native Language Support -+ -+Optional Packages: -+ --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] -+ --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) -+ --with-pic try to use only PIC/non-PIC objects @<:@default=use -+ both@:>@ -+ --with-gnu-ld assume the C compiler uses GNU ld @<:@default=no@:>@ -+ --with-lib-path=dir1:dir2... set default LIB_PATH -+ --with-sysroot=DIR Search for usr/lib et al within DIR. -+ --with-system-zlib use installed libz -+ -+Some influential environment variables: -+ CC C compiler command -+ CFLAGS C compiler flags -+ LDFLAGS linker flags, e.g. -L if you have libraries in a -+ nonstandard directory -+ LIBS libraries to pass to the linker, e.g. -l -+ CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if -+ you have headers in a nonstandard directory -+ CXX C++ compiler command -+ CXXFLAGS C++ compiler flags -+ CPP C preprocessor -+ CXXCPP C++ preprocessor -+ PKG_CONFIG path to pkg-config utility -+ PKG_CONFIG_PATH -+ directories to add to pkg-config's search path -+ PKG_CONFIG_LIBDIR -+ path overriding pkg-config's built-in search path -+ JANSSON_CFLAGS -+ C compiler flags for JANSSON, overriding pkg-config -+ JANSSON_LIBS -+ linker flags for JANSSON, overriding pkg-config -+ YACC The `Yet Another Compiler Compiler' implementation to use. -+ Defaults to the first program found out of: `bison -y', `byacc', -+ `yacc'. -+ YFLAGS The list of arguments that will be passed by default to @S|@YACC. -+ This script will default YFLAGS to the empty string to avoid a -+ default value of `-d' given by some make applications. -+ -+Use these variables to override the choices made by `configure' or to help -+it to find libraries and programs with nonstandard names/locations. -+ -+Report bugs to the package provider. -+_ACEOF -+ac_status=$? -+fi -+ -+if test "$ac_init_help" = "recursive"; then -+ # If there are subdirs, report their specific --help. -+ for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue -+ test -d "$ac_dir" || -+ { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || -+ continue -+ ac_builddir=. -+ -+case "$ac_dir" in -+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -+*) -+ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` -+ # A ".." for each directory in $ac_dir_suffix. -+ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` -+ case $ac_top_builddir_sub in -+ "") ac_top_builddir_sub=. ac_top_build_prefix= ;; -+ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; -+ esac ;; -+esac -+ac_abs_top_builddir=$ac_pwd -+ac_abs_builddir=$ac_pwd$ac_dir_suffix -+# for backward compatibility: -+ac_top_builddir=$ac_top_build_prefix -+ -+case $srcdir in -+ .) # We are building in place. -+ ac_srcdir=. -+ ac_top_srcdir=$ac_top_builddir_sub -+ ac_abs_top_srcdir=$ac_pwd ;; -+ [\\/]* | ?:[\\/]* ) # Absolute name. -+ ac_srcdir=$srcdir$ac_dir_suffix; -+ ac_top_srcdir=$srcdir -+ ac_abs_top_srcdir=$srcdir ;; -+ *) # Relative name. -+ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix -+ ac_top_srcdir=$ac_top_build_prefix$srcdir -+ ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -+esac -+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix -+ -+ cd "$ac_dir" || { ac_status=$?; continue; } -+ # Check for guested configure. -+ if test -f "$ac_srcdir/configure.gnu"; then -+ echo && -+ $SHELL "$ac_srcdir/configure.gnu" --help=recursive -+ elif test -f "$ac_srcdir/configure"; then -+ echo && -+ $SHELL "$ac_srcdir/configure" --help=recursive -+ else -+ $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 -+ fi || ac_status=$? -+ cd "$ac_pwd" || { ac_status=$?; break; } -+ done -+fi -+ -+test -n "$ac_init_help" && exit $ac_status -+if $ac_init_version; then -+ cat <<\_ACEOF -+ld configure 2.39 -+generated by GNU Autoconf 2.69 -+ -+Copyright (C) 2012 Free Software Foundation, Inc. -+This configure script is free software; the Free Software Foundation -+gives unlimited permission to copy, distribute and modify it. -+_ACEOF -+ exit -+fi -+ -+## ------------------------ ## -+## Autoconf initialization. ## -+## ------------------------ ## -+ -+@%:@ ac_fn_c_try_compile LINENO -+@%:@ -------------------------- -+@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. -+ac_fn_c_try_compile () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ rm -f conftest.$ac_objext -+ if { { ac_try="$ac_compile" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_compile") 2>conftest.err -+ ac_status=$? -+ if test -s conftest.err; then -+ grep -v '^ *+' conftest.err >conftest.er1 -+ cat conftest.er1 >&5 -+ mv -f conftest.er1 conftest.err -+ fi -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } && { -+ test -z "$ac_c_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest.$ac_objext; then : -+ ac_retval=0 -+else -+ $as_echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_retval=1 -+fi -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ as_fn_set_status $ac_retval -+ -+} @%:@ ac_fn_c_try_compile -+ -+@%:@ ac_fn_cxx_try_compile LINENO -+@%:@ ---------------------------- -+@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. -+ac_fn_cxx_try_compile () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ rm -f conftest.$ac_objext -+ if { { ac_try="$ac_compile" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_compile") 2>conftest.err -+ ac_status=$? -+ if test -s conftest.err; then -+ grep -v '^ *+' conftest.err >conftest.er1 -+ cat conftest.er1 >&5 -+ mv -f conftest.er1 conftest.err -+ fi -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } && { -+ test -z "$ac_cxx_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest.$ac_objext; then : -+ ac_retval=0 -+else -+ $as_echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_retval=1 -+fi -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ as_fn_set_status $ac_retval -+ -+} @%:@ ac_fn_cxx_try_compile -+ -+@%:@ ac_fn_c_try_cpp LINENO -+@%:@ ---------------------- -+@%:@ Try to preprocess conftest.@S|@ac_ext, and return whether this succeeded. -+ac_fn_c_try_cpp () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ if { { ac_try="$ac_cpp conftest.$ac_ext" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err -+ ac_status=$? -+ if test -s conftest.err; then -+ grep -v '^ *+' conftest.err >conftest.er1 -+ cat conftest.er1 >&5 -+ mv -f conftest.er1 conftest.err -+ fi -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } > conftest.i && { -+ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || -+ test ! -s conftest.err -+ }; then : -+ ac_retval=0 -+else -+ $as_echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_retval=1 -+fi -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ as_fn_set_status $ac_retval -+ -+} @%:@ ac_fn_c_try_cpp -+ -+@%:@ ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES -+@%:@ ------------------------------------------------------- -+@%:@ Tests whether HEADER exists, giving a warning if it cannot be compiled using -+@%:@ the include files in INCLUDES and setting the cache variable VAR -+@%:@ accordingly. -+ac_fn_c_check_header_mongrel () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ if eval \${$3+:} false; then : -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -+$as_echo_n "checking for $2... " >&6; } -+if eval \${$3+:} false; then : -+ $as_echo_n "(cached) " >&6 -+fi -+eval ac_res=\$$3 -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -+$as_echo "$ac_res" >&6; } -+else -+ # Is the header compilable? -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 -+$as_echo_n "checking $2 usability... " >&6; } -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+@%:@include <$2> -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_header_compiler=yes -+else -+ ac_header_compiler=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 -+$as_echo "$ac_header_compiler" >&6; } -+ -+# Is the header present? -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 -+$as_echo_n "checking $2 presence... " >&6; } -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@include <$2> -+_ACEOF -+if ac_fn_c_try_cpp "$LINENO"; then : -+ ac_header_preproc=yes -+else -+ ac_header_preproc=no -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 -+$as_echo "$ac_header_preproc" >&6; } -+ -+# So? What about this header? -+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( -+ yes:no: ) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 -+$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -+$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} -+ ;; -+ no:yes:* ) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 -+$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 -+$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 -+$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 -+$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -+$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} -+ ;; -+esac -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -+$as_echo_n "checking for $2... " >&6; } -+if eval \${$3+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ eval "$3=\$ac_header_compiler" -+fi -+eval ac_res=\$$3 -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -+$as_echo "$ac_res" >&6; } -+fi -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ -+} @%:@ ac_fn_c_check_header_mongrel -+ -+@%:@ ac_fn_c_try_run LINENO -+@%:@ ---------------------- -+@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. Assumes -+@%:@ that executables *can* be run. -+ac_fn_c_try_run () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ if { { ac_try="$ac_link" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_link") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' -+ { { case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_try") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; }; then : -+ ac_retval=0 -+else -+ $as_echo "$as_me: program exited with status $ac_status" >&5 -+ $as_echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_retval=$ac_status -+fi -+ rm -rf conftest.dSYM conftest_ipa8_conftest.oo -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ as_fn_set_status $ac_retval -+ -+} @%:@ ac_fn_c_try_run -+ -+@%:@ ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES -+@%:@ ------------------------------------------------------- -+@%:@ Tests whether HEADER exists and can be compiled using the include files in -+@%:@ INCLUDES, setting the cache variable VAR accordingly. -+ac_fn_c_check_header_compile () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -+$as_echo_n "checking for $2... " >&6; } -+if eval \${$3+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+@%:@include <$2> -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ eval "$3=yes" -+else -+ eval "$3=no" -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+eval ac_res=\$$3 -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -+$as_echo "$ac_res" >&6; } -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ -+} @%:@ ac_fn_c_check_header_compile -+ -+@%:@ ac_fn_c_try_link LINENO -+@%:@ ----------------------- -+@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. -+ac_fn_c_try_link () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ rm -f conftest.$ac_objext conftest$ac_exeext -+ if { { ac_try="$ac_link" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_link") 2>conftest.err -+ ac_status=$? -+ if test -s conftest.err; then -+ grep -v '^ *+' conftest.err >conftest.er1 -+ cat conftest.er1 >&5 -+ mv -f conftest.er1 conftest.err -+ fi -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } && { -+ test -z "$ac_c_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest$ac_exeext && { -+ test "$cross_compiling" = yes || -+ test -x conftest$ac_exeext -+ }; then : -+ ac_retval=0 -+else -+ $as_echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_retval=1 -+fi -+ # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information -+ # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would -+ # interfere with the next link command; also delete a directory that is -+ # left behind by Apple's compiler. We do this before executing the actions. -+ rm -rf conftest.dSYM conftest_ipa8_conftest.oo -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ as_fn_set_status $ac_retval -+ -+} @%:@ ac_fn_c_try_link -+ -+@%:@ ac_fn_c_check_func LINENO FUNC VAR -+@%:@ ---------------------------------- -+@%:@ Tests whether FUNC exists, setting the cache variable VAR accordingly -+ac_fn_c_check_func () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -+$as_echo_n "checking for $2... " >&6; } -+if eval \${$3+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+/* Define $2 to an innocuous variant, in case declares $2. -+ For example, HP-UX 11i declares gettimeofday. */ -+#define $2 innocuous_$2 -+ -+/* System header to define __stub macros and hopefully few prototypes, -+ which can conflict with char $2 (); below. -+ Prefer to if __STDC__ is defined, since -+ exists even on freestanding compilers. */ -+ -+#ifdef __STDC__ -+# include -+#else -+# include -+#endif -+ -+#undef $2 -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char $2 (); -+/* The GNU C library defines this for functions which it implements -+ to always fail with ENOSYS. Some functions are actually named -+ something starting with __ and the normal name is an alias. */ -+#if defined __stub_$2 || defined __stub___$2 -+choke me -+#endif -+ -+int -+main () -+{ -+return $2 (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ eval "$3=yes" -+else -+ eval "$3=no" -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+eval ac_res=\$$3 -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -+$as_echo "$ac_res" >&6; } -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ -+} @%:@ ac_fn_c_check_func -+ -+@%:@ ac_fn_cxx_try_cpp LINENO -+@%:@ ------------------------ -+@%:@ Try to preprocess conftest.@S|@ac_ext, and return whether this succeeded. -+ac_fn_cxx_try_cpp () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ if { { ac_try="$ac_cpp conftest.$ac_ext" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err -+ ac_status=$? -+ if test -s conftest.err; then -+ grep -v '^ *+' conftest.err >conftest.er1 -+ cat conftest.er1 >&5 -+ mv -f conftest.er1 conftest.err -+ fi -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } > conftest.i && { -+ test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || -+ test ! -s conftest.err -+ }; then : -+ ac_retval=0 -+else -+ $as_echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_retval=1 -+fi -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ as_fn_set_status $ac_retval -+ -+} @%:@ ac_fn_cxx_try_cpp -+ -+@%:@ ac_fn_cxx_try_link LINENO -+@%:@ ------------------------- -+@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. -+ac_fn_cxx_try_link () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ rm -f conftest.$ac_objext conftest$ac_exeext -+ if { { ac_try="$ac_link" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_link") 2>conftest.err -+ ac_status=$? -+ if test -s conftest.err; then -+ grep -v '^ *+' conftest.err >conftest.er1 -+ cat conftest.er1 >&5 -+ mv -f conftest.er1 conftest.err -+ fi -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } && { -+ test -z "$ac_cxx_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest$ac_exeext && { -+ test "$cross_compiling" = yes || -+ test -x conftest$ac_exeext -+ }; then : -+ ac_retval=0 -+else -+ $as_echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_retval=1 -+fi -+ # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information -+ # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would -+ # interfere with the next link command; also delete a directory that is -+ # left behind by Apple's compiler. We do this before executing the actions. -+ rm -rf conftest.dSYM conftest_ipa8_conftest.oo -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ as_fn_set_status $ac_retval -+ -+} @%:@ ac_fn_cxx_try_link -+ -+@%:@ ac_fn_c_compute_int LINENO EXPR VAR INCLUDES -+@%:@ -------------------------------------------- -+@%:@ Tries to find the compile-time value of EXPR in a program that includes -+@%:@ INCLUDES, setting VAR accordingly. Returns whether the value could be -+@%:@ computed -+ac_fn_c_compute_int () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ if test "$cross_compiling" = yes; then -+ # Depending upon the size, compute the lo and hi bounds. -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+int -+main () -+{ -+static int test_array @<:@1 - 2 * !(($2) >= 0)@:>@; -+test_array @<:@0@:>@ = 0; -+return test_array @<:@0@:>@; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_lo=0 ac_mid=0 -+ while :; do -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+int -+main () -+{ -+static int test_array @<:@1 - 2 * !(($2) <= $ac_mid)@:>@; -+test_array @<:@0@:>@ = 0; -+return test_array @<:@0@:>@; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_hi=$ac_mid; break -+else -+ as_fn_arith $ac_mid + 1 && ac_lo=$as_val -+ if test $ac_lo -le $ac_mid; then -+ ac_lo= ac_hi= -+ break -+ fi -+ as_fn_arith 2 '*' $ac_mid + 1 && ac_mid=$as_val -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ done -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+int -+main () -+{ -+static int test_array @<:@1 - 2 * !(($2) < 0)@:>@; -+test_array @<:@0@:>@ = 0; -+return test_array @<:@0@:>@; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_hi=-1 ac_mid=-1 -+ while :; do -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+int -+main () -+{ -+static int test_array @<:@1 - 2 * !(($2) >= $ac_mid)@:>@; -+test_array @<:@0@:>@ = 0; -+return test_array @<:@0@:>@; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_lo=$ac_mid; break -+else -+ as_fn_arith '(' $ac_mid ')' - 1 && ac_hi=$as_val -+ if test $ac_mid -le $ac_hi; then -+ ac_lo= ac_hi= -+ break -+ fi -+ as_fn_arith 2 '*' $ac_mid && ac_mid=$as_val -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ done -+else -+ ac_lo= ac_hi= -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+# Binary search between lo and hi bounds. -+while test "x$ac_lo" != "x$ac_hi"; do -+ as_fn_arith '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo && ac_mid=$as_val -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+int -+main () -+{ -+static int test_array @<:@1 - 2 * !(($2) <= $ac_mid)@:>@; -+test_array @<:@0@:>@ = 0; -+return test_array @<:@0@:>@; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_hi=$ac_mid -+else -+ as_fn_arith '(' $ac_mid ')' + 1 && ac_lo=$as_val -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+done -+case $ac_lo in @%:@(( -+?*) eval "$3=\$ac_lo"; ac_retval=0 ;; -+'') ac_retval=1 ;; -+esac -+ else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+static long int longval () { return $2; } -+static unsigned long int ulongval () { return $2; } -+@%:@include -+@%:@include -+int -+main () -+{ -+ -+ FILE *f = fopen ("conftest.val", "w"); -+ if (! f) -+ return 1; -+ if (($2) < 0) -+ { -+ long int i = longval (); -+ if (i != ($2)) -+ return 1; -+ fprintf (f, "%ld", i); -+ } -+ else -+ { -+ unsigned long int i = ulongval (); -+ if (i != ($2)) -+ return 1; -+ fprintf (f, "%lu", i); -+ } -+ /* Do not output a trailing newline, as this causes \r\n confusion -+ on some platforms. */ -+ return ferror (f) || fclose (f) != 0; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_run "$LINENO"; then : -+ echo >>conftest.val; read $3 &5 -+$as_echo_n "checking whether $as_decl_name is declared... " >&6; } -+if eval \${$3+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+int -+main () -+{ -+@%:@ifndef $as_decl_name -+@%:@ifdef __cplusplus -+ (void) $as_decl_use; -+@%:@else -+ (void) $as_decl_name; -+@%:@endif -+@%:@endif -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ eval "$3=yes" -+else -+ eval "$3=no" -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+eval ac_res=\$$3 -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -+$as_echo "$ac_res" >&6; } -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ -+} @%:@ ac_fn_c_check_decl -+cat >config.log <<_ACEOF -+This file contains any messages produced by compilers while -+running configure, to aid debugging if configure makes a mistake. -+ -+It was created by ld $as_me 2.39, which was -+generated by GNU Autoconf 2.69. Invocation command line was -+ -+ $ $0 $@ -+ -+_ACEOF -+exec 5>>config.log -+{ -+cat <<_ASUNAME -+## --------- ## -+## Platform. ## -+## --------- ## -+ -+hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` -+uname -m = `(uname -m) 2>/dev/null || echo unknown` -+uname -r = `(uname -r) 2>/dev/null || echo unknown` -+uname -s = `(uname -s) 2>/dev/null || echo unknown` -+uname -v = `(uname -v) 2>/dev/null || echo unknown` -+ -+/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` -+/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` -+ -+/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` -+/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` -+/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` -+/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` -+/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` -+/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` -+/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` -+ -+_ASUNAME -+ -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ $as_echo "PATH: $as_dir" -+ done -+IFS=$as_save_IFS -+ -+} >&5 -+ -+cat >&5 <<_ACEOF -+ -+ -+## ----------- ## -+## Core tests. ## -+## ----------- ## -+ -+_ACEOF -+ -+ -+# Keep a trace of the command line. -+# Strip out --no-create and --no-recursion so they do not pile up. -+# Strip out --silent because we don't want to record it for future runs. -+# Also quote any args containing shell meta-characters. -+# Make two passes to allow for proper duplicate-argument suppression. -+ac_configure_args= -+ac_configure_args0= -+ac_configure_args1= -+ac_must_keep_next=false -+for ac_pass in 1 2 -+do -+ for ac_arg -+ do -+ case $ac_arg in -+ -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \ -+ | -silent | --silent | --silen | --sile | --sil) -+ continue ;; -+ *\'*) -+ ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; -+ esac -+ case $ac_pass in -+ 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; -+ 2) -+ as_fn_append ac_configure_args1 " '$ac_arg'" -+ if test $ac_must_keep_next = true; then -+ ac_must_keep_next=false # Got value, back to normal. -+ else -+ case $ac_arg in -+ *=* | --config-cache | -C | -disable-* | --disable-* \ -+ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ -+ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ -+ | -with-* | --with-* | -without-* | --without-* | --x) -+ case "$ac_configure_args0 " in -+ "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; -+ esac -+ ;; -+ -* ) ac_must_keep_next=true ;; -+ esac -+ fi -+ as_fn_append ac_configure_args " '$ac_arg'" -+ ;; -+ esac -+ done -+done -+{ ac_configure_args0=; unset ac_configure_args0;} -+{ ac_configure_args1=; unset ac_configure_args1;} -+ -+# When interrupted or exit'd, cleanup temporary files, and complete -+# config.log. We remove comments because anyway the quotes in there -+# would cause problems or look ugly. -+# WARNING: Use '\'' to represent an apostrophe within the trap. -+# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. -+trap 'exit_status=$? -+ # Save into config.log some information that might help in debugging. -+ { -+ echo -+ -+ $as_echo "## ---------------- ## -+## Cache variables. ## -+## ---------------- ##" -+ echo -+ # The following way of writing the cache mishandles newlines in values, -+( -+ for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do -+ eval ac_val=\$$ac_var -+ case $ac_val in #( -+ *${as_nl}*) -+ case $ac_var in #( -+ *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; -+ esac -+ case $ac_var in #( -+ _ | IFS | as_nl) ;; #( -+ BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( -+ *) { eval $ac_var=; unset $ac_var;} ;; -+ esac ;; -+ esac -+ done -+ (set) 2>&1 | -+ case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( -+ *${as_nl}ac_space=\ *) -+ sed -n \ -+ "s/'\''/'\''\\\\'\'''\''/g; -+ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" -+ ;; #( -+ *) -+ sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" -+ ;; -+ esac | -+ sort -+) -+ echo -+ -+ $as_echo "## ----------------- ## -+## Output variables. ## -+## ----------------- ##" -+ echo -+ for ac_var in $ac_subst_vars -+ do -+ eval ac_val=\$$ac_var -+ case $ac_val in -+ *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; -+ esac -+ $as_echo "$ac_var='\''$ac_val'\''" -+ done | sort -+ echo -+ -+ if test -n "$ac_subst_files"; then -+ $as_echo "## ------------------- ## -+## File substitutions. ## -+## ------------------- ##" -+ echo -+ for ac_var in $ac_subst_files -+ do -+ eval ac_val=\$$ac_var -+ case $ac_val in -+ *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; -+ esac -+ $as_echo "$ac_var='\''$ac_val'\''" -+ done | sort -+ echo -+ fi -+ -+ if test -s confdefs.h; then -+ $as_echo "## ----------- ## -+## confdefs.h. ## -+## ----------- ##" -+ echo -+ cat confdefs.h -+ echo -+ fi -+ test "$ac_signal" != 0 && -+ $as_echo "$as_me: caught signal $ac_signal" -+ $as_echo "$as_me: exit $exit_status" -+ } >&5 -+ rm -f core *.core core.conftest.* && -+ rm -f -r conftest* confdefs* conf$$* $ac_clean_files && -+ exit $exit_status -+' 0 -+for ac_signal in 1 2 13 15; do -+ trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal -+done -+ac_signal=0 -+ -+# confdefs.h avoids OS command line length limits that DEFS can exceed. -+rm -f -r conftest* confdefs.h -+ -+$as_echo "/* confdefs.h */" > confdefs.h -+ -+# Predefined preprocessor variables. -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define PACKAGE_NAME "$PACKAGE_NAME" -+_ACEOF -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define PACKAGE_TARNAME "$PACKAGE_TARNAME" -+_ACEOF -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define PACKAGE_VERSION "$PACKAGE_VERSION" -+_ACEOF -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define PACKAGE_STRING "$PACKAGE_STRING" -+_ACEOF -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" -+_ACEOF -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define PACKAGE_URL "$PACKAGE_URL" -+_ACEOF -+ -+ -+# Let the site file select an alternate cache file if it wants to. -+# Prefer an explicitly selected file to automatically selected ones. -+ac_site_file1=NONE -+ac_site_file2=NONE -+if test -n "$CONFIG_SITE"; then -+ # We do not want a PATH search for config.site. -+ case $CONFIG_SITE in @%:@(( -+ -*) ac_site_file1=./$CONFIG_SITE;; -+ */*) ac_site_file1=$CONFIG_SITE;; -+ *) ac_site_file1=./$CONFIG_SITE;; -+ esac -+elif test "x$prefix" != xNONE; then -+ ac_site_file1=$prefix/share/config.site -+ ac_site_file2=$prefix/etc/config.site -+else -+ ac_site_file1=$ac_default_prefix/share/config.site -+ ac_site_file2=$ac_default_prefix/etc/config.site -+fi -+for ac_site_file in "$ac_site_file1" "$ac_site_file2" -+do -+ test "x$ac_site_file" = xNONE && continue -+ if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 -+$as_echo "$as_me: loading site script $ac_site_file" >&6;} -+ sed 's/^/| /' "$ac_site_file" >&5 -+ . "$ac_site_file" \ -+ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "failed to load site script $ac_site_file -+See \`config.log' for more details" "$LINENO" 5; } -+ fi -+done -+ -+if test -r "$cache_file"; then -+ # Some versions of bash will fail to source /dev/null (special files -+ # actually), so we avoid doing that. DJGPP emulates it as a regular file. -+ if test /dev/null != "$cache_file" && test -f "$cache_file"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 -+$as_echo "$as_me: loading cache $cache_file" >&6;} -+ case $cache_file in -+ [\\/]* | ?:[\\/]* ) . "$cache_file";; -+ *) . "./$cache_file";; -+ esac -+ fi -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 -+$as_echo "$as_me: creating cache $cache_file" >&6;} -+ >$cache_file -+fi -+ -+as_fn_append ac_header_list " stdlib.h" -+as_fn_append ac_header_list " unistd.h" -+as_fn_append ac_header_list " sys/param.h" -+# Check that the precious variables saved in the cache have kept the same -+# value. -+ac_cache_corrupted=false -+for ac_var in $ac_precious_vars; do -+ eval ac_old_set=\$ac_cv_env_${ac_var}_set -+ eval ac_new_set=\$ac_env_${ac_var}_set -+ eval ac_old_val=\$ac_cv_env_${ac_var}_value -+ eval ac_new_val=\$ac_env_${ac_var}_value -+ case $ac_old_set,$ac_new_set in -+ set,) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 -+$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} -+ ac_cache_corrupted=: ;; -+ ,set) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 -+$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} -+ ac_cache_corrupted=: ;; -+ ,);; -+ *) -+ if test "x$ac_old_val" != "x$ac_new_val"; then -+ # differences in whitespace do not lead to failure. -+ ac_old_val_w=`echo x $ac_old_val` -+ ac_new_val_w=`echo x $ac_new_val` -+ if test "$ac_old_val_w" != "$ac_new_val_w"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 -+$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} -+ ac_cache_corrupted=: -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 -+$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} -+ eval $ac_var=\$ac_old_val -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 -+$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 -+$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} -+ fi;; -+ esac -+ # Pass precious variables to config.status. -+ if test "$ac_new_set" = set; then -+ case $ac_new_val in -+ *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; -+ *) ac_arg=$ac_var=$ac_new_val ;; -+ esac -+ case " $ac_configure_args " in -+ *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. -+ *) as_fn_append ac_configure_args " '$ac_arg'" ;; -+ esac -+ fi -+done -+if $ac_cache_corrupted; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 -+$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} -+ as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 -+fi -+## -------------------- ## -+## Main body of script. ## -+## -------------------- ## -+ -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ -+ -+ -+ -+ac_aux_dir= -+for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do -+ if test -f "$ac_dir/install-sh"; then -+ ac_aux_dir=$ac_dir -+ ac_install_sh="$ac_aux_dir/install-sh -c" -+ break -+ elif test -f "$ac_dir/install.sh"; then -+ ac_aux_dir=$ac_dir -+ ac_install_sh="$ac_aux_dir/install.sh -c" -+ break -+ elif test -f "$ac_dir/shtool"; then -+ ac_aux_dir=$ac_dir -+ ac_install_sh="$ac_aux_dir/shtool install -c" -+ break -+ fi -+done -+if test -z "$ac_aux_dir"; then -+ as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 -+fi -+ -+# These three variables are undocumented and unsupported, -+# and are intended to be withdrawn in a future Autoconf release. -+# They can cause serious problems if a builder's source tree is in a directory -+# whose full name contains unusual characters. -+ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. -+ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. -+ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. -+ -+ -+# Make sure we can run config.sub. -+$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || -+ as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 -+$as_echo_n "checking build system type... " >&6; } -+if ${ac_cv_build+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_build_alias=$build_alias -+test "x$ac_build_alias" = x && -+ ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` -+test "x$ac_build_alias" = x && -+ as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 -+ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || -+ as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 -+$as_echo "$ac_cv_build" >&6; } -+case $ac_cv_build in -+*-*-*) ;; -+*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; -+esac -+build=$ac_cv_build -+ac_save_IFS=$IFS; IFS='-' -+set x $ac_cv_build -+shift -+build_cpu=$1 -+build_vendor=$2 -+shift; shift -+# Remember, the first character of IFS is used to create $*, -+# except with old shells: -+build_os=$* -+IFS=$ac_save_IFS -+case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 -+$as_echo_n "checking host system type... " >&6; } -+if ${ac_cv_host+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test "x$host_alias" = x; then -+ ac_cv_host=$ac_cv_build -+else -+ ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || -+ as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 -+$as_echo "$ac_cv_host" >&6; } -+case $ac_cv_host in -+*-*-*) ;; -+*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; -+esac -+host=$ac_cv_host -+ac_save_IFS=$IFS; IFS='-' -+set x $ac_cv_host -+shift -+host_cpu=$1 -+host_vendor=$2 -+shift; shift -+# Remember, the first character of IFS is used to create $*, -+# except with old shells: -+host_os=$* -+IFS=$ac_save_IFS -+case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking target system type" >&5 -+$as_echo_n "checking target system type... " >&6; } -+if ${ac_cv_target+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test "x$target_alias" = x; then -+ ac_cv_target=$ac_cv_host -+else -+ ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` || -+ as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5 -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_target" >&5 -+$as_echo "$ac_cv_target" >&6; } -+case $ac_cv_target in -+*-*-*) ;; -+*) as_fn_error $? "invalid value of canonical target" "$LINENO" 5;; -+esac -+target=$ac_cv_target -+ac_save_IFS=$IFS; IFS='-' -+set x $ac_cv_target -+shift -+target_cpu=$1 -+target_vendor=$2 -+shift; shift -+# Remember, the first character of IFS is used to create $*, -+# except with old shells: -+target_os=$* -+IFS=$ac_save_IFS -+case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac -+ -+ -+# The aliases save the names the user supplied, while $host etc. -+# will get canonicalized. -+test -n "$target_alias" && -+ test "$program_prefix$program_suffix$program_transform_name" = \ -+ NONENONEs,x,x, && -+ program_prefix=${target_alias}- -+ -+ -+am__api_version='1.15' -+ -+# Find a good install program. We prefer a C program (faster), -+# so one script is as good as another. But avoid the broken or -+# incompatible versions: -+# SysV /etc/install, /usr/sbin/install -+# SunOS /usr/etc/install -+# IRIX /sbin/install -+# AIX /bin/install -+# AmigaOS /C/install, which installs bootblocks on floppy discs -+# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag -+# AFS /usr/afsws/bin/install, which mishandles nonexistent args -+# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" -+# OS/2's system install, which has a completely different semantic -+# ./install, which can be erroneously created by make from ./install.sh. -+# Reject install programs that cannot install multiple files. -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 -+$as_echo_n "checking for a BSD-compatible install... " >&6; } -+if test -z "$INSTALL"; then -+if ${ac_cv_path_install+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ # Account for people who put trailing slashes in PATH elements. -+case $as_dir/ in @%:@(( -+ ./ | .// | /[cC]/* | \ -+ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ -+ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ -+ /usr/ucb/* ) ;; -+ *) -+ # OSF1 and SCO ODT 3.0 have their own names for install. -+ # Don't use installbsd from OSF since it installs stuff as root -+ # by default. -+ for ac_prog in ginstall scoinst install; do -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then -+ if test $ac_prog = install && -+ grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then -+ # AIX install. It has an incompatible calling convention. -+ : -+ elif test $ac_prog = install && -+ grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then -+ # program-specific install script used by HP pwplus--don't use. -+ : -+ else -+ rm -rf conftest.one conftest.two conftest.dir -+ echo one > conftest.one -+ echo two > conftest.two -+ mkdir conftest.dir -+ if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && -+ test -s conftest.one && test -s conftest.two && -+ test -s conftest.dir/conftest.one && -+ test -s conftest.dir/conftest.two -+ then -+ ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" -+ break 3 -+ fi -+ fi -+ fi -+ done -+ done -+ ;; -+esac -+ -+ done -+IFS=$as_save_IFS -+ -+rm -rf conftest.one conftest.two conftest.dir -+ -+fi -+ if test "${ac_cv_path_install+set}" = set; then -+ INSTALL=$ac_cv_path_install -+ else -+ # As a last resort, use the slow shell script. Don't cache a -+ # value for INSTALL within a source directory, because that will -+ # break other packages using the cache if that directory is -+ # removed, or if the value is a relative name. -+ INSTALL=$ac_install_sh -+ fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 -+$as_echo "$INSTALL" >&6; } -+ -+# Use test -z because SunOS4 sh mishandles braces in ${var-val}. -+# It thinks the first close brace ends the variable substitution. -+test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' -+ -+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' -+ -+test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 -+$as_echo_n "checking whether build environment is sane... " >&6; } -+# Reject unsafe characters in $srcdir or the absolute working directory -+# name. Accept space and tab only in the latter. -+am_lf=' -+' -+case `pwd` in -+ *[\\\"\#\$\&\'\`$am_lf]*) -+ as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; -+esac -+case $srcdir in -+ *[\\\"\#\$\&\'\`$am_lf\ \ ]*) -+ as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; -+esac -+ -+# Do 'set' in a subshell so we don't clobber the current shell's -+# arguments. Must try -L first in case configure is actually a -+# symlink; some systems play weird games with the mod time of symlinks -+# (eg FreeBSD returns the mod time of the symlink's containing -+# directory). -+if ( -+ am_has_slept=no -+ for am_try in 1 2; do -+ echo "timestamp, slept: $am_has_slept" > conftest.file -+ set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` -+ if test "$*" = "X"; then -+ # -L didn't work. -+ set X `ls -t "$srcdir/configure" conftest.file` -+ fi -+ if test "$*" != "X $srcdir/configure conftest.file" \ -+ && test "$*" != "X conftest.file $srcdir/configure"; then -+ -+ # If neither matched, then we have a broken ls. This can happen -+ # if, for instance, CONFIG_SHELL is bash and it inherits a -+ # broken ls alias from the environment. This has actually -+ # happened. Such a system could not be considered "sane". -+ as_fn_error $? "ls -t appears to fail. Make sure there is not a broken -+ alias in your environment" "$LINENO" 5 -+ fi -+ if test "$2" = conftest.file || test $am_try -eq 2; then -+ break -+ fi -+ # Just in case. -+ sleep 1 -+ am_has_slept=yes -+ done -+ test "$2" = conftest.file -+ ) -+then -+ # Ok. -+ : -+else -+ as_fn_error $? "newly created file is older than distributed files! -+Check your system clock" "$LINENO" 5 -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -+$as_echo "yes" >&6; } -+# If we didn't sleep, we still need to ensure time stamps of config.status and -+# generated files are strictly newer. -+am_sleep_pid= -+if grep 'slept: no' conftest.file >/dev/null 2>&1; then -+ ( sleep 1 ) & -+ am_sleep_pid=$! -+fi -+ -+rm -f conftest.file -+ -+test "$program_prefix" != NONE && -+ program_transform_name="s&^&$program_prefix&;$program_transform_name" -+# Use a double $ so make ignores it. -+test "$program_suffix" != NONE && -+ program_transform_name="s&\$&$program_suffix&;$program_transform_name" -+# Double any \ or $. -+# By default was `s,x,x', remove it if useless. -+ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' -+program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` -+ -+# Expand $ac_aux_dir to an absolute path. -+am_aux_dir=`cd "$ac_aux_dir" && pwd` -+ -+if test x"${MISSING+set}" != xset; then -+ case $am_aux_dir in -+ *\ * | *\ *) -+ MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; -+ *) -+ MISSING="\${SHELL} $am_aux_dir/missing" ;; -+ esac -+fi -+# Use eval to expand $SHELL -+if eval "$MISSING --is-lightweight"; then -+ am_missing_run="$MISSING " -+else -+ am_missing_run= -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 -+$as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} -+fi -+ -+if test x"${install_sh+set}" != xset; then -+ case $am_aux_dir in -+ *\ * | *\ *) -+ install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; -+ *) -+ install_sh="\${SHELL} $am_aux_dir/install-sh" -+ esac -+fi -+ -+# Installed binaries are usually stripped using 'strip' when the user -+# run "make install-strip". However 'strip' might not be the right -+# tool to use in cross-compilation environments, therefore Automake -+# will honor the 'STRIP' environment variable to overrule this program. -+if test "$cross_compiling" != no; then -+ if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. -+set dummy ${ac_tool_prefix}strip; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_STRIP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$STRIP"; then -+ ac_cv_prog_STRIP="$STRIP" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_STRIP="${ac_tool_prefix}strip" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+STRIP=$ac_cv_prog_STRIP -+if test -n "$STRIP"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 -+$as_echo "$STRIP" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_STRIP"; then -+ ac_ct_STRIP=$STRIP -+ # Extract the first word of "strip", so it can be a program name with args. -+set dummy strip; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_STRIP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_STRIP"; then -+ ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_STRIP="strip" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP -+if test -n "$ac_ct_STRIP"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 -+$as_echo "$ac_ct_STRIP" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_STRIP" = x; then -+ STRIP=":" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ STRIP=$ac_ct_STRIP -+ fi -+else -+ STRIP="$ac_cv_prog_STRIP" -+fi -+ -+fi -+INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 -+$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } -+if test -z "$MKDIR_P"; then -+ if ${ac_cv_path_mkdir+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_prog in mkdir gmkdir; do -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue -+ case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( -+ 'mkdir (GNU coreutils) '* | \ -+ 'mkdir (coreutils) '* | \ -+ 'mkdir (fileutils) '4.1*) -+ ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext -+ break 3;; -+ esac -+ done -+ done -+ done -+IFS=$as_save_IFS -+ -+fi -+ -+ test -d ./--version && rmdir ./--version -+ if test "${ac_cv_path_mkdir+set}" = set; then -+ MKDIR_P="$ac_cv_path_mkdir -p" -+ else -+ # As a last resort, use the slow shell script. Don't cache a -+ # value for MKDIR_P within a source directory, because that will -+ # break other packages using the cache if that directory is -+ # removed, or if the value is a relative name. -+ MKDIR_P="$ac_install_sh -d" -+ fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 -+$as_echo "$MKDIR_P" >&6; } -+ -+for ac_prog in gawk mawk nawk awk -+do -+ # Extract the first word of "$ac_prog", so it can be a program name with args. -+set dummy $ac_prog; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_AWK+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$AWK"; then -+ ac_cv_prog_AWK="$AWK" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_AWK="$ac_prog" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+AWK=$ac_cv_prog_AWK -+if test -n "$AWK"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 -+$as_echo "$AWK" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ test -n "$AWK" && break -+done -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 -+$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } -+set x ${MAKE-make} -+ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` -+if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat >conftest.make <<\_ACEOF -+SHELL = /bin/sh -+all: -+ @echo '@@@%%%=$(MAKE)=@@@%%%' -+_ACEOF -+# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. -+case `${MAKE-make} -f conftest.make 2>/dev/null` in -+ *@@@%%%=?*=@@@%%%*) -+ eval ac_cv_prog_make_${ac_make}_set=yes;; -+ *) -+ eval ac_cv_prog_make_${ac_make}_set=no;; -+esac -+rm -f conftest.make -+fi -+if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -+$as_echo "yes" >&6; } -+ SET_MAKE= -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+ SET_MAKE="MAKE=${MAKE-make}" -+fi -+ -+rm -rf .tst 2>/dev/null -+mkdir .tst 2>/dev/null -+if test -d .tst; then -+ am__leading_dot=. -+else -+ am__leading_dot=_ -+fi -+rmdir .tst 2>/dev/null -+ -+@%:@ Check whether --enable-silent-rules was given. -+if test "${enable_silent_rules+set}" = set; then : -+ enableval=$enable_silent_rules; -+fi -+ -+case $enable_silent_rules in @%:@ ((( -+ yes) AM_DEFAULT_VERBOSITY=0;; -+ no) AM_DEFAULT_VERBOSITY=1;; -+ *) AM_DEFAULT_VERBOSITY=1;; -+esac -+am_make=${MAKE-make} -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 -+$as_echo_n "checking whether $am_make supports nested variables... " >&6; } -+if ${am_cv_make_support_nested_variables+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if $as_echo 'TRUE=$(BAR$(V)) -+BAR0=false -+BAR1=true -+V=1 -+am__doit: -+ @$(TRUE) -+.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then -+ am_cv_make_support_nested_variables=yes -+else -+ am_cv_make_support_nested_variables=no -+fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 -+$as_echo "$am_cv_make_support_nested_variables" >&6; } -+if test $am_cv_make_support_nested_variables = yes; then -+ AM_V='$(V)' -+ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' -+else -+ AM_V=$AM_DEFAULT_VERBOSITY -+ AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY -+fi -+AM_BACKSLASH='\' -+ -+if test "`cd $srcdir && pwd`" != "`pwd`"; then -+ # Use -I$(srcdir) only when $(srcdir) != ., so that make's output -+ # is not polluted with repeated "-I." -+ am__isrc=' -I$(srcdir)' -+ # test to see if srcdir already configured -+ if test -f $srcdir/config.status; then -+ as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 -+ fi -+fi -+ -+# test whether we have cygpath -+if test -z "$CYGPATH_W"; then -+ if (cygpath --version) >/dev/null 2>/dev/null; then -+ CYGPATH_W='cygpath -w' -+ else -+ CYGPATH_W=echo -+ fi -+fi -+ -+ -+# Define the identity of the package. -+ PACKAGE='ld' -+ VERSION='2.39' -+ -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define PACKAGE "$PACKAGE" -+_ACEOF -+ -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define VERSION "$VERSION" -+_ACEOF -+ -+# Some tools Automake needs. -+ -+ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} -+ -+ -+AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} -+ -+ -+AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} -+ -+ -+AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} -+ -+ -+MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} -+ -+# For better backward compatibility. To be removed once Automake 1.9.x -+# dies out for good. For more background, see: -+# -+# -+mkdir_p='$(MKDIR_P)' -+ -+# We need awk for the "check" target (and possibly the TAP driver). The -+# system "awk" is bad on some platforms. -+# Always define AMTAR for backward compatibility. Yes, it's still used -+# in the wild :-( We should find a proper way to deprecate it ... -+AMTAR='$${TAR-tar}' -+ -+ -+# We'll loop over all known methods to create a tar archive until one works. -+_am_tools='gnutar pax cpio none' -+ -+am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' -+ -+ -+ -+ -+ -+ -+# POSIX will say in a future version that running "rm -f" with no argument -+# is OK; and we want to be able to make that assumption in our Makefile -+# recipes. So use an aggressive probe to check that the usage we want is -+# actually supported "in the wild" to an acceptable degree. -+# See automake bug#10828. -+# To make any issue more visible, cause the running configure to be aborted -+# by default if the 'rm' program in use doesn't match our expectations; the -+# user can still override this though. -+if rm -f && rm -fr && rm -rf; then : OK; else -+ cat >&2 <<'END' -+Oops! -+ -+Your 'rm' program seems unable to run without file operands specified -+on the command line, even when the '-f' option is present. This is contrary -+to the behaviour of most rm programs out there, and not conforming with -+the upcoming POSIX standard: -+ -+Please tell bug-automake@gnu.org about your system, including the value -+of your $PATH and any error possibly output before this message. This -+can help us improve future automake versions. -+ -+END -+ if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then -+ echo 'Configuration will proceed anyway, since you have set the' >&2 -+ echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 -+ echo >&2 -+ else -+ cat >&2 <<'END' -+Aborting the configuration process, to ensure you take notice of the issue. -+ -+You can download and install GNU coreutils to get an 'rm' implementation -+that behaves properly: . -+ -+If you want to complete the configuration process using your problematic -+'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM -+to "yes", and re-run configure. -+ -+END -+ as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 -+ fi -+fi -+ -+@%:@ Check whether --enable-silent-rules was given. -+if test "${enable_silent_rules+set}" = set; then : -+ enableval=$enable_silent_rules; -+fi -+ -+case $enable_silent_rules in @%:@ ((( -+ yes) AM_DEFAULT_VERBOSITY=0;; -+ no) AM_DEFAULT_VERBOSITY=1;; -+ *) AM_DEFAULT_VERBOSITY=0;; -+esac -+am_make=${MAKE-make} -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 -+$as_echo_n "checking whether $am_make supports nested variables... " >&6; } -+if ${am_cv_make_support_nested_variables+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if $as_echo 'TRUE=$(BAR$(V)) -+BAR0=false -+BAR1=true -+V=1 -+am__doit: -+ @$(TRUE) -+.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then -+ am_cv_make_support_nested_variables=yes -+else -+ am_cv_make_support_nested_variables=no -+fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 -+$as_echo "$am_cv_make_support_nested_variables" >&6; } -+if test $am_cv_make_support_nested_variables = yes; then -+ AM_V='$(V)' -+ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' -+else -+ AM_V=$AM_DEFAULT_VERBOSITY -+ AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY -+fi -+AM_BACKSLASH='\' -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 -+$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } -+ @%:@ Check whether --enable-maintainer-mode was given. -+if test "${enable_maintainer_mode+set}" = set; then : -+ enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval -+else -+ USE_MAINTAINER_MODE=no -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 -+$as_echo "$USE_MAINTAINER_MODE" >&6; } -+ if test $USE_MAINTAINER_MODE = yes; then -+ MAINTAINER_MODE_TRUE= -+ MAINTAINER_MODE_FALSE='#' -+else -+ MAINTAINER_MODE_TRUE='#' -+ MAINTAINER_MODE_FALSE= -+fi -+ -+ MAINT=$MAINTAINER_MODE_TRUE -+ -+ -+ -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -+set dummy ${ac_tool_prefix}gcc; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_CC+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$CC"; then -+ ac_cv_prog_CC="$CC" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_CC="${ac_tool_prefix}gcc" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+CC=$ac_cv_prog_CC -+if test -n "$CC"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -+$as_echo "$CC" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_CC"; then -+ ac_ct_CC=$CC -+ # Extract the first word of "gcc", so it can be a program name with args. -+set dummy gcc; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_CC+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_CC"; then -+ ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_CC="gcc" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_CC=$ac_cv_prog_ac_ct_CC -+if test -n "$ac_ct_CC"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -+$as_echo "$ac_ct_CC" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_CC" = x; then -+ CC="" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ CC=$ac_ct_CC -+ fi -+else -+ CC="$ac_cv_prog_CC" -+fi -+ -+if test -z "$CC"; then -+ if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -+set dummy ${ac_tool_prefix}cc; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_CC+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$CC"; then -+ ac_cv_prog_CC="$CC" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_CC="${ac_tool_prefix}cc" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+CC=$ac_cv_prog_CC -+if test -n "$CC"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -+$as_echo "$CC" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ fi -+fi -+if test -z "$CC"; then -+ # Extract the first word of "cc", so it can be a program name with args. -+set dummy cc; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_CC+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$CC"; then -+ ac_cv_prog_CC="$CC" # Let the user override the test. -+else -+ ac_prog_rejected=no -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then -+ ac_prog_rejected=yes -+ continue -+ fi -+ ac_cv_prog_CC="cc" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+if test $ac_prog_rejected = yes; then -+ # We found a bogon in the path, so make sure we never use it. -+ set dummy $ac_cv_prog_CC -+ shift -+ if test $@%:@ != 0; then -+ # We chose a different compiler from the bogus one. -+ # However, it has the same basename, so the bogon will be chosen -+ # first if we set CC to just the basename; use the full file name. -+ shift -+ ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" -+ fi -+fi -+fi -+fi -+CC=$ac_cv_prog_CC -+if test -n "$CC"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -+$as_echo "$CC" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$CC"; then -+ if test -n "$ac_tool_prefix"; then -+ for ac_prog in cl.exe -+ do -+ # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -+set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_CC+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$CC"; then -+ ac_cv_prog_CC="$CC" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_CC="$ac_tool_prefix$ac_prog" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+CC=$ac_cv_prog_CC -+if test -n "$CC"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -+$as_echo "$CC" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ test -n "$CC" && break -+ done -+fi -+if test -z "$CC"; then -+ ac_ct_CC=$CC -+ for ac_prog in cl.exe -+do -+ # Extract the first word of "$ac_prog", so it can be a program name with args. -+set dummy $ac_prog; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_CC+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_CC"; then -+ ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_CC="$ac_prog" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_CC=$ac_cv_prog_ac_ct_CC -+if test -n "$ac_ct_CC"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -+$as_echo "$ac_ct_CC" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ test -n "$ac_ct_CC" && break -+done -+ -+ if test "x$ac_ct_CC" = x; then -+ CC="" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ CC=$ac_ct_CC -+ fi -+fi -+ -+fi -+ -+ -+test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "no acceptable C compiler found in \$PATH -+See \`config.log' for more details" "$LINENO" 5; } -+ -+# Provide some information about the compiler. -+$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 -+set X $ac_compile -+ac_compiler=$2 -+for ac_option in --version -v -V -qversion; do -+ { { ac_try="$ac_compiler $ac_option >&5" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_compiler $ac_option >&5") 2>conftest.err -+ ac_status=$? -+ if test -s conftest.err; then -+ sed '10a\ -+... rest of stderr output deleted ... -+ 10q' conftest.err >conftest.er1 -+ cat conftest.er1 >&5 -+ fi -+ rm -f conftest.er1 conftest.err -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } -+done -+ -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+ac_clean_files_save=$ac_clean_files -+ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" -+# Try to create an executable without -o first, disregard a.out. -+# It will help us diagnose broken compilers, and finding out an intuition -+# of exeext. -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 -+$as_echo_n "checking whether the C compiler works... " >&6; } -+ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` -+ -+# The possible output files: -+ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" -+ -+ac_rmfiles= -+for ac_file in $ac_files -+do -+ case $ac_file in -+ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; -+ * ) ac_rmfiles="$ac_rmfiles $ac_file";; -+ esac -+done -+rm -f $ac_rmfiles -+ -+if { { ac_try="$ac_link_default" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_link_default") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then : -+ # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. -+# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' -+# in a Makefile. We should not override ac_cv_exeext if it was cached, -+# so that the user can short-circuit this test for compilers unknown to -+# Autoconf. -+for ac_file in $ac_files '' -+do -+ test -f "$ac_file" || continue -+ case $ac_file in -+ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) -+ ;; -+ [ab].out ) -+ # We found the default executable, but exeext='' is most -+ # certainly right. -+ break;; -+ *.* ) -+ if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; -+ then :; else -+ ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` -+ fi -+ # We set ac_cv_exeext here because the later test for it is not -+ # safe: cross compilers may not add the suffix if given an `-o' -+ # argument, so we may need to know it at that point already. -+ # Even if this section looks crufty: it has the advantage of -+ # actually working. -+ break;; -+ * ) -+ break;; -+ esac -+done -+test "$ac_cv_exeext" = no && ac_cv_exeext= -+ -+else -+ ac_file='' -+fi -+if test -z "$ac_file"; then : -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+$as_echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error 77 "C compiler cannot create executables -+See \`config.log' for more details" "$LINENO" 5; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -+$as_echo "yes" >&6; } -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 -+$as_echo_n "checking for C compiler default output file name... " >&6; } -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 -+$as_echo "$ac_file" >&6; } -+ac_exeext=$ac_cv_exeext -+ -+rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out -+ac_clean_files=$ac_clean_files_save -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 -+$as_echo_n "checking for suffix of executables... " >&6; } -+if { { ac_try="$ac_link" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_link") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then : -+ # If both `conftest.exe' and `conftest' are `present' (well, observable) -+# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will -+# work properly (i.e., refer to `conftest.exe'), while it won't with -+# `rm'. -+for ac_file in conftest.exe conftest conftest.*; do -+ test -f "$ac_file" || continue -+ case $ac_file in -+ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; -+ *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` -+ break;; -+ * ) break;; -+ esac -+done -+else -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "cannot compute suffix of executables: cannot compile and link -+See \`config.log' for more details" "$LINENO" 5; } -+fi -+rm -f conftest conftest$ac_cv_exeext -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 -+$as_echo "$ac_cv_exeext" >&6; } -+ -+rm -f conftest.$ac_ext -+EXEEXT=$ac_cv_exeext -+ac_exeext=$EXEEXT -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@include -+int -+main () -+{ -+FILE *f = fopen ("conftest.out", "w"); -+ return ferror (f) || fclose (f) != 0; -+ -+ ; -+ return 0; -+} -+_ACEOF -+ac_clean_files="$ac_clean_files conftest.out" -+# Check that the compiler produces executables we can run. If not, either -+# the compiler is broken, or we cross compile. -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 -+$as_echo_n "checking whether we are cross compiling... " >&6; } -+if test "$cross_compiling" != yes; then -+ { { ac_try="$ac_link" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_link") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } -+ if { ac_try='./conftest$ac_cv_exeext' -+ { { case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_try") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; }; then -+ cross_compiling=no -+ else -+ if test "$cross_compiling" = maybe; then -+ cross_compiling=yes -+ else -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "cannot run C compiled programs. -+If you meant to cross compile, use \`--host'. -+See \`config.log' for more details" "$LINENO" 5; } -+ fi -+ fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 -+$as_echo "$cross_compiling" >&6; } -+ -+rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out -+ac_clean_files=$ac_clean_files_save -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 -+$as_echo_n "checking for suffix of object files... " >&6; } -+if ${ac_cv_objext+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+rm -f conftest.o conftest.obj -+if { { ac_try="$ac_compile" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_compile") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then : -+ for ac_file in conftest.o conftest.obj conftest.*; do -+ test -f "$ac_file" || continue; -+ case $ac_file in -+ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; -+ *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` -+ break;; -+ esac -+done -+else -+ $as_echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "cannot compute suffix of object files: cannot compile -+See \`config.log' for more details" "$LINENO" 5; } -+fi -+rm -f conftest.$ac_cv_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 -+$as_echo "$ac_cv_objext" >&6; } -+OBJEXT=$ac_cv_objext -+ac_objext=$OBJEXT -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 -+$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -+if ${ac_cv_c_compiler_gnu+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+#ifndef __GNUC__ -+ choke me -+#endif -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_compiler_gnu=yes -+else -+ ac_compiler_gnu=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ac_cv_c_compiler_gnu=$ac_compiler_gnu -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 -+$as_echo "$ac_cv_c_compiler_gnu" >&6; } -+if test $ac_compiler_gnu = yes; then -+ GCC=yes -+else -+ GCC= -+fi -+ac_test_CFLAGS=${CFLAGS+set} -+ac_save_CFLAGS=$CFLAGS -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 -+$as_echo_n "checking whether $CC accepts -g... " >&6; } -+if ${ac_cv_prog_cc_g+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_save_c_werror_flag=$ac_c_werror_flag -+ ac_c_werror_flag=yes -+ ac_cv_prog_cc_g=no -+ CFLAGS="-g" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_prog_cc_g=yes -+else -+ CFLAGS="" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ -+else -+ ac_c_werror_flag=$ac_save_c_werror_flag -+ CFLAGS="-g" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_prog_cc_g=yes -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_c_werror_flag=$ac_save_c_werror_flag -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 -+$as_echo "$ac_cv_prog_cc_g" >&6; } -+if test "$ac_test_CFLAGS" = set; then -+ CFLAGS=$ac_save_CFLAGS -+elif test $ac_cv_prog_cc_g = yes; then -+ if test "$GCC" = yes; then -+ CFLAGS="-g -O2" -+ else -+ CFLAGS="-g" -+ fi -+else -+ if test "$GCC" = yes; then -+ CFLAGS="-O2" -+ else -+ CFLAGS= -+ fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 -+$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -+if ${ac_cv_prog_cc_c89+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_cv_prog_cc_c89=no -+ac_save_CC=$CC -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+#include -+struct stat; -+/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -+struct buf { int x; }; -+FILE * (*rcsopen) (struct buf *, struct stat *, int); -+static char *e (p, i) -+ char **p; -+ int i; -+{ -+ return p[i]; -+} -+static char *f (char * (*g) (char **, int), char **p, ...) -+{ -+ char *s; -+ va_list v; -+ va_start (v,p); -+ s = g (p, va_arg (v,int)); -+ va_end (v); -+ return s; -+} -+ -+/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has -+ function prototypes and stuff, but not '\xHH' hex character constants. -+ These don't provoke an error unfortunately, instead are silently treated -+ as 'x'. The following induces an error, until -std is added to get -+ proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an -+ array size at least. It's necessary to write '\x00'==0 to get something -+ that's true only with -std. */ -+int osf4_cc_array ['\x00' == 0 ? 1 : -1]; -+ -+/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters -+ inside strings and character constants. */ -+#define FOO(x) 'x' -+int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; -+ -+int test (int i, double x); -+struct s1 {int (*f) (int a);}; -+struct s2 {int (*f) (double a);}; -+int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -+int argc; -+char **argv; -+int -+main () -+{ -+return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; -+ ; -+ return 0; -+} -+_ACEOF -+for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -+ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -+do -+ CC="$ac_save_CC $ac_arg" -+ if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_prog_cc_c89=$ac_arg -+fi -+rm -f core conftest.err conftest.$ac_objext -+ test "x$ac_cv_prog_cc_c89" != "xno" && break -+done -+rm -f conftest.$ac_ext -+CC=$ac_save_CC -+ -+fi -+# AC_CACHE_VAL -+case "x$ac_cv_prog_cc_c89" in -+ x) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 -+$as_echo "none needed" >&6; } ;; -+ xno) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 -+$as_echo "unsupported" >&6; } ;; -+ *) -+ CC="$CC $ac_cv_prog_cc_c89" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 -+$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; -+esac -+if test "x$ac_cv_prog_cc_c89" != xno; then : -+ -+fi -+ -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 -+$as_echo_n "checking whether $CC understands -c and -o together... " >&6; } -+if ${am_cv_prog_cc_c_o+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+ # Make sure it works both with $CC and with simple cc. -+ # Following AC_PROG_CC_C_O, we do the test twice because some -+ # compilers refuse to overwrite an existing .o file with -o, -+ # though they will create one. -+ am_cv_prog_cc_c_o=yes -+ for am_i in 1 2; do -+ if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 -+ ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 -+ ac_status=$? -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } \ -+ && test -f conftest2.$ac_objext; then -+ : OK -+ else -+ am_cv_prog_cc_c_o=no -+ break -+ fi -+ done -+ rm -f core conftest* -+ unset am_i -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 -+$as_echo "$am_cv_prog_cc_c_o" >&6; } -+if test "$am_cv_prog_cc_c_o" != yes; then -+ # Losing compiler, so override with the script. -+ # FIXME: It is wrong to rewrite CC. -+ # But if we don't then we get into trouble of one sort or another. -+ # A longer-term fix would be to have automake use am__CC in this case, -+ # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" -+ CC="$am_aux_dir/compile $CC" -+fi -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+DEPDIR="${am__leading_dot}deps" -+ -+ac_config_commands="$ac_config_commands depfiles" -+ -+ -+am_make=${MAKE-make} -+cat > confinc << 'END' -+am__doit: -+ @echo this is the am__doit target -+.PHONY: am__doit -+END -+# If we don't find an include directive, just comment out the code. -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 -+$as_echo_n "checking for style of include used by $am_make... " >&6; } -+am__include="#" -+am__quote= -+_am_result=none -+# First try GNU make style include. -+echo "include confinc" > confmf -+# Ignore all kinds of additional output from 'make'. -+case `$am_make -s -f confmf 2> /dev/null` in #( -+*the\ am__doit\ target*) -+ am__include=include -+ am__quote= -+ _am_result=GNU -+ ;; -+esac -+# Now try BSD make style include. -+if test "$am__include" = "#"; then -+ echo '.include "confinc"' > confmf -+ case `$am_make -s -f confmf 2> /dev/null` in #( -+ *the\ am__doit\ target*) -+ am__include=.include -+ am__quote="\"" -+ _am_result=BSD -+ ;; -+ esac -+fi -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 -+$as_echo "$_am_result" >&6; } -+rm -f confinc confmf -+ -+@%:@ Check whether --enable-dependency-tracking was given. -+if test "${enable_dependency_tracking+set}" = set; then : -+ enableval=$enable_dependency_tracking; -+fi -+ -+if test "x$enable_dependency_tracking" != xno; then -+ am_depcomp="$ac_aux_dir/depcomp" -+ AMDEPBACKSLASH='\' -+ am__nodep='_no' -+fi -+ if test "x$enable_dependency_tracking" != xno; then -+ AMDEP_TRUE= -+ AMDEP_FALSE='#' -+else -+ AMDEP_TRUE='#' -+ AMDEP_FALSE= -+fi -+ -+ -+ -+depcc="$CC" am_compiler_list= -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 -+$as_echo_n "checking dependency style of $depcc... " >&6; } -+if ${am_cv_CC_dependencies_compiler_type+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then -+ # We make a subdir and do the tests there. Otherwise we can end up -+ # making bogus files that we don't know about and never remove. For -+ # instance it was reported that on HP-UX the gcc test will end up -+ # making a dummy file named 'D' -- because '-MD' means "put the output -+ # in D". -+ rm -rf conftest.dir -+ mkdir conftest.dir -+ # Copy depcomp to subdir because otherwise we won't find it if we're -+ # using a relative directory. -+ cp "$am_depcomp" conftest.dir -+ cd conftest.dir -+ # We will build objects and dependencies in a subdirectory because -+ # it helps to detect inapplicable dependency modes. For instance -+ # both Tru64's cc and ICC support -MD to output dependencies as a -+ # side effect of compilation, but ICC will put the dependencies in -+ # the current directory while Tru64 will put them in the object -+ # directory. -+ mkdir sub -+ -+ am_cv_CC_dependencies_compiler_type=none -+ if test "$am_compiler_list" = ""; then -+ am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` -+ fi -+ am__universal=false -+ case " $depcc " in #( -+ *\ -arch\ *\ -arch\ *) am__universal=true ;; -+ esac -+ -+ for depmode in $am_compiler_list; do -+ # Setup a source with many dependencies, because some compilers -+ # like to wrap large dependency lists on column 80 (with \), and -+ # we should not choose a depcomp mode which is confused by this. -+ # -+ # We need to recreate these files for each test, as the compiler may -+ # overwrite some of them when testing with obscure command lines. -+ # This happens at least with the AIX C compiler. -+ : > sub/conftest.c -+ for i in 1 2 3 4 5 6; do -+ echo '#include "conftst'$i'.h"' >> sub/conftest.c -+ # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with -+ # Solaris 10 /bin/sh. -+ echo '/* dummy */' > sub/conftst$i.h -+ done -+ echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf -+ -+ # We check with '-c' and '-o' for the sake of the "dashmstdout" -+ # mode. It turns out that the SunPro C++ compiler does not properly -+ # handle '-M -o', and we need to detect this. Also, some Intel -+ # versions had trouble with output in subdirs. -+ am__obj=sub/conftest.${OBJEXT-o} -+ am__minus_obj="-o $am__obj" -+ case $depmode in -+ gcc) -+ # This depmode causes a compiler race in universal mode. -+ test "$am__universal" = false || continue -+ ;; -+ nosideeffect) -+ # After this tag, mechanisms are not by side-effect, so they'll -+ # only be used when explicitly requested. -+ if test "x$enable_dependency_tracking" = xyes; then -+ continue -+ else -+ break -+ fi -+ ;; -+ msvc7 | msvc7msys | msvisualcpp | msvcmsys) -+ # This compiler won't grok '-c -o', but also, the minuso test has -+ # not run yet. These depmodes are late enough in the game, and -+ # so weak that their functioning should not be impacted. -+ am__obj=conftest.${OBJEXT-o} -+ am__minus_obj= -+ ;; -+ none) break ;; -+ esac -+ if depmode=$depmode \ -+ source=sub/conftest.c object=$am__obj \ -+ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ -+ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ -+ >/dev/null 2>conftest.err && -+ grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && -+ grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && -+ grep $am__obj sub/conftest.Po > /dev/null 2>&1 && -+ ${MAKE-make} -s -f confmf > /dev/null 2>&1; then -+ # icc doesn't choke on unknown options, it will just issue warnings -+ # or remarks (even with -Werror). So we grep stderr for any message -+ # that says an option was ignored or not supported. -+ # When given -MP, icc 7.0 and 7.1 complain thusly: -+ # icc: Command line warning: ignoring option '-M'; no argument required -+ # The diagnosis changed in icc 8.0: -+ # icc: Command line remark: option '-MP' not supported -+ if (grep 'ignoring option' conftest.err || -+ grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else -+ am_cv_CC_dependencies_compiler_type=$depmode -+ break -+ fi -+ fi -+ done -+ -+ cd .. -+ rm -rf conftest.dir -+else -+ am_cv_CC_dependencies_compiler_type=none -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 -+$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } -+CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type -+ -+ if -+ test "x$enable_dependency_tracking" != xno \ -+ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then -+ am__fastdepCC_TRUE= -+ am__fastdepCC_FALSE='#' -+else -+ am__fastdepCC_TRUE='#' -+ am__fastdepCC_FALSE= -+fi -+ -+ -+ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+if test -z "$CXX"; then -+ if test -n "$CCC"; then -+ CXX=$CCC -+ else -+ if test -n "$ac_tool_prefix"; then -+ for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC -+ do -+ # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -+set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_CXX+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$CXX"; then -+ ac_cv_prog_CXX="$CXX" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+CXX=$ac_cv_prog_CXX -+if test -n "$CXX"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 -+$as_echo "$CXX" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ test -n "$CXX" && break -+ done -+fi -+if test -z "$CXX"; then -+ ac_ct_CXX=$CXX -+ for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC -+do -+ # Extract the first word of "$ac_prog", so it can be a program name with args. -+set dummy $ac_prog; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_CXX+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_CXX"; then -+ ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_CXX="$ac_prog" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_CXX=$ac_cv_prog_ac_ct_CXX -+if test -n "$ac_ct_CXX"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 -+$as_echo "$ac_ct_CXX" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ test -n "$ac_ct_CXX" && break -+done -+ -+ if test "x$ac_ct_CXX" = x; then -+ CXX="g++" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ CXX=$ac_ct_CXX -+ fi -+fi -+ -+ fi -+fi -+# Provide some information about the compiler. -+$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 -+set X $ac_compile -+ac_compiler=$2 -+for ac_option in --version -v -V -qversion; do -+ { { ac_try="$ac_compiler $ac_option >&5" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_compiler $ac_option >&5") 2>conftest.err -+ ac_status=$? -+ if test -s conftest.err; then -+ sed '10a\ -+... rest of stderr output deleted ... -+ 10q' conftest.err >conftest.er1 -+ cat conftest.er1 >&5 -+ fi -+ rm -f conftest.er1 conftest.err -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } -+done -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 -+$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } -+if ${ac_cv_cxx_compiler_gnu+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+#ifndef __GNUC__ -+ choke me -+#endif -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_compiler_gnu=yes -+else -+ ac_compiler_gnu=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ac_cv_cxx_compiler_gnu=$ac_compiler_gnu -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 -+$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } -+if test $ac_compiler_gnu = yes; then -+ GXX=yes -+else -+ GXX= -+fi -+ac_test_CXXFLAGS=${CXXFLAGS+set} -+ac_save_CXXFLAGS=$CXXFLAGS -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 -+$as_echo_n "checking whether $CXX accepts -g... " >&6; } -+if ${ac_cv_prog_cxx_g+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_save_cxx_werror_flag=$ac_cxx_werror_flag -+ ac_cxx_werror_flag=yes -+ ac_cv_prog_cxx_g=no -+ CXXFLAGS="-g" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_cv_prog_cxx_g=yes -+else -+ CXXFLAGS="" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ -+else -+ ac_cxx_werror_flag=$ac_save_cxx_werror_flag -+ CXXFLAGS="-g" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_cv_prog_cxx_g=yes -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_cxx_werror_flag=$ac_save_cxx_werror_flag -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 -+$as_echo "$ac_cv_prog_cxx_g" >&6; } -+if test "$ac_test_CXXFLAGS" = set; then -+ CXXFLAGS=$ac_save_CXXFLAGS -+elif test $ac_cv_prog_cxx_g = yes; then -+ if test "$GXX" = yes; then -+ CXXFLAGS="-g -O2" -+ else -+ CXXFLAGS="-g" -+ fi -+else -+ if test "$GXX" = yes; then -+ CXXFLAGS="-O2" -+ else -+ CXXFLAGS= -+ fi -+fi -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+depcc="$CXX" am_compiler_list= -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 -+$as_echo_n "checking dependency style of $depcc... " >&6; } -+if ${am_cv_CXX_dependencies_compiler_type+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then -+ # We make a subdir and do the tests there. Otherwise we can end up -+ # making bogus files that we don't know about and never remove. For -+ # instance it was reported that on HP-UX the gcc test will end up -+ # making a dummy file named 'D' -- because '-MD' means "put the output -+ # in D". -+ rm -rf conftest.dir -+ mkdir conftest.dir -+ # Copy depcomp to subdir because otherwise we won't find it if we're -+ # using a relative directory. -+ cp "$am_depcomp" conftest.dir -+ cd conftest.dir -+ # We will build objects and dependencies in a subdirectory because -+ # it helps to detect inapplicable dependency modes. For instance -+ # both Tru64's cc and ICC support -MD to output dependencies as a -+ # side effect of compilation, but ICC will put the dependencies in -+ # the current directory while Tru64 will put them in the object -+ # directory. -+ mkdir sub -+ -+ am_cv_CXX_dependencies_compiler_type=none -+ if test "$am_compiler_list" = ""; then -+ am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` -+ fi -+ am__universal=false -+ case " $depcc " in #( -+ *\ -arch\ *\ -arch\ *) am__universal=true ;; -+ esac -+ -+ for depmode in $am_compiler_list; do -+ # Setup a source with many dependencies, because some compilers -+ # like to wrap large dependency lists on column 80 (with \), and -+ # we should not choose a depcomp mode which is confused by this. -+ # -+ # We need to recreate these files for each test, as the compiler may -+ # overwrite some of them when testing with obscure command lines. -+ # This happens at least with the AIX C compiler. -+ : > sub/conftest.c -+ for i in 1 2 3 4 5 6; do -+ echo '#include "conftst'$i'.h"' >> sub/conftest.c -+ # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with -+ # Solaris 10 /bin/sh. -+ echo '/* dummy */' > sub/conftst$i.h -+ done -+ echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf -+ -+ # We check with '-c' and '-o' for the sake of the "dashmstdout" -+ # mode. It turns out that the SunPro C++ compiler does not properly -+ # handle '-M -o', and we need to detect this. Also, some Intel -+ # versions had trouble with output in subdirs. -+ am__obj=sub/conftest.${OBJEXT-o} -+ am__minus_obj="-o $am__obj" -+ case $depmode in -+ gcc) -+ # This depmode causes a compiler race in universal mode. -+ test "$am__universal" = false || continue -+ ;; -+ nosideeffect) -+ # After this tag, mechanisms are not by side-effect, so they'll -+ # only be used when explicitly requested. -+ if test "x$enable_dependency_tracking" = xyes; then -+ continue -+ else -+ break -+ fi -+ ;; -+ msvc7 | msvc7msys | msvisualcpp | msvcmsys) -+ # This compiler won't grok '-c -o', but also, the minuso test has -+ # not run yet. These depmodes are late enough in the game, and -+ # so weak that their functioning should not be impacted. -+ am__obj=conftest.${OBJEXT-o} -+ am__minus_obj= -+ ;; -+ none) break ;; -+ esac -+ if depmode=$depmode \ -+ source=sub/conftest.c object=$am__obj \ -+ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ -+ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ -+ >/dev/null 2>conftest.err && -+ grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && -+ grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && -+ grep $am__obj sub/conftest.Po > /dev/null 2>&1 && -+ ${MAKE-make} -s -f confmf > /dev/null 2>&1; then -+ # icc doesn't choke on unknown options, it will just issue warnings -+ # or remarks (even with -Werror). So we grep stderr for any message -+ # that says an option was ignored or not supported. -+ # When given -MP, icc 7.0 and 7.1 complain thusly: -+ # icc: Command line warning: ignoring option '-M'; no argument required -+ # The diagnosis changed in icc 8.0: -+ # icc: Command line remark: option '-MP' not supported -+ if (grep 'ignoring option' conftest.err || -+ grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else -+ am_cv_CXX_dependencies_compiler_type=$depmode -+ break -+ fi -+ fi -+ done -+ -+ cd .. -+ rm -rf conftest.dir -+else -+ am_cv_CXX_dependencies_compiler_type=none -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 -+$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } -+CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type -+ -+ if -+ test "x$enable_dependency_tracking" != xno \ -+ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then -+ am__fastdepCXX_TRUE= -+ am__fastdepCXX_FALSE='#' -+else -+ am__fastdepCXX_TRUE='#' -+ am__fastdepCXX_FALSE= -+fi -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 -+$as_echo_n "checking for grep that handles long lines and -e... " >&6; } -+if ${ac_cv_path_GREP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -z "$GREP"; then -+ ac_path_GREP_found=false -+ # Loop through the user's path and test for each of PROGNAME-LIST -+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_prog in grep ggrep; do -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" -+ as_fn_executable_p "$ac_path_GREP" || continue -+# Check for GNU ac_path_GREP and select it if it is found. -+ # Check for GNU $ac_path_GREP -+case `"$ac_path_GREP" --version 2>&1` in -+*GNU*) -+ ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; -+*) -+ ac_count=0 -+ $as_echo_n 0123456789 >"conftest.in" -+ while : -+ do -+ cat "conftest.in" "conftest.in" >"conftest.tmp" -+ mv "conftest.tmp" "conftest.in" -+ cp "conftest.in" "conftest.nl" -+ $as_echo 'GREP' >> "conftest.nl" -+ "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break -+ diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break -+ as_fn_arith $ac_count + 1 && ac_count=$as_val -+ if test $ac_count -gt ${ac_path_GREP_max-0}; then -+ # Best one so far, save it but keep looking for a better one -+ ac_cv_path_GREP="$ac_path_GREP" -+ ac_path_GREP_max=$ac_count -+ fi -+ # 10*(2^10) chars as input seems more than enough -+ test $ac_count -gt 10 && break -+ done -+ rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -+esac -+ -+ $ac_path_GREP_found && break 3 -+ done -+ done -+ done -+IFS=$as_save_IFS -+ if test -z "$ac_cv_path_GREP"; then -+ as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 -+ fi -+else -+ ac_cv_path_GREP=$GREP -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 -+$as_echo "$ac_cv_path_GREP" >&6; } -+ GREP="$ac_cv_path_GREP" -+ -+ -+ -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 -+$as_echo_n "checking how to run the C preprocessor... " >&6; } -+# On Suns, sometimes $CPP names a directory. -+if test -n "$CPP" && test -d "$CPP"; then -+ CPP= -+fi -+if test -z "$CPP"; then -+ if ${ac_cv_prog_CPP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ # Double quotes because CPP needs to be expanded -+ for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" -+ do -+ ac_preproc_ok=false -+for ac_c_preproc_warn_flag in '' yes -+do -+ # Use a header file that comes with gcc, so configuring glibc -+ # with a fresh cross-compiler works. -+ # Prefer to if __STDC__ is defined, since -+ # exists even on freestanding compilers. -+ # On the NeXT, cc -E runs the code through the compiler's parser, -+ # not just through cpp. "Syntax error" is here to catch this case. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@ifdef __STDC__ -+@%:@ include -+@%:@else -+@%:@ include -+@%:@endif -+ Syntax error -+_ACEOF -+if ac_fn_c_try_cpp "$LINENO"; then : -+ -+else -+ # Broken: fails on valid input. -+continue -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+ -+ # OK, works on sane cases. Now check whether nonexistent headers -+ # can be detected and how. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@include -+_ACEOF -+if ac_fn_c_try_cpp "$LINENO"; then : -+ # Broken: success on invalid input. -+continue -+else -+ # Passes both tests. -+ac_preproc_ok=: -+break -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+ -+done -+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -+rm -f conftest.i conftest.err conftest.$ac_ext -+if $ac_preproc_ok; then : -+ break -+fi -+ -+ done -+ ac_cv_prog_CPP=$CPP -+ -+fi -+ CPP=$ac_cv_prog_CPP -+else -+ ac_cv_prog_CPP=$CPP -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 -+$as_echo "$CPP" >&6; } -+ac_preproc_ok=false -+for ac_c_preproc_warn_flag in '' yes -+do -+ # Use a header file that comes with gcc, so configuring glibc -+ # with a fresh cross-compiler works. -+ # Prefer to if __STDC__ is defined, since -+ # exists even on freestanding compilers. -+ # On the NeXT, cc -E runs the code through the compiler's parser, -+ # not just through cpp. "Syntax error" is here to catch this case. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@ifdef __STDC__ -+@%:@ include -+@%:@else -+@%:@ include -+@%:@endif -+ Syntax error -+_ACEOF -+if ac_fn_c_try_cpp "$LINENO"; then : -+ -+else -+ # Broken: fails on valid input. -+continue -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+ -+ # OK, works on sane cases. Now check whether nonexistent headers -+ # can be detected and how. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@include -+_ACEOF -+if ac_fn_c_try_cpp "$LINENO"; then : -+ # Broken: success on invalid input. -+continue -+else -+ # Passes both tests. -+ac_preproc_ok=: -+break -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+ -+done -+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -+rm -f conftest.i conftest.err conftest.$ac_ext -+if $ac_preproc_ok; then : -+ -+else -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "C preprocessor \"$CPP\" fails sanity check -+See \`config.log' for more details" "$LINENO" 5; } -+fi -+ -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 -+$as_echo_n "checking for egrep... " >&6; } -+if ${ac_cv_path_EGREP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 -+ then ac_cv_path_EGREP="$GREP -E" -+ else -+ if test -z "$EGREP"; then -+ ac_path_EGREP_found=false -+ # Loop through the user's path and test for each of PROGNAME-LIST -+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_prog in egrep; do -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" -+ as_fn_executable_p "$ac_path_EGREP" || continue -+# Check for GNU ac_path_EGREP and select it if it is found. -+ # Check for GNU $ac_path_EGREP -+case `"$ac_path_EGREP" --version 2>&1` in -+*GNU*) -+ ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; -+*) -+ ac_count=0 -+ $as_echo_n 0123456789 >"conftest.in" -+ while : -+ do -+ cat "conftest.in" "conftest.in" >"conftest.tmp" -+ mv "conftest.tmp" "conftest.in" -+ cp "conftest.in" "conftest.nl" -+ $as_echo 'EGREP' >> "conftest.nl" -+ "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break -+ diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break -+ as_fn_arith $ac_count + 1 && ac_count=$as_val -+ if test $ac_count -gt ${ac_path_EGREP_max-0}; then -+ # Best one so far, save it but keep looking for a better one -+ ac_cv_path_EGREP="$ac_path_EGREP" -+ ac_path_EGREP_max=$ac_count -+ fi -+ # 10*(2^10) chars as input seems more than enough -+ test $ac_count -gt 10 && break -+ done -+ rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -+esac -+ -+ $ac_path_EGREP_found && break 3 -+ done -+ done -+ done -+IFS=$as_save_IFS -+ if test -z "$ac_cv_path_EGREP"; then -+ as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 -+ fi -+else -+ ac_cv_path_EGREP=$EGREP -+fi -+ -+ fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 -+$as_echo "$ac_cv_path_EGREP" >&6; } -+ EGREP="$ac_cv_path_EGREP" -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 -+$as_echo_n "checking for ANSI C header files... " >&6; } -+if ${ac_cv_header_stdc+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+#include -+#include -+#include -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_header_stdc=yes -+else -+ ac_cv_header_stdc=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+if test $ac_cv_header_stdc = yes; then -+ # SunOS 4.x string.h does not declare mem*, contrary to ANSI. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ -+_ACEOF -+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | -+ $EGREP "memchr" >/dev/null 2>&1; then : -+ -+else -+ ac_cv_header_stdc=no -+fi -+rm -f conftest* -+ -+fi -+ -+if test $ac_cv_header_stdc = yes; then -+ # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ -+_ACEOF -+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | -+ $EGREP "free" >/dev/null 2>&1; then : -+ -+else -+ ac_cv_header_stdc=no -+fi -+rm -f conftest* -+ -+fi -+ -+if test $ac_cv_header_stdc = yes; then -+ # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. -+ if test "$cross_compiling" = yes; then : -+ : -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+#include -+#if ((' ' & 0x0FF) == 0x020) -+# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') -+# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) -+#else -+# define ISLOWER(c) \ -+ (('a' <= (c) && (c) <= 'i') \ -+ || ('j' <= (c) && (c) <= 'r') \ -+ || ('s' <= (c) && (c) <= 'z')) -+# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) -+#endif -+ -+#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) -+int -+main () -+{ -+ int i; -+ for (i = 0; i < 256; i++) -+ if (XOR (islower (i), ISLOWER (i)) -+ || toupper (i) != TOUPPER (i)) -+ return 2; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_run "$LINENO"; then : -+ -+else -+ ac_cv_header_stdc=no -+fi -+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ -+ conftest.$ac_objext conftest.beam conftest.$ac_ext -+fi -+ -+fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 -+$as_echo "$ac_cv_header_stdc" >&6; } -+if test $ac_cv_header_stdc = yes; then -+ -+$as_echo "@%:@define STDC_HEADERS 1" >>confdefs.h -+ -+fi -+ -+# On IRIX 5.3, sys/types and inttypes.h are conflicting. -+for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ -+ inttypes.h stdint.h unistd.h -+do : -+ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -+ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default -+" -+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ -+ -+ ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default" -+if test "x$ac_cv_header_minix_config_h" = xyes; then : -+ MINIX=yes -+else -+ MINIX= -+fi -+ -+ -+ if test "$MINIX" = yes; then -+ -+$as_echo "@%:@define _POSIX_SOURCE 1" >>confdefs.h -+ -+ -+$as_echo "@%:@define _POSIX_1_SOURCE 2" >>confdefs.h -+ -+ -+$as_echo "@%:@define _MINIX 1" >>confdefs.h -+ -+ fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 -+$as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; } -+if ${ac_cv_safe_to_define___extensions__+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+# define __EXTENSIONS__ 1 -+ $ac_includes_default -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_safe_to_define___extensions__=yes -+else -+ ac_cv_safe_to_define___extensions__=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5 -+$as_echo "$ac_cv_safe_to_define___extensions__" >&6; } -+ test $ac_cv_safe_to_define___extensions__ = yes && -+ $as_echo "@%:@define __EXTENSIONS__ 1" >>confdefs.h -+ -+ $as_echo "@%:@define _ALL_SOURCE 1" >>confdefs.h -+ -+ $as_echo "@%:@define _GNU_SOURCE 1" >>confdefs.h -+ -+ $as_echo "@%:@define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h -+ -+ $as_echo "@%:@define _TANDEM_SOURCE 1" >>confdefs.h -+ -+ -+ -+ -+ -+ -+case `pwd` in -+ *\ * | *\ *) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 -+$as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; -+esac -+ -+ -+ -+macro_version='2.2.7a' -+macro_revision='1.3134' -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ltmain="$ac_aux_dir/ltmain.sh" -+ -+# Backslashify metacharacters that are still active within -+# double-quoted strings. -+sed_quote_subst='s/\(["`$\\]\)/\\\1/g' -+ -+# Same as above, but do not quote variable references. -+double_quote_subst='s/\(["`\\]\)/\\\1/g' -+ -+# Sed substitution to delay expansion of an escaped shell variable in a -+# double_quote_subst'ed string. -+delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' -+ -+# Sed substitution to delay expansion of an escaped single quote. -+delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' -+ -+# Sed substitution to avoid accidental globbing in evaled expressions -+no_glob_subst='s/\*/\\\*/g' -+ -+ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -+ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO -+ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 -+$as_echo_n "checking how to print strings... " >&6; } -+# Test print first, because it will be a builtin if present. -+if test "X`print -r -- -n 2>/dev/null`" = X-n && \ -+ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then -+ ECHO='print -r --' -+elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then -+ ECHO='printf %s\n' -+else -+ # Use this function as a fallback that always works. -+ func_fallback_echo () -+ { -+ eval 'cat <<_LTECHO_EOF -+$1 -+_LTECHO_EOF' -+ } -+ ECHO='func_fallback_echo' -+fi -+ -+# func_echo_all arg... -+# Invoke $ECHO with all args, space-separated. -+func_echo_all () -+{ -+ $ECHO "" -+} -+ -+case "$ECHO" in -+ printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 -+$as_echo "printf" >&6; } ;; -+ print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 -+$as_echo "print -r" >&6; } ;; -+ *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 -+$as_echo "cat" >&6; } ;; -+esac -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 -+$as_echo_n "checking for a sed that does not truncate output... " >&6; } -+if ${ac_cv_path_SED+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ -+ for ac_i in 1 2 3 4 5 6 7; do -+ ac_script="$ac_script$as_nl$ac_script" -+ done -+ echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed -+ { ac_script=; unset ac_script;} -+ if test -z "$SED"; then -+ ac_path_SED_found=false -+ # Loop through the user's path and test for each of PROGNAME-LIST -+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_prog in sed gsed; do -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" -+ as_fn_executable_p "$ac_path_SED" || continue -+# Check for GNU ac_path_SED and select it if it is found. -+ # Check for GNU $ac_path_SED -+case `"$ac_path_SED" --version 2>&1` in -+*GNU*) -+ ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; -+*) -+ ac_count=0 -+ $as_echo_n 0123456789 >"conftest.in" -+ while : -+ do -+ cat "conftest.in" "conftest.in" >"conftest.tmp" -+ mv "conftest.tmp" "conftest.in" -+ cp "conftest.in" "conftest.nl" -+ $as_echo '' >> "conftest.nl" -+ "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break -+ diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break -+ as_fn_arith $ac_count + 1 && ac_count=$as_val -+ if test $ac_count -gt ${ac_path_SED_max-0}; then -+ # Best one so far, save it but keep looking for a better one -+ ac_cv_path_SED="$ac_path_SED" -+ ac_path_SED_max=$ac_count -+ fi -+ # 10*(2^10) chars as input seems more than enough -+ test $ac_count -gt 10 && break -+ done -+ rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -+esac -+ -+ $ac_path_SED_found && break 3 -+ done -+ done -+ done -+IFS=$as_save_IFS -+ if test -z "$ac_cv_path_SED"; then -+ as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 -+ fi -+else -+ ac_cv_path_SED=$SED -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 -+$as_echo "$ac_cv_path_SED" >&6; } -+ SED="$ac_cv_path_SED" -+ rm -f conftest.sed -+ -+test -z "$SED" && SED=sed -+Xsed="$SED -e 1s/^X//" -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 -+$as_echo_n "checking for fgrep... " >&6; } -+if ${ac_cv_path_FGREP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 -+ then ac_cv_path_FGREP="$GREP -F" -+ else -+ if test -z "$FGREP"; then -+ ac_path_FGREP_found=false -+ # Loop through the user's path and test for each of PROGNAME-LIST -+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_prog in fgrep; do -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" -+ as_fn_executable_p "$ac_path_FGREP" || continue -+# Check for GNU ac_path_FGREP and select it if it is found. -+ # Check for GNU $ac_path_FGREP -+case `"$ac_path_FGREP" --version 2>&1` in -+*GNU*) -+ ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; -+*) -+ ac_count=0 -+ $as_echo_n 0123456789 >"conftest.in" -+ while : -+ do -+ cat "conftest.in" "conftest.in" >"conftest.tmp" -+ mv "conftest.tmp" "conftest.in" -+ cp "conftest.in" "conftest.nl" -+ $as_echo 'FGREP' >> "conftest.nl" -+ "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break -+ diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break -+ as_fn_arith $ac_count + 1 && ac_count=$as_val -+ if test $ac_count -gt ${ac_path_FGREP_max-0}; then -+ # Best one so far, save it but keep looking for a better one -+ ac_cv_path_FGREP="$ac_path_FGREP" -+ ac_path_FGREP_max=$ac_count -+ fi -+ # 10*(2^10) chars as input seems more than enough -+ test $ac_count -gt 10 && break -+ done -+ rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -+esac -+ -+ $ac_path_FGREP_found && break 3 -+ done -+ done -+ done -+IFS=$as_save_IFS -+ if test -z "$ac_cv_path_FGREP"; then -+ as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 -+ fi -+else -+ ac_cv_path_FGREP=$FGREP -+fi -+ -+ fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 -+$as_echo "$ac_cv_path_FGREP" >&6; } -+ FGREP="$ac_cv_path_FGREP" -+ -+ -+test -z "$GREP" && GREP=grep -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+@%:@ Check whether --with-gnu-ld was given. -+if test "${with_gnu_ld+set}" = set; then : -+ withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes -+else -+ with_gnu_ld=no -+fi -+ -+ac_prog=ld -+if test "$GCC" = yes; then -+ # Check if gcc -print-prog-name=ld gives a path. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 -+$as_echo_n "checking for ld used by $CC... " >&6; } -+ case $host in -+ *-*-mingw*) -+ # gcc leaves a trailing carriage return which upsets mingw -+ ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; -+ *) -+ ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; -+ esac -+ case $ac_prog in -+ # Accept absolute paths. -+ [\\/]* | ?:[\\/]*) -+ re_direlt='/[^/][^/]*/\.\./' -+ # Canonicalize the pathname of ld -+ ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` -+ while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do -+ ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` -+ done -+ test -z "$LD" && LD="$ac_prog" -+ ;; -+ "") -+ # If it fails, then pretend we aren't using GCC. -+ ac_prog=ld -+ ;; -+ *) -+ # If it is relative, then search for the first ld in PATH. -+ with_gnu_ld=unknown -+ ;; -+ esac -+elif test "$with_gnu_ld" = yes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 -+$as_echo_n "checking for GNU ld... " >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 -+$as_echo_n "checking for non-GNU ld... " >&6; } -+fi -+if ${lt_cv_path_LD+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -z "$LD"; then -+ lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR -+ for ac_dir in $PATH; do -+ IFS="$lt_save_ifs" -+ test -z "$ac_dir" && ac_dir=. -+ if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then -+ lt_cv_path_LD="$ac_dir/$ac_prog" -+ # Check to see if the program is GNU ld. I'd rather use --version, -+ # but apparently some variants of GNU ld only accept -v. -+ # Break only if it was the GNU/non-GNU ld that we prefer. -+ case `"$lt_cv_path_LD" -v 2>&1 &5 -+$as_echo "$LD" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 -+$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } -+if ${lt_cv_prog_gnu_ld+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ # I'd rather use --version here, but apparently some GNU lds only accept -v. -+case `$LD -v 2>&1 &5 -+$as_echo "$lt_cv_prog_gnu_ld" >&6; } -+with_gnu_ld=$lt_cv_prog_gnu_ld -+ -+ -+ -+ -+ -+ -+ -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 -+$as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } -+if ${lt_cv_path_NM+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$NM"; then -+ # Let the user override the nm to test. -+ lt_nm_to_check="$NM" -+ else -+ lt_nm_to_check="${ac_tool_prefix}nm" -+ if test -n "$ac_tool_prefix" && test "$build" = "$host"; then -+ lt_nm_to_check="$lt_nm_to_check nm" -+ fi -+ fi -+ for lt_tmp_nm in "$lt_nm_to_check"; do -+ lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR -+ for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do -+ IFS="$lt_save_ifs" -+ test -z "$ac_dir" && ac_dir=. -+ # Strip out any user-provided options from the nm to test twice, -+ # the first time to test to see if nm (rather than its options) has -+ # an explicit path, the second time to yield a file which can be -+ # nm'ed itself. -+ tmp_nm_path="`$ECHO "$lt_tmp_nm" | sed 's, -.*$,,'`" -+ case "$tmp_nm_path" in -+ */*|*\\*) tmp_nm="$lt_tmp_nm";; -+ *) tmp_nm="$ac_dir/$lt_tmp_nm";; -+ esac -+ tmp_nm_to_nm="`$ECHO "$tmp_nm" | sed 's, -.*$,,'`" -+ if test -f "$tmp_nm_to_nm" || test -f "$tmp_nm_to_nm$ac_exeext" ; then -+ # Check to see if the nm accepts a BSD-compat flag. -+ # Adding the `sed 1q' prevents false positives on HP-UX, which says: -+ # nm: unknown option "B" ignored -+ case `"$tmp_nm" -B "$tmp_nm_to_nm" 2>&1 | grep -v '^ *$' | sed '1q'` in -+ *$tmp_nm*) lt_cv_path_NM="$tmp_nm -B" -+ break -+ ;; -+ *) -+ case `"$tmp_nm" -p "$tmp_nm_to_nm" 2>&1 | grep -v '^ *$' | sed '1q'` in -+ *$tmp_nm*) -+ lt_cv_path_NM="$tmp_nm -p" -+ break -+ ;; -+ *) -+ lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but -+ continue # so that we can try to find one that supports BSD flags -+ ;; -+ esac -+ ;; -+ esac -+ fi -+ done -+ IFS="$lt_save_ifs" -+ done -+ : ${lt_cv_path_NM=no} -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 -+$as_echo "$lt_cv_path_NM" >&6; } -+if test "$lt_cv_path_NM" != "no"; then -+ NM="$lt_cv_path_NM" -+else -+ # Didn't find any BSD compatible name lister, look for dumpbin. -+ if test -n "$DUMPBIN"; then : -+ # Let the user override the test. -+ else -+ if test -n "$ac_tool_prefix"; then -+ for ac_prog in dumpbin "link -dump" -+ do -+ # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -+set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_DUMPBIN+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$DUMPBIN"; then -+ ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+DUMPBIN=$ac_cv_prog_DUMPBIN -+if test -n "$DUMPBIN"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 -+$as_echo "$DUMPBIN" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ test -n "$DUMPBIN" && break -+ done -+fi -+if test -z "$DUMPBIN"; then -+ ac_ct_DUMPBIN=$DUMPBIN -+ for ac_prog in dumpbin "link -dump" -+do -+ # Extract the first word of "$ac_prog", so it can be a program name with args. -+set dummy $ac_prog; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_DUMPBIN"; then -+ ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN -+if test -n "$ac_ct_DUMPBIN"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 -+$as_echo "$ac_ct_DUMPBIN" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ test -n "$ac_ct_DUMPBIN" && break -+done -+ -+ if test "x$ac_ct_DUMPBIN" = x; then -+ DUMPBIN=":" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ DUMPBIN=$ac_ct_DUMPBIN -+ fi -+fi -+ -+ case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in -+ *COFF*) -+ DUMPBIN="$DUMPBIN -symbols" -+ ;; -+ *) -+ DUMPBIN=: -+ ;; -+ esac -+ fi -+ -+ if test "$DUMPBIN" != ":"; then -+ NM="$DUMPBIN" -+ fi -+fi -+test -z "$NM" && NM=nm -+ -+ -+ -+ -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 -+$as_echo_n "checking the name lister ($NM) interface... " >&6; } -+if ${lt_cv_nm_interface+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_nm_interface="BSD nm" -+ echo "int some_variable = 0;" > conftest.$ac_ext -+ (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) -+ (eval "$ac_compile" 2>conftest.err) -+ cat conftest.err >&5 -+ (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) -+ (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) -+ cat conftest.err >&5 -+ (eval echo "\"\$as_me:$LINENO: output\"" >&5) -+ cat conftest.out >&5 -+ if $GREP 'External.*some_variable' conftest.out > /dev/null; then -+ lt_cv_nm_interface="MS dumpbin" -+ fi -+ rm -f conftest* -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 -+$as_echo "$lt_cv_nm_interface" >&6; } -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 -+$as_echo_n "checking whether ln -s works... " >&6; } -+LN_S=$as_ln_s -+if test "$LN_S" = "ln -s"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -+$as_echo "yes" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 -+$as_echo "no, using $LN_S" >&6; } -+fi -+ -+# find the maximum length of command line arguments -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 -+$as_echo_n "checking the maximum length of command line arguments... " >&6; } -+if ${lt_cv_sys_max_cmd_len+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ i=0 -+ teststring="ABCD" -+ -+ case $build_os in -+ msdosdjgpp*) -+ # On DJGPP, this test can blow up pretty badly due to problems in libc -+ # (any single argument exceeding 2000 bytes causes a buffer overrun -+ # during glob expansion). Even if it were fixed, the result of this -+ # check would be larger than it should be. -+ lt_cv_sys_max_cmd_len=12288; # 12K is about right -+ ;; -+ -+ gnu*) -+ # Under GNU Hurd, this test is not required because there is -+ # no limit to the length of command line arguments. -+ # Libtool will interpret -1 as no limit whatsoever -+ lt_cv_sys_max_cmd_len=-1; -+ ;; -+ -+ cygwin* | mingw* | cegcc*) -+ # On Win9x/ME, this test blows up -- it succeeds, but takes -+ # about 5 minutes as the teststring grows exponentially. -+ # Worse, since 9x/ME are not pre-emptively multitasking, -+ # you end up with a "frozen" computer, even though with patience -+ # the test eventually succeeds (with a max line length of 256k). -+ # Instead, let's just punt: use the minimum linelength reported by -+ # all of the supported platforms: 8192 (on NT/2K/XP). -+ lt_cv_sys_max_cmd_len=8192; -+ ;; -+ -+ mint*) -+ # On MiNT this can take a long time and run out of memory. -+ lt_cv_sys_max_cmd_len=8192; -+ ;; -+ -+ amigaos*) -+ # On AmigaOS with pdksh, this test takes hours, literally. -+ # So we just punt and use a minimum line length of 8192. -+ lt_cv_sys_max_cmd_len=8192; -+ ;; -+ -+ netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) -+ # This has been around since 386BSD, at least. Likely further. -+ if test -x /sbin/sysctl; then -+ lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` -+ elif test -x /usr/sbin/sysctl; then -+ lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` -+ else -+ lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs -+ fi -+ # And add a safety zone -+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` -+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` -+ ;; -+ -+ interix*) -+ # We know the value 262144 and hardcode it with a safety zone (like BSD) -+ lt_cv_sys_max_cmd_len=196608 -+ ;; -+ -+ osf*) -+ # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure -+ # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not -+ # nice to cause kernel panics so lets avoid the loop below. -+ # First set a reasonable default. -+ lt_cv_sys_max_cmd_len=16384 -+ # -+ if test -x /sbin/sysconfig; then -+ case `/sbin/sysconfig -q proc exec_disable_arg_limit` in -+ *1*) lt_cv_sys_max_cmd_len=-1 ;; -+ esac -+ fi -+ ;; -+ sco3.2v5*) -+ lt_cv_sys_max_cmd_len=102400 -+ ;; -+ sysv5* | sco5v6* | sysv4.2uw2*) -+ kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` -+ if test -n "$kargmax"; then -+ lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` -+ else -+ lt_cv_sys_max_cmd_len=32768 -+ fi -+ ;; -+ *) -+ lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` -+ if test -n "$lt_cv_sys_max_cmd_len"; then -+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` -+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` -+ else -+ # Make teststring a little bigger before we do anything with it. -+ # a 1K string should be a reasonable start. -+ for i in 1 2 3 4 5 6 7 8 ; do -+ teststring=$teststring$teststring -+ done -+ SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} -+ # If test is not a shell built-in, we'll probably end up computing a -+ # maximum length that is only half of the actual maximum length, but -+ # we can't tell. -+ while { test "X"`func_fallback_echo "$teststring$teststring" 2>/dev/null` \ -+ = "X$teststring$teststring"; } >/dev/null 2>&1 && -+ test $i != 17 # 1/2 MB should be enough -+ do -+ i=`expr $i + 1` -+ teststring=$teststring$teststring -+ done -+ # Only check the string length outside the loop. -+ lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` -+ teststring= -+ # Add a significant safety factor because C++ compilers can tack on -+ # massive amounts of additional arguments before passing them to the -+ # linker. It appears as though 1/2 is a usable value. -+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` -+ fi -+ ;; -+ esac -+ -+fi -+ -+if test -n $lt_cv_sys_max_cmd_len ; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 -+$as_echo "$lt_cv_sys_max_cmd_len" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 -+$as_echo "none" >&6; } -+fi -+max_cmd_len=$lt_cv_sys_max_cmd_len -+ -+ -+ -+ -+ -+ -+: ${CP="cp -f"} -+: ${MV="mv -f"} -+: ${RM="rm -f"} -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 -+$as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } -+# Try some XSI features -+xsi_shell=no -+( _lt_dummy="a/b/c" -+ test "${_lt_dummy##*/},${_lt_dummy%/*},"${_lt_dummy%"$_lt_dummy"}, \ -+ = c,a/b,, \ -+ && eval 'test $(( 1 + 1 )) -eq 2 \ -+ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ -+ && xsi_shell=yes -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 -+$as_echo "$xsi_shell" >&6; } -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 -+$as_echo_n "checking whether the shell understands \"+=\"... " >&6; } -+lt_shell_append=no -+( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ -+ >/dev/null 2>&1 \ -+ && lt_shell_append=yes -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 -+$as_echo "$lt_shell_append" >&6; } -+ -+ -+if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then -+ lt_unset=unset -+else -+ lt_unset=false -+fi -+ -+ -+ -+ -+ -+# test EBCDIC or ASCII -+case `echo X|tr X '\101'` in -+ A) # ASCII based system -+ # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr -+ lt_SP2NL='tr \040 \012' -+ lt_NL2SP='tr \015\012 \040\040' -+ ;; -+ *) # EBCDIC based system -+ lt_SP2NL='tr \100 \n' -+ lt_NL2SP='tr \r\n \100\100' -+ ;; -+esac -+ -+ -+ -+ -+ -+ -+ -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 -+$as_echo_n "checking for $LD option to reload object files... " >&6; } -+if ${lt_cv_ld_reload_flag+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_ld_reload_flag='-r' -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 -+$as_echo "$lt_cv_ld_reload_flag" >&6; } -+reload_flag=$lt_cv_ld_reload_flag -+case $reload_flag in -+"" | " "*) ;; -+*) reload_flag=" $reload_flag" ;; -+esac -+reload_cmds='$LD$reload_flag -o $output$reload_objs' -+case $host_os in -+ darwin*) -+ if test "$GCC" = yes; then -+ reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' -+ else -+ reload_cmds='$LD$reload_flag -o $output$reload_objs' -+ fi -+ ;; -+esac -+ -+ -+ -+ -+ -+ -+ -+ -+ -+if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. -+set dummy ${ac_tool_prefix}objdump; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_OBJDUMP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$OBJDUMP"; then -+ ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+OBJDUMP=$ac_cv_prog_OBJDUMP -+if test -n "$OBJDUMP"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 -+$as_echo "$OBJDUMP" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_OBJDUMP"; then -+ ac_ct_OBJDUMP=$OBJDUMP -+ # Extract the first word of "objdump", so it can be a program name with args. -+set dummy objdump; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_OBJDUMP"; then -+ ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_OBJDUMP="objdump" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP -+if test -n "$ac_ct_OBJDUMP"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 -+$as_echo "$ac_ct_OBJDUMP" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_OBJDUMP" = x; then -+ OBJDUMP="false" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ OBJDUMP=$ac_ct_OBJDUMP -+ fi -+else -+ OBJDUMP="$ac_cv_prog_OBJDUMP" -+fi -+ -+test -z "$OBJDUMP" && OBJDUMP=objdump -+ -+ -+ -+ -+ -+ -+ -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 -+$as_echo_n "checking how to recognize dependent libraries... " >&6; } -+if ${lt_cv_deplibs_check_method+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_file_magic_cmd='$MAGIC_CMD' -+lt_cv_file_magic_test_file= -+lt_cv_deplibs_check_method='unknown' -+# Need to set the preceding variable on all platforms that support -+# interlibrary dependencies. -+# 'none' -- dependencies not supported. -+# `unknown' -- same as none, but documents that we really don't know. -+# 'pass_all' -- all dependencies passed with no checks. -+# 'test_compile' -- check by making test program. -+# 'file_magic [[regex]]' -- check by looking for files in library path -+# which responds to the $file_magic_cmd with a given extended regex. -+# If you have `file' or equivalent on your system and you're not sure -+# whether `pass_all' will *always* work, you probably want this one. -+ -+case $host_os in -+aix[4-9]*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+beos*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+bsdi[45]*) -+ lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' -+ lt_cv_file_magic_cmd='/usr/bin/file -L' -+ lt_cv_file_magic_test_file=/shlib/libc.so -+ ;; -+ -+cygwin*) -+ # func_win32_libid is a shell function defined in ltmain.sh -+ lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' -+ lt_cv_file_magic_cmd='func_win32_libid' -+ ;; -+ -+mingw* | pw32*) -+ # Base MSYS/MinGW do not provide the 'file' command needed by -+ # func_win32_libid shell function, so use a weaker test based on 'objdump', -+ # unless we find 'file', for example because we are cross-compiling. -+ # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. -+ if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then -+ lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' -+ lt_cv_file_magic_cmd='func_win32_libid' -+ else -+ lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' -+ lt_cv_file_magic_cmd='$OBJDUMP -f' -+ fi -+ ;; -+ -+cegcc*) -+ # use the weaker test based on 'objdump'. See mingw*. -+ lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' -+ lt_cv_file_magic_cmd='$OBJDUMP -f' -+ ;; -+ -+darwin* | rhapsody*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+freebsd* | dragonfly*) -+ if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then -+ case $host_cpu in -+ i*86 ) -+ # Not sure whether the presence of OpenBSD here was a mistake. -+ # Let's accept both of them until this is cleared up. -+ lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' -+ lt_cv_file_magic_cmd=/usr/bin/file -+ lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` -+ ;; -+ esac -+ else -+ lt_cv_deplibs_check_method=pass_all -+ fi -+ ;; -+ -+gnu*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+haiku*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+hpux10.20* | hpux11*) -+ lt_cv_file_magic_cmd=/usr/bin/file -+ case $host_cpu in -+ ia64*) -+ lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' -+ lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so -+ ;; -+ hppa*64*) -+ lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' -+ lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl -+ ;; -+ *) -+ lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' -+ lt_cv_file_magic_test_file=/usr/lib/libc.sl -+ ;; -+ esac -+ ;; -+ -+interix[3-9]*) -+ # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here -+ lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' -+ ;; -+ -+irix5* | irix6* | nonstopux*) -+ case $LD in -+ *-32|*"-32 ") libmagic=32-bit;; -+ *-n32|*"-n32 ") libmagic=N32;; -+ *-64|*"-64 ") libmagic=64-bit;; -+ *) libmagic=never-match;; -+ esac -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+# This must be Linux ELF. -+linux* | k*bsd*-gnu | kopensolaris*-gnu) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+netbsd*) -+ if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then -+ lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' -+ else -+ lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' -+ fi -+ ;; -+ -+newos6*) -+ lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' -+ lt_cv_file_magic_cmd=/usr/bin/file -+ lt_cv_file_magic_test_file=/usr/lib/libnls.so -+ ;; -+ -+*nto* | *qnx*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+openbsd*) -+ if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then -+ lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' -+ else -+ lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' -+ fi -+ ;; -+ -+osf3* | osf4* | osf5*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+rdos*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+solaris*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+sysv4 | sysv4.3*) -+ case $host_vendor in -+ motorola) -+ lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' -+ lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` -+ ;; -+ ncr) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ sequent) -+ lt_cv_file_magic_cmd='/bin/file' -+ lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' -+ ;; -+ sni) -+ lt_cv_file_magic_cmd='/bin/file' -+ lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" -+ lt_cv_file_magic_test_file=/lib/libc.so -+ ;; -+ siemens) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ pc) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ esac -+ ;; -+ -+tpf*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+esac -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 -+$as_echo "$lt_cv_deplibs_check_method" >&6; } -+file_magic_cmd=$lt_cv_file_magic_cmd -+deplibs_check_method=$lt_cv_deplibs_check_method -+test -z "$deplibs_check_method" && deplibs_check_method=unknown -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+plugin_option= -+plugin_names="liblto_plugin.so liblto_plugin-0.dll cyglto_plugin-0.dll" -+for plugin in $plugin_names; do -+ plugin_so=`${CC} ${CFLAGS} --print-prog-name $plugin` -+ if test x$plugin_so = x$plugin; then -+ plugin_so=`${CC} ${CFLAGS} --print-file-name $plugin` -+ fi -+ if test x$plugin_so != x$plugin; then -+ plugin_option="--plugin $plugin_so" -+ break -+ fi -+done -+ -+if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. -+set dummy ${ac_tool_prefix}ar; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_AR+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$AR"; then -+ ac_cv_prog_AR="$AR" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_AR="${ac_tool_prefix}ar" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+AR=$ac_cv_prog_AR -+if test -n "$AR"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 -+$as_echo "$AR" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_AR"; then -+ ac_ct_AR=$AR -+ # Extract the first word of "ar", so it can be a program name with args. -+set dummy ar; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_AR+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_AR"; then -+ ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_AR="ar" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_AR=$ac_cv_prog_ac_ct_AR -+if test -n "$ac_ct_AR"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 -+$as_echo "$ac_ct_AR" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_AR" = x; then -+ AR="false" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ AR=$ac_ct_AR -+ fi -+else -+ AR="$ac_cv_prog_AR" -+fi -+ -+test -z "$AR" && AR=ar -+if test -n "$plugin_option"; then -+ if $AR --help 2>&1 | grep -q "\--plugin"; then -+ touch conftest.c -+ $AR $plugin_option rc conftest.a conftest.c -+ if test "$?" != 0; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Failed: $AR $plugin_option rc" >&5 -+$as_echo "$as_me: WARNING: Failed: $AR $plugin_option rc" >&2;} -+ else -+ AR="$AR $plugin_option" -+ fi -+ rm -f conftest.* -+ fi -+fi -+test -z "$AR_FLAGS" && AR_FLAGS=cru -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. -+set dummy ${ac_tool_prefix}strip; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_STRIP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$STRIP"; then -+ ac_cv_prog_STRIP="$STRIP" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_STRIP="${ac_tool_prefix}strip" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+STRIP=$ac_cv_prog_STRIP -+if test -n "$STRIP"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 -+$as_echo "$STRIP" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_STRIP"; then -+ ac_ct_STRIP=$STRIP -+ # Extract the first word of "strip", so it can be a program name with args. -+set dummy strip; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_STRIP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_STRIP"; then -+ ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_STRIP="strip" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP -+if test -n "$ac_ct_STRIP"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 -+$as_echo "$ac_ct_STRIP" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_STRIP" = x; then -+ STRIP=":" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ STRIP=$ac_ct_STRIP -+ fi -+else -+ STRIP="$ac_cv_prog_STRIP" -+fi -+ -+test -z "$STRIP" && STRIP=: -+ -+ -+ -+ -+ -+ -+if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. -+set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_RANLIB+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$RANLIB"; then -+ ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+RANLIB=$ac_cv_prog_RANLIB -+if test -n "$RANLIB"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 -+$as_echo "$RANLIB" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_RANLIB"; then -+ ac_ct_RANLIB=$RANLIB -+ # Extract the first word of "ranlib", so it can be a program name with args. -+set dummy ranlib; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_RANLIB"; then -+ ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_RANLIB="ranlib" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB -+if test -n "$ac_ct_RANLIB"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 -+$as_echo "$ac_ct_RANLIB" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_RANLIB" = x; then -+ RANLIB=":" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ RANLIB=$ac_ct_RANLIB -+ fi -+else -+ RANLIB="$ac_cv_prog_RANLIB" -+fi -+ -+test -z "$RANLIB" && RANLIB=: -+if test -n "$plugin_option" && test "$RANLIB" != ":"; then -+ if $RANLIB --help 2>&1 | grep -q "\--plugin"; then -+ RANLIB="$RANLIB $plugin_option" -+ fi -+fi -+ -+ -+ -+ -+ -+ -+# Determine commands to create old-style static archives. -+old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' -+old_postinstall_cmds='chmod 644 $oldlib' -+old_postuninstall_cmds= -+ -+if test -n "$RANLIB"; then -+ case $host_os in -+ openbsd*) -+ old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" -+ ;; -+ *) -+ old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" -+ ;; -+ esac -+ old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" -+fi -+ -+case $host_os in -+ darwin*) -+ lock_old_archive_extraction=yes ;; -+ *) -+ lock_old_archive_extraction=no ;; -+esac -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+# If no C compiler was specified, use CC. -+LTCC=${LTCC-"$CC"} -+ -+# If no C compiler flags were specified, use CFLAGS. -+LTCFLAGS=${LTCFLAGS-"$CFLAGS"} -+ -+# Allow CC to be a program name with arguments. -+compiler=$CC -+ -+ -+# Check for command to grab the raw symbol name followed by C symbol from nm. -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 -+$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } -+if ${lt_cv_sys_global_symbol_pipe+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+# These are sane defaults that work on at least a few old systems. -+# [They come from Ultrix. What could be older than Ultrix?!! ;)] -+ -+# Character class describing NM global symbol codes. -+symcode='[BCDEGRST]' -+ -+# Regexp to match symbols that can be accessed directly from C. -+sympat='\([_A-Za-z][_A-Za-z0-9]*\)' -+ -+# Define system-specific variables. -+case $host_os in -+aix*) -+ symcode='[BCDT]' -+ ;; -+cygwin* | mingw* | pw32* | cegcc*) -+ symcode='[ABCDGISTW]' -+ ;; -+hpux*) -+ if test "$host_cpu" = ia64; then -+ symcode='[ABCDEGRST]' -+ fi -+ ;; -+irix* | nonstopux*) -+ symcode='[BCDEGRST]' -+ ;; -+osf*) -+ symcode='[BCDEGQRST]' -+ ;; -+solaris*) -+ symcode='[BCDRT]' -+ ;; -+sco3.2v5*) -+ symcode='[DT]' -+ ;; -+sysv4.2uw2*) -+ symcode='[DT]' -+ ;; -+sysv5* | sco5v6* | unixware* | OpenUNIX*) -+ symcode='[ABDT]' -+ ;; -+sysv4) -+ symcode='[DFNSTU]' -+ ;; -+esac -+ -+# If we're using GNU nm, then use its standard symbol codes. -+case `$NM -V 2>&1` in -+*GNU* | *'with BFD'*) -+ symcode='[ABCDGIRSTW]' ;; -+esac -+ -+# Transform an extracted symbol line into a proper C declaration. -+# Some systems (esp. on ia64) link data and code symbols differently, -+# so use this general approach. -+lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" -+ -+# Transform an extracted symbol line into symbol name and symbol address -+lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" -+lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" -+ -+# Handle CRLF in mingw tool chain -+opt_cr= -+case $build_os in -+mingw*) -+ opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp -+ ;; -+esac -+ -+# Try without a prefix underscore, then with it. -+for ac_symprfx in "" "_"; do -+ -+ # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. -+ symxfrm="\\1 $ac_symprfx\\2 \\2" -+ -+ # Write the raw and C identifiers. -+ if test "$lt_cv_nm_interface" = "MS dumpbin"; then -+ # Fake it for dumpbin and say T for any non-static function -+ # and D for any global variable. -+ # Also find C++ and __fastcall symbols from MSVC++, -+ # which start with @ or ?. -+ lt_cv_sys_global_symbol_pipe="$AWK '"\ -+" {last_section=section; section=\$ 3};"\ -+" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ -+" \$ 0!~/External *\|/{next};"\ -+" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ -+" {if(hide[section]) next};"\ -+" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ -+" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ -+" s[1]~/^[@?]/{print s[1], s[1]; next};"\ -+" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ -+" ' prfx=^$ac_symprfx" -+ else -+ lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" -+ fi -+ -+ # Check to see that the pipe works correctly. -+ pipe_works=no -+ -+ rm -f conftest* -+ cat > conftest.$ac_ext <<_LT_EOF -+#ifdef __cplusplus -+extern "C" { -+#endif -+char nm_test_var; -+void nm_test_func(void); -+void nm_test_func(void){} -+#ifdef __cplusplus -+} -+#endif -+int main(){nm_test_var='a';nm_test_func();return(0);} -+_LT_EOF -+ -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ # Now try to grab the symbols. -+ nlist=conftest.nm -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 -+ (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } && test -s "$nlist"; then -+ # Try sorting and uniquifying the output. -+ if sort "$nlist" | uniq > "$nlist"T; then -+ mv -f "$nlist"T "$nlist" -+ else -+ rm -f "$nlist"T -+ fi -+ -+ # Make sure that we snagged all the symbols we need. -+ if $GREP ' nm_test_var$' "$nlist" >/dev/null; then -+ if $GREP ' nm_test_func$' "$nlist" >/dev/null; then -+ cat <<_LT_EOF > conftest.$ac_ext -+#ifdef __cplusplus -+extern "C" { -+#endif -+ -+_LT_EOF -+ # Now generate the symbol file. -+ eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' -+ -+ cat <<_LT_EOF >> conftest.$ac_ext -+ -+/* The mapping between symbol names and symbols. */ -+const struct { -+ const char *name; -+ void *address; -+} -+lt__PROGRAM__LTX_preloaded_symbols[] = -+{ -+ { "@PROGRAM@", (void *) 0 }, -+_LT_EOF -+ $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext -+ cat <<\_LT_EOF >> conftest.$ac_ext -+ {0, (void *) 0} -+}; -+ -+/* This works around a problem in FreeBSD linker */ -+#ifdef FREEBSD_WORKAROUND -+static const void *lt_preloaded_setup() { -+ return lt__PROGRAM__LTX_preloaded_symbols; -+} -+#endif -+ -+#ifdef __cplusplus -+} -+#endif -+_LT_EOF -+ # Now try linking the two files. -+ mv conftest.$ac_objext conftstm.$ac_objext -+ lt_save_LIBS="$LIBS" -+ lt_save_CFLAGS="$CFLAGS" -+ LIBS="conftstm.$ac_objext" -+ CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 -+ (eval $ac_link) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } && test -s conftest${ac_exeext}; then -+ pipe_works=yes -+ fi -+ LIBS="$lt_save_LIBS" -+ CFLAGS="$lt_save_CFLAGS" -+ else -+ echo "cannot find nm_test_func in $nlist" >&5 -+ fi -+ else -+ echo "cannot find nm_test_var in $nlist" >&5 -+ fi -+ else -+ echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 -+ fi -+ else -+ echo "$progname: failed program was:" >&5 -+ cat conftest.$ac_ext >&5 -+ fi -+ rm -rf conftest* conftst* -+ -+ # Do not use the global_symbol_pipe unless it works. -+ if test "$pipe_works" = yes; then -+ break -+ else -+ lt_cv_sys_global_symbol_pipe= -+ fi -+done -+ -+fi -+ -+if test -z "$lt_cv_sys_global_symbol_pipe"; then -+ lt_cv_sys_global_symbol_to_cdecl= -+fi -+if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 -+$as_echo "failed" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 -+$as_echo "ok" >&6; } -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+@%:@ Check whether --enable-libtool-lock was given. -+if test "${enable_libtool_lock+set}" = set; then : -+ enableval=$enable_libtool_lock; -+fi -+ -+test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes -+ -+# Some flags need to be propagated to the compiler or linker for good -+# libtool support. -+case $host in -+ia64-*-hpux*) -+ # Find out which ABI we are using. -+ echo 'int i;' > conftest.$ac_ext -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ case `/usr/bin/file conftest.$ac_objext` in -+ *ELF-32*) -+ HPUX_IA64_MODE="32" -+ ;; -+ *ELF-64*) -+ HPUX_IA64_MODE="64" -+ ;; -+ esac -+ fi -+ rm -rf conftest* -+ ;; -+*-*-irix6*) -+ # Find out which ABI we are using. -+ echo '#line '$LINENO' "configure"' > conftest.$ac_ext -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ if test "$lt_cv_prog_gnu_ld" = yes; then -+ case `/usr/bin/file conftest.$ac_objext` in -+ *32-bit*) -+ LD="${LD-ld} -melf32bsmip" -+ ;; -+ *N32*) -+ LD="${LD-ld} -melf32bmipn32" -+ ;; -+ *64-bit*) -+ LD="${LD-ld} -melf64bmip" -+ ;; -+ esac -+ else -+ case `/usr/bin/file conftest.$ac_objext` in -+ *32-bit*) -+ LD="${LD-ld} -32" -+ ;; -+ *N32*) -+ LD="${LD-ld} -n32" -+ ;; -+ *64-bit*) -+ LD="${LD-ld} -64" -+ ;; -+ esac -+ fi -+ fi -+ rm -rf conftest* -+ ;; -+ -+x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ -+s390*-*linux*|s390*-*tpf*|sparc*-*linux*) -+ # Find out which ABI we are using. -+ echo 'int i;' > conftest.$ac_ext -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ case `/usr/bin/file conftest.o` in -+ *32-bit*) -+ case $host in -+ x86_64-*kfreebsd*-gnu) -+ LD="${LD-ld} -m elf_i386_fbsd" -+ ;; -+ x86_64-*linux*) -+ case `/usr/bin/file conftest.o` in -+ *x86-64*) -+ LD="${LD-ld} -m elf32_x86_64" -+ ;; -+ *) -+ LD="${LD-ld} -m elf_i386" -+ ;; -+ esac -+ ;; -+ powerpc64le-*linux*) -+ LD="${LD-ld} -m elf32lppclinux" -+ ;; -+ powerpc64-*linux*) -+ LD="${LD-ld} -m elf32ppclinux" -+ ;; -+ s390x-*linux*) -+ LD="${LD-ld} -m elf_s390" -+ ;; -+ sparc64-*linux*) -+ LD="${LD-ld} -m elf32_sparc" -+ ;; -+ esac -+ ;; -+ *64-bit*) -+ case $host in -+ x86_64-*kfreebsd*-gnu) -+ LD="${LD-ld} -m elf_x86_64_fbsd" -+ ;; -+ x86_64-*linux*) -+ LD="${LD-ld} -m elf_x86_64" -+ ;; -+ powerpcle-*linux*) -+ LD="${LD-ld} -m elf64lppc" -+ ;; -+ powerpc-*linux*) -+ LD="${LD-ld} -m elf64ppc" -+ ;; -+ s390*-*linux*|s390*-*tpf*) -+ LD="${LD-ld} -m elf64_s390" -+ ;; -+ sparc*-*linux*) -+ LD="${LD-ld} -m elf64_sparc" -+ ;; -+ esac -+ ;; -+ esac -+ fi -+ rm -rf conftest* -+ ;; -+ -+*-*-sco3.2v5*) -+ # On SCO OpenServer 5, we need -belf to get full-featured binaries. -+ SAVE_CFLAGS="$CFLAGS" -+ CFLAGS="$CFLAGS -belf" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 -+$as_echo_n "checking whether the C compiler needs -belf... " >&6; } -+if ${lt_cv_cc_needs_belf+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ lt_cv_cc_needs_belf=yes -+else -+ lt_cv_cc_needs_belf=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 -+$as_echo "$lt_cv_cc_needs_belf" >&6; } -+ if test x"$lt_cv_cc_needs_belf" != x"yes"; then -+ # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf -+ CFLAGS="$SAVE_CFLAGS" -+ fi -+ ;; -+sparc*-*solaris*) -+ # Find out which ABI we are using. -+ echo 'int i;' > conftest.$ac_ext -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ case `/usr/bin/file conftest.o` in -+ *64-bit*) -+ case $lt_cv_prog_gnu_ld in -+ yes*) LD="${LD-ld} -m elf64_sparc" ;; -+ *) -+ if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then -+ LD="${LD-ld} -64" -+ fi -+ ;; -+ esac -+ ;; -+ esac -+ fi -+ rm -rf conftest* -+ ;; -+esac -+ -+need_locks="$enable_libtool_lock" -+ -+ -+ case $host_os in -+ rhapsody* | darwin*) -+ if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. -+set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_DSYMUTIL+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$DSYMUTIL"; then -+ ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+DSYMUTIL=$ac_cv_prog_DSYMUTIL -+if test -n "$DSYMUTIL"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 -+$as_echo "$DSYMUTIL" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_DSYMUTIL"; then -+ ac_ct_DSYMUTIL=$DSYMUTIL -+ # Extract the first word of "dsymutil", so it can be a program name with args. -+set dummy dsymutil; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_DSYMUTIL"; then -+ ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL -+if test -n "$ac_ct_DSYMUTIL"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 -+$as_echo "$ac_ct_DSYMUTIL" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_DSYMUTIL" = x; then -+ DSYMUTIL=":" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ DSYMUTIL=$ac_ct_DSYMUTIL -+ fi -+else -+ DSYMUTIL="$ac_cv_prog_DSYMUTIL" -+fi -+ -+ if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. -+set dummy ${ac_tool_prefix}nmedit; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_NMEDIT+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$NMEDIT"; then -+ ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+NMEDIT=$ac_cv_prog_NMEDIT -+if test -n "$NMEDIT"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 -+$as_echo "$NMEDIT" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_NMEDIT"; then -+ ac_ct_NMEDIT=$NMEDIT -+ # Extract the first word of "nmedit", so it can be a program name with args. -+set dummy nmedit; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_NMEDIT"; then -+ ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_NMEDIT="nmedit" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT -+if test -n "$ac_ct_NMEDIT"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 -+$as_echo "$ac_ct_NMEDIT" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_NMEDIT" = x; then -+ NMEDIT=":" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ NMEDIT=$ac_ct_NMEDIT -+ fi -+else -+ NMEDIT="$ac_cv_prog_NMEDIT" -+fi -+ -+ if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. -+set dummy ${ac_tool_prefix}lipo; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_LIPO+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$LIPO"; then -+ ac_cv_prog_LIPO="$LIPO" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_LIPO="${ac_tool_prefix}lipo" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+LIPO=$ac_cv_prog_LIPO -+if test -n "$LIPO"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 -+$as_echo "$LIPO" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_LIPO"; then -+ ac_ct_LIPO=$LIPO -+ # Extract the first word of "lipo", so it can be a program name with args. -+set dummy lipo; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_LIPO+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_LIPO"; then -+ ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_LIPO="lipo" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO -+if test -n "$ac_ct_LIPO"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 -+$as_echo "$ac_ct_LIPO" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_LIPO" = x; then -+ LIPO=":" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ LIPO=$ac_ct_LIPO -+ fi -+else -+ LIPO="$ac_cv_prog_LIPO" -+fi -+ -+ if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. -+set dummy ${ac_tool_prefix}otool; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_OTOOL+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$OTOOL"; then -+ ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_OTOOL="${ac_tool_prefix}otool" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+OTOOL=$ac_cv_prog_OTOOL -+if test -n "$OTOOL"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 -+$as_echo "$OTOOL" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_OTOOL"; then -+ ac_ct_OTOOL=$OTOOL -+ # Extract the first word of "otool", so it can be a program name with args. -+set dummy otool; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_OTOOL"; then -+ ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_OTOOL="otool" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL -+if test -n "$ac_ct_OTOOL"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 -+$as_echo "$ac_ct_OTOOL" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_OTOOL" = x; then -+ OTOOL=":" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ OTOOL=$ac_ct_OTOOL -+ fi -+else -+ OTOOL="$ac_cv_prog_OTOOL" -+fi -+ -+ if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. -+set dummy ${ac_tool_prefix}otool64; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_OTOOL64+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$OTOOL64"; then -+ ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+OTOOL64=$ac_cv_prog_OTOOL64 -+if test -n "$OTOOL64"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 -+$as_echo "$OTOOL64" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_OTOOL64"; then -+ ac_ct_OTOOL64=$OTOOL64 -+ # Extract the first word of "otool64", so it can be a program name with args. -+set dummy otool64; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_OTOOL64"; then -+ ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_OTOOL64="otool64" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 -+if test -n "$ac_ct_OTOOL64"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 -+$as_echo "$ac_ct_OTOOL64" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_OTOOL64" = x; then -+ OTOOL64=":" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ OTOOL64=$ac_ct_OTOOL64 -+ fi -+else -+ OTOOL64="$ac_cv_prog_OTOOL64" -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 -+$as_echo_n "checking for -single_module linker flag... " >&6; } -+if ${lt_cv_apple_cc_single_mod+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_apple_cc_single_mod=no -+ if test -z "${LT_MULTI_MODULE}"; then -+ # By default we will add the -single_module flag. You can override -+ # by either setting the environment variable LT_MULTI_MODULE -+ # non-empty at configure time, or by adding -multi_module to the -+ # link flags. -+ rm -rf libconftest.dylib* -+ echo "int foo(void){return 1;}" > conftest.c -+ echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -+-dynamiclib -Wl,-single_module conftest.c" >&5 -+ $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -+ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err -+ _lt_result=$? -+ if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then -+ lt_cv_apple_cc_single_mod=yes -+ else -+ cat conftest.err >&5 -+ fi -+ rm -rf libconftest.dylib* -+ rm -f conftest.* -+ fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 -+$as_echo "$lt_cv_apple_cc_single_mod" >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 -+$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } -+if ${lt_cv_ld_exported_symbols_list+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_ld_exported_symbols_list=no -+ save_LDFLAGS=$LDFLAGS -+ echo "_main" > conftest.sym -+ LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ lt_cv_ld_exported_symbols_list=yes -+else -+ lt_cv_ld_exported_symbols_list=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ LDFLAGS="$save_LDFLAGS" -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 -+$as_echo "$lt_cv_ld_exported_symbols_list" >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 -+$as_echo_n "checking for -force_load linker flag... " >&6; } -+if ${lt_cv_ld_force_load+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_ld_force_load=no -+ cat > conftest.c << _LT_EOF -+int forced_loaded() { return 2;} -+_LT_EOF -+ echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 -+ $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 -+ echo "$AR cru libconftest.a conftest.o" >&5 -+ $AR cru libconftest.a conftest.o 2>&5 -+ cat > conftest.c << _LT_EOF -+int main() { return 0;} -+_LT_EOF -+ echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 -+ $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err -+ _lt_result=$? -+ if test -f conftest && test ! -s conftest.err && test $_lt_result = 0 && $GREP forced_load conftest 2>&1 >/dev/null; then -+ lt_cv_ld_force_load=yes -+ else -+ cat conftest.err >&5 -+ fi -+ rm -f conftest.err libconftest.a conftest conftest.c -+ rm -rf conftest.dSYM -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 -+$as_echo "$lt_cv_ld_force_load" >&6; } -+ case $host_os in -+ rhapsody* | darwin1.[012]) -+ _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; -+ darwin1.*) -+ _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; -+ darwin*) # darwin 5.x on -+ # if running on 10.5 or later, the deployment target defaults -+ # to the OS version, if on x86, and 10.4, the deployment -+ # target defaults to 10.4. Don't you love it? -+ case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in -+ 10.0,*86*-darwin8*|10.0,*-darwin[91]*) -+ _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; -+ 10.[012][,.]*) -+ _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; -+ 10.*) -+ _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; -+ esac -+ ;; -+ esac -+ if test "$lt_cv_apple_cc_single_mod" = "yes"; then -+ _lt_dar_single_mod='$single_module' -+ fi -+ if test "$lt_cv_ld_exported_symbols_list" = "yes"; then -+ _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' -+ else -+ _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' -+ fi -+ if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then -+ _lt_dsymutil='~$DSYMUTIL $lib || :' -+ else -+ _lt_dsymutil= -+ fi -+ ;; -+ esac -+ -+for ac_header in dlfcn.h -+do : -+ ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default -+" -+if test "x$ac_cv_header_dlfcn_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_DLFCN_H 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ -+ -+ -+ -+ -+# Set options -+ -+ -+ -+ enable_dlopen=no -+ -+ -+ enable_win32_dll=no -+ -+ -+ @%:@ Check whether --enable-shared was given. -+if test "${enable_shared+set}" = set; then : -+ enableval=$enable_shared; p=${PACKAGE-default} -+ case $enableval in -+ yes) enable_shared=yes ;; -+ no) enable_shared=no ;; -+ *) -+ enable_shared=no -+ # Look at the argument we got. We use all the common list separators. -+ lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," -+ for pkg in $enableval; do -+ IFS="$lt_save_ifs" -+ if test "X$pkg" = "X$p"; then -+ enable_shared=yes -+ fi -+ done -+ IFS="$lt_save_ifs" -+ ;; -+ esac -+else -+ enable_shared=yes -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ @%:@ Check whether --enable-static was given. -+if test "${enable_static+set}" = set; then : -+ enableval=$enable_static; p=${PACKAGE-default} -+ case $enableval in -+ yes) enable_static=yes ;; -+ no) enable_static=no ;; -+ *) -+ enable_static=no -+ # Look at the argument we got. We use all the common list separators. -+ lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," -+ for pkg in $enableval; do -+ IFS="$lt_save_ifs" -+ if test "X$pkg" = "X$p"; then -+ enable_static=yes -+ fi -+ done -+ IFS="$lt_save_ifs" -+ ;; -+ esac -+else -+ enable_static=yes -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+@%:@ Check whether --with-pic was given. -+if test "${with_pic+set}" = set; then : -+ withval=$with_pic; pic_mode="$withval" -+else -+ pic_mode=default -+fi -+ -+ -+test -z "$pic_mode" && pic_mode=default -+ -+ -+ -+ -+ -+ -+ -+ @%:@ Check whether --enable-fast-install was given. -+if test "${enable_fast_install+set}" = set; then : -+ enableval=$enable_fast_install; p=${PACKAGE-default} -+ case $enableval in -+ yes) enable_fast_install=yes ;; -+ no) enable_fast_install=no ;; -+ *) -+ enable_fast_install=no -+ # Look at the argument we got. We use all the common list separators. -+ lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," -+ for pkg in $enableval; do -+ IFS="$lt_save_ifs" -+ if test "X$pkg" = "X$p"; then -+ enable_fast_install=yes -+ fi -+ done -+ IFS="$lt_save_ifs" -+ ;; -+ esac -+else -+ enable_fast_install=yes -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+# This can be used to rebuild libtool when needed -+LIBTOOL_DEPS="$ltmain" -+ -+# Always use our own libtool. -+LIBTOOL='$(SHELL) $(top_builddir)/libtool' -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+test -z "$LN_S" && LN_S="ln -s" -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+if test -n "${ZSH_VERSION+set}" ; then -+ setopt NO_GLOB_SUBST -+fi -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 -+$as_echo_n "checking for objdir... " >&6; } -+if ${lt_cv_objdir+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ rm -f .libs 2>/dev/null -+mkdir .libs 2>/dev/null -+if test -d .libs; then -+ lt_cv_objdir=.libs -+else -+ # MS-DOS does not allow filenames that begin with a dot. -+ lt_cv_objdir=_libs -+fi -+rmdir .libs 2>/dev/null -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 -+$as_echo "$lt_cv_objdir" >&6; } -+objdir=$lt_cv_objdir -+ -+ -+ -+ -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define LT_OBJDIR "$lt_cv_objdir/" -+_ACEOF -+ -+ -+ -+ -+case $host_os in -+aix3*) -+ # AIX sometimes has problems with the GCC collect2 program. For some -+ # reason, if we set the COLLECT_NAMES environment variable, the problems -+ # vanish in a puff of smoke. -+ if test "X${COLLECT_NAMES+set}" != Xset; then -+ COLLECT_NAMES= -+ export COLLECT_NAMES -+ fi -+ ;; -+esac -+ -+# Global variables: -+ofile=libtool -+can_build_shared=yes -+ -+# All known linkers require a `.a' archive for static linking (except MSVC, -+# which needs '.lib'). -+libext=a -+ -+with_gnu_ld="$lt_cv_prog_gnu_ld" -+ -+old_CC="$CC" -+old_CFLAGS="$CFLAGS" -+ -+# Set sane defaults for various variables -+test -z "$CC" && CC=cc -+test -z "$LTCC" && LTCC=$CC -+test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS -+test -z "$LD" && LD=ld -+test -z "$ac_objext" && ac_objext=o -+ -+for cc_temp in $compiler""; do -+ case $cc_temp in -+ compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; -+ distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; -+ \-*) ;; -+ *) break;; -+ esac -+done -+cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` -+ -+ -+# Only perform the check for file, if the check method requires it -+test -z "$MAGIC_CMD" && MAGIC_CMD=file -+case $deplibs_check_method in -+file_magic*) -+ if test "$file_magic_cmd" = '$MAGIC_CMD'; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 -+$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } -+if ${lt_cv_path_MAGIC_CMD+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ case $MAGIC_CMD in -+[\\/*] | ?:[\\/]*) -+ lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. -+ ;; -+*) -+ lt_save_MAGIC_CMD="$MAGIC_CMD" -+ lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR -+ ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" -+ for ac_dir in $ac_dummy; do -+ IFS="$lt_save_ifs" -+ test -z "$ac_dir" && ac_dir=. -+ if test -f $ac_dir/${ac_tool_prefix}file; then -+ lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" -+ if test -n "$file_magic_test_file"; then -+ case $deplibs_check_method in -+ "file_magic "*) -+ file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` -+ MAGIC_CMD="$lt_cv_path_MAGIC_CMD" -+ if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | -+ $EGREP "$file_magic_regex" > /dev/null; then -+ : -+ else -+ cat <<_LT_EOF 1>&2 -+ -+*** Warning: the command libtool uses to detect shared libraries, -+*** $file_magic_cmd, produces output that libtool cannot recognize. -+*** The result is that libtool may fail to recognize shared libraries -+*** as such. This will affect the creation of libtool libraries that -+*** depend on shared libraries, but programs linked with such libtool -+*** libraries will work regardless of this problem. Nevertheless, you -+*** may want to report the problem to your system manager and/or to -+*** bug-libtool@gnu.org -+ -+_LT_EOF -+ fi ;; -+ esac -+ fi -+ break -+ fi -+ done -+ IFS="$lt_save_ifs" -+ MAGIC_CMD="$lt_save_MAGIC_CMD" -+ ;; -+esac -+fi -+ -+MAGIC_CMD="$lt_cv_path_MAGIC_CMD" -+if test -n "$MAGIC_CMD"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 -+$as_echo "$MAGIC_CMD" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ -+ -+ -+if test -z "$lt_cv_path_MAGIC_CMD"; then -+ if test -n "$ac_tool_prefix"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 -+$as_echo_n "checking for file... " >&6; } -+if ${lt_cv_path_MAGIC_CMD+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ case $MAGIC_CMD in -+[\\/*] | ?:[\\/]*) -+ lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. -+ ;; -+*) -+ lt_save_MAGIC_CMD="$MAGIC_CMD" -+ lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR -+ ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" -+ for ac_dir in $ac_dummy; do -+ IFS="$lt_save_ifs" -+ test -z "$ac_dir" && ac_dir=. -+ if test -f $ac_dir/file; then -+ lt_cv_path_MAGIC_CMD="$ac_dir/file" -+ if test -n "$file_magic_test_file"; then -+ case $deplibs_check_method in -+ "file_magic "*) -+ file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` -+ MAGIC_CMD="$lt_cv_path_MAGIC_CMD" -+ if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | -+ $EGREP "$file_magic_regex" > /dev/null; then -+ : -+ else -+ cat <<_LT_EOF 1>&2 -+ -+*** Warning: the command libtool uses to detect shared libraries, -+*** $file_magic_cmd, produces output that libtool cannot recognize. -+*** The result is that libtool may fail to recognize shared libraries -+*** as such. This will affect the creation of libtool libraries that -+*** depend on shared libraries, but programs linked with such libtool -+*** libraries will work regardless of this problem. Nevertheless, you -+*** may want to report the problem to your system manager and/or to -+*** bug-libtool@gnu.org -+ -+_LT_EOF -+ fi ;; -+ esac -+ fi -+ break -+ fi -+ done -+ IFS="$lt_save_ifs" -+ MAGIC_CMD="$lt_save_MAGIC_CMD" -+ ;; -+esac -+fi -+ -+MAGIC_CMD="$lt_cv_path_MAGIC_CMD" -+if test -n "$MAGIC_CMD"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 -+$as_echo "$MAGIC_CMD" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ else -+ MAGIC_CMD=: -+ fi -+fi -+ -+ fi -+ ;; -+esac -+ -+# Use C for the default configuration in the libtool script -+ -+lt_save_CC="$CC" -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+# Source file extension for C test sources. -+ac_ext=c -+ -+# Object file extension for compiled C test sources. -+objext=o -+objext=$objext -+ -+# Code to be used in simple compile tests -+lt_simple_compile_test_code="int some_variable = 0;" -+ -+# Code to be used in simple link tests -+lt_simple_link_test_code='int main(){return(0);}' -+ -+ -+ -+ -+ -+ -+ -+# If no C compiler was specified, use CC. -+LTCC=${LTCC-"$CC"} -+ -+# If no C compiler flags were specified, use CFLAGS. -+LTCFLAGS=${LTCFLAGS-"$CFLAGS"} -+ -+# Allow CC to be a program name with arguments. -+compiler=$CC -+ -+# Save the default compiler, since it gets overwritten when the other -+# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. -+compiler_DEFAULT=$CC -+ -+# save warnings/boilerplate of simple test code -+ac_outfile=conftest.$ac_objext -+echo "$lt_simple_compile_test_code" >conftest.$ac_ext -+eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -+_lt_compiler_boilerplate=`cat conftest.err` -+$RM conftest* -+ -+ac_outfile=conftest.$ac_objext -+echo "$lt_simple_link_test_code" >conftest.$ac_ext -+eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -+_lt_linker_boilerplate=`cat conftest.err` -+$RM -r conftest* -+ -+ -+## CAVEAT EMPTOR: -+## There is no encapsulation within the following macros, do not change -+## the running order or otherwise move them around unless you know exactly -+## what you are doing... -+if test -n "$compiler"; then -+ -+lt_prog_compiler_no_builtin_flag= -+ -+if test "$GCC" = yes; then -+ case $cc_basename in -+ nvcc*) -+ lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; -+ *) -+ lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; -+ esac -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 -+$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } -+if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler_rtti_exceptions=no -+ ac_outfile=conftest.$ac_objext -+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext -+ lt_compiler_flag="-fno-rtti -fno-exceptions" -+ # Insert the option either (1) after the last *FLAGS variable, or -+ # (2) before a word containing "conftest.", or (3) at the end. -+ # Note that $ac_compile itself does not contain backslashes and begins -+ # with a dollar sign (not a hyphen), so the echo should work correctly. -+ # The option is referenced via a variable to avoid confusing sed. -+ lt_compile=`echo "$ac_compile" | $SED \ -+ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -+ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -+ -e 's:$: $lt_compiler_flag:'` -+ (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) -+ (eval "$lt_compile" 2>conftest.err) -+ ac_status=$? -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ if (exit $ac_status) && test -s "$ac_outfile"; then -+ # The compiler can only warn and ignore the option if not recognized -+ # So say no if there are warnings other than the usual output. -+ $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp -+ $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 -+ if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler_rtti_exceptions=yes -+ fi -+ fi -+ $RM conftest* -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 -+$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } -+ -+if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then -+ lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" -+else -+ : -+fi -+ -+fi -+ -+ -+ -+ -+ -+ -+ lt_prog_compiler_wl= -+lt_prog_compiler_pic= -+lt_prog_compiler_static= -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 -+$as_echo_n "checking for $compiler option to produce PIC... " >&6; } -+ -+ if test "$GCC" = yes; then -+ lt_prog_compiler_wl='-Wl,' -+ lt_prog_compiler_static='-static' -+ -+ case $host_os in -+ aix*) -+ # All AIX code is PIC. -+ if test "$host_cpu" = ia64; then -+ # AIX 5 now supports IA64 processor -+ lt_prog_compiler_static='-Bstatic' -+ fi -+ lt_prog_compiler_pic='-fPIC' -+ ;; -+ -+ amigaos*) -+ case $host_cpu in -+ powerpc) -+ # see comment about AmigaOS4 .so support -+ lt_prog_compiler_pic='-fPIC' -+ ;; -+ m68k) -+ # FIXME: we need at least 68020 code to build shared libraries, but -+ # adding the `-m68020' flag to GCC prevents building anything better, -+ # like `-m68040'. -+ lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' -+ ;; -+ esac -+ ;; -+ -+ beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) -+ # PIC is the default for these OSes. -+ ;; -+ -+ mingw* | cygwin* | pw32* | os2* | cegcc*) -+ # This hack is so that the source file can tell whether it is being -+ # built for inclusion in a dll (and should export symbols for example). -+ # Although the cygwin gcc ignores -fPIC, still need this for old-style -+ # (--disable-auto-import) libraries -+ lt_prog_compiler_pic='-DDLL_EXPORT' -+ ;; -+ -+ darwin* | rhapsody*) -+ # PIC is the default on this platform -+ # Common symbols not allowed in MH_DYLIB files -+ lt_prog_compiler_pic='-fno-common' -+ ;; -+ -+ haiku*) -+ # PIC is the default for Haiku. -+ # The "-static" flag exists, but is broken. -+ lt_prog_compiler_static= -+ ;; -+ -+ hpux*) -+ # PIC is the default for 64-bit PA HP-UX, but not for 32-bit -+ # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag -+ # sets the default TLS model and affects inlining. -+ case $host_cpu in -+ hppa*64*) -+ # +Z the default -+ ;; -+ *) -+ lt_prog_compiler_pic='-fPIC' -+ ;; -+ esac -+ ;; -+ -+ interix[3-9]*) -+ # Interix 3.x gcc -fpic/-fPIC options generate broken code. -+ # Instead, we relocate shared libraries at runtime. -+ ;; -+ -+ msdosdjgpp*) -+ # Just because we use GCC doesn't mean we suddenly get shared libraries -+ # on systems that don't support them. -+ lt_prog_compiler_can_build_shared=no -+ enable_shared=no -+ ;; -+ -+ *nto* | *qnx*) -+ # QNX uses GNU C++, but need to define -shared option too, otherwise -+ # it will coredump. -+ lt_prog_compiler_pic='-fPIC -shared' -+ ;; -+ -+ sysv4*MP*) -+ if test -d /usr/nec; then -+ lt_prog_compiler_pic=-Kconform_pic -+ fi -+ ;; -+ -+ *) -+ lt_prog_compiler_pic='-fPIC' -+ ;; -+ esac -+ -+ case $cc_basename in -+ nvcc*) # Cuda Compiler Driver 2.2 -+ lt_prog_compiler_wl='-Xlinker ' -+ lt_prog_compiler_pic='-Xcompiler -fPIC' -+ ;; -+ esac -+ else -+ # PORTME Check for flag to pass linker flags through the system compiler. -+ case $host_os in -+ aix*) -+ lt_prog_compiler_wl='-Wl,' -+ if test "$host_cpu" = ia64; then -+ # AIX 5 now supports IA64 processor -+ lt_prog_compiler_static='-Bstatic' -+ else -+ lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' -+ fi -+ ;; -+ -+ mingw* | cygwin* | pw32* | os2* | cegcc*) -+ # This hack is so that the source file can tell whether it is being -+ # built for inclusion in a dll (and should export symbols for example). -+ lt_prog_compiler_pic='-DDLL_EXPORT' -+ ;; -+ -+ hpux9* | hpux10* | hpux11*) -+ lt_prog_compiler_wl='-Wl,' -+ # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but -+ # not for PA HP-UX. -+ case $host_cpu in -+ hppa*64*|ia64*) -+ # +Z the default -+ ;; -+ *) -+ lt_prog_compiler_pic='+Z' -+ ;; -+ esac -+ # Is there a better lt_prog_compiler_static that works with the bundled CC? -+ lt_prog_compiler_static='${wl}-a ${wl}archive' -+ ;; -+ -+ irix5* | irix6* | nonstopux*) -+ lt_prog_compiler_wl='-Wl,' -+ # PIC (with -KPIC) is the default. -+ lt_prog_compiler_static='-non_shared' -+ ;; -+ -+ linux* | k*bsd*-gnu | kopensolaris*-gnu) -+ case $cc_basename in -+ # old Intel for x86_64 which still supported -KPIC. -+ ecc*) -+ lt_prog_compiler_wl='-Wl,' -+ lt_prog_compiler_pic='-KPIC' -+ lt_prog_compiler_static='-static' -+ ;; -+ # icc used to be incompatible with GCC. -+ # ICC 10 doesn't accept -KPIC any more. -+ icc* | ifort*) -+ lt_prog_compiler_wl='-Wl,' -+ lt_prog_compiler_pic='-fPIC' -+ lt_prog_compiler_static='-static' -+ ;; -+ # Lahey Fortran 8.1. -+ lf95*) -+ lt_prog_compiler_wl='-Wl,' -+ lt_prog_compiler_pic='--shared' -+ lt_prog_compiler_static='--static' -+ ;; -+ pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) -+ # Portland Group compilers (*not* the Pentium gcc compiler, -+ # which looks to be a dead project) -+ lt_prog_compiler_wl='-Wl,' -+ lt_prog_compiler_pic='-fpic' -+ lt_prog_compiler_static='-Bstatic' -+ ;; -+ ccc*) -+ lt_prog_compiler_wl='-Wl,' -+ # All Alpha code is PIC. -+ lt_prog_compiler_static='-non_shared' -+ ;; -+ xl* | bgxl* | bgf* | mpixl*) -+ # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene -+ lt_prog_compiler_wl='-Wl,' -+ lt_prog_compiler_pic='-qpic' -+ lt_prog_compiler_static='-qstaticlink' -+ ;; -+ *) -+ case `$CC -V 2>&1 | sed 5q` in -+ *Sun\ F* | *Sun*Fortran*) -+ # Sun Fortran 8.3 passes all unrecognized flags to the linker -+ lt_prog_compiler_pic='-KPIC' -+ lt_prog_compiler_static='-Bstatic' -+ lt_prog_compiler_wl='' -+ ;; -+ *Sun\ C*) -+ # Sun C 5.9 -+ lt_prog_compiler_pic='-KPIC' -+ lt_prog_compiler_static='-Bstatic' -+ lt_prog_compiler_wl='-Wl,' -+ ;; -+ esac -+ ;; -+ esac -+ ;; -+ -+ newsos6) -+ lt_prog_compiler_pic='-KPIC' -+ lt_prog_compiler_static='-Bstatic' -+ ;; -+ -+ *nto* | *qnx*) -+ # QNX uses GNU C++, but need to define -shared option too, otherwise -+ # it will coredump. -+ lt_prog_compiler_pic='-fPIC -shared' -+ ;; -+ -+ osf3* | osf4* | osf5*) -+ lt_prog_compiler_wl='-Wl,' -+ # All OSF/1 code is PIC. -+ lt_prog_compiler_static='-non_shared' -+ ;; -+ -+ rdos*) -+ lt_prog_compiler_static='-non_shared' -+ ;; -+ -+ solaris*) -+ lt_prog_compiler_pic='-KPIC' -+ lt_prog_compiler_static='-Bstatic' -+ case $cc_basename in -+ f77* | f90* | f95*) -+ lt_prog_compiler_wl='-Qoption ld ';; -+ *) -+ lt_prog_compiler_wl='-Wl,';; -+ esac -+ ;; -+ -+ sunos4*) -+ lt_prog_compiler_wl='-Qoption ld ' -+ lt_prog_compiler_pic='-PIC' -+ lt_prog_compiler_static='-Bstatic' -+ ;; -+ -+ sysv4 | sysv4.2uw2* | sysv4.3*) -+ lt_prog_compiler_wl='-Wl,' -+ lt_prog_compiler_pic='-KPIC' -+ lt_prog_compiler_static='-Bstatic' -+ ;; -+ -+ sysv4*MP*) -+ if test -d /usr/nec ;then -+ lt_prog_compiler_pic='-Kconform_pic' -+ lt_prog_compiler_static='-Bstatic' -+ fi -+ ;; -+ -+ sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) -+ lt_prog_compiler_wl='-Wl,' -+ lt_prog_compiler_pic='-KPIC' -+ lt_prog_compiler_static='-Bstatic' -+ ;; -+ -+ unicos*) -+ lt_prog_compiler_wl='-Wl,' -+ lt_prog_compiler_can_build_shared=no -+ ;; -+ -+ uts4*) -+ lt_prog_compiler_pic='-pic' -+ lt_prog_compiler_static='-Bstatic' -+ ;; -+ -+ *) -+ lt_prog_compiler_can_build_shared=no -+ ;; -+ esac -+ fi -+ -+case $host_os in -+ # For platforms which do not support PIC, -DPIC is meaningless: -+ *djgpp*) -+ lt_prog_compiler_pic= -+ ;; -+ *) -+ lt_prog_compiler_pic="$lt_prog_compiler_pic@&t@ -DPIC" -+ ;; -+esac -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic" >&5 -+$as_echo "$lt_prog_compiler_pic" >&6; } -+ -+ -+ -+ -+ -+ -+# -+# Check to make sure the PIC flag actually works. -+# -+if test -n "$lt_prog_compiler_pic"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 -+$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } -+if ${lt_cv_prog_compiler_pic_works+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler_pic_works=no -+ ac_outfile=conftest.$ac_objext -+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext -+ lt_compiler_flag="$lt_prog_compiler_pic@&t@ -DPIC" -+ # Insert the option either (1) after the last *FLAGS variable, or -+ # (2) before a word containing "conftest.", or (3) at the end. -+ # Note that $ac_compile itself does not contain backslashes and begins -+ # with a dollar sign (not a hyphen), so the echo should work correctly. -+ # The option is referenced via a variable to avoid confusing sed. -+ lt_compile=`echo "$ac_compile" | $SED \ -+ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -+ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -+ -e 's:$: $lt_compiler_flag:'` -+ (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) -+ (eval "$lt_compile" 2>conftest.err) -+ ac_status=$? -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ if (exit $ac_status) && test -s "$ac_outfile"; then -+ # The compiler can only warn and ignore the option if not recognized -+ # So say no if there are warnings other than the usual output. -+ $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp -+ $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 -+ if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler_pic_works=yes -+ fi -+ fi -+ $RM conftest* -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 -+$as_echo "$lt_cv_prog_compiler_pic_works" >&6; } -+ -+if test x"$lt_cv_prog_compiler_pic_works" = xyes; then -+ case $lt_prog_compiler_pic in -+ "" | " "*) ;; -+ *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; -+ esac -+else -+ lt_prog_compiler_pic= -+ lt_prog_compiler_can_build_shared=no -+fi -+ -+fi -+ -+ -+ -+ -+ -+ -+# -+# Check to make sure the static flag actually works. -+# -+wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 -+$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } -+if ${lt_cv_prog_compiler_static_works+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler_static_works=no -+ save_LDFLAGS="$LDFLAGS" -+ LDFLAGS="$LDFLAGS $lt_tmp_static_flag" -+ echo "$lt_simple_link_test_code" > conftest.$ac_ext -+ if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then -+ # The linker can only warn and ignore the option if not recognized -+ # So say no if there are warnings -+ if test -s conftest.err; then -+ # Append any errors to the config.log. -+ cat conftest.err 1>&5 -+ $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp -+ $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 -+ if diff conftest.exp conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler_static_works=yes -+ fi -+ else -+ lt_cv_prog_compiler_static_works=yes -+ fi -+ fi -+ $RM -r conftest* -+ LDFLAGS="$save_LDFLAGS" -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 -+$as_echo "$lt_cv_prog_compiler_static_works" >&6; } -+ -+if test x"$lt_cv_prog_compiler_static_works" = xyes; then -+ : -+else -+ lt_prog_compiler_static= -+fi -+ -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -+$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -+if ${lt_cv_prog_compiler_c_o+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler_c_o=no -+ $RM -r conftest 2>/dev/null -+ mkdir conftest -+ cd conftest -+ mkdir out -+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext -+ -+ lt_compiler_flag="-o out/conftest2.$ac_objext" -+ # Insert the option either (1) after the last *FLAGS variable, or -+ # (2) before a word containing "conftest.", or (3) at the end. -+ # Note that $ac_compile itself does not contain backslashes and begins -+ # with a dollar sign (not a hyphen), so the echo should work correctly. -+ lt_compile=`echo "$ac_compile" | $SED \ -+ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -+ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -+ -e 's:$: $lt_compiler_flag:'` -+ (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) -+ (eval "$lt_compile" 2>out/conftest.err) -+ ac_status=$? -+ cat out/conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ if (exit $ac_status) && test -s out/conftest2.$ac_objext -+ then -+ # The compiler can only warn and ignore the option if not recognized -+ # So say no if there are warnings -+ $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp -+ $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 -+ if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler_c_o=yes -+ fi -+ fi -+ chmod u+w . 2>&5 -+ $RM conftest* -+ # SGI C++ compiler will create directory out/ii_files/ for -+ # template instantiation -+ test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files -+ $RM out/* && rmdir out -+ cd .. -+ $RM -r conftest -+ $RM conftest* -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 -+$as_echo "$lt_cv_prog_compiler_c_o" >&6; } -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -+$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -+if ${lt_cv_prog_compiler_c_o+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler_c_o=no -+ $RM -r conftest 2>/dev/null -+ mkdir conftest -+ cd conftest -+ mkdir out -+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext -+ -+ lt_compiler_flag="-o out/conftest2.$ac_objext" -+ # Insert the option either (1) after the last *FLAGS variable, or -+ # (2) before a word containing "conftest.", or (3) at the end. -+ # Note that $ac_compile itself does not contain backslashes and begins -+ # with a dollar sign (not a hyphen), so the echo should work correctly. -+ lt_compile=`echo "$ac_compile" | $SED \ -+ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -+ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -+ -e 's:$: $lt_compiler_flag:'` -+ (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) -+ (eval "$lt_compile" 2>out/conftest.err) -+ ac_status=$? -+ cat out/conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ if (exit $ac_status) && test -s out/conftest2.$ac_objext -+ then -+ # The compiler can only warn and ignore the option if not recognized -+ # So say no if there are warnings -+ $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp -+ $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 -+ if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler_c_o=yes -+ fi -+ fi -+ chmod u+w . 2>&5 -+ $RM conftest* -+ # SGI C++ compiler will create directory out/ii_files/ for -+ # template instantiation -+ test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files -+ $RM out/* && rmdir out -+ cd .. -+ $RM -r conftest -+ $RM conftest* -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 -+$as_echo "$lt_cv_prog_compiler_c_o" >&6; } -+ -+ -+ -+ -+hard_links="nottested" -+if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then -+ # do not overwrite the value of need_locks provided by the user -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 -+$as_echo_n "checking if we can lock with hard links... " >&6; } -+ hard_links=yes -+ $RM conftest* -+ ln conftest.a conftest.b 2>/dev/null && hard_links=no -+ touch conftest.a -+ ln conftest.a conftest.b 2>&5 || hard_links=no -+ ln conftest.a conftest.b 2>/dev/null && hard_links=no -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 -+$as_echo "$hard_links" >&6; } -+ if test "$hard_links" = no; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 -+$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} -+ need_locks=warn -+ fi -+else -+ need_locks=no -+fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -+$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } -+ -+ runpath_var= -+ allow_undefined_flag= -+ always_export_symbols=no -+ archive_cmds= -+ archive_expsym_cmds= -+ compiler_needs_object=no -+ enable_shared_with_static_runtimes=no -+ export_dynamic_flag_spec= -+ export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' -+ hardcode_automatic=no -+ hardcode_direct=no -+ hardcode_direct_absolute=no -+ hardcode_libdir_flag_spec= -+ hardcode_libdir_flag_spec_ld= -+ hardcode_libdir_separator= -+ hardcode_minus_L=no -+ hardcode_shlibpath_var=unsupported -+ inherit_rpath=no -+ link_all_deplibs=unknown -+ module_cmds= -+ module_expsym_cmds= -+ old_archive_from_new_cmds= -+ old_archive_from_expsyms_cmds= -+ thread_safe_flag_spec= -+ whole_archive_flag_spec= -+ # include_expsyms should be a list of space-separated symbols to be *always* -+ # included in the symbol list -+ include_expsyms= -+ # exclude_expsyms can be an extended regexp of symbols to exclude -+ # it will be wrapped by ` (' and `)$', so one must not match beginning or -+ # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', -+ # as well as any symbol that contains `d'. -+ exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' -+ # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out -+ # platforms (ab)use it in PIC code, but their linkers get confused if -+ # the symbol is explicitly referenced. Since portable code cannot -+ # rely on this symbol name, it's probably fine to never include it in -+ # preloaded symbol tables. -+ # Exclude shared library initialization/finalization symbols. -+ extract_expsyms_cmds= -+ -+ case $host_os in -+ cygwin* | mingw* | pw32* | cegcc*) -+ # FIXME: the MSVC++ port hasn't been tested in a loooong time -+ # When not using gcc, we currently assume that we are using -+ # Microsoft Visual C++. -+ if test "$GCC" != yes; then -+ with_gnu_ld=no -+ fi -+ ;; -+ interix*) -+ # we just hope/assume this is gcc and not c89 (= MSVC++) -+ with_gnu_ld=yes -+ ;; -+ openbsd*) -+ with_gnu_ld=no -+ ;; -+ esac -+ -+ ld_shlibs=yes -+ -+ # On some targets, GNU ld is compatible enough with the native linker -+ # that we're better off using the native interface for both. -+ lt_use_gnu_ld_interface=no -+ if test "$with_gnu_ld" = yes; then -+ case $host_os in -+ aix*) -+ # The AIX port of GNU ld has always aspired to compatibility -+ # with the native linker. However, as the warning in the GNU ld -+ # block says, versions before 2.19.5* couldn't really create working -+ # shared libraries, regardless of the interface used. -+ case `$LD -v 2>&1` in -+ *\ \(GNU\ Binutils\)\ 2.19.5*) ;; -+ *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; -+ *\ \(GNU\ Binutils\)\ [3-9]*) ;; -+ *) -+ lt_use_gnu_ld_interface=yes -+ ;; -+ esac -+ ;; -+ *) -+ lt_use_gnu_ld_interface=yes -+ ;; -+ esac -+ fi -+ -+ if test "$lt_use_gnu_ld_interface" = yes; then -+ # If archive_cmds runs LD, not CC, wlarc should be empty -+ wlarc='${wl}' -+ -+ # Set some defaults for GNU ld with shared library support. These -+ # are reset later if shared libraries are not supported. Putting them -+ # here allows them to be overridden if necessary. -+ runpath_var=LD_RUN_PATH -+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' -+ export_dynamic_flag_spec='${wl}--export-dynamic' -+ # ancient GNU ld didn't support --whole-archive et. al. -+ if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then -+ whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' -+ else -+ whole_archive_flag_spec= -+ fi -+ supports_anon_versioning=no -+ case `$LD -v 2>&1` in -+ *GNU\ gold*) supports_anon_versioning=yes ;; -+ *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 -+ *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... -+ *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... -+ *\ 2.11.*) ;; # other 2.11 versions -+ *) supports_anon_versioning=yes ;; -+ esac -+ -+ # See if GNU ld supports shared libraries. -+ case $host_os in -+ aix[3-9]*) -+ # On AIX/PPC, the GNU linker is very broken -+ if test "$host_cpu" != ia64; then -+ ld_shlibs=no -+ cat <<_LT_EOF 1>&2 -+ -+*** Warning: the GNU linker, at least up to release 2.19, is reported -+*** to be unable to reliably create shared libraries on AIX. -+*** Therefore, libtool is disabling shared libraries support. If you -+*** really care for shared libraries, you may want to install binutils -+*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. -+*** You will then need to restart the configuration process. -+ -+_LT_EOF -+ fi -+ ;; -+ -+ amigaos*) -+ case $host_cpu in -+ powerpc) -+ # see comment about AmigaOS4 .so support -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds='' -+ ;; -+ m68k) -+ archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' -+ hardcode_libdir_flag_spec='-L$libdir' -+ hardcode_minus_L=yes -+ ;; -+ esac -+ ;; -+ -+ beos*) -+ if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then -+ allow_undefined_flag=unsupported -+ # Joseph Beckenbach says some releases of gcc -+ # support --undefined. This deserves some investigation. FIXME -+ archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ else -+ ld_shlibs=no -+ fi -+ ;; -+ -+ cygwin* | mingw* | pw32* | cegcc*) -+ # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, -+ # as there is no search path for DLLs. -+ hardcode_libdir_flag_spec='-L$libdir' -+ export_dynamic_flag_spec='${wl}--export-all-symbols' -+ allow_undefined_flag=unsupported -+ always_export_symbols=no -+ enable_shared_with_static_runtimes=yes -+ export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' -+ -+ if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' -+ # If the export-symbols file already is a .def file (1st line -+ # is EXPORTS), use it as is; otherwise, prepend... -+ archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then -+ cp $export_symbols $output_objdir/$soname.def; -+ else -+ echo EXPORTS > $output_objdir/$soname.def; -+ cat $export_symbols >> $output_objdir/$soname.def; -+ fi~ -+ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' -+ else -+ ld_shlibs=no -+ fi -+ ;; -+ -+ haiku*) -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ link_all_deplibs=yes -+ ;; -+ -+ interix[3-9]*) -+ hardcode_direct=no -+ hardcode_shlibpath_var=no -+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir' -+ export_dynamic_flag_spec='${wl}-E' -+ # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. -+ # Instead, shared libraries are loaded at an image base (0x10000000 by -+ # default) and relocated if they conflict, which is a slow very memory -+ # consuming and fragmenting process. To avoid this, we pick a random, -+ # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link -+ # time. Moving up from 0x10000000 also allows more sbrk(2) space. -+ archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' -+ archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' -+ ;; -+ -+ gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) -+ tmp_diet=no -+ if test "$host_os" = linux-dietlibc; then -+ case $cc_basename in -+ diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) -+ esac -+ fi -+ if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ -+ && test "$tmp_diet" = no -+ then -+ tmp_addflag=' $pic_flag' -+ tmp_sharedflag='-shared' -+ case $cc_basename,$host_cpu in -+ pgcc*) # Portland Group C compiler -+ whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' -+ tmp_addflag=' $pic_flag' -+ ;; -+ pgf77* | pgf90* | pgf95* | pgfortran*) -+ # Portland Group f77 and f90 compilers -+ whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' -+ tmp_addflag=' $pic_flag -Mnomain' ;; -+ ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 -+ tmp_addflag=' -i_dynamic' ;; -+ efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 -+ tmp_addflag=' -i_dynamic -nofor_main' ;; -+ ifc* | ifort*) # Intel Fortran compiler -+ tmp_addflag=' -nofor_main' ;; -+ lf95*) # Lahey Fortran 8.1 -+ whole_archive_flag_spec= -+ tmp_sharedflag='--shared' ;; -+ xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) -+ tmp_sharedflag='-qmkshrobj' -+ tmp_addflag= ;; -+ nvcc*) # Cuda Compiler Driver 2.2 -+ whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' -+ compiler_needs_object=yes -+ ;; -+ esac -+ case `$CC -V 2>&1 | sed 5q` in -+ *Sun\ C*) # Sun C 5.9 -+ whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' -+ compiler_needs_object=yes -+ tmp_sharedflag='-G' ;; -+ *Sun\ F*) # Sun Fortran 8.3 -+ tmp_sharedflag='-G' ;; -+ esac -+ archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ -+ if test "x$supports_anon_versioning" = xyes; then -+ archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ -+ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ -+ echo "local: *; };" >> $output_objdir/$libname.ver~ -+ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' -+ fi -+ -+ case $cc_basename in -+ xlf* | bgf* | bgxlf* | mpixlf*) -+ # IBM XL Fortran 10.1 on PPC cannot create shared libs itself -+ whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' -+ hardcode_libdir_flag_spec= -+ hardcode_libdir_flag_spec_ld='-rpath $libdir' -+ archive_cmds='$LD -shared $libobjs $deplibs $compiler_flags -soname $soname -o $lib' -+ if test "x$supports_anon_versioning" = xyes; then -+ archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ -+ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ -+ echo "local: *; };" >> $output_objdir/$libname.ver~ -+ $LD -shared $libobjs $deplibs $compiler_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' -+ fi -+ ;; -+ esac -+ else -+ ld_shlibs=no -+ fi -+ ;; -+ -+ netbsd*) -+ if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then -+ archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' -+ wlarc= -+ else -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' -+ fi -+ ;; -+ -+ solaris*) -+ if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then -+ ld_shlibs=no -+ cat <<_LT_EOF 1>&2 -+ -+*** Warning: The releases 2.8.* of the GNU linker cannot reliably -+*** create shared libraries on Solaris systems. Therefore, libtool -+*** is disabling shared libraries support. We urge you to upgrade GNU -+*** binutils to release 2.9.1 or newer. Another option is to modify -+*** your PATH or compiler configuration so that the native linker is -+*** used, and then restart. -+ -+_LT_EOF -+ elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' -+ else -+ ld_shlibs=no -+ fi -+ ;; -+ -+ sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) -+ case `$LD -v 2>&1` in -+ *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) -+ ld_shlibs=no -+ cat <<_LT_EOF 1>&2 -+ -+*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not -+*** reliably create shared libraries on SCO systems. Therefore, libtool -+*** is disabling shared libraries support. We urge you to upgrade GNU -+*** binutils to release 2.16.91.0.3 or newer. Another option is to modify -+*** your PATH or compiler configuration so that the native linker is -+*** used, and then restart. -+ -+_LT_EOF -+ ;; -+ *) -+ # For security reasons, it is highly recommended that you always -+ # use absolute paths for naming shared libraries, and exclude the -+ # DT_RUNPATH tag from executables and libraries. But doing so -+ # requires that you compile everything twice, which is a pain. -+ if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then -+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' -+ else -+ ld_shlibs=no -+ fi -+ ;; -+ esac -+ ;; -+ -+ sunos4*) -+ archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' -+ wlarc= -+ hardcode_direct=yes -+ hardcode_shlibpath_var=no -+ ;; -+ -+ *) -+ if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' -+ else -+ ld_shlibs=no -+ fi -+ ;; -+ esac -+ -+ if test "$ld_shlibs" = no; then -+ runpath_var= -+ hardcode_libdir_flag_spec= -+ export_dynamic_flag_spec= -+ whole_archive_flag_spec= -+ fi -+ else -+ # PORTME fill in a description of your system's linker (not GNU ld) -+ case $host_os in -+ aix3*) -+ allow_undefined_flag=unsupported -+ always_export_symbols=yes -+ archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' -+ # Note: this linker hardcodes the directories in LIBPATH if there -+ # are no directories specified by -L. -+ hardcode_minus_L=yes -+ if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then -+ # Neither direct hardcoding nor static linking is supported with a -+ # broken collect2. -+ hardcode_direct=unsupported -+ fi -+ ;; -+ -+ aix[4-9]*) -+ if test "$host_cpu" = ia64; then -+ # On IA64, the linker does run time linking by default, so we don't -+ # have to do anything special. -+ aix_use_runtimelinking=no -+ exp_sym_flag='-Bexport' -+ no_entry_flag="" -+ else -+ # If we're using GNU nm, then we don't want the "-C" option. -+ # -C means demangle to AIX nm, but means don't demangle with GNU nm -+ # Also, AIX nm treats weak defined symbols like other global -+ # defined symbols, whereas GNU nm marks them as "W". -+ if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then -+ export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' -+ else -+ export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' -+ fi -+ aix_use_runtimelinking=no -+ -+ # Test if we are trying to use run time linking or normal -+ # AIX style linking. If -brtl is somewhere in LDFLAGS, we -+ # need to do runtime linking. -+ case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) -+ for ld_flag in $LDFLAGS; do -+ if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then -+ aix_use_runtimelinking=yes -+ break -+ fi -+ done -+ ;; -+ esac -+ -+ exp_sym_flag='-bexport' -+ no_entry_flag='-bnoentry' -+ fi -+ -+ # When large executables or shared objects are built, AIX ld can -+ # have problems creating the table of contents. If linking a library -+ # or program results in "error TOC overflow" add -mminimal-toc to -+ # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not -+ # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. -+ -+ archive_cmds='' -+ hardcode_direct=yes -+ hardcode_direct_absolute=yes -+ hardcode_libdir_separator=':' -+ link_all_deplibs=yes -+ file_list_spec='${wl}-f,' -+ -+ if test "$GCC" = yes; then -+ case $host_os in aix4.[012]|aix4.[012].*) -+ # We only want to do this on AIX 4.2 and lower, the check -+ # below for broken collect2 doesn't work under 4.3+ -+ collect2name=`${CC} -print-prog-name=collect2` -+ if test -f "$collect2name" && -+ strings "$collect2name" | $GREP resolve_lib_name >/dev/null -+ then -+ # We have reworked collect2 -+ : -+ else -+ # We have old collect2 -+ hardcode_direct=unsupported -+ # It fails to find uninstalled libraries when the uninstalled -+ # path is not listed in the libpath. Setting hardcode_minus_L -+ # to unsupported forces relinking -+ hardcode_minus_L=yes -+ hardcode_libdir_flag_spec='-L$libdir' -+ hardcode_libdir_separator= -+ fi -+ ;; -+ esac -+ shared_flag='-shared' -+ if test "$aix_use_runtimelinking" = yes; then -+ shared_flag="$shared_flag "'${wl}-G' -+ fi -+ else -+ # not using gcc -+ if test "$host_cpu" = ia64; then -+ # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release -+ # chokes on -Wl,-G. The following line is correct: -+ shared_flag='-G' -+ else -+ if test "$aix_use_runtimelinking" = yes; then -+ shared_flag='${wl}-G' -+ else -+ shared_flag='${wl}-bM:SRE' -+ fi -+ fi -+ fi -+ -+ export_dynamic_flag_spec='${wl}-bexpall' -+ # It seems that -bexpall does not export symbols beginning with -+ # underscore (_), so it is better to generate a list of symbols to export. -+ always_export_symbols=yes -+ if test "$aix_use_runtimelinking" = yes; then -+ # Warning - without using the other runtime loading flags (-brtl), -+ # -berok will link without error, but may produce a broken library. -+ allow_undefined_flag='-berok' -+ # Determine the default libpath from the value encoded in an -+ # empty executable. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ -+lt_aix_libpath_sed=' -+ /Import File Strings/,/^$/ { -+ /^0/ { -+ s/^0 *\(.*\)$/\1/ -+ p -+ } -+ }' -+aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -+# Check for a 64-bit object if we didn't find anything. -+if test -z "$aix_libpath"; then -+ aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -+fi -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi -+ -+ hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" -+ archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" -+ else -+ if test "$host_cpu" = ia64; then -+ hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' -+ allow_undefined_flag="-z nodefs" -+ archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" -+ else -+ # Determine the default libpath from the value encoded in an -+ # empty executable. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ -+lt_aix_libpath_sed=' -+ /Import File Strings/,/^$/ { -+ /^0/ { -+ s/^0 *\(.*\)$/\1/ -+ p -+ } -+ }' -+aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -+# Check for a 64-bit object if we didn't find anything. -+if test -z "$aix_libpath"; then -+ aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -+fi -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi -+ -+ hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" -+ # Warning - without using the other run time loading flags, -+ # -berok will link without error, but may produce a broken library. -+ no_undefined_flag=' ${wl}-bernotok' -+ allow_undefined_flag=' ${wl}-berok' -+ if test "$with_gnu_ld" = yes; then -+ # We only use this code for GNU lds that support --whole-archive. -+ whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' -+ else -+ # Exported symbols can be pulled into shared objects from archives -+ whole_archive_flag_spec='$convenience' -+ fi -+ archive_cmds_need_lc=yes -+ # This is similar to how AIX traditionally builds its shared libraries. -+ archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' -+ fi -+ fi -+ ;; -+ -+ amigaos*) -+ case $host_cpu in -+ powerpc) -+ # see comment about AmigaOS4 .so support -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds='' -+ ;; -+ m68k) -+ archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' -+ hardcode_libdir_flag_spec='-L$libdir' -+ hardcode_minus_L=yes -+ ;; -+ esac -+ ;; -+ -+ bsdi[45]*) -+ export_dynamic_flag_spec=-rdynamic -+ ;; -+ -+ cygwin* | mingw* | pw32* | cegcc*) -+ # When not using gcc, we currently assume that we are using -+ # Microsoft Visual C++. -+ # hardcode_libdir_flag_spec is actually meaningless, as there is -+ # no search path for DLLs. -+ hardcode_libdir_flag_spec=' ' -+ allow_undefined_flag=unsupported -+ # Tell ltmain to make .lib files, not .a files. -+ libext=lib -+ # Tell ltmain to make .dll files, not .so files. -+ shrext_cmds=".dll" -+ # FIXME: Setting linknames here is a bad hack. -+ archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' -+ # The linker will automatically build a .lib file if we build a DLL. -+ old_archive_from_new_cmds='true' -+ # FIXME: Should let the user specify the lib program. -+ old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' -+ fix_srcfile_path='`cygpath -w "$srcfile"`' -+ enable_shared_with_static_runtimes=yes -+ ;; -+ -+ darwin* | rhapsody*) -+ -+ -+ archive_cmds_need_lc=no -+ hardcode_direct=no -+ hardcode_automatic=yes -+ hardcode_shlibpath_var=unsupported -+ if test "$lt_cv_ld_force_load" = "yes"; then -+ whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' -+ else -+ whole_archive_flag_spec='' -+ fi -+ link_all_deplibs=yes -+ allow_undefined_flag="$_lt_dar_allow_undefined" -+ case $cc_basename in -+ ifort*) _lt_dar_can_shared=yes ;; -+ *) _lt_dar_can_shared=$GCC ;; -+ esac -+ if test "$_lt_dar_can_shared" = "yes"; then -+ output_verbose_link_cmd=func_echo_all -+ archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" -+ module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" -+ archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" -+ module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" -+ -+ else -+ ld_shlibs=no -+ fi -+ -+ ;; -+ -+ dgux*) -+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' -+ hardcode_libdir_flag_spec='-L$libdir' -+ hardcode_shlibpath_var=no -+ ;; -+ -+ # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor -+ # support. Future versions do this automatically, but an explicit c++rt0.o -+ # does not break anything, and helps significantly (at the cost of a little -+ # extra space). -+ freebsd2.2*) -+ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' -+ hardcode_libdir_flag_spec='-R$libdir' -+ hardcode_direct=yes -+ hardcode_shlibpath_var=no -+ ;; -+ -+ # Unfortunately, older versions of FreeBSD 2 do not have this feature. -+ freebsd2.*) -+ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' -+ hardcode_direct=yes -+ hardcode_minus_L=yes -+ hardcode_shlibpath_var=no -+ ;; -+ -+ # FreeBSD 3 and greater uses gcc -shared to do shared libraries. -+ freebsd* | dragonfly*) -+ archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' -+ hardcode_libdir_flag_spec='-R$libdir' -+ hardcode_direct=yes -+ hardcode_shlibpath_var=no -+ ;; -+ -+ hpux9*) -+ if test "$GCC" = yes; then -+ archive_cmds='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' -+ else -+ archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' -+ fi -+ hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' -+ hardcode_libdir_separator=: -+ hardcode_direct=yes -+ -+ # hardcode_minus_L: Not really in the search PATH, -+ # but as the default location of the library. -+ hardcode_minus_L=yes -+ export_dynamic_flag_spec='${wl}-E' -+ ;; -+ -+ hpux10*) -+ if test "$GCC" = yes && test "$with_gnu_ld" = no; then -+ archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' -+ else -+ archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' -+ fi -+ if test "$with_gnu_ld" = no; then -+ hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' -+ hardcode_libdir_flag_spec_ld='+b $libdir' -+ hardcode_libdir_separator=: -+ hardcode_direct=yes -+ hardcode_direct_absolute=yes -+ export_dynamic_flag_spec='${wl}-E' -+ # hardcode_minus_L: Not really in the search PATH, -+ # but as the default location of the library. -+ hardcode_minus_L=yes -+ fi -+ ;; -+ -+ hpux11*) -+ if test "$GCC" = yes && test "$with_gnu_ld" = no; then -+ case $host_cpu in -+ hppa*64*) -+ archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' -+ ;; -+ ia64*) -+ archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' -+ ;; -+ *) -+ archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' -+ ;; -+ esac -+ else -+ case $host_cpu in -+ hppa*64*) -+ archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' -+ ;; -+ ia64*) -+ archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' -+ ;; -+ *) -+ -+ # Older versions of the 11.00 compiler do not understand -b yet -+ # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 -+$as_echo_n "checking if $CC understands -b... " >&6; } -+if ${lt_cv_prog_compiler__b+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler__b=no -+ save_LDFLAGS="$LDFLAGS" -+ LDFLAGS="$LDFLAGS -b" -+ echo "$lt_simple_link_test_code" > conftest.$ac_ext -+ if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then -+ # The linker can only warn and ignore the option if not recognized -+ # So say no if there are warnings -+ if test -s conftest.err; then -+ # Append any errors to the config.log. -+ cat conftest.err 1>&5 -+ $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp -+ $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 -+ if diff conftest.exp conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler__b=yes -+ fi -+ else -+ lt_cv_prog_compiler__b=yes -+ fi -+ fi -+ $RM -r conftest* -+ LDFLAGS="$save_LDFLAGS" -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 -+$as_echo "$lt_cv_prog_compiler__b" >&6; } -+ -+if test x"$lt_cv_prog_compiler__b" = xyes; then -+ archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' -+else -+ archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' -+fi -+ -+ ;; -+ esac -+ fi -+ if test "$with_gnu_ld" = no; then -+ hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' -+ hardcode_libdir_separator=: -+ -+ case $host_cpu in -+ hppa*64*|ia64*) -+ hardcode_direct=no -+ hardcode_shlibpath_var=no -+ ;; -+ *) -+ hardcode_direct=yes -+ hardcode_direct_absolute=yes -+ export_dynamic_flag_spec='${wl}-E' -+ -+ # hardcode_minus_L: Not really in the search PATH, -+ # but as the default location of the library. -+ hardcode_minus_L=yes -+ ;; -+ esac -+ fi -+ ;; -+ -+ irix5* | irix6* | nonstopux*) -+ if test "$GCC" = yes; then -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' -+ # Try to use the -exported_symbol ld option, if it does not -+ # work, assume that -exports_file does not work either and -+ # implicitly export all symbols. -+ save_LDFLAGS="$LDFLAGS" -+ LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+int foo(void) {} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' -+ -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ LDFLAGS="$save_LDFLAGS" -+ else -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' -+ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' -+ fi -+ archive_cmds_need_lc='no' -+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' -+ hardcode_libdir_separator=: -+ inherit_rpath=yes -+ link_all_deplibs=yes -+ ;; -+ -+ netbsd*) -+ if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then -+ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out -+ else -+ archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF -+ fi -+ hardcode_libdir_flag_spec='-R$libdir' -+ hardcode_direct=yes -+ hardcode_shlibpath_var=no -+ ;; -+ -+ newsos6) -+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' -+ hardcode_direct=yes -+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' -+ hardcode_libdir_separator=: -+ hardcode_shlibpath_var=no -+ ;; -+ -+ *nto* | *qnx*) -+ ;; -+ -+ openbsd*) -+ if test -f /usr/libexec/ld.so; then -+ hardcode_direct=yes -+ hardcode_shlibpath_var=no -+ hardcode_direct_absolute=yes -+ if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then -+ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' -+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir' -+ export_dynamic_flag_spec='${wl}-E' -+ else -+ case $host_os in -+ openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) -+ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' -+ hardcode_libdir_flag_spec='-R$libdir' -+ ;; -+ *) -+ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' -+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir' -+ ;; -+ esac -+ fi -+ else -+ ld_shlibs=no -+ fi -+ ;; -+ -+ os2*) -+ hardcode_libdir_flag_spec='-L$libdir' -+ hardcode_minus_L=yes -+ allow_undefined_flag=unsupported -+ archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' -+ old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' -+ ;; -+ -+ osf3*) -+ if test "$GCC" = yes; then -+ allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' -+ archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' -+ else -+ allow_undefined_flag=' -expect_unresolved \*' -+ archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' -+ fi -+ archive_cmds_need_lc='no' -+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' -+ hardcode_libdir_separator=: -+ ;; -+ -+ osf4* | osf5*) # as osf3* with the addition of -msym flag -+ if test "$GCC" = yes; then -+ allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' -+ archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' -+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' -+ else -+ allow_undefined_flag=' -expect_unresolved \*' -+ archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' -+ archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ -+ $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' -+ -+ # Both c and cxx compiler support -rpath directly -+ hardcode_libdir_flag_spec='-rpath $libdir' -+ fi -+ archive_cmds_need_lc='no' -+ hardcode_libdir_separator=: -+ ;; -+ -+ solaris*) -+ no_undefined_flag=' -z defs' -+ if test "$GCC" = yes; then -+ wlarc='${wl}' -+ archive_cmds='$CC -shared ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ -+ $CC -shared ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' -+ else -+ case `$CC -V 2>&1` in -+ *"Compilers 5.0"*) -+ wlarc='' -+ archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' -+ archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ -+ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' -+ ;; -+ *) -+ wlarc='${wl}' -+ archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ -+ $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' -+ ;; -+ esac -+ fi -+ hardcode_libdir_flag_spec='-R$libdir' -+ hardcode_shlibpath_var=no -+ case $host_os in -+ solaris2.[0-5] | solaris2.[0-5].*) ;; -+ *) -+ # The compiler driver will combine and reorder linker options, -+ # but understands `-z linker_flag'. GCC discards it without `$wl', -+ # but is careful enough not to reorder. -+ # Supported since Solaris 2.6 (maybe 2.5.1?) -+ if test "$GCC" = yes; then -+ whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' -+ else -+ whole_archive_flag_spec='-z allextract$convenience -z defaultextract' -+ fi -+ ;; -+ esac -+ link_all_deplibs=yes -+ ;; -+ -+ sunos4*) -+ if test "x$host_vendor" = xsequent; then -+ # Use $CC to link under sequent, because it throws in some extra .o -+ # files that make .init and .fini sections work. -+ archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' -+ else -+ archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' -+ fi -+ hardcode_libdir_flag_spec='-L$libdir' -+ hardcode_direct=yes -+ hardcode_minus_L=yes -+ hardcode_shlibpath_var=no -+ ;; -+ -+ sysv4) -+ case $host_vendor in -+ sni) -+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' -+ hardcode_direct=yes # is this really true??? -+ ;; -+ siemens) -+ ## LD is ld it makes a PLAMLIB -+ ## CC just makes a GrossModule. -+ archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' -+ reload_cmds='$CC -r -o $output$reload_objs' -+ hardcode_direct=no -+ ;; -+ motorola) -+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' -+ hardcode_direct=no #Motorola manual says yes, but my tests say they lie -+ ;; -+ esac -+ runpath_var='LD_RUN_PATH' -+ hardcode_shlibpath_var=no -+ ;; -+ -+ sysv4.3*) -+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' -+ hardcode_shlibpath_var=no -+ export_dynamic_flag_spec='-Bexport' -+ ;; -+ -+ sysv4*MP*) -+ if test -d /usr/nec; then -+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' -+ hardcode_shlibpath_var=no -+ runpath_var=LD_RUN_PATH -+ hardcode_runpath_var=yes -+ ld_shlibs=yes -+ fi -+ ;; -+ -+ sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) -+ no_undefined_flag='${wl}-z,text' -+ archive_cmds_need_lc=no -+ hardcode_shlibpath_var=no -+ runpath_var='LD_RUN_PATH' -+ -+ if test "$GCC" = yes; then -+ archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ else -+ archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ fi -+ ;; -+ -+ sysv5* | sco3.2v5* | sco5v6*) -+ # Note: We can NOT use -z defs as we might desire, because we do not -+ # link with -lc, and that would cause any symbols used from libc to -+ # always be unresolved, which means just about no library would -+ # ever link correctly. If we're not using GNU ld we use -z text -+ # though, which does catch some bad symbols but isn't as heavy-handed -+ # as -z defs. -+ no_undefined_flag='${wl}-z,text' -+ allow_undefined_flag='${wl}-z,nodefs' -+ archive_cmds_need_lc=no -+ hardcode_shlibpath_var=no -+ hardcode_libdir_flag_spec='${wl}-R,$libdir' -+ hardcode_libdir_separator=':' -+ link_all_deplibs=yes -+ export_dynamic_flag_spec='${wl}-Bexport' -+ runpath_var='LD_RUN_PATH' -+ -+ if test "$GCC" = yes; then -+ archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ else -+ archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ fi -+ ;; -+ -+ uts4*) -+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' -+ hardcode_libdir_flag_spec='-L$libdir' -+ hardcode_shlibpath_var=no -+ ;; -+ -+ *) -+ ld_shlibs=no -+ ;; -+ esac -+ -+ if test x$host_vendor = xsni; then -+ case $host in -+ sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) -+ export_dynamic_flag_spec='${wl}-Blargedynsym' -+ ;; -+ esac -+ fi -+ fi -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 -+$as_echo "$ld_shlibs" >&6; } -+test "$ld_shlibs" = no && can_build_shared=no -+ -+with_gnu_ld=$with_gnu_ld -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+# -+# Do we need to explicitly link libc? -+# -+case "x$archive_cmds_need_lc" in -+x|xyes) -+ # Assume -lc should be added -+ archive_cmds_need_lc=yes -+ -+ if test "$enable_shared" = yes && test "$GCC" = yes; then -+ case $archive_cmds in -+ *'~'*) -+ # FIXME: we may have to deal with multi-command sequences. -+ ;; -+ '$CC '*) -+ # Test whether the compiler implicitly links with -lc since on some -+ # systems, -lgcc has to come before -lc. If gcc already passes -lc -+ # to ld, don't add -lc before -lgcc. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 -+$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } -+if ${lt_cv_archive_cmds_need_lc+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ $RM conftest* -+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext -+ -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } 2>conftest.err; then -+ soname=conftest -+ lib=conftest -+ libobjs=conftest.$ac_objext -+ deplibs= -+ wl=$lt_prog_compiler_wl -+ pic_flag=$lt_prog_compiler_pic -+ compiler_flags=-v -+ linker_flags=-v -+ verstring= -+ output_objdir=. -+ libname=conftest -+ lt_save_allow_undefined_flag=$allow_undefined_flag -+ allow_undefined_flag= -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 -+ (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } -+ then -+ lt_cv_archive_cmds_need_lc=no -+ else -+ lt_cv_archive_cmds_need_lc=yes -+ fi -+ allow_undefined_flag=$lt_save_allow_undefined_flag -+ else -+ cat conftest.err 1>&5 -+ fi -+ $RM conftest* -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 -+$as_echo "$lt_cv_archive_cmds_need_lc" >&6; } -+ archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc -+ ;; -+ esac -+ fi -+ ;; -+esac -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 -+$as_echo_n "checking dynamic linker characteristics... " >&6; } -+ -+if test "$GCC" = yes; then -+ case $host_os in -+ darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; -+ *) lt_awk_arg="/^libraries:/" ;; -+ esac -+ case $host_os in -+ mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;; -+ *) lt_sed_strip_eq="s,=/,/,g" ;; -+ esac -+ lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` -+ case $lt_search_path_spec in -+ *\;*) -+ # if the path contains ";" then we assume it to be the separator -+ # otherwise default to the standard path separator (i.e. ":") - it is -+ # assumed that no part of a normal pathname contains ";" but that should -+ # okay in the real world where ";" in dirpaths is itself problematic. -+ lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` -+ ;; -+ *) -+ lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` -+ ;; -+ esac -+ # Ok, now we have the path, separated by spaces, we can step through it -+ # and add multilib dir if necessary. -+ lt_tmp_lt_search_path_spec= -+ lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` -+ for lt_sys_path in $lt_search_path_spec; do -+ if test -d "$lt_sys_path/$lt_multi_os_dir"; then -+ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" -+ else -+ test -d "$lt_sys_path" && \ -+ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" -+ fi -+ done -+ lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' -+BEGIN {RS=" "; FS="/|\n";} { -+ lt_foo=""; -+ lt_count=0; -+ for (lt_i = NF; lt_i > 0; lt_i--) { -+ if ($lt_i != "" && $lt_i != ".") { -+ if ($lt_i == "..") { -+ lt_count++; -+ } else { -+ if (lt_count == 0) { -+ lt_foo="/" $lt_i lt_foo; -+ } else { -+ lt_count--; -+ } -+ } -+ } -+ } -+ if (lt_foo != "") { lt_freq[lt_foo]++; } -+ if (lt_freq[lt_foo] == 1) { print lt_foo; } -+}'` -+ # AWK program above erroneously prepends '/' to C:/dos/paths -+ # for these hosts. -+ case $host_os in -+ mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ -+ $SED 's,/\([A-Za-z]:\),\1,g'` ;; -+ esac -+ sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` -+else -+ sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" -+fi -+library_names_spec= -+libname_spec='lib$name' -+soname_spec= -+shrext_cmds=".so" -+postinstall_cmds= -+postuninstall_cmds= -+finish_cmds= -+finish_eval= -+shlibpath_var= -+shlibpath_overrides_runpath=unknown -+version_type=none -+dynamic_linker="$host_os ld.so" -+sys_lib_dlsearch_path_spec="/lib /usr/lib" -+need_lib_prefix=unknown -+hardcode_into_libs=no -+ -+# when you set need_version to no, make sure it does not cause -set_version -+# flags to be left without arguments -+need_version=unknown -+ -+case $host_os in -+aix3*) -+ version_type=linux -+ library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' -+ shlibpath_var=LIBPATH -+ -+ # AIX 3 has no versioning support, so we append a major version to the name. -+ soname_spec='${libname}${release}${shared_ext}$major' -+ ;; -+ -+aix[4-9]*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ hardcode_into_libs=yes -+ if test "$host_cpu" = ia64; then -+ # AIX 5 supports IA64 -+ library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' -+ shlibpath_var=LD_LIBRARY_PATH -+ else -+ # With GCC up to 2.95.x, collect2 would create an import file -+ # for dependence libraries. The import file would start with -+ # the line `#! .'. This would cause the generated library to -+ # depend on `.', always an invalid library. This was fixed in -+ # development snapshots of GCC prior to 3.0. -+ case $host_os in -+ aix4 | aix4.[01] | aix4.[01].*) -+ if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' -+ echo ' yes ' -+ echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then -+ : -+ else -+ can_build_shared=no -+ fi -+ ;; -+ esac -+ # AIX (on Power*) has no versioning support, so currently we can not hardcode correct -+ # soname into executable. Probably we can add versioning support to -+ # collect2, so additional links can be useful in future. -+ if test "$aix_use_runtimelinking" = yes; then -+ # If using run time linking (on AIX 4.2 or later) use lib.so -+ # instead of lib.a to let people know that these are not -+ # typical AIX shared libraries. -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ else -+ # We preserve .a as extension for shared libraries through AIX4.2 -+ # and later when we are not doing run time linking. -+ library_names_spec='${libname}${release}.a $libname.a' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ fi -+ shlibpath_var=LIBPATH -+ fi -+ ;; -+ -+amigaos*) -+ case $host_cpu in -+ powerpc) -+ # Since July 2007 AmigaOS4 officially supports .so libraries. -+ # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ ;; -+ m68k) -+ library_names_spec='$libname.ixlibrary $libname.a' -+ # Create ${libname}_ixlibrary.a entries in /sys/libs. -+ finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' -+ ;; -+ esac -+ ;; -+ -+beos*) -+ library_names_spec='${libname}${shared_ext}' -+ dynamic_linker="$host_os ld.so" -+ shlibpath_var=LIBRARY_PATH -+ ;; -+ -+bsdi[45]*) -+ version_type=linux -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" -+ sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" -+ # the default ld.so.conf also contains /usr/contrib/lib and -+ # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow -+ # libtool to hard-code these into programs -+ ;; -+ -+cygwin* | mingw* | pw32* | cegcc*) -+ version_type=windows -+ shrext_cmds=".dll" -+ need_version=no -+ need_lib_prefix=no -+ -+ case $GCC,$host_os in -+ yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*) -+ library_names_spec='$libname.dll.a' -+ # DLL is installed to $(libdir)/../bin by postinstall_cmds -+ postinstall_cmds='base_file=`basename \${file}`~ -+ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ -+ dldir=$destdir/`dirname \$dlpath`~ -+ test -d \$dldir || mkdir -p \$dldir~ -+ $install_prog $dir/$dlname \$dldir/$dlname~ -+ chmod a+x \$dldir/$dlname~ -+ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then -+ eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; -+ fi' -+ postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ -+ dlpath=$dir/\$dldll~ -+ $RM \$dlpath' -+ shlibpath_overrides_runpath=yes -+ -+ case $host_os in -+ cygwin*) -+ # Cygwin DLLs use 'cyg' prefix rather than 'lib' -+ soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' -+ -+ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" -+ ;; -+ mingw* | cegcc*) -+ # MinGW DLLs use traditional 'lib' prefix -+ soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' -+ ;; -+ pw32*) -+ # pw32 DLLs use 'pw' prefix rather than 'lib' -+ library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' -+ ;; -+ esac -+ ;; -+ -+ *) -+ library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' -+ ;; -+ esac -+ dynamic_linker='Win32 ld.exe' -+ # FIXME: first we should search . and the directory the executable is in -+ shlibpath_var=PATH -+ ;; -+ -+darwin* | rhapsody*) -+ dynamic_linker="$host_os dyld" -+ version_type=darwin -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' -+ soname_spec='${libname}${release}${major}$shared_ext' -+ shlibpath_overrides_runpath=yes -+ shlibpath_var=DYLD_LIBRARY_PATH -+ shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' -+ -+ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" -+ sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' -+ ;; -+ -+dgux*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ ;; -+ -+freebsd* | dragonfly*) -+ # DragonFly does not have aout. When/if they implement a new -+ # versioning mechanism, adjust this. -+ if test -x /usr/bin/objformat; then -+ objformat=`/usr/bin/objformat` -+ else -+ case $host_os in -+ freebsd[23].*) objformat=aout ;; -+ *) objformat=elf ;; -+ esac -+ fi -+ version_type=freebsd-$objformat -+ case $version_type in -+ freebsd-elf*) -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' -+ need_version=no -+ need_lib_prefix=no -+ ;; -+ freebsd-*) -+ library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' -+ need_version=yes -+ ;; -+ esac -+ shlibpath_var=LD_LIBRARY_PATH -+ case $host_os in -+ freebsd2.*) -+ shlibpath_overrides_runpath=yes -+ ;; -+ freebsd3.[01]* | freebsdelf3.[01]*) -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ ;; -+ freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ -+ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) -+ shlibpath_overrides_runpath=no -+ hardcode_into_libs=yes -+ ;; -+ *) # from 4.6 on, and DragonFly -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ ;; -+ esac -+ ;; -+ -+haiku*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ dynamic_linker="$host_os runtime_loader" -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' -+ hardcode_into_libs=yes -+ ;; -+ -+hpux9* | hpux10* | hpux11*) -+ # Give a soname corresponding to the major version so that dld.sl refuses to -+ # link against other versions. -+ version_type=sunos -+ need_lib_prefix=no -+ need_version=no -+ case $host_cpu in -+ ia64*) -+ shrext_cmds='.so' -+ hardcode_into_libs=yes -+ dynamic_linker="$host_os dld.so" -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ if test "X$HPUX_IA64_MODE" = X32; then -+ sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" -+ else -+ sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" -+ fi -+ sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec -+ ;; -+ hppa*64*) -+ shrext_cmds='.sl' -+ hardcode_into_libs=yes -+ dynamic_linker="$host_os dld.sl" -+ shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH -+ shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" -+ sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec -+ ;; -+ *) -+ shrext_cmds='.sl' -+ dynamic_linker="$host_os dld.sl" -+ shlibpath_var=SHLIB_PATH -+ shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ ;; -+ esac -+ # HP-UX runs *really* slowly unless shared libraries are mode 555, ... -+ postinstall_cmds='chmod 555 $lib' -+ # or fails outright, so override atomically: -+ install_override_mode=555 -+ ;; -+ -+interix[3-9]*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=no -+ hardcode_into_libs=yes -+ ;; -+ -+irix5* | irix6* | nonstopux*) -+ case $host_os in -+ nonstopux*) version_type=nonstopux ;; -+ *) -+ if test "$lt_cv_prog_gnu_ld" = yes; then -+ version_type=linux -+ else -+ version_type=irix -+ fi ;; -+ esac -+ need_lib_prefix=no -+ need_version=no -+ soname_spec='${libname}${release}${shared_ext}$major' -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' -+ case $host_os in -+ irix5* | nonstopux*) -+ libsuff= shlibsuff= -+ ;; -+ *) -+ case $LD in # libtool.m4 will add one of these switches to LD -+ *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") -+ libsuff= shlibsuff= libmagic=32-bit;; -+ *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") -+ libsuff=32 shlibsuff=N32 libmagic=N32;; -+ *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") -+ libsuff=64 shlibsuff=64 libmagic=64-bit;; -+ *) libsuff= shlibsuff= libmagic=never-match;; -+ esac -+ ;; -+ esac -+ shlibpath_var=LD_LIBRARY${shlibsuff}_PATH -+ shlibpath_overrides_runpath=no -+ sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" -+ sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" -+ hardcode_into_libs=yes -+ ;; -+ -+# No shared lib support for Linux oldld, aout, or coff. -+linux*oldld* | linux*aout* | linux*coff*) -+ dynamic_linker=no -+ ;; -+ -+# This must be Linux ELF. -+linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=no -+ -+ # Some binutils ld are patched to set DT_RUNPATH -+ if ${lt_cv_shlibpath_overrides_runpath+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_shlibpath_overrides_runpath=no -+ save_LDFLAGS=$LDFLAGS -+ save_libdir=$libdir -+ eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ -+ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : -+ lt_cv_shlibpath_overrides_runpath=yes -+fi -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ LDFLAGS=$save_LDFLAGS -+ libdir=$save_libdir -+ -+fi -+ -+ shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath -+ -+ # This implies no fast_install, which is unacceptable. -+ # Some rework will be needed to allow for fast_install -+ # before this can be enabled. -+ hardcode_into_libs=yes -+ -+ # Append ld.so.conf contents to the search path -+ if test -f /etc/ld.so.conf; then -+ lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` -+ sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" -+ fi -+ -+ # We used to test for /lib/ld.so.1 and disable shared libraries on -+ # powerpc, because MkLinux only supported shared libraries with the -+ # GNU dynamic linker. Since this was broken with cross compilers, -+ # most powerpc-linux boxes support dynamic linking these days and -+ # people can always --disable-shared, the test was removed, and we -+ # assume the GNU/Linux dynamic linker is in use. -+ dynamic_linker='GNU/Linux ld.so' -+ ;; -+ -+netbsd*) -+ version_type=sunos -+ need_lib_prefix=no -+ need_version=no -+ if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' -+ dynamic_linker='NetBSD (a.out) ld.so' -+ else -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ dynamic_linker='NetBSD ld.elf_so' -+ fi -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ ;; -+ -+newsos6) -+ version_type=linux -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ ;; -+ -+*nto* | *qnx*) -+ version_type=qnx -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=no -+ hardcode_into_libs=yes -+ dynamic_linker='ldqnx.so' -+ ;; -+ -+openbsd*) -+ version_type=sunos -+ sys_lib_dlsearch_path_spec="/usr/lib" -+ need_lib_prefix=no -+ # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. -+ case $host_os in -+ openbsd3.3 | openbsd3.3.*) need_version=yes ;; -+ *) need_version=no ;; -+ esac -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then -+ case $host_os in -+ openbsd2.[89] | openbsd2.[89].*) -+ shlibpath_overrides_runpath=no -+ ;; -+ *) -+ shlibpath_overrides_runpath=yes -+ ;; -+ esac -+ else -+ shlibpath_overrides_runpath=yes -+ fi -+ ;; -+ -+os2*) -+ libname_spec='$name' -+ shrext_cmds=".dll" -+ need_lib_prefix=no -+ library_names_spec='$libname${shared_ext} $libname.a' -+ dynamic_linker='OS/2 ld.exe' -+ shlibpath_var=LIBPATH -+ ;; -+ -+osf3* | osf4* | osf5*) -+ version_type=osf -+ need_lib_prefix=no -+ need_version=no -+ soname_spec='${libname}${release}${shared_ext}$major' -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ shlibpath_var=LD_LIBRARY_PATH -+ sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" -+ sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" -+ ;; -+ -+rdos*) -+ dynamic_linker=no -+ ;; -+ -+solaris*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ # ldd complains unless libraries are executable -+ postinstall_cmds='chmod +x $lib' -+ ;; -+ -+sunos4*) -+ version_type=sunos -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' -+ finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ if test "$with_gnu_ld" = yes; then -+ need_lib_prefix=no -+ fi -+ need_version=yes -+ ;; -+ -+sysv4 | sysv4.3*) -+ version_type=linux -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ case $host_vendor in -+ sni) -+ shlibpath_overrides_runpath=no -+ need_lib_prefix=no -+ runpath_var=LD_RUN_PATH -+ ;; -+ siemens) -+ need_lib_prefix=no -+ ;; -+ motorola) -+ need_lib_prefix=no -+ need_version=no -+ shlibpath_overrides_runpath=no -+ sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' -+ ;; -+ esac -+ ;; -+ -+sysv4*MP*) -+ if test -d /usr/nec ;then -+ version_type=linux -+ library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' -+ soname_spec='$libname${shared_ext}.$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ fi -+ ;; -+ -+sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) -+ version_type=freebsd-elf -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ if test "$with_gnu_ld" = yes; then -+ sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' -+ else -+ sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' -+ case $host_os in -+ sco3.2v5*) -+ sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" -+ ;; -+ esac -+ fi -+ sys_lib_dlsearch_path_spec='/usr/lib' -+ ;; -+ -+tpf*) -+ # TPF is a cross-target only. Preferred cross-host = GNU/Linux. -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=no -+ hardcode_into_libs=yes -+ ;; -+ -+uts4*) -+ version_type=linux -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ ;; -+ -+*) -+ dynamic_linker=no -+ ;; -+esac -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 -+$as_echo "$dynamic_linker" >&6; } -+test "$dynamic_linker" = no && can_build_shared=no -+ -+variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -+if test "$GCC" = yes; then -+ variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -+fi -+ -+if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then -+ sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" -+fi -+if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then -+ sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 -+$as_echo_n "checking how to hardcode library paths into programs... " >&6; } -+hardcode_action= -+if test -n "$hardcode_libdir_flag_spec" || -+ test -n "$runpath_var" || -+ test "X$hardcode_automatic" = "Xyes" ; then -+ -+ # We can hardcode non-existent directories. -+ if test "$hardcode_direct" != no && -+ # If the only mechanism to avoid hardcoding is shlibpath_var, we -+ # have to relink, otherwise we might link with an installed library -+ # when we should be linking with a yet-to-be-installed one -+ ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && -+ test "$hardcode_minus_L" != no; then -+ # Linking always hardcodes the temporary library directory. -+ hardcode_action=relink -+ else -+ # We can link without hardcoding, and we can hardcode nonexisting dirs. -+ hardcode_action=immediate -+ fi -+else -+ # We cannot hardcode anything, or else we can only hardcode existing -+ # directories. -+ hardcode_action=unsupported -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 -+$as_echo "$hardcode_action" >&6; } -+ -+if test "$hardcode_action" = relink || -+ test "$inherit_rpath" = yes; then -+ # Fast installation is not supported -+ enable_fast_install=no -+elif test "$shlibpath_overrides_runpath" = yes || -+ test "$enable_shared" = no; then -+ # Fast installation is not necessary -+ enable_fast_install=needless -+fi -+ -+ -+ -+ -+ -+ -+ if test "x$enable_dlopen" != xyes; then -+ enable_dlopen=unknown -+ enable_dlopen_self=unknown -+ enable_dlopen_self_static=unknown -+else -+ lt_cv_dlopen=no -+ lt_cv_dlopen_libs= -+ -+ case $host_os in -+ beos*) -+ lt_cv_dlopen="load_add_on" -+ lt_cv_dlopen_libs= -+ lt_cv_dlopen_self=yes -+ ;; -+ -+ mingw* | pw32* | cegcc*) -+ lt_cv_dlopen="LoadLibrary" -+ lt_cv_dlopen_libs= -+ ;; -+ -+ cygwin*) -+ lt_cv_dlopen="dlopen" -+ lt_cv_dlopen_libs= -+ ;; -+ -+ darwin*) -+ # if libdl is installed we need to link against it -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 -+$as_echo_n "checking for dlopen in -ldl... " >&6; } -+if ${ac_cv_lib_dl_dlopen+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-ldl $LIBS" -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char dlopen (); -+int -+main () -+{ -+return dlopen (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_dl_dlopen=yes -+else -+ ac_cv_lib_dl_dlopen=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 -+$as_echo "$ac_cv_lib_dl_dlopen" >&6; } -+if test "x$ac_cv_lib_dl_dlopen" = xyes; then : -+ lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" -+else -+ -+ lt_cv_dlopen="dyld" -+ lt_cv_dlopen_libs= -+ lt_cv_dlopen_self=yes -+ -+fi -+ -+ ;; -+ -+ *) -+ ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" -+if test "x$ac_cv_func_shl_load" = xyes; then : -+ lt_cv_dlopen="shl_load" -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 -+$as_echo_n "checking for shl_load in -ldld... " >&6; } -+if ${ac_cv_lib_dld_shl_load+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-ldld $LIBS" -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char shl_load (); -+int -+main () -+{ -+return shl_load (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_dld_shl_load=yes -+else -+ ac_cv_lib_dld_shl_load=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 -+$as_echo "$ac_cv_lib_dld_shl_load" >&6; } -+if test "x$ac_cv_lib_dld_shl_load" = xyes; then : -+ lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" -+else -+ ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" -+if test "x$ac_cv_func_dlopen" = xyes; then : -+ lt_cv_dlopen="dlopen" -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 -+$as_echo_n "checking for dlopen in -ldl... " >&6; } -+if ${ac_cv_lib_dl_dlopen+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-ldl $LIBS" -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char dlopen (); -+int -+main () -+{ -+return dlopen (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_dl_dlopen=yes -+else -+ ac_cv_lib_dl_dlopen=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 -+$as_echo "$ac_cv_lib_dl_dlopen" >&6; } -+if test "x$ac_cv_lib_dl_dlopen" = xyes; then : -+ lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 -+$as_echo_n "checking for dlopen in -lsvld... " >&6; } -+if ${ac_cv_lib_svld_dlopen+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lsvld $LIBS" -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char dlopen (); -+int -+main () -+{ -+return dlopen (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_svld_dlopen=yes -+else -+ ac_cv_lib_svld_dlopen=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 -+$as_echo "$ac_cv_lib_svld_dlopen" >&6; } -+if test "x$ac_cv_lib_svld_dlopen" = xyes; then : -+ lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 -+$as_echo_n "checking for dld_link in -ldld... " >&6; } -+if ${ac_cv_lib_dld_dld_link+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-ldld $LIBS" -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char dld_link (); -+int -+main () -+{ -+return dld_link (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_dld_dld_link=yes -+else -+ ac_cv_lib_dld_dld_link=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 -+$as_echo "$ac_cv_lib_dld_dld_link" >&6; } -+if test "x$ac_cv_lib_dld_dld_link" = xyes; then : -+ lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" -+fi -+ -+ -+fi -+ -+ -+fi -+ -+ -+fi -+ -+ -+fi -+ -+ -+fi -+ -+ ;; -+ esac -+ -+ if test "x$lt_cv_dlopen" != xno; then -+ enable_dlopen=yes -+ else -+ enable_dlopen=no -+ fi -+ -+ case $lt_cv_dlopen in -+ dlopen) -+ save_CPPFLAGS="$CPPFLAGS" -+ test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" -+ -+ save_LDFLAGS="$LDFLAGS" -+ wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" -+ -+ save_LIBS="$LIBS" -+ LIBS="$lt_cv_dlopen_libs $LIBS" -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 -+$as_echo_n "checking whether a program can dlopen itself... " >&6; } -+if ${lt_cv_dlopen_self+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test "$cross_compiling" = yes; then : -+ lt_cv_dlopen_self=cross -+else -+ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 -+ lt_status=$lt_dlunknown -+ cat > conftest.$ac_ext <<_LT_EOF -+#line __oline__ "configure" -+#include "confdefs.h" -+ -+#if HAVE_DLFCN_H -+#include -+#endif -+ -+#include -+ -+#ifdef RTLD_GLOBAL -+# define LT_DLGLOBAL RTLD_GLOBAL -+#else -+# ifdef DL_GLOBAL -+# define LT_DLGLOBAL DL_GLOBAL -+# else -+# define LT_DLGLOBAL 0 -+# endif -+#endif -+ -+/* We may have to define LT_DLLAZY_OR_NOW in the command line if we -+ find out it does not work in some platform. */ -+#ifndef LT_DLLAZY_OR_NOW -+# ifdef RTLD_LAZY -+# define LT_DLLAZY_OR_NOW RTLD_LAZY -+# else -+# ifdef DL_LAZY -+# define LT_DLLAZY_OR_NOW DL_LAZY -+# else -+# ifdef RTLD_NOW -+# define LT_DLLAZY_OR_NOW RTLD_NOW -+# else -+# ifdef DL_NOW -+# define LT_DLLAZY_OR_NOW DL_NOW -+# else -+# define LT_DLLAZY_OR_NOW 0 -+# endif -+# endif -+# endif -+# endif -+#endif -+ -+/* When -fvisbility=hidden is used, assume the code has been annotated -+ correspondingly for the symbols needed. */ -+#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) -+void fnord () __attribute__((visibility("default"))); -+#endif -+ -+void fnord () { int i=42; } -+int main () -+{ -+ void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); -+ int status = $lt_dlunknown; -+ -+ if (self) -+ { -+ if (dlsym (self,"fnord")) status = $lt_dlno_uscore; -+ else -+ { -+ if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; -+ else puts (dlerror ()); -+ } -+ /* dlclose (self); */ -+ } -+ else -+ puts (dlerror ()); -+ -+ return status; -+} -+_LT_EOF -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 -+ (eval $ac_link) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then -+ (./conftest; exit; ) >&5 2>/dev/null -+ lt_status=$? -+ case x$lt_status in -+ x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; -+ x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; -+ x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; -+ esac -+ else : -+ # compilation failed -+ lt_cv_dlopen_self=no -+ fi -+fi -+rm -fr conftest* -+ -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 -+$as_echo "$lt_cv_dlopen_self" >&6; } -+ -+ if test "x$lt_cv_dlopen_self" = xyes; then -+ wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 -+$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } -+if ${lt_cv_dlopen_self_static+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test "$cross_compiling" = yes; then : -+ lt_cv_dlopen_self_static=cross -+else -+ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 -+ lt_status=$lt_dlunknown -+ cat > conftest.$ac_ext <<_LT_EOF -+#line __oline__ "configure" -+#include "confdefs.h" -+ -+#if HAVE_DLFCN_H -+#include -+#endif -+ -+#include -+ -+#ifdef RTLD_GLOBAL -+# define LT_DLGLOBAL RTLD_GLOBAL -+#else -+# ifdef DL_GLOBAL -+# define LT_DLGLOBAL DL_GLOBAL -+# else -+# define LT_DLGLOBAL 0 -+# endif -+#endif -+ -+/* We may have to define LT_DLLAZY_OR_NOW in the command line if we -+ find out it does not work in some platform. */ -+#ifndef LT_DLLAZY_OR_NOW -+# ifdef RTLD_LAZY -+# define LT_DLLAZY_OR_NOW RTLD_LAZY -+# else -+# ifdef DL_LAZY -+# define LT_DLLAZY_OR_NOW DL_LAZY -+# else -+# ifdef RTLD_NOW -+# define LT_DLLAZY_OR_NOW RTLD_NOW -+# else -+# ifdef DL_NOW -+# define LT_DLLAZY_OR_NOW DL_NOW -+# else -+# define LT_DLLAZY_OR_NOW 0 -+# endif -+# endif -+# endif -+# endif -+#endif -+ -+/* When -fvisbility=hidden is used, assume the code has been annotated -+ correspondingly for the symbols needed. */ -+#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) -+void fnord () __attribute__((visibility("default"))); -+#endif -+ -+void fnord () { int i=42; } -+int main () -+{ -+ void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); -+ int status = $lt_dlunknown; -+ -+ if (self) -+ { -+ if (dlsym (self,"fnord")) status = $lt_dlno_uscore; -+ else -+ { -+ if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; -+ else puts (dlerror ()); -+ } -+ /* dlclose (self); */ -+ } -+ else -+ puts (dlerror ()); -+ -+ return status; -+} -+_LT_EOF -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 -+ (eval $ac_link) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then -+ (./conftest; exit; ) >&5 2>/dev/null -+ lt_status=$? -+ case x$lt_status in -+ x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; -+ x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; -+ x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; -+ esac -+ else : -+ # compilation failed -+ lt_cv_dlopen_self_static=no -+ fi -+fi -+rm -fr conftest* -+ -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 -+$as_echo "$lt_cv_dlopen_self_static" >&6; } -+ fi -+ -+ CPPFLAGS="$save_CPPFLAGS" -+ LDFLAGS="$save_LDFLAGS" -+ LIBS="$save_LIBS" -+ ;; -+ esac -+ -+ case $lt_cv_dlopen_self in -+ yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; -+ *) enable_dlopen_self=unknown ;; -+ esac -+ -+ case $lt_cv_dlopen_self_static in -+ yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; -+ *) enable_dlopen_self_static=unknown ;; -+ esac -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+striplib= -+old_striplib= -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 -+$as_echo_n "checking whether stripping libraries is possible... " >&6; } -+if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then -+ test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" -+ test -z "$striplib" && striplib="$STRIP --strip-unneeded" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -+$as_echo "yes" >&6; } -+else -+# FIXME - insert some real tests, host_os isn't really good enough -+ case $host_os in -+ darwin*) -+ if test -n "$STRIP" ; then -+ striplib="$STRIP -x" -+ old_striplib="$STRIP -S" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -+$as_echo "yes" >&6; } -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+ fi -+ ;; -+ *) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+ ;; -+ esac -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ # Report which library types will actually be built -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 -+$as_echo_n "checking if libtool supports shared libraries... " >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 -+$as_echo "$can_build_shared" >&6; } -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 -+$as_echo_n "checking whether to build shared libraries... " >&6; } -+ test "$can_build_shared" = "no" && enable_shared=no -+ -+ # On AIX, shared libraries and static libraries use the same namespace, and -+ # are all built from PIC. -+ case $host_os in -+ aix3*) -+ test "$enable_shared" = yes && enable_static=no -+ if test -n "$RANLIB"; then -+ archive_cmds="$archive_cmds~\$RANLIB \$lib" -+ postinstall_cmds='$RANLIB $lib' -+ fi -+ ;; -+ -+ aix[4-9]*) -+ if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then -+ test "$enable_shared" = yes && enable_static=no -+ fi -+ ;; -+ esac -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 -+$as_echo "$enable_shared" >&6; } -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 -+$as_echo_n "checking whether to build static libraries... " >&6; } -+ # Make sure either enable_shared or enable_static is yes. -+ test "$enable_shared" = yes || enable_static=yes -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 -+$as_echo "$enable_static" >&6; } -+ -+ -+ -+ -+fi -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+CC="$lt_save_CC" -+ -+ if test -n "$CXX" && ( test "X$CXX" != "Xno" && -+ ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || -+ (test "X$CXX" != "Xg++"))) ; then -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 -+$as_echo_n "checking how to run the C++ preprocessor... " >&6; } -+if test -z "$CXXCPP"; then -+ if ${ac_cv_prog_CXXCPP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ # Double quotes because CXXCPP needs to be expanded -+ for CXXCPP in "$CXX -E" "/lib/cpp" -+ do -+ ac_preproc_ok=false -+for ac_cxx_preproc_warn_flag in '' yes -+do -+ # Use a header file that comes with gcc, so configuring glibc -+ # with a fresh cross-compiler works. -+ # Prefer to if __STDC__ is defined, since -+ # exists even on freestanding compilers. -+ # On the NeXT, cc -E runs the code through the compiler's parser, -+ # not just through cpp. "Syntax error" is here to catch this case. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@ifdef __STDC__ -+@%:@ include -+@%:@else -+@%:@ include -+@%:@endif -+ Syntax error -+_ACEOF -+if ac_fn_cxx_try_cpp "$LINENO"; then : -+ -+else -+ # Broken: fails on valid input. -+continue -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+ -+ # OK, works on sane cases. Now check whether nonexistent headers -+ # can be detected and how. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@include -+_ACEOF -+if ac_fn_cxx_try_cpp "$LINENO"; then : -+ # Broken: success on invalid input. -+continue -+else -+ # Passes both tests. -+ac_preproc_ok=: -+break -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+ -+done -+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -+rm -f conftest.i conftest.err conftest.$ac_ext -+if $ac_preproc_ok; then : -+ break -+fi -+ -+ done -+ ac_cv_prog_CXXCPP=$CXXCPP -+ -+fi -+ CXXCPP=$ac_cv_prog_CXXCPP -+else -+ ac_cv_prog_CXXCPP=$CXXCPP -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 -+$as_echo "$CXXCPP" >&6; } -+ac_preproc_ok=false -+for ac_cxx_preproc_warn_flag in '' yes -+do -+ # Use a header file that comes with gcc, so configuring glibc -+ # with a fresh cross-compiler works. -+ # Prefer to if __STDC__ is defined, since -+ # exists even on freestanding compilers. -+ # On the NeXT, cc -E runs the code through the compiler's parser, -+ # not just through cpp. "Syntax error" is here to catch this case. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@ifdef __STDC__ -+@%:@ include -+@%:@else -+@%:@ include -+@%:@endif -+ Syntax error -+_ACEOF -+if ac_fn_cxx_try_cpp "$LINENO"; then : -+ -+else -+ # Broken: fails on valid input. -+continue -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+ -+ # OK, works on sane cases. Now check whether nonexistent headers -+ # can be detected and how. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@include -+_ACEOF -+if ac_fn_cxx_try_cpp "$LINENO"; then : -+ # Broken: success on invalid input. -+continue -+else -+ # Passes both tests. -+ac_preproc_ok=: -+break -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+ -+done -+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -+rm -f conftest.i conftest.err conftest.$ac_ext -+if $ac_preproc_ok; then : -+ -+else -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check -+See \`config.log' for more details" "$LINENO" 5; } -+fi -+ -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+else -+ _lt_caught_CXX_error=yes -+fi -+ -+ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+archive_cmds_need_lc_CXX=no -+allow_undefined_flag_CXX= -+always_export_symbols_CXX=no -+archive_expsym_cmds_CXX= -+compiler_needs_object_CXX=no -+export_dynamic_flag_spec_CXX= -+hardcode_direct_CXX=no -+hardcode_direct_absolute_CXX=no -+hardcode_libdir_flag_spec_CXX= -+hardcode_libdir_flag_spec_ld_CXX= -+hardcode_libdir_separator_CXX= -+hardcode_minus_L_CXX=no -+hardcode_shlibpath_var_CXX=unsupported -+hardcode_automatic_CXX=no -+inherit_rpath_CXX=no -+module_cmds_CXX= -+module_expsym_cmds_CXX= -+link_all_deplibs_CXX=unknown -+old_archive_cmds_CXX=$old_archive_cmds -+reload_flag_CXX=$reload_flag -+reload_cmds_CXX=$reload_cmds -+no_undefined_flag_CXX= -+whole_archive_flag_spec_CXX= -+enable_shared_with_static_runtimes_CXX=no -+ -+# Source file extension for C++ test sources. -+ac_ext=cpp -+ -+# Object file extension for compiled C++ test sources. -+objext=o -+objext_CXX=$objext -+ -+# No sense in running all these tests if we already determined that -+# the CXX compiler isn't working. Some variables (like enable_shared) -+# are currently assumed to apply to all compilers on this platform, -+# and will be corrupted by setting them based on a non-working compiler. -+if test "$_lt_caught_CXX_error" != yes; then -+ # Code to be used in simple compile tests -+ lt_simple_compile_test_code="int some_variable = 0;" -+ -+ # Code to be used in simple link tests -+ lt_simple_link_test_code='int main(int, char *[]) { return(0); }' -+ -+ # ltmain only uses $CC for tagged configurations so make sure $CC is set. -+ -+ -+ -+ -+ -+ -+# If no C compiler was specified, use CC. -+LTCC=${LTCC-"$CC"} -+ -+# If no C compiler flags were specified, use CFLAGS. -+LTCFLAGS=${LTCFLAGS-"$CFLAGS"} -+ -+# Allow CC to be a program name with arguments. -+compiler=$CC -+ -+ -+ # save warnings/boilerplate of simple test code -+ ac_outfile=conftest.$ac_objext -+echo "$lt_simple_compile_test_code" >conftest.$ac_ext -+eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -+_lt_compiler_boilerplate=`cat conftest.err` -+$RM conftest* -+ -+ ac_outfile=conftest.$ac_objext -+echo "$lt_simple_link_test_code" >conftest.$ac_ext -+eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -+_lt_linker_boilerplate=`cat conftest.err` -+$RM -r conftest* -+ -+ -+ # Allow CC to be a program name with arguments. -+ lt_save_CC=$CC -+ lt_save_LD=$LD -+ lt_save_GCC=$GCC -+ GCC=$GXX -+ lt_save_with_gnu_ld=$with_gnu_ld -+ lt_save_path_LD=$lt_cv_path_LD -+ if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then -+ lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx -+ else -+ $as_unset lt_cv_prog_gnu_ld -+ fi -+ if test -n "${lt_cv_path_LDCXX+set}"; then -+ lt_cv_path_LD=$lt_cv_path_LDCXX -+ else -+ $as_unset lt_cv_path_LD -+ fi -+ test -z "${LDCXX+set}" || LD=$LDCXX -+ CC=${CXX-"c++"} -+ compiler=$CC -+ compiler_CXX=$CC -+ for cc_temp in $compiler""; do -+ case $cc_temp in -+ compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; -+ distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; -+ \-*) ;; -+ *) break;; -+ esac -+done -+cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` -+ -+ -+ if test -n "$compiler"; then -+ # We don't want -fno-exception when compiling C++ code, so set the -+ # no_builtin_flag separately -+ if test "$GXX" = yes; then -+ lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' -+ else -+ lt_prog_compiler_no_builtin_flag_CXX= -+ fi -+ -+ if test "$GXX" = yes; then -+ # Set up default GNU C++ configuration -+ -+ -+ -+@%:@ Check whether --with-gnu-ld was given. -+if test "${with_gnu_ld+set}" = set; then : -+ withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes -+else -+ with_gnu_ld=no -+fi -+ -+ac_prog=ld -+if test "$GCC" = yes; then -+ # Check if gcc -print-prog-name=ld gives a path. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 -+$as_echo_n "checking for ld used by $CC... " >&6; } -+ case $host in -+ *-*-mingw*) -+ # gcc leaves a trailing carriage return which upsets mingw -+ ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; -+ *) -+ ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; -+ esac -+ case $ac_prog in -+ # Accept absolute paths. -+ [\\/]* | ?:[\\/]*) -+ re_direlt='/[^/][^/]*/\.\./' -+ # Canonicalize the pathname of ld -+ ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` -+ while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do -+ ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` -+ done -+ test -z "$LD" && LD="$ac_prog" -+ ;; -+ "") -+ # If it fails, then pretend we aren't using GCC. -+ ac_prog=ld -+ ;; -+ *) -+ # If it is relative, then search for the first ld in PATH. -+ with_gnu_ld=unknown -+ ;; -+ esac -+elif test "$with_gnu_ld" = yes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 -+$as_echo_n "checking for GNU ld... " >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 -+$as_echo_n "checking for non-GNU ld... " >&6; } -+fi -+if ${lt_cv_path_LD+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -z "$LD"; then -+ lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR -+ for ac_dir in $PATH; do -+ IFS="$lt_save_ifs" -+ test -z "$ac_dir" && ac_dir=. -+ if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then -+ lt_cv_path_LD="$ac_dir/$ac_prog" -+ # Check to see if the program is GNU ld. I'd rather use --version, -+ # but apparently some variants of GNU ld only accept -v. -+ # Break only if it was the GNU/non-GNU ld that we prefer. -+ case `"$lt_cv_path_LD" -v 2>&1 &5 -+$as_echo "$LD" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 -+$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } -+if ${lt_cv_prog_gnu_ld+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ # I'd rather use --version here, but apparently some GNU lds only accept -v. -+case `$LD -v 2>&1 &5 -+$as_echo "$lt_cv_prog_gnu_ld" >&6; } -+with_gnu_ld=$lt_cv_prog_gnu_ld -+ -+ -+ -+ -+ -+ -+ -+ # Check if GNU C++ uses GNU ld as the underlying linker, since the -+ # archiving commands below assume that GNU ld is being used. -+ if test "$with_gnu_ld" = yes; then -+ archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' -+ -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' -+ export_dynamic_flag_spec_CXX='${wl}--export-dynamic' -+ -+ # If archive_cmds runs LD, not CC, wlarc should be empty -+ # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to -+ # investigate it a little bit more. (MM) -+ wlarc='${wl}' -+ -+ # ancient GNU ld didn't support --whole-archive et. al. -+ if eval "`$CC -print-prog-name=ld` --help 2>&1" | -+ $GREP 'no-whole-archive' > /dev/null; then -+ whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' -+ else -+ whole_archive_flag_spec_CXX= -+ fi -+ else -+ with_gnu_ld=no -+ wlarc= -+ -+ # A generic and very simple default shared library creation -+ # command for GNU C++ for the case where it uses the native -+ # linker, instead of GNU ld. If possible, this setting should -+ # overridden to take advantage of the native linker features on -+ # the platform it is being used on. -+ archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' -+ fi -+ -+ # Commands to make compiler produce verbose output that lists -+ # what "hidden" libraries, object files and flags are used when -+ # linking a shared library. -+ output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' -+ -+ else -+ GXX=no -+ with_gnu_ld=no -+ wlarc= -+ fi -+ -+ # PORTME: fill in a description of your system's C++ link characteristics -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -+$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } -+ ld_shlibs_CXX=yes -+ case $host_os in -+ aix3*) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ aix[4-9]*) -+ if test "$host_cpu" = ia64; then -+ # On IA64, the linker does run time linking by default, so we don't -+ # have to do anything special. -+ aix_use_runtimelinking=no -+ exp_sym_flag='-Bexport' -+ no_entry_flag="" -+ else -+ aix_use_runtimelinking=no -+ -+ # Test if we are trying to use run time linking or normal -+ # AIX style linking. If -brtl is somewhere in LDFLAGS, we -+ # need to do runtime linking. -+ case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) -+ for ld_flag in $LDFLAGS; do -+ case $ld_flag in -+ *-brtl*) -+ aix_use_runtimelinking=yes -+ break -+ ;; -+ esac -+ done -+ ;; -+ esac -+ -+ exp_sym_flag='-bexport' -+ no_entry_flag='-bnoentry' -+ fi -+ -+ # When large executables or shared objects are built, AIX ld can -+ # have problems creating the table of contents. If linking a library -+ # or program results in "error TOC overflow" add -mminimal-toc to -+ # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not -+ # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. -+ -+ archive_cmds_CXX='' -+ hardcode_direct_CXX=yes -+ hardcode_direct_absolute_CXX=yes -+ hardcode_libdir_separator_CXX=':' -+ link_all_deplibs_CXX=yes -+ file_list_spec_CXX='${wl}-f,' -+ -+ if test "$GXX" = yes; then -+ case $host_os in aix4.[012]|aix4.[012].*) -+ # We only want to do this on AIX 4.2 and lower, the check -+ # below for broken collect2 doesn't work under 4.3+ -+ collect2name=`${CC} -print-prog-name=collect2` -+ if test -f "$collect2name" && -+ strings "$collect2name" | $GREP resolve_lib_name >/dev/null -+ then -+ # We have reworked collect2 -+ : -+ else -+ # We have old collect2 -+ hardcode_direct_CXX=unsupported -+ # It fails to find uninstalled libraries when the uninstalled -+ # path is not listed in the libpath. Setting hardcode_minus_L -+ # to unsupported forces relinking -+ hardcode_minus_L_CXX=yes -+ hardcode_libdir_flag_spec_CXX='-L$libdir' -+ hardcode_libdir_separator_CXX= -+ fi -+ esac -+ shared_flag='-shared' -+ if test "$aix_use_runtimelinking" = yes; then -+ shared_flag="$shared_flag "'${wl}-G' -+ fi -+ else -+ # not using gcc -+ if test "$host_cpu" = ia64; then -+ # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release -+ # chokes on -Wl,-G. The following line is correct: -+ shared_flag='-G' -+ else -+ if test "$aix_use_runtimelinking" = yes; then -+ shared_flag='${wl}-G' -+ else -+ shared_flag='${wl}-bM:SRE' -+ fi -+ fi -+ fi -+ -+ export_dynamic_flag_spec_CXX='${wl}-bexpall' -+ # It seems that -bexpall does not export symbols beginning with -+ # underscore (_), so it is better to generate a list of symbols to -+ # export. -+ always_export_symbols_CXX=yes -+ if test "$aix_use_runtimelinking" = yes; then -+ # Warning - without using the other runtime loading flags (-brtl), -+ # -berok will link without error, but may produce a broken library. -+ allow_undefined_flag_CXX='-berok' -+ # Determine the default libpath from the value encoded in an empty -+ # executable. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ -+lt_aix_libpath_sed=' -+ /Import File Strings/,/^$/ { -+ /^0/ { -+ s/^0 *\(.*\)$/\1/ -+ p -+ } -+ }' -+aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -+# Check for a 64-bit object if we didn't find anything. -+if test -z "$aix_libpath"; then -+ aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -+fi -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi -+ -+ hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" -+ -+ archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" -+ else -+ if test "$host_cpu" = ia64; then -+ hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' -+ allow_undefined_flag_CXX="-z nodefs" -+ archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" -+ else -+ # Determine the default libpath from the value encoded in an -+ # empty executable. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ -+lt_aix_libpath_sed=' -+ /Import File Strings/,/^$/ { -+ /^0/ { -+ s/^0 *\(.*\)$/\1/ -+ p -+ } -+ }' -+aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -+# Check for a 64-bit object if we didn't find anything. -+if test -z "$aix_libpath"; then -+ aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -+fi -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi -+ -+ hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" -+ # Warning - without using the other run time loading flags, -+ # -berok will link without error, but may produce a broken library. -+ no_undefined_flag_CXX=' ${wl}-bernotok' -+ allow_undefined_flag_CXX=' ${wl}-berok' -+ if test "$with_gnu_ld" = yes; then -+ # We only use this code for GNU lds that support --whole-archive. -+ whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' -+ else -+ # Exported symbols can be pulled into shared objects from archives -+ whole_archive_flag_spec_CXX='$convenience' -+ fi -+ archive_cmds_need_lc_CXX=yes -+ # This is similar to how AIX traditionally builds its shared -+ # libraries. -+ archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' -+ fi -+ fi -+ ;; -+ -+ beos*) -+ if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then -+ allow_undefined_flag_CXX=unsupported -+ # Joseph Beckenbach says some releases of gcc -+ # support --undefined. This deserves some investigation. FIXME -+ archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ else -+ ld_shlibs_CXX=no -+ fi -+ ;; -+ -+ chorus*) -+ case $cc_basename in -+ *) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ esac -+ ;; -+ -+ cygwin* | mingw* | pw32* | cegcc*) -+ # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, -+ # as there is no search path for DLLs. -+ hardcode_libdir_flag_spec_CXX='-L$libdir' -+ export_dynamic_flag_spec_CXX='${wl}--export-all-symbols' -+ allow_undefined_flag_CXX=unsupported -+ always_export_symbols_CXX=no -+ enable_shared_with_static_runtimes_CXX=yes -+ -+ if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then -+ archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' -+ # If the export-symbols file already is a .def file (1st line -+ # is EXPORTS), use it as is; otherwise, prepend... -+ archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then -+ cp $export_symbols $output_objdir/$soname.def; -+ else -+ echo EXPORTS > $output_objdir/$soname.def; -+ cat $export_symbols >> $output_objdir/$soname.def; -+ fi~ -+ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' -+ else -+ ld_shlibs_CXX=no -+ fi -+ ;; -+ darwin* | rhapsody*) -+ -+ -+ archive_cmds_need_lc_CXX=no -+ hardcode_direct_CXX=no -+ hardcode_automatic_CXX=yes -+ hardcode_shlibpath_var_CXX=unsupported -+ if test "$lt_cv_ld_force_load" = "yes"; then -+ whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' -+ else -+ whole_archive_flag_spec_CXX='' -+ fi -+ link_all_deplibs_CXX=yes -+ allow_undefined_flag_CXX="$_lt_dar_allow_undefined" -+ case $cc_basename in -+ ifort*) _lt_dar_can_shared=yes ;; -+ *) _lt_dar_can_shared=$GCC ;; -+ esac -+ if test "$_lt_dar_can_shared" = "yes"; then -+ output_verbose_link_cmd=func_echo_all -+ archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" -+ module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" -+ archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" -+ module_expsym_cmds_CXX="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" -+ if test "$lt_cv_apple_cc_single_mod" != "yes"; then -+ archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" -+ archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" -+ fi -+ -+ else -+ ld_shlibs_CXX=no -+ fi -+ -+ ;; -+ -+ dgux*) -+ case $cc_basename in -+ ec++*) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ ghcx*) -+ # Green Hills C++ Compiler -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ *) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ esac -+ ;; -+ -+ freebsd2.*) -+ # C++ shared libraries reported to be fairly broken before -+ # switch to ELF -+ ld_shlibs_CXX=no -+ ;; -+ -+ freebsd-elf*) -+ archive_cmds_need_lc_CXX=no -+ ;; -+ -+ freebsd* | dragonfly*) -+ # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF -+ # conventions -+ ld_shlibs_CXX=yes -+ ;; -+ -+ gnu*) -+ ;; -+ -+ haiku*) -+ archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ link_all_deplibs_CXX=yes -+ ;; -+ -+ hpux9*) -+ hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' -+ hardcode_libdir_separator_CXX=: -+ export_dynamic_flag_spec_CXX='${wl}-E' -+ hardcode_direct_CXX=yes -+ hardcode_minus_L_CXX=yes # Not in the search PATH, -+ # but as the default -+ # location of the library. -+ -+ case $cc_basename in -+ CC*) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ aCC*) -+ archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' -+ # Commands to make compiler produce verbose output that lists -+ # what "hidden" libraries, object files and flags are used when -+ # linking a shared library. -+ # -+ # There doesn't appear to be a way to prevent this compiler from -+ # explicitly linking system object files so we need to strip them -+ # from the output so that they don't get included in the library -+ # dependencies. -+ output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' -+ ;; -+ *) -+ if test "$GXX" = yes; then -+ archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' -+ else -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ fi -+ ;; -+ esac -+ ;; -+ -+ hpux10*|hpux11*) -+ if test $with_gnu_ld = no; then -+ hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' -+ hardcode_libdir_separator_CXX=: -+ -+ case $host_cpu in -+ hppa*64*|ia64*) -+ ;; -+ *) -+ export_dynamic_flag_spec_CXX='${wl}-E' -+ ;; -+ esac -+ fi -+ case $host_cpu in -+ hppa*64*|ia64*) -+ hardcode_direct_CXX=no -+ hardcode_shlibpath_var_CXX=no -+ ;; -+ *) -+ hardcode_direct_CXX=yes -+ hardcode_direct_absolute_CXX=yes -+ hardcode_minus_L_CXX=yes # Not in the search PATH, -+ # but as the default -+ # location of the library. -+ ;; -+ esac -+ -+ case $cc_basename in -+ CC*) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ aCC*) -+ case $host_cpu in -+ hppa*64*) -+ archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' -+ ;; -+ ia64*) -+ archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' -+ ;; -+ *) -+ archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' -+ ;; -+ esac -+ # Commands to make compiler produce verbose output that lists -+ # what "hidden" libraries, object files and flags are used when -+ # linking a shared library. -+ # -+ # There doesn't appear to be a way to prevent this compiler from -+ # explicitly linking system object files so we need to strip them -+ # from the output so that they don't get included in the library -+ # dependencies. -+ output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' -+ ;; -+ *) -+ if test "$GXX" = yes; then -+ if test $with_gnu_ld = no; then -+ case $host_cpu in -+ hppa*64*) -+ archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' -+ ;; -+ ia64*) -+ archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' -+ ;; -+ *) -+ archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' -+ ;; -+ esac -+ fi -+ else -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ fi -+ ;; -+ esac -+ ;; -+ -+ interix[3-9]*) -+ hardcode_direct_CXX=no -+ hardcode_shlibpath_var_CXX=no -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' -+ export_dynamic_flag_spec_CXX='${wl}-E' -+ # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. -+ # Instead, shared libraries are loaded at an image base (0x10000000 by -+ # default) and relocated if they conflict, which is a slow very memory -+ # consuming and fragmenting process. To avoid this, we pick a random, -+ # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link -+ # time. Moving up from 0x10000000 also allows more sbrk(2) space. -+ archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' -+ archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' -+ ;; -+ irix5* | irix6*) -+ case $cc_basename in -+ CC*) -+ # SGI C++ -+ archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' -+ -+ # Archives containing C++ object files must be created using -+ # "CC -ar", where "CC" is the IRIX C++ compiler. This is -+ # necessary to make sure instantiated templates are included -+ # in the archive. -+ old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' -+ ;; -+ *) -+ if test "$GXX" = yes; then -+ if test "$with_gnu_ld" = no; then -+ archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' -+ else -+ archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' -+ fi -+ fi -+ link_all_deplibs_CXX=yes -+ ;; -+ esac -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' -+ hardcode_libdir_separator_CXX=: -+ inherit_rpath_CXX=yes -+ ;; -+ -+ linux* | k*bsd*-gnu | kopensolaris*-gnu) -+ case $cc_basename in -+ KCC*) -+ # Kuck and Associates, Inc. (KAI) C++ Compiler -+ -+ # KCC will only create a shared library if the output file -+ # ends with ".so" (or ".sl" for HP-UX), so rename the library -+ # to its proper name (with version) after linking. -+ archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' -+ archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' -+ # Commands to make compiler produce verbose output that lists -+ # what "hidden" libraries, object files and flags are used when -+ # linking a shared library. -+ # -+ # There doesn't appear to be a way to prevent this compiler from -+ # explicitly linking system object files so we need to strip them -+ # from the output so that they don't get included in the library -+ # dependencies. -+ output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' -+ -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' -+ export_dynamic_flag_spec_CXX='${wl}--export-dynamic' -+ -+ # Archives containing C++ object files must be created using -+ # "CC -Bstatic", where "CC" is the KAI C++ compiler. -+ old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' -+ ;; -+ icpc* | ecpc* ) -+ # Intel C++ -+ with_gnu_ld=yes -+ # version 8.0 and above of icpc choke on multiply defined symbols -+ # if we add $predep_objects and $postdep_objects, however 7.1 and -+ # earlier do not add the objects themselves. -+ case `$CC -V 2>&1` in -+ *"Version 7."*) -+ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' -+ ;; -+ *) # Version 8.0 or newer -+ tmp_idyn= -+ case $host_cpu in -+ ia64*) tmp_idyn=' -i_dynamic';; -+ esac -+ archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' -+ ;; -+ esac -+ archive_cmds_need_lc_CXX=no -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' -+ export_dynamic_flag_spec_CXX='${wl}--export-dynamic' -+ whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' -+ ;; -+ pgCC* | pgcpp*) -+ # Portland Group C++ compiler -+ case `$CC -V` in -+ *pgCC\ [1-5].* | *pgcpp\ [1-5].*) -+ prelink_cmds_CXX='tpldir=Template.dir~ -+ rm -rf $tpldir~ -+ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ -+ compile_command="$compile_command `find $tpldir -name \*.o | $NL2SP`"' -+ old_archive_cmds_CXX='tpldir=Template.dir~ -+ rm -rf $tpldir~ -+ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ -+ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | $NL2SP`~ -+ $RANLIB $oldlib' -+ archive_cmds_CXX='tpldir=Template.dir~ -+ rm -rf $tpldir~ -+ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ -+ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' -+ archive_expsym_cmds_CXX='tpldir=Template.dir~ -+ rm -rf $tpldir~ -+ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ -+ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' -+ ;; -+ *) # Version 6 and above use weak symbols -+ archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' -+ archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' -+ ;; -+ esac -+ -+ hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' -+ export_dynamic_flag_spec_CXX='${wl}--export-dynamic' -+ whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' -+ ;; -+ cxx*) -+ # Compaq C++ -+ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' -+ -+ runpath_var=LD_RUN_PATH -+ hardcode_libdir_flag_spec_CXX='-rpath $libdir' -+ hardcode_libdir_separator_CXX=: -+ -+ # Commands to make compiler produce verbose output that lists -+ # what "hidden" libraries, object files and flags are used when -+ # linking a shared library. -+ # -+ # There doesn't appear to be a way to prevent this compiler from -+ # explicitly linking system object files so we need to strip them -+ # from the output so that they don't get included in the library -+ # dependencies. -+ output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' -+ ;; -+ xl* | mpixl* | bgxl*) -+ # IBM XL 8.0 on PPC, with GNU ld -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' -+ export_dynamic_flag_spec_CXX='${wl}--export-dynamic' -+ archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ if test "x$supports_anon_versioning" = xyes; then -+ archive_expsym_cmds_CXX='echo "{ global:" > $output_objdir/$libname.ver~ -+ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ -+ echo "local: *; };" >> $output_objdir/$libname.ver~ -+ $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' -+ fi -+ ;; -+ *) -+ case `$CC -V 2>&1 | sed 5q` in -+ *Sun\ C*) -+ # Sun C++ 5.9 -+ no_undefined_flag_CXX=' -zdefs' -+ archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' -+ archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' -+ hardcode_libdir_flag_spec_CXX='-R$libdir' -+ whole_archive_flag_spec_CXX='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' -+ compiler_needs_object_CXX=yes -+ -+ # Not sure whether something based on -+ # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 -+ # would be better. -+ output_verbose_link_cmd='func_echo_all' -+ -+ # Archives containing C++ object files must be created using -+ # "CC -xar", where "CC" is the Sun C++ compiler. This is -+ # necessary to make sure instantiated templates are included -+ # in the archive. -+ old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' -+ ;; -+ esac -+ ;; -+ esac -+ ;; -+ -+ lynxos*) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ -+ m88k*) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ -+ mvs*) -+ case $cc_basename in -+ cxx*) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ *) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ esac -+ ;; -+ -+ netbsd*) -+ if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then -+ archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' -+ wlarc= -+ hardcode_libdir_flag_spec_CXX='-R$libdir' -+ hardcode_direct_CXX=yes -+ hardcode_shlibpath_var_CXX=no -+ fi -+ # Workaround some broken pre-1.5 toolchains -+ output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' -+ ;; -+ -+ *nto* | *qnx*) -+ ld_shlibs_CXX=yes -+ ;; -+ -+ openbsd2*) -+ # C++ shared libraries are fairly broken -+ ld_shlibs_CXX=no -+ ;; -+ -+ openbsd*) -+ if test -f /usr/libexec/ld.so; then -+ hardcode_direct_CXX=yes -+ hardcode_shlibpath_var_CXX=no -+ hardcode_direct_absolute_CXX=yes -+ archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' -+ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then -+ archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' -+ export_dynamic_flag_spec_CXX='${wl}-E' -+ whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' -+ fi -+ output_verbose_link_cmd=func_echo_all -+ else -+ ld_shlibs_CXX=no -+ fi -+ ;; -+ -+ osf3* | osf4* | osf5*) -+ case $cc_basename in -+ KCC*) -+ # Kuck and Associates, Inc. (KAI) C++ Compiler -+ -+ # KCC will only create a shared library if the output file -+ # ends with ".so" (or ".sl" for HP-UX), so rename the library -+ # to its proper name (with version) after linking. -+ archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' -+ -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' -+ hardcode_libdir_separator_CXX=: -+ -+ # Archives containing C++ object files must be created using -+ # the KAI C++ compiler. -+ case $host in -+ osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; -+ *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; -+ esac -+ ;; -+ RCC*) -+ # Rational C++ 2.4.1 -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ cxx*) -+ case $host in -+ osf3*) -+ allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' -+ archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' -+ ;; -+ *) -+ allow_undefined_flag_CXX=' -expect_unresolved \*' -+ archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' -+ archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ -+ echo "-hidden">> $lib.exp~ -+ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ -+ $RM $lib.exp' -+ hardcode_libdir_flag_spec_CXX='-rpath $libdir' -+ ;; -+ esac -+ -+ hardcode_libdir_separator_CXX=: -+ -+ # Commands to make compiler produce verbose output that lists -+ # what "hidden" libraries, object files and flags are used when -+ # linking a shared library. -+ # -+ # There doesn't appear to be a way to prevent this compiler from -+ # explicitly linking system object files so we need to strip them -+ # from the output so that they don't get included in the library -+ # dependencies. -+ output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' -+ ;; -+ *) -+ if test "$GXX" = yes && test "$with_gnu_ld" = no; then -+ allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' -+ case $host in -+ osf3*) -+ archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' -+ ;; -+ *) -+ archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' -+ ;; -+ esac -+ -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' -+ hardcode_libdir_separator_CXX=: -+ -+ # Commands to make compiler produce verbose output that lists -+ # what "hidden" libraries, object files and flags are used when -+ # linking a shared library. -+ output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' -+ -+ else -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ fi -+ ;; -+ esac -+ ;; -+ -+ psos*) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ -+ sunos4*) -+ case $cc_basename in -+ CC*) -+ # Sun C++ 4.x -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ lcc*) -+ # Lucid -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ *) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ esac -+ ;; -+ -+ solaris*) -+ case $cc_basename in -+ CC*) -+ # Sun C++ 4.2, 5.x and Centerline C++ -+ archive_cmds_need_lc_CXX=yes -+ no_undefined_flag_CXX=' -zdefs' -+ archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' -+ archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ -+ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' -+ -+ hardcode_libdir_flag_spec_CXX='-R$libdir' -+ hardcode_shlibpath_var_CXX=no -+ case $host_os in -+ solaris2.[0-5] | solaris2.[0-5].*) ;; -+ *) -+ # The compiler driver will combine and reorder linker options, -+ # but understands `-z linker_flag'. -+ # Supported since Solaris 2.6 (maybe 2.5.1?) -+ whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' -+ ;; -+ esac -+ link_all_deplibs_CXX=yes -+ -+ output_verbose_link_cmd='func_echo_all' -+ -+ # Archives containing C++ object files must be created using -+ # "CC -xar", where "CC" is the Sun C++ compiler. This is -+ # necessary to make sure instantiated templates are included -+ # in the archive. -+ old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' -+ ;; -+ gcx*) -+ # Green Hills C++ Compiler -+ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' -+ -+ # The C++ compiler must be used to create the archive. -+ old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' -+ ;; -+ *) -+ # GNU C++ compiler with Solaris linker -+ if test "$GXX" = yes && test "$with_gnu_ld" = no; then -+ no_undefined_flag_CXX=' ${wl}-z ${wl}defs' -+ if $CC --version | $GREP -v '^2\.7' > /dev/null; then -+ archive_cmds_CXX='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' -+ archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ -+ $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' -+ -+ # Commands to make compiler produce verbose output that lists -+ # what "hidden" libraries, object files and flags are used when -+ # linking a shared library. -+ output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' -+ else -+ # g++ 2.7 appears to require `-G' NOT `-shared' on this -+ # platform. -+ archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' -+ archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ -+ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' -+ -+ # Commands to make compiler produce verbose output that lists -+ # what "hidden" libraries, object files and flags are used when -+ # linking a shared library. -+ output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' -+ fi -+ -+ hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' -+ case $host_os in -+ solaris2.[0-5] | solaris2.[0-5].*) ;; -+ *) -+ whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' -+ ;; -+ esac -+ fi -+ ;; -+ esac -+ ;; -+ -+ sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) -+ no_undefined_flag_CXX='${wl}-z,text' -+ archive_cmds_need_lc_CXX=no -+ hardcode_shlibpath_var_CXX=no -+ runpath_var='LD_RUN_PATH' -+ -+ case $cc_basename in -+ CC*) -+ archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ ;; -+ *) -+ archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ ;; -+ esac -+ ;; -+ -+ sysv5* | sco3.2v5* | sco5v6*) -+ # Note: We can NOT use -z defs as we might desire, because we do not -+ # link with -lc, and that would cause any symbols used from libc to -+ # always be unresolved, which means just about no library would -+ # ever link correctly. If we're not using GNU ld we use -z text -+ # though, which does catch some bad symbols but isn't as heavy-handed -+ # as -z defs. -+ no_undefined_flag_CXX='${wl}-z,text' -+ allow_undefined_flag_CXX='${wl}-z,nodefs' -+ archive_cmds_need_lc_CXX=no -+ hardcode_shlibpath_var_CXX=no -+ hardcode_libdir_flag_spec_CXX='${wl}-R,$libdir' -+ hardcode_libdir_separator_CXX=':' -+ link_all_deplibs_CXX=yes -+ export_dynamic_flag_spec_CXX='${wl}-Bexport' -+ runpath_var='LD_RUN_PATH' -+ -+ case $cc_basename in -+ CC*) -+ archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ old_archive_cmds_CXX='$CC -Tprelink_objects $oldobjs~ -+ '"$old_archive_cmds_CXX" -+ reload_cmds_CXX='$CC -Tprelink_objects $reload_objs~ -+ '"$reload_cmds_CXX" -+ ;; -+ *) -+ archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ ;; -+ esac -+ ;; -+ -+ tandem*) -+ case $cc_basename in -+ NCC*) -+ # NonStop-UX NCC 3.20 -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ *) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ esac -+ ;; -+ -+ vxworks*) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ -+ *) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ esac -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 -+$as_echo "$ld_shlibs_CXX" >&6; } -+ test "$ld_shlibs_CXX" = no && can_build_shared=no -+ -+ GCC_CXX="$GXX" -+ LD_CXX="$LD" -+ -+ ## CAVEAT EMPTOR: -+ ## There is no encapsulation within the following macros, do not change -+ ## the running order or otherwise move them around unless you know exactly -+ ## what you are doing... -+ # Dependencies to place before and after the object being linked: -+predep_objects_CXX= -+postdep_objects_CXX= -+predeps_CXX= -+postdeps_CXX= -+compiler_lib_search_path_CXX= -+ -+cat > conftest.$ac_ext <<_LT_EOF -+class Foo -+{ -+public: -+ Foo (void) { a = 0; } -+private: -+ int a; -+}; -+_LT_EOF -+ -+if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ # Parse the compiler output and extract the necessary -+ # objects, libraries and library flags. -+ -+ # Sentinel used to keep track of whether or not we are before -+ # the conftest object file. -+ pre_test_object_deps_done=no -+ -+ for p in `eval "$output_verbose_link_cmd"`; do -+ case $p in -+ -+ -L* | -R* | -l*) -+ # Some compilers place space between "-{L,R}" and the path. -+ # Remove the space. -+ if test $p = "-L" || -+ test $p = "-R"; then -+ prev=$p -+ continue -+ else -+ prev= -+ fi -+ -+ if test "$pre_test_object_deps_done" = no; then -+ case $p in -+ -L* | -R*) -+ # Internal compiler library paths should come after those -+ # provided the user. The postdeps already come after the -+ # user supplied libs so there is no need to process them. -+ if test -z "$compiler_lib_search_path_CXX"; then -+ compiler_lib_search_path_CXX="${prev}${p}" -+ else -+ compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" -+ fi -+ ;; -+ # The "-l" case would never come before the object being -+ # linked, so don't bother handling this case. -+ esac -+ else -+ if test -z "$postdeps_CXX"; then -+ postdeps_CXX="${prev}${p}" -+ else -+ postdeps_CXX="${postdeps_CXX} ${prev}${p}" -+ fi -+ fi -+ ;; -+ -+ *.$objext) -+ # This assumes that the test object file only shows up -+ # once in the compiler output. -+ if test "$p" = "conftest.$objext"; then -+ pre_test_object_deps_done=yes -+ continue -+ fi -+ -+ if test "$pre_test_object_deps_done" = no; then -+ if test -z "$predep_objects_CXX"; then -+ predep_objects_CXX="$p" -+ else -+ predep_objects_CXX="$predep_objects_CXX $p" -+ fi -+ else -+ if test -z "$postdep_objects_CXX"; then -+ postdep_objects_CXX="$p" -+ else -+ postdep_objects_CXX="$postdep_objects_CXX $p" -+ fi -+ fi -+ ;; -+ -+ *) ;; # Ignore the rest. -+ -+ esac -+ done -+ -+ # Clean up. -+ rm -f a.out a.exe -+else -+ echo "libtool.m4: error: problem compiling CXX test program" -+fi -+ -+$RM -f confest.$objext -+ -+# PORTME: override above test on systems where it is broken -+case $host_os in -+interix[3-9]*) -+ # Interix 3.5 installs completely hosed .la files for C++, so rather than -+ # hack all around it, let's just trust "g++" to DTRT. -+ predep_objects_CXX= -+ postdep_objects_CXX= -+ postdeps_CXX= -+ ;; -+ -+linux*) -+ case `$CC -V 2>&1 | sed 5q` in -+ *Sun\ C*) -+ # Sun C++ 5.9 -+ -+ # The more standards-conforming stlport4 library is -+ # incompatible with the Cstd library. Avoid specifying -+ # it if it's in CXXFLAGS. Ignore libCrun as -+ # -library=stlport4 depends on it. -+ case " $CXX $CXXFLAGS " in -+ *" -library=stlport4 "*) -+ solaris_use_stlport4=yes -+ ;; -+ esac -+ -+ if test "$solaris_use_stlport4" != yes; then -+ postdeps_CXX='-library=Cstd -library=Crun' -+ fi -+ ;; -+ esac -+ ;; -+ -+solaris*) -+ case $cc_basename in -+ CC*) -+ # The more standards-conforming stlport4 library is -+ # incompatible with the Cstd library. Avoid specifying -+ # it if it's in CXXFLAGS. Ignore libCrun as -+ # -library=stlport4 depends on it. -+ case " $CXX $CXXFLAGS " in -+ *" -library=stlport4 "*) -+ solaris_use_stlport4=yes -+ ;; -+ esac -+ -+ # Adding this requires a known-good setup of shared libraries for -+ # Sun compiler versions before 5.6, else PIC objects from an old -+ # archive will be linked into the output, leading to subtle bugs. -+ if test "$solaris_use_stlport4" != yes; then -+ postdeps_CXX='-library=Cstd -library=Crun' -+ fi -+ ;; -+ esac -+ ;; -+esac -+ -+ -+case " $postdeps_CXX " in -+*" -lc "*) archive_cmds_need_lc_CXX=no ;; -+esac -+ compiler_lib_search_dirs_CXX= -+if test -n "${compiler_lib_search_path_CXX}"; then -+ compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ lt_prog_compiler_wl_CXX= -+lt_prog_compiler_pic_CXX= -+lt_prog_compiler_static_CXX= -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 -+$as_echo_n "checking for $compiler option to produce PIC... " >&6; } -+ -+ # C++ specific cases for pic, static, wl, etc. -+ if test "$GXX" = yes; then -+ lt_prog_compiler_wl_CXX='-Wl,' -+ lt_prog_compiler_static_CXX='-static' -+ -+ case $host_os in -+ aix*) -+ # All AIX code is PIC. -+ if test "$host_cpu" = ia64; then -+ # AIX 5 now supports IA64 processor -+ lt_prog_compiler_static_CXX='-Bstatic' -+ fi -+ lt_prog_compiler_pic_CXX='-fPIC' -+ ;; -+ -+ amigaos*) -+ case $host_cpu in -+ powerpc) -+ # see comment about AmigaOS4 .so support -+ lt_prog_compiler_pic_CXX='-fPIC' -+ ;; -+ m68k) -+ # FIXME: we need at least 68020 code to build shared libraries, but -+ # adding the `-m68020' flag to GCC prevents building anything better, -+ # like `-m68040'. -+ lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' -+ ;; -+ esac -+ ;; -+ -+ beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) -+ # PIC is the default for these OSes. -+ ;; -+ mingw* | cygwin* | os2* | pw32* | cegcc*) -+ # This hack is so that the source file can tell whether it is being -+ # built for inclusion in a dll (and should export symbols for example). -+ # Although the cygwin gcc ignores -fPIC, still need this for old-style -+ # (--disable-auto-import) libraries -+ lt_prog_compiler_pic_CXX='-DDLL_EXPORT' -+ ;; -+ darwin* | rhapsody*) -+ # PIC is the default on this platform -+ # Common symbols not allowed in MH_DYLIB files -+ lt_prog_compiler_pic_CXX='-fno-common' -+ ;; -+ *djgpp*) -+ # DJGPP does not support shared libraries at all -+ lt_prog_compiler_pic_CXX= -+ ;; -+ haiku*) -+ # PIC is the default for Haiku. -+ # The "-static" flag exists, but is broken. -+ lt_prog_compiler_static_CXX= -+ ;; -+ interix[3-9]*) -+ # Interix 3.x gcc -fpic/-fPIC options generate broken code. -+ # Instead, we relocate shared libraries at runtime. -+ ;; -+ sysv4*MP*) -+ if test -d /usr/nec; then -+ lt_prog_compiler_pic_CXX=-Kconform_pic -+ fi -+ ;; -+ hpux*) -+ # PIC is the default for 64-bit PA HP-UX, but not for 32-bit -+ # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag -+ # sets the default TLS model and affects inlining. -+ case $host_cpu in -+ hppa*64*) -+ ;; -+ *) -+ lt_prog_compiler_pic_CXX='-fPIC' -+ ;; -+ esac -+ ;; -+ *qnx* | *nto*) -+ # QNX uses GNU C++, but need to define -shared option too, otherwise -+ # it will coredump. -+ lt_prog_compiler_pic_CXX='-fPIC -shared' -+ ;; -+ *) -+ lt_prog_compiler_pic_CXX='-fPIC' -+ ;; -+ esac -+ else -+ case $host_os in -+ aix[4-9]*) -+ # All AIX code is PIC. -+ if test "$host_cpu" = ia64; then -+ # AIX 5 now supports IA64 processor -+ lt_prog_compiler_static_CXX='-Bstatic' -+ else -+ lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' -+ fi -+ ;; -+ chorus*) -+ case $cc_basename in -+ cxch68*) -+ # Green Hills C++ Compiler -+ # _LT_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" -+ ;; -+ esac -+ ;; -+ dgux*) -+ case $cc_basename in -+ ec++*) -+ lt_prog_compiler_pic_CXX='-KPIC' -+ ;; -+ ghcx*) -+ # Green Hills C++ Compiler -+ lt_prog_compiler_pic_CXX='-pic' -+ ;; -+ *) -+ ;; -+ esac -+ ;; -+ freebsd* | dragonfly*) -+ # FreeBSD uses GNU C++ -+ ;; -+ hpux9* | hpux10* | hpux11*) -+ case $cc_basename in -+ CC*) -+ lt_prog_compiler_wl_CXX='-Wl,' -+ lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' -+ if test "$host_cpu" != ia64; then -+ lt_prog_compiler_pic_CXX='+Z' -+ fi -+ ;; -+ aCC*) -+ lt_prog_compiler_wl_CXX='-Wl,' -+ lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' -+ case $host_cpu in -+ hppa*64*|ia64*) -+ # +Z the default -+ ;; -+ *) -+ lt_prog_compiler_pic_CXX='+Z' -+ ;; -+ esac -+ ;; -+ *) -+ ;; -+ esac -+ ;; -+ interix*) -+ # This is c89, which is MS Visual C++ (no shared libs) -+ # Anyone wants to do a port? -+ ;; -+ irix5* | irix6* | nonstopux*) -+ case $cc_basename in -+ CC*) -+ lt_prog_compiler_wl_CXX='-Wl,' -+ lt_prog_compiler_static_CXX='-non_shared' -+ # CC pic flag -KPIC is the default. -+ ;; -+ *) -+ ;; -+ esac -+ ;; -+ linux* | k*bsd*-gnu | kopensolaris*-gnu) -+ case $cc_basename in -+ KCC*) -+ # KAI C++ Compiler -+ lt_prog_compiler_wl_CXX='--backend -Wl,' -+ lt_prog_compiler_pic_CXX='-fPIC' -+ ;; -+ ecpc* ) -+ # old Intel C++ for x86_64 which still supported -KPIC. -+ lt_prog_compiler_wl_CXX='-Wl,' -+ lt_prog_compiler_pic_CXX='-KPIC' -+ lt_prog_compiler_static_CXX='-static' -+ ;; -+ icpc* ) -+ # Intel C++, used to be incompatible with GCC. -+ # ICC 10 doesn't accept -KPIC any more. -+ lt_prog_compiler_wl_CXX='-Wl,' -+ lt_prog_compiler_pic_CXX='-fPIC' -+ lt_prog_compiler_static_CXX='-static' -+ ;; -+ pgCC* | pgcpp*) -+ # Portland Group C++ compiler -+ lt_prog_compiler_wl_CXX='-Wl,' -+ lt_prog_compiler_pic_CXX='-fpic' -+ lt_prog_compiler_static_CXX='-Bstatic' -+ ;; -+ cxx*) -+ # Compaq C++ -+ # Make sure the PIC flag is empty. It appears that all Alpha -+ # Linux and Compaq Tru64 Unix objects are PIC. -+ lt_prog_compiler_pic_CXX= -+ lt_prog_compiler_static_CXX='-non_shared' -+ ;; -+ xlc* | xlC* | bgxl[cC]* | mpixl[cC]*) -+ # IBM XL 8.0, 9.0 on PPC and BlueGene -+ lt_prog_compiler_wl_CXX='-Wl,' -+ lt_prog_compiler_pic_CXX='-qpic' -+ lt_prog_compiler_static_CXX='-qstaticlink' -+ ;; -+ *) -+ case `$CC -V 2>&1 | sed 5q` in -+ *Sun\ C*) -+ # Sun C++ 5.9 -+ lt_prog_compiler_pic_CXX='-KPIC' -+ lt_prog_compiler_static_CXX='-Bstatic' -+ lt_prog_compiler_wl_CXX='-Qoption ld ' -+ ;; -+ esac -+ ;; -+ esac -+ ;; -+ lynxos*) -+ ;; -+ m88k*) -+ ;; -+ mvs*) -+ case $cc_basename in -+ cxx*) -+ lt_prog_compiler_pic_CXX='-W c,exportall' -+ ;; -+ *) -+ ;; -+ esac -+ ;; -+ netbsd*) -+ ;; -+ *qnx* | *nto*) -+ # QNX uses GNU C++, but need to define -shared option too, otherwise -+ # it will coredump. -+ lt_prog_compiler_pic_CXX='-fPIC -shared' -+ ;; -+ osf3* | osf4* | osf5*) -+ case $cc_basename in -+ KCC*) -+ lt_prog_compiler_wl_CXX='--backend -Wl,' -+ ;; -+ RCC*) -+ # Rational C++ 2.4.1 -+ lt_prog_compiler_pic_CXX='-pic' -+ ;; -+ cxx*) -+ # Digital/Compaq C++ -+ lt_prog_compiler_wl_CXX='-Wl,' -+ # Make sure the PIC flag is empty. It appears that all Alpha -+ # Linux and Compaq Tru64 Unix objects are PIC. -+ lt_prog_compiler_pic_CXX= -+ lt_prog_compiler_static_CXX='-non_shared' -+ ;; -+ *) -+ ;; -+ esac -+ ;; -+ psos*) -+ ;; -+ solaris*) -+ case $cc_basename in -+ CC*) -+ # Sun C++ 4.2, 5.x and Centerline C++ -+ lt_prog_compiler_pic_CXX='-KPIC' -+ lt_prog_compiler_static_CXX='-Bstatic' -+ lt_prog_compiler_wl_CXX='-Qoption ld ' -+ ;; -+ gcx*) -+ # Green Hills C++ Compiler -+ lt_prog_compiler_pic_CXX='-PIC' -+ ;; -+ *) -+ ;; -+ esac -+ ;; -+ sunos4*) -+ case $cc_basename in -+ CC*) -+ # Sun C++ 4.x -+ lt_prog_compiler_pic_CXX='-pic' -+ lt_prog_compiler_static_CXX='-Bstatic' -+ ;; -+ lcc*) -+ # Lucid -+ lt_prog_compiler_pic_CXX='-pic' -+ ;; -+ *) -+ ;; -+ esac -+ ;; -+ sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) -+ case $cc_basename in -+ CC*) -+ lt_prog_compiler_wl_CXX='-Wl,' -+ lt_prog_compiler_pic_CXX='-KPIC' -+ lt_prog_compiler_static_CXX='-Bstatic' -+ ;; -+ esac -+ ;; -+ tandem*) -+ case $cc_basename in -+ NCC*) -+ # NonStop-UX NCC 3.20 -+ lt_prog_compiler_pic_CXX='-KPIC' -+ ;; -+ *) -+ ;; -+ esac -+ ;; -+ vxworks*) -+ ;; -+ *) -+ lt_prog_compiler_can_build_shared_CXX=no -+ ;; -+ esac -+ fi -+ -+case $host_os in -+ # For platforms which do not support PIC, -DPIC is meaningless: -+ *djgpp*) -+ lt_prog_compiler_pic_CXX= -+ ;; -+ *) -+ lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX@&t@ -DPIC" -+ ;; -+esac -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic_CXX" >&5 -+$as_echo "$lt_prog_compiler_pic_CXX" >&6; } -+ -+ -+ -+# -+# Check to make sure the PIC flag actually works. -+# -+if test -n "$lt_prog_compiler_pic_CXX"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 -+$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } -+if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler_pic_works_CXX=no -+ ac_outfile=conftest.$ac_objext -+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext -+ lt_compiler_flag="$lt_prog_compiler_pic_CXX@&t@ -DPIC" -+ # Insert the option either (1) after the last *FLAGS variable, or -+ # (2) before a word containing "conftest.", or (3) at the end. -+ # Note that $ac_compile itself does not contain backslashes and begins -+ # with a dollar sign (not a hyphen), so the echo should work correctly. -+ # The option is referenced via a variable to avoid confusing sed. -+ lt_compile=`echo "$ac_compile" | $SED \ -+ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -+ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -+ -e 's:$: $lt_compiler_flag:'` -+ (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) -+ (eval "$lt_compile" 2>conftest.err) -+ ac_status=$? -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ if (exit $ac_status) && test -s "$ac_outfile"; then -+ # The compiler can only warn and ignore the option if not recognized -+ # So say no if there are warnings other than the usual output. -+ $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp -+ $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 -+ if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler_pic_works_CXX=yes -+ fi -+ fi -+ $RM conftest* -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 -+$as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } -+ -+if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then -+ case $lt_prog_compiler_pic_CXX in -+ "" | " "*) ;; -+ *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; -+ esac -+else -+ lt_prog_compiler_pic_CXX= -+ lt_prog_compiler_can_build_shared_CXX=no -+fi -+ -+fi -+ -+ -+ -+# -+# Check to make sure the static flag actually works. -+# -+wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 -+$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } -+if ${lt_cv_prog_compiler_static_works_CXX+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler_static_works_CXX=no -+ save_LDFLAGS="$LDFLAGS" -+ LDFLAGS="$LDFLAGS $lt_tmp_static_flag" -+ echo "$lt_simple_link_test_code" > conftest.$ac_ext -+ if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then -+ # The linker can only warn and ignore the option if not recognized -+ # So say no if there are warnings -+ if test -s conftest.err; then -+ # Append any errors to the config.log. -+ cat conftest.err 1>&5 -+ $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp -+ $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 -+ if diff conftest.exp conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler_static_works_CXX=yes -+ fi -+ else -+ lt_cv_prog_compiler_static_works_CXX=yes -+ fi -+ fi -+ $RM -r conftest* -+ LDFLAGS="$save_LDFLAGS" -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 -+$as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } -+ -+if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then -+ : -+else -+ lt_prog_compiler_static_CXX= -+fi -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -+$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -+if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler_c_o_CXX=no -+ $RM -r conftest 2>/dev/null -+ mkdir conftest -+ cd conftest -+ mkdir out -+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext -+ -+ lt_compiler_flag="-o out/conftest2.$ac_objext" -+ # Insert the option either (1) after the last *FLAGS variable, or -+ # (2) before a word containing "conftest.", or (3) at the end. -+ # Note that $ac_compile itself does not contain backslashes and begins -+ # with a dollar sign (not a hyphen), so the echo should work correctly. -+ lt_compile=`echo "$ac_compile" | $SED \ -+ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -+ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -+ -e 's:$: $lt_compiler_flag:'` -+ (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) -+ (eval "$lt_compile" 2>out/conftest.err) -+ ac_status=$? -+ cat out/conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ if (exit $ac_status) && test -s out/conftest2.$ac_objext -+ then -+ # The compiler can only warn and ignore the option if not recognized -+ # So say no if there are warnings -+ $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp -+ $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 -+ if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler_c_o_CXX=yes -+ fi -+ fi -+ chmod u+w . 2>&5 -+ $RM conftest* -+ # SGI C++ compiler will create directory out/ii_files/ for -+ # template instantiation -+ test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files -+ $RM out/* && rmdir out -+ cd .. -+ $RM -r conftest -+ $RM conftest* -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 -+$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -+$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -+if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler_c_o_CXX=no -+ $RM -r conftest 2>/dev/null -+ mkdir conftest -+ cd conftest -+ mkdir out -+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext -+ -+ lt_compiler_flag="-o out/conftest2.$ac_objext" -+ # Insert the option either (1) after the last *FLAGS variable, or -+ # (2) before a word containing "conftest.", or (3) at the end. -+ # Note that $ac_compile itself does not contain backslashes and begins -+ # with a dollar sign (not a hyphen), so the echo should work correctly. -+ lt_compile=`echo "$ac_compile" | $SED \ -+ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -+ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -+ -e 's:$: $lt_compiler_flag:'` -+ (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) -+ (eval "$lt_compile" 2>out/conftest.err) -+ ac_status=$? -+ cat out/conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ if (exit $ac_status) && test -s out/conftest2.$ac_objext -+ then -+ # The compiler can only warn and ignore the option if not recognized -+ # So say no if there are warnings -+ $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp -+ $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 -+ if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler_c_o_CXX=yes -+ fi -+ fi -+ chmod u+w . 2>&5 -+ $RM conftest* -+ # SGI C++ compiler will create directory out/ii_files/ for -+ # template instantiation -+ test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files -+ $RM out/* && rmdir out -+ cd .. -+ $RM -r conftest -+ $RM conftest* -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 -+$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } -+ -+ -+ -+ -+hard_links="nottested" -+if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then -+ # do not overwrite the value of need_locks provided by the user -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 -+$as_echo_n "checking if we can lock with hard links... " >&6; } -+ hard_links=yes -+ $RM conftest* -+ ln conftest.a conftest.b 2>/dev/null && hard_links=no -+ touch conftest.a -+ ln conftest.a conftest.b 2>&5 || hard_links=no -+ ln conftest.a conftest.b 2>/dev/null && hard_links=no -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 -+$as_echo "$hard_links" >&6; } -+ if test "$hard_links" = no; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 -+$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} -+ need_locks=warn -+ fi -+else -+ need_locks=no -+fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -+$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } -+ -+ export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' -+ case $host_os in -+ aix[4-9]*) -+ # If we're using GNU nm, then we don't want the "-C" option. -+ # -C means demangle to AIX nm, but means don't demangle with GNU nm -+ # Also, AIX nm treats weak defined symbols like other global defined -+ # symbols, whereas GNU nm marks them as "W". -+ if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then -+ export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' -+ else -+ export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' -+ fi -+ ;; -+ pw32*) -+ export_symbols_cmds_CXX="$ltdll_cmds" -+ ;; -+ cygwin* | mingw* | cegcc*) -+ export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;/^.*[ ]__nm__/s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' -+ ;; -+ *) -+ export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' -+ ;; -+ esac -+ exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 -+$as_echo "$ld_shlibs_CXX" >&6; } -+test "$ld_shlibs_CXX" = no && can_build_shared=no -+ -+with_gnu_ld_CXX=$with_gnu_ld -+ -+ -+ -+ -+ -+ -+# -+# Do we need to explicitly link libc? -+# -+case "x$archive_cmds_need_lc_CXX" in -+x|xyes) -+ # Assume -lc should be added -+ archive_cmds_need_lc_CXX=yes -+ -+ if test "$enable_shared" = yes && test "$GCC" = yes; then -+ case $archive_cmds_CXX in -+ *'~'*) -+ # FIXME: we may have to deal with multi-command sequences. -+ ;; -+ '$CC '*) -+ # Test whether the compiler implicitly links with -lc since on some -+ # systems, -lgcc has to come before -lc. If gcc already passes -lc -+ # to ld, don't add -lc before -lgcc. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 -+$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } -+if ${lt_cv_archive_cmds_need_lc_CXX+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ $RM conftest* -+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext -+ -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } 2>conftest.err; then -+ soname=conftest -+ lib=conftest -+ libobjs=conftest.$ac_objext -+ deplibs= -+ wl=$lt_prog_compiler_wl_CXX -+ pic_flag=$lt_prog_compiler_pic_CXX -+ compiler_flags=-v -+ linker_flags=-v -+ verstring= -+ output_objdir=. -+ libname=conftest -+ lt_save_allow_undefined_flag=$allow_undefined_flag_CXX -+ allow_undefined_flag_CXX= -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 -+ (eval $archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } -+ then -+ lt_cv_archive_cmds_need_lc_CXX=no -+ else -+ lt_cv_archive_cmds_need_lc_CXX=yes -+ fi -+ allow_undefined_flag_CXX=$lt_save_allow_undefined_flag -+ else -+ cat conftest.err 1>&5 -+ fi -+ $RM conftest* -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc_CXX" >&5 -+$as_echo "$lt_cv_archive_cmds_need_lc_CXX" >&6; } -+ archive_cmds_need_lc_CXX=$lt_cv_archive_cmds_need_lc_CXX -+ ;; -+ esac -+ fi -+ ;; -+esac -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 -+$as_echo_n "checking dynamic linker characteristics... " >&6; } -+ -+library_names_spec= -+libname_spec='lib$name' -+soname_spec= -+shrext_cmds=".so" -+postinstall_cmds= -+postuninstall_cmds= -+finish_cmds= -+finish_eval= -+shlibpath_var= -+shlibpath_overrides_runpath=unknown -+version_type=none -+dynamic_linker="$host_os ld.so" -+sys_lib_dlsearch_path_spec="/lib /usr/lib" -+need_lib_prefix=unknown -+hardcode_into_libs=no -+ -+# when you set need_version to no, make sure it does not cause -set_version -+# flags to be left without arguments -+need_version=unknown -+ -+case $host_os in -+aix3*) -+ version_type=linux -+ library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' -+ shlibpath_var=LIBPATH -+ -+ # AIX 3 has no versioning support, so we append a major version to the name. -+ soname_spec='${libname}${release}${shared_ext}$major' -+ ;; -+ -+aix[4-9]*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ hardcode_into_libs=yes -+ if test "$host_cpu" = ia64; then -+ # AIX 5 supports IA64 -+ library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' -+ shlibpath_var=LD_LIBRARY_PATH -+ else -+ # With GCC up to 2.95.x, collect2 would create an import file -+ # for dependence libraries. The import file would start with -+ # the line `#! .'. This would cause the generated library to -+ # depend on `.', always an invalid library. This was fixed in -+ # development snapshots of GCC prior to 3.0. -+ case $host_os in -+ aix4 | aix4.[01] | aix4.[01].*) -+ if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' -+ echo ' yes ' -+ echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then -+ : -+ else -+ can_build_shared=no -+ fi -+ ;; -+ esac -+ # AIX (on Power*) has no versioning support, so currently we can not hardcode correct -+ # soname into executable. Probably we can add versioning support to -+ # collect2, so additional links can be useful in future. -+ if test "$aix_use_runtimelinking" = yes; then -+ # If using run time linking (on AIX 4.2 or later) use lib.so -+ # instead of lib.a to let people know that these are not -+ # typical AIX shared libraries. -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ else -+ # We preserve .a as extension for shared libraries through AIX4.2 -+ # and later when we are not doing run time linking. -+ library_names_spec='${libname}${release}.a $libname.a' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ fi -+ shlibpath_var=LIBPATH -+ fi -+ ;; -+ -+amigaos*) -+ case $host_cpu in -+ powerpc) -+ # Since July 2007 AmigaOS4 officially supports .so libraries. -+ # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ ;; -+ m68k) -+ library_names_spec='$libname.ixlibrary $libname.a' -+ # Create ${libname}_ixlibrary.a entries in /sys/libs. -+ finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' -+ ;; -+ esac -+ ;; -+ -+beos*) -+ library_names_spec='${libname}${shared_ext}' -+ dynamic_linker="$host_os ld.so" -+ shlibpath_var=LIBRARY_PATH -+ ;; -+ -+bsdi[45]*) -+ version_type=linux -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" -+ sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" -+ # the default ld.so.conf also contains /usr/contrib/lib and -+ # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow -+ # libtool to hard-code these into programs -+ ;; -+ -+cygwin* | mingw* | pw32* | cegcc*) -+ version_type=windows -+ shrext_cmds=".dll" -+ need_version=no -+ need_lib_prefix=no -+ -+ case $GCC,$host_os in -+ yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*) -+ library_names_spec='$libname.dll.a' -+ # DLL is installed to $(libdir)/../bin by postinstall_cmds -+ postinstall_cmds='base_file=`basename \${file}`~ -+ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ -+ dldir=$destdir/`dirname \$dlpath`~ -+ test -d \$dldir || mkdir -p \$dldir~ -+ $install_prog $dir/$dlname \$dldir/$dlname~ -+ chmod a+x \$dldir/$dlname~ -+ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then -+ eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; -+ fi' -+ postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ -+ dlpath=$dir/\$dldll~ -+ $RM \$dlpath' -+ shlibpath_overrides_runpath=yes -+ -+ case $host_os in -+ cygwin*) -+ # Cygwin DLLs use 'cyg' prefix rather than 'lib' -+ soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' -+ -+ ;; -+ mingw* | cegcc*) -+ # MinGW DLLs use traditional 'lib' prefix -+ soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' -+ ;; -+ pw32*) -+ # pw32 DLLs use 'pw' prefix rather than 'lib' -+ library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' -+ ;; -+ esac -+ ;; -+ -+ *) -+ library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' -+ ;; -+ esac -+ dynamic_linker='Win32 ld.exe' -+ # FIXME: first we should search . and the directory the executable is in -+ shlibpath_var=PATH -+ ;; -+ -+darwin* | rhapsody*) -+ dynamic_linker="$host_os dyld" -+ version_type=darwin -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' -+ soname_spec='${libname}${release}${major}$shared_ext' -+ shlibpath_overrides_runpath=yes -+ shlibpath_var=DYLD_LIBRARY_PATH -+ shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' -+ -+ sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' -+ ;; -+ -+dgux*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ ;; -+ -+freebsd* | dragonfly*) -+ # DragonFly does not have aout. When/if they implement a new -+ # versioning mechanism, adjust this. -+ if test -x /usr/bin/objformat; then -+ objformat=`/usr/bin/objformat` -+ else -+ case $host_os in -+ freebsd[23].*) objformat=aout ;; -+ *) objformat=elf ;; -+ esac -+ fi -+ version_type=freebsd-$objformat -+ case $version_type in -+ freebsd-elf*) -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' -+ need_version=no -+ need_lib_prefix=no -+ ;; -+ freebsd-*) -+ library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' -+ need_version=yes -+ ;; -+ esac -+ shlibpath_var=LD_LIBRARY_PATH -+ case $host_os in -+ freebsd2.*) -+ shlibpath_overrides_runpath=yes -+ ;; -+ freebsd3.[01]* | freebsdelf3.[01]*) -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ ;; -+ freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ -+ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) -+ shlibpath_overrides_runpath=no -+ hardcode_into_libs=yes -+ ;; -+ *) # from 4.6 on, and DragonFly -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ ;; -+ esac -+ ;; -+ -+haiku*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ dynamic_linker="$host_os runtime_loader" -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' -+ hardcode_into_libs=yes -+ ;; -+ -+hpux9* | hpux10* | hpux11*) -+ # Give a soname corresponding to the major version so that dld.sl refuses to -+ # link against other versions. -+ version_type=sunos -+ need_lib_prefix=no -+ need_version=no -+ case $host_cpu in -+ ia64*) -+ shrext_cmds='.so' -+ hardcode_into_libs=yes -+ dynamic_linker="$host_os dld.so" -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ if test "X$HPUX_IA64_MODE" = X32; then -+ sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" -+ else -+ sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" -+ fi -+ sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec -+ ;; -+ hppa*64*) -+ shrext_cmds='.sl' -+ hardcode_into_libs=yes -+ dynamic_linker="$host_os dld.sl" -+ shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH -+ shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" -+ sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec -+ ;; -+ *) -+ shrext_cmds='.sl' -+ dynamic_linker="$host_os dld.sl" -+ shlibpath_var=SHLIB_PATH -+ shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ ;; -+ esac -+ # HP-UX runs *really* slowly unless shared libraries are mode 555, ... -+ postinstall_cmds='chmod 555 $lib' -+ # or fails outright, so override atomically: -+ install_override_mode=555 -+ ;; -+ -+interix[3-9]*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=no -+ hardcode_into_libs=yes -+ ;; -+ -+irix5* | irix6* | nonstopux*) -+ case $host_os in -+ nonstopux*) version_type=nonstopux ;; -+ *) -+ if test "$lt_cv_prog_gnu_ld" = yes; then -+ version_type=linux -+ else -+ version_type=irix -+ fi ;; -+ esac -+ need_lib_prefix=no -+ need_version=no -+ soname_spec='${libname}${release}${shared_ext}$major' -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' -+ case $host_os in -+ irix5* | nonstopux*) -+ libsuff= shlibsuff= -+ ;; -+ *) -+ case $LD in # libtool.m4 will add one of these switches to LD -+ *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") -+ libsuff= shlibsuff= libmagic=32-bit;; -+ *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") -+ libsuff=32 shlibsuff=N32 libmagic=N32;; -+ *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") -+ libsuff=64 shlibsuff=64 libmagic=64-bit;; -+ *) libsuff= shlibsuff= libmagic=never-match;; -+ esac -+ ;; -+ esac -+ shlibpath_var=LD_LIBRARY${shlibsuff}_PATH -+ shlibpath_overrides_runpath=no -+ sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" -+ sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" -+ hardcode_into_libs=yes -+ ;; -+ -+# No shared lib support for Linux oldld, aout, or coff. -+linux*oldld* | linux*aout* | linux*coff*) -+ dynamic_linker=no -+ ;; -+ -+# This must be Linux ELF. -+linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=no -+ -+ # Some binutils ld are patched to set DT_RUNPATH -+ if ${lt_cv_shlibpath_overrides_runpath+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_shlibpath_overrides_runpath=no -+ save_LDFLAGS=$LDFLAGS -+ save_libdir=$libdir -+ eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_CXX\"; \ -+ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\"" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : -+ lt_cv_shlibpath_overrides_runpath=yes -+fi -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ LDFLAGS=$save_LDFLAGS -+ libdir=$save_libdir -+ -+fi -+ -+ shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath -+ -+ # This implies no fast_install, which is unacceptable. -+ # Some rework will be needed to allow for fast_install -+ # before this can be enabled. -+ hardcode_into_libs=yes -+ -+ # Append ld.so.conf contents to the search path -+ if test -f /etc/ld.so.conf; then -+ lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` -+ sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" -+ fi -+ -+ # We used to test for /lib/ld.so.1 and disable shared libraries on -+ # powerpc, because MkLinux only supported shared libraries with the -+ # GNU dynamic linker. Since this was broken with cross compilers, -+ # most powerpc-linux boxes support dynamic linking these days and -+ # people can always --disable-shared, the test was removed, and we -+ # assume the GNU/Linux dynamic linker is in use. -+ dynamic_linker='GNU/Linux ld.so' -+ ;; -+ -+netbsd*) -+ version_type=sunos -+ need_lib_prefix=no -+ need_version=no -+ if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' -+ dynamic_linker='NetBSD (a.out) ld.so' -+ else -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ dynamic_linker='NetBSD ld.elf_so' -+ fi -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ ;; -+ -+newsos6) -+ version_type=linux -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ ;; -+ -+*nto* | *qnx*) -+ version_type=qnx -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=no -+ hardcode_into_libs=yes -+ dynamic_linker='ldqnx.so' -+ ;; -+ -+openbsd*) -+ version_type=sunos -+ sys_lib_dlsearch_path_spec="/usr/lib" -+ need_lib_prefix=no -+ # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. -+ case $host_os in -+ openbsd3.3 | openbsd3.3.*) need_version=yes ;; -+ *) need_version=no ;; -+ esac -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then -+ case $host_os in -+ openbsd2.[89] | openbsd2.[89].*) -+ shlibpath_overrides_runpath=no -+ ;; -+ *) -+ shlibpath_overrides_runpath=yes -+ ;; -+ esac -+ else -+ shlibpath_overrides_runpath=yes -+ fi -+ ;; -+ -+os2*) -+ libname_spec='$name' -+ shrext_cmds=".dll" -+ need_lib_prefix=no -+ library_names_spec='$libname${shared_ext} $libname.a' -+ dynamic_linker='OS/2 ld.exe' -+ shlibpath_var=LIBPATH -+ ;; -+ -+osf3* | osf4* | osf5*) -+ version_type=osf -+ need_lib_prefix=no -+ need_version=no -+ soname_spec='${libname}${release}${shared_ext}$major' -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ shlibpath_var=LD_LIBRARY_PATH -+ sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" -+ sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" -+ ;; -+ -+rdos*) -+ dynamic_linker=no -+ ;; -+ -+solaris*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ # ldd complains unless libraries are executable -+ postinstall_cmds='chmod +x $lib' -+ ;; -+ -+sunos4*) -+ version_type=sunos -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' -+ finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ if test "$with_gnu_ld" = yes; then -+ need_lib_prefix=no -+ fi -+ need_version=yes -+ ;; -+ -+sysv4 | sysv4.3*) -+ version_type=linux -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ case $host_vendor in -+ sni) -+ shlibpath_overrides_runpath=no -+ need_lib_prefix=no -+ runpath_var=LD_RUN_PATH -+ ;; -+ siemens) -+ need_lib_prefix=no -+ ;; -+ motorola) -+ need_lib_prefix=no -+ need_version=no -+ shlibpath_overrides_runpath=no -+ sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' -+ ;; -+ esac -+ ;; -+ -+sysv4*MP*) -+ if test -d /usr/nec ;then -+ version_type=linux -+ library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' -+ soname_spec='$libname${shared_ext}.$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ fi -+ ;; -+ -+sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) -+ version_type=freebsd-elf -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ if test "$with_gnu_ld" = yes; then -+ sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' -+ else -+ sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' -+ case $host_os in -+ sco3.2v5*) -+ sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" -+ ;; -+ esac -+ fi -+ sys_lib_dlsearch_path_spec='/usr/lib' -+ ;; -+ -+tpf*) -+ # TPF is a cross-target only. Preferred cross-host = GNU/Linux. -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=no -+ hardcode_into_libs=yes -+ ;; -+ -+uts4*) -+ version_type=linux -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ ;; -+ -+*) -+ dynamic_linker=no -+ ;; -+esac -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 -+$as_echo "$dynamic_linker" >&6; } -+test "$dynamic_linker" = no && can_build_shared=no -+ -+variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -+if test "$GCC" = yes; then -+ variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -+fi -+ -+if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then -+ sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" -+fi -+if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then -+ sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 -+$as_echo_n "checking how to hardcode library paths into programs... " >&6; } -+hardcode_action_CXX= -+if test -n "$hardcode_libdir_flag_spec_CXX" || -+ test -n "$runpath_var_CXX" || -+ test "X$hardcode_automatic_CXX" = "Xyes" ; then -+ -+ # We can hardcode non-existent directories. -+ if test "$hardcode_direct_CXX" != no && -+ # If the only mechanism to avoid hardcoding is shlibpath_var, we -+ # have to relink, otherwise we might link with an installed library -+ # when we should be linking with a yet-to-be-installed one -+ ## test "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" != no && -+ test "$hardcode_minus_L_CXX" != no; then -+ # Linking always hardcodes the temporary library directory. -+ hardcode_action_CXX=relink -+ else -+ # We can link without hardcoding, and we can hardcode nonexisting dirs. -+ hardcode_action_CXX=immediate -+ fi -+else -+ # We cannot hardcode anything, or else we can only hardcode existing -+ # directories. -+ hardcode_action_CXX=unsupported -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 -+$as_echo "$hardcode_action_CXX" >&6; } -+ -+if test "$hardcode_action_CXX" = relink || -+ test "$inherit_rpath_CXX" = yes; then -+ # Fast installation is not supported -+ enable_fast_install=no -+elif test "$shlibpath_overrides_runpath" = yes || -+ test "$enable_shared" = no; then -+ # Fast installation is not necessary -+ enable_fast_install=needless -+fi -+ -+ -+ -+ -+ -+ -+ -+ fi # test -n "$compiler" -+ -+ CC=$lt_save_CC -+ LDCXX=$LD -+ LD=$lt_save_LD -+ GCC=$lt_save_GCC -+ with_gnu_ld=$lt_save_with_gnu_ld -+ lt_cv_path_LDCXX=$lt_cv_path_LD -+ lt_cv_path_LD=$lt_save_path_LD -+ lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld -+ lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld -+fi # test "$_lt_caught_CXX_error" != yes -+ -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ ac_config_commands="$ac_config_commands libtool" -+ -+ -+ -+ -+# Only expand once: -+ -+ -+ -+# The tests for host and target for $enable_largefile require -+# canonical names. -+ -+ -+ -+# As the $enable_largefile decision depends on --enable-plugins we must set it -+# even in directories otherwise not depending on the $plugins option. -+ -+ -+ maybe_plugins=no -+ for ac_header in dlfcn.h -+do : -+ ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default -+" -+if test "x$ac_cv_header_dlfcn_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_DLFCN_H 1 -+_ACEOF -+ maybe_plugins=yes -+fi -+ -+done -+ -+ for ac_header in windows.h -+do : -+ ac_fn_c_check_header_compile "$LINENO" "windows.h" "ac_cv_header_windows_h" "$ac_includes_default -+" -+if test "x$ac_cv_header_windows_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_WINDOWS_H 1 -+_ACEOF -+ maybe_plugins=yes -+fi -+ -+done -+ -+ -+ @%:@ Check whether --enable-plugins was given. -+if test "${enable_plugins+set}" = set; then : -+ enableval=$enable_plugins; case "${enableval}" in -+ no) plugins=no ;; -+ *) plugins=yes -+ if test "$maybe_plugins" != "yes" ; then -+ as_fn_error $? "Building with plugin support requires a host that supports dlopen." "$LINENO" 5 -+ fi ;; -+ esac -+else -+ plugins=$maybe_plugins -+ -+fi -+ -+ if test "$plugins" = "yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing dlsym" >&5 -+$as_echo_n "checking for library containing dlsym... " >&6; } -+if ${ac_cv_search_dlsym+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_func_search_save_LIBS=$LIBS -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char dlsym (); -+int -+main () -+{ -+return dlsym (); -+ ; -+ return 0; -+} -+_ACEOF -+for ac_lib in '' dl; do -+ if test -z "$ac_lib"; then -+ ac_res="none required" -+ else -+ ac_res=-l$ac_lib -+ LIBS="-l$ac_lib $ac_func_search_save_LIBS" -+ fi -+ if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_search_dlsym=$ac_res -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext -+ if ${ac_cv_search_dlsym+:} false; then : -+ break -+fi -+done -+if ${ac_cv_search_dlsym+:} false; then : -+ -+else -+ ac_cv_search_dlsym=no -+fi -+rm conftest.$ac_ext -+LIBS=$ac_func_search_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_dlsym" >&5 -+$as_echo "$ac_cv_search_dlsym" >&6; } -+ac_res=$ac_cv_search_dlsym -+if test "$ac_res" != no; then : -+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" -+ -+fi -+ -+ fi -+ -+ -+case "${host}" in -+ sparc-*-solaris*|i?86-*-solaris*) -+ # On native 32-bit Solaris/SPARC and x86, large-file and procfs support -+ # were mutually exclusive until Solaris 11.3. Without procfs support, -+ # the bfd/ elf module cannot provide certain routines such as -+ # elfcore_write_prpsinfo or elfcore_write_prstatus. So unless the user -+ # explicitly requested large-file support through the -+ # --enable-largefile switch, disable large-file support in favor of -+ # procfs support. -+ # -+ # Check if is incompatible with large-file support. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#define _FILE_OFFSET_BITS 64 -+#define _STRUCTURED_PROC 1 -+#include -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ acx_cv_procfs_lfs=yes -+else -+ acx_cv_procfs_lfs=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ # -+ # Forcefully disable large-file support only if necessary, gdb is in -+ # tree and enabled. -+ if test "${target}" = "${host}" -a "$acx_cv_procfs_lfs" = no \ -+ -a -d $srcdir/../gdb -a "$enable_gdb" != no; then -+ : ${enable_largefile="no"} -+ if test "$plugins" = yes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: -+plugin support disabled; require large-file support which is incompatible with GDB." >&5 -+$as_echo "$as_me: WARNING: -+plugin support disabled; require large-file support which is incompatible with GDB." >&2;} -+ plugins=no -+ fi -+ fi -+ # -+ # Explicitly undef _FILE_OFFSET_BITS if enable_largefile=no for the -+ # benefit of g++ 9+ which predefines it on Solaris. -+ if test "$enable_largefile" = no; then -+ LARGEFILE_CPPFLAGS="-U_FILE_OFFSET_BITS" -+ -+ fi -+ ;; -+esac -+ -+@%:@ Check whether --enable-largefile was given. -+if test "${enable_largefile+set}" = set; then : -+ enableval=$enable_largefile; -+fi -+ -+if test "$enable_largefile" != no; then -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5 -+$as_echo_n "checking for special C compiler options needed for large files... " >&6; } -+if ${ac_cv_sys_largefile_CC+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_cv_sys_largefile_CC=no -+ if test "$GCC" != yes; then -+ ac_save_CC=$CC -+ while :; do -+ # IRIX 6.2 and later do not support large files by default, -+ # so use the C compiler's -n32 option if that helps. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@include -+ /* Check that off_t can represent 2**63 - 1 correctly. -+ We can't simply define LARGE_OFF_T to be 9223372036854775807, -+ since some C++ compilers masquerading as C compilers -+ incorrectly reject 9223372036854775807. */ -+@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) -+ int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+ if ac_fn_c_try_compile "$LINENO"; then : -+ break -+fi -+rm -f core conftest.err conftest.$ac_objext -+ CC="$CC -n32" -+ if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_sys_largefile_CC=' -n32'; break -+fi -+rm -f core conftest.err conftest.$ac_objext -+ break -+ done -+ CC=$ac_save_CC -+ rm -f conftest.$ac_ext -+ fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_CC" >&5 -+$as_echo "$ac_cv_sys_largefile_CC" >&6; } -+ if test "$ac_cv_sys_largefile_CC" != no; then -+ CC=$CC$ac_cv_sys_largefile_CC -+ fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5 -+$as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; } -+if ${ac_cv_sys_file_offset_bits+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ while :; do -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@include -+ /* Check that off_t can represent 2**63 - 1 correctly. -+ We can't simply define LARGE_OFF_T to be 9223372036854775807, -+ since some C++ compilers masquerading as C compilers -+ incorrectly reject 9223372036854775807. */ -+@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) -+ int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_sys_file_offset_bits=no; break -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@define _FILE_OFFSET_BITS 64 -+@%:@include -+ /* Check that off_t can represent 2**63 - 1 correctly. -+ We can't simply define LARGE_OFF_T to be 9223372036854775807, -+ since some C++ compilers masquerading as C compilers -+ incorrectly reject 9223372036854775807. */ -+@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) -+ int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_sys_file_offset_bits=64; break -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_cv_sys_file_offset_bits=unknown -+ break -+done -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_file_offset_bits" >&5 -+$as_echo "$ac_cv_sys_file_offset_bits" >&6; } -+case $ac_cv_sys_file_offset_bits in #( -+ no | unknown) ;; -+ *) -+cat >>confdefs.h <<_ACEOF -+@%:@define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits -+_ACEOF -+;; -+esac -+rm -rf conftest* -+ if test $ac_cv_sys_file_offset_bits = unknown; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5 -+$as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; } -+if ${ac_cv_sys_large_files+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ while :; do -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@include -+ /* Check that off_t can represent 2**63 - 1 correctly. -+ We can't simply define LARGE_OFF_T to be 9223372036854775807, -+ since some C++ compilers masquerading as C compilers -+ incorrectly reject 9223372036854775807. */ -+@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) -+ int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_sys_large_files=no; break -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@define _LARGE_FILES 1 -+@%:@include -+ /* Check that off_t can represent 2**63 - 1 correctly. -+ We can't simply define LARGE_OFF_T to be 9223372036854775807, -+ since some C++ compilers masquerading as C compilers -+ incorrectly reject 9223372036854775807. */ -+@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) -+ int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_sys_large_files=1; break -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_cv_sys_large_files=unknown -+ break -+done -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_large_files" >&5 -+$as_echo "$ac_cv_sys_large_files" >&6; } -+case $ac_cv_sys_large_files in #( -+ no | unknown) ;; -+ *) -+cat >>confdefs.h <<_ACEOF -+@%:@define _LARGE_FILES $ac_cv_sys_large_files -+_ACEOF -+;; -+esac -+rm -rf conftest* -+ fi -+ -+ -+fi -+ -+ -+ -+ac_checking= -+. ${srcdir}/../bfd/development.sh -+test "$development" = true && ac_checking=yes -+@%:@ Check whether --enable-checking was given. -+if test "${enable_checking+set}" = set; then : -+ enableval=$enable_checking; case "${enableval}" in -+ no|none) ac_checking= ;; -+ *) ac_checking=yes ;; -+esac -+fi -+if test x$ac_checking != x ; then -+ -+$as_echo "@%:@define ENABLE_CHECKING 1" >>confdefs.h -+ -+fi -+ -+ -+@%:@ Check whether --with-lib-path was given. -+if test "${with_lib_path+set}" = set; then : -+ withval=$with_lib_path; LIB_PATH=$withval -+fi -+ -+@%:@ Check whether --enable-targets was given. -+if test "${enable_targets+set}" = set; then : -+ enableval=$enable_targets; case "${enableval}" in -+ yes | "") as_fn_error $? "enable-targets option must specify target names or 'all'" "$LINENO" 5 -+ ;; -+ no) enable_targets= ;; -+ *) enable_targets=$enableval ;; -+esac -+fi -+ -+@%:@ Check whether --enable-64-bit-bfd was given. -+if test "${enable_64_bit_bfd+set}" = set; then : -+ enableval=$enable_64_bit_bfd; case $enableval in @%:@( -+ yes|no) : -+ ;; @%:@( -+ *) : -+ as_fn_error $? "bad value ${enableval} for 64-bit-bfd option" "$LINENO" 5 ;; @%:@( -+ *) : -+ ;; -+esac -+else -+ enable_64_bit_bfd=no -+fi -+ -+ -+if test "x$enable_64_bit_bfd" = "xno"; then : -+ # The cast to long int works around a bug in the HP C Compiler -+# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects -+# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. -+# This bug is HP SR number 8606223364. -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of void *" >&5 -+$as_echo_n "checking size of void *... " >&6; } -+if ${ac_cv_sizeof_void_p+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (void *))" "ac_cv_sizeof_void_p" "$ac_includes_default"; then : -+ -+else -+ if test "$ac_cv_type_void_p" = yes; then -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error 77 "cannot compute sizeof (void *) -+See \`config.log' for more details" "$LINENO" 5; } -+ else -+ ac_cv_sizeof_void_p=0 -+ fi -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_void_p" >&5 -+$as_echo "$ac_cv_sizeof_void_p" >&6; } -+ -+ -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define SIZEOF_VOID_P $ac_cv_sizeof_void_p -+_ACEOF -+ -+ -+ if test "x$ac_cv_sizeof_void_p" = "x8"; then : -+ enable_64_bit_bfd=yes -+fi -+ -+fi -+ -+ if test "x$enable_64_bit_bfd" = "xyes"; then -+ ENABLE_BFD_64_BIT_TRUE= -+ ENABLE_BFD_64_BIT_FALSE='#' -+else -+ ENABLE_BFD_64_BIT_TRUE='#' -+ ENABLE_BFD_64_BIT_FALSE= -+fi -+ -+ -+ -+ -+@%:@ Check whether --with-sysroot was given. -+if test "${with_sysroot+set}" = set; then : -+ withval=$with_sysroot; -+ case ${with_sysroot} in -+ yes) TARGET_SYSTEM_ROOT='${exec_prefix}/${target_alias}/sys-root' ;; -+ *) TARGET_SYSTEM_ROOT=$with_sysroot ;; -+ esac -+ -+ TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"$(TARGET_SYSTEM_ROOT)\"' -+ use_sysroot=yes -+ -+ if test "x$prefix" = xNONE; then -+ test_prefix=/usr/local -+ else -+ test_prefix=$prefix -+ fi -+ if test "x$exec_prefix" = xNONE; then -+ test_exec_prefix=$test_prefix -+ else -+ test_exec_prefix=$exec_prefix -+ fi -+ case ${TARGET_SYSTEM_ROOT} in -+ "${test_prefix}"|"${test_prefix}/"*|\ -+ "${test_exec_prefix}"|"${test_exec_prefix}/"*|\ -+ '${prefix}'|'${prefix}/'*|\ -+ '${exec_prefix}'|'${exec_prefix}/'*) -+ t="$TARGET_SYSTEM_ROOT_DEFINE -DTARGET_SYSTEM_ROOT_RELOCATABLE" -+ TARGET_SYSTEM_ROOT_DEFINE="$t" -+ ;; -+ esac -+ -+else -+ -+ use_sysroot=no -+ TARGET_SYSTEM_ROOT= -+ TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"\"' -+ -+fi -+ -+ -+ -+ -+ -+@%:@ Check whether --enable-gold was given. -+if test "${enable_gold+set}" = set; then : -+ enableval=$enable_gold; case "${enableval}" in -+ default) -+ install_as_default=no -+ installed_linker=ld.bfd -+ ;; -+ yes|no) -+ install_as_default=yes -+ installed_linker=ld.bfd -+ ;; -+ *) -+ as_fn_error $? "invalid --enable-gold argument" "$LINENO" 5 -+ ;; -+ esac -+else -+ install_as_default=yes -+ installed_linker=ld.bfd -+fi -+ -+ -+ -+ -+@%:@ Check whether --enable-got was given. -+if test "${enable_got+set}" = set; then : -+ enableval=$enable_got; case "${enableval}" in -+ target | single | negative | multigot) got_handling=$enableval ;; -+ *) as_fn_error $? "bad value ${enableval} for --enable-got option" "$LINENO" 5 ;; -+esac -+else -+ got_handling=target -+fi -+ -+ -+case "${got_handling}" in -+ target) -+ -+$as_echo "@%:@define GOT_HANDLING_DEFAULT GOT_HANDLING_TARGET_DEFAULT" >>confdefs.h -+ ;; -+ single) -+ -+$as_echo "@%:@define GOT_HANDLING_DEFAULT GOT_HANDLING_SINGLE" >>confdefs.h -+ ;; -+ negative) -+ -+$as_echo "@%:@define GOT_HANDLING_DEFAULT GOT_HANDLING_NEGATIVE" >>confdefs.h -+ ;; -+ multigot) -+ -+$as_echo "@%:@define GOT_HANDLING_DEFAULT GOT_HANDLING_MULTIGOT" >>confdefs.h -+ ;; -+ *) as_fn_error $? "bad value ${got_handling} for --enable-got option" "$LINENO" 5 ;; -+esac -+ -+# PR gas/19109 -+# Decide the default method for compressing debug sections. -+ac_default_compressed_debug_sections=unset -+# Provide a configure time option to override our default. -+@%:@ Check whether --enable-compressed_debug_sections was given. -+if test "${enable_compressed_debug_sections+set}" = set; then : -+ enableval=$enable_compressed_debug_sections; case ,"${enableval}", in -+ ,yes, | ,all, | *,ld,*) ac_default_compressed_debug_sections=yes ;; -+ ,no, | ,none,) ac_default_compressed_debug_sections=no ;; -+esac -+fi -+ -+# Decide setting DT_RUNPATH instead of DT_RPATH by default -+ac_default_new_dtags=unset -+# Provide a configure time option to override our default. -+@%:@ Check whether --enable-new_dtags was given. -+if test "${enable_new_dtags+set}" = set; then : -+ enableval=$enable_new_dtags; case "${enableval}" in -+ yes) ac_default_new_dtags=1 ;; -+ no) ac_default_new_dtags=0 ;; -+esac -+fi -+ -+# Decide if -z relro should be enabled in ELF linker by default. -+ac_default_ld_z_relro=unset -+# Provide a configure time option to override our default. -+@%:@ Check whether --enable-relro was given. -+if test "${enable_relro+set}" = set; then : -+ enableval=$enable_relro; case "${enableval}" in -+ yes) ac_default_ld_z_relro=1 ;; -+ no) ac_default_ld_z_relro=0 ;; -+esac -+fi -+ -+# Decide if DT_TEXTREL check should be enabled in ELF linker. -+ac_default_ld_textrel_check=unset -+@%:@ Check whether --enable-textrel-check was given. -+if test "${enable_textrel_check+set}" = set; then : -+ enableval=$enable_textrel_check; case "${enableval}" in -+ yes|no|warning|error) ac_default_ld_textrel_check=${enableval} ;; -+esac -+fi -+ -+ -+# Decide if -z separate-code should be enabled in ELF linker by default. -+ac_default_ld_z_separate_code=unset -+@%:@ Check whether --enable-separate-code was given. -+if test "${enable_separate_code+set}" = set; then : -+ enableval=$enable_separate_code; case "${enableval}" in -+ yes) ac_default_ld_z_separate_code=1 ;; -+ no) ac_default_ld_z_separate_code=0 ;; -+esac -+fi -+ -+ -+ -+# By default warn when an executable stack is created due to object files -+# requesting such, not when the user specifies -z execstack. -+ac_default_ld_warn_execstack=2 -+@%:@ Check whether --enable-warn-execstack was given. -+if test "${enable_warn_execstack+set}" = set; then : -+ enableval=$enable_warn_execstack; case "${enableval}" in -+ yes) ac_default_ld_warn_execstack=1 ;; -+ no) ac_default_ld_warn_execstack=0 ;; -+esac -+fi -+ -+ -+ac_default_ld_warn_rwx_segments=unset -+@%:@ Check whether --enable-warn-rwx-segments was given. -+if test "${enable_warn_rwx_segments+set}" = set; then : -+ enableval=$enable_warn_rwx_segments; case "${enableval}" in -+ yes) ac_default_ld_warn_rwx_segments=1 ;; -+ no) ac_default_ld_warn_rwx_segments=0 ;; -+esac -+fi -+ -+ -+ac_default_ld_default_execstack=unset -+@%:@ Check whether --enable-default-execstack was given. -+if test "${enable_default_execstack+set}" = set; then : -+ enableval=$enable_default_execstack; case "${enableval}" in -+ yes) ac_default_ld_default_execstack=1 ;; -+ no) ac_default_ld_default_execstack=0 ;; -+esac -+fi -+ -+ -+ -+# Decide if --error-handling-script should be supported. -+ac_support_error_handling_script=unset -+@%:@ Check whether --enable-error-handling-script was given. -+if test "${enable_error_handling_script+set}" = set; then : -+ enableval=$enable_error_handling_script; case "${enableval}" in -+ yes) ac_support_error_handling_script=1 ;; -+ no) ac_support_error_handling_script=0 ;; -+esac -+fi -+ -+ -+# Decide which "--hash-style" to use by default -+# Provide a configure time option to override our default. -+@%:@ Check whether --enable-default-hash-style was given. -+if test "${enable_default_hash_style+set}" = set; then : -+ enableval=$enable_default_hash_style; case "${enable_default_hash_style}" in -+ sysv | gnu | both) ;; -+ *) as_fn_error $? "bad value ${enable_default_hash_style} for enable-default-hash-style option" "$LINENO" 5 ;; -+esac -+else -+ case "${target}" in -+ # Enable gnu hash only on GNU targets, but not mips -+ mips*-*-*) enable_default_hash_style=sysv ;; -+ *-*-gnu* | *-*-linux* | *-*-nacl*) enable_default_hash_style=both ;; -+ *) enable_default_hash_style=sysv ;; -+esac -+fi -+ -+ -+case "${enable_default_hash_style}" in -+ sysv | both) ac_default_emit_sysv_hash=1 ;; -+ *) ac_default_emit_sysv_hash=0 ;; -+esac -+ -+case "${enable_default_hash_style}" in -+ gnu | both) ac_default_emit_gnu_hash=1 ;; -+ *) ac_default_emit_gnu_hash=0 ;; -+esac -+ -+@%:@ Check whether --enable-initfini-array was given. -+if test "${enable_initfini_array+set}" = set; then : -+ enableval=$enable_initfini_array; case "${enableval}" in -+ yes|no) ;; -+ *) as_fn_error $? "invalid --enable-initfini-array argument" "$LINENO" 5 ;; -+ esac -+else -+ enable_initfini_array=yes -+fi -+ -+ -+if test $enable_initfini_array = yes; then -+ -+$as_echo "@%:@define HAVE_INITFINI_ARRAY 1" >>confdefs.h -+ -+fi -+ -+ @%:@ Check whether --enable-libctf was given. -+if test "${enable_libctf+set}" = set; then : -+ enableval=$enable_libctf; -+ case "$enableval" in -+ yes|no) ;; -+ *) as_fn_error $? "Argument to enable/disable libctf must be yes or no" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_libctf=yes -+fi -+ -+ -+if test "${enable_libctf}" = yes; then -+ -+$as_echo "@%:@define ENABLE_LIBCTF 1" >>confdefs.h -+ -+fi -+ if test "${enable_libctf}" = yes; then -+ ENABLE_LIBCTF_TRUE= -+ ENABLE_LIBCTF_FALSE='#' -+else -+ ENABLE_LIBCTF_TRUE='#' -+ ENABLE_LIBCTF_FALSE= -+fi -+ -+ -+ -+# Used to validate --package-metadata= input. Disabled by default. -+@%:@ Check whether --enable-jansson was given. -+if test "${enable_jansson+set}" = set; then : -+ enableval=$enable_jansson; enable_jansson=$enableval -+else -+ enable_jansson="no" -+fi -+ -+ -+if test "x$enable_jansson" != "xno"; then -+ -+ -+ -+ -+ -+ -+ -+if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then -+ if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. -+set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_path_PKG_CONFIG+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ case $PKG_CONFIG in -+ [\\/]* | ?:[\\/]*) -+ ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. -+ ;; -+ *) -+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+ ;; -+esac -+fi -+PKG_CONFIG=$ac_cv_path_PKG_CONFIG -+if test -n "$PKG_CONFIG"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 -+$as_echo "$PKG_CONFIG" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_path_PKG_CONFIG"; then -+ ac_pt_PKG_CONFIG=$PKG_CONFIG -+ # Extract the first word of "pkg-config", so it can be a program name with args. -+set dummy pkg-config; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ case $ac_pt_PKG_CONFIG in -+ [\\/]* | ?:[\\/]*) -+ ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. -+ ;; -+ *) -+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+ ;; -+esac -+fi -+ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG -+if test -n "$ac_pt_PKG_CONFIG"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 -+$as_echo "$ac_pt_PKG_CONFIG" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_pt_PKG_CONFIG" = x; then -+ PKG_CONFIG="" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ PKG_CONFIG=$ac_pt_PKG_CONFIG -+ fi -+else -+ PKG_CONFIG="$ac_cv_path_PKG_CONFIG" -+fi -+ -+fi -+if test -n "$PKG_CONFIG"; then -+ _pkg_min_version=0.9.0 -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 -+$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } -+ if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -+$as_echo "yes" >&6; } -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+ PKG_CONFIG="" -+ fi -+fi -+ if test -n "$PKG_CONFIG"; then : -+ -+ -+pkg_failed=no -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for jansson" >&5 -+$as_echo_n "checking for jansson... " >&6; } -+ -+if test -n "$JANSSON_CFLAGS"; then -+ pkg_cv_JANSSON_CFLAGS="$JANSSON_CFLAGS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"jansson\""; } >&5 -+ ($PKG_CONFIG --exists --print-errors "jansson") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ pkg_cv_JANSSON_CFLAGS=`$PKG_CONFIG --cflags "jansson" 2>/dev/null` -+ test "x$?" != "x0" && pkg_failed=yes -+else -+ pkg_failed=yes -+fi -+ else -+ pkg_failed=untried -+fi -+if test -n "$JANSSON_LIBS"; then -+ pkg_cv_JANSSON_LIBS="$JANSSON_LIBS" -+ elif test -n "$PKG_CONFIG"; then -+ if test -n "$PKG_CONFIG" && \ -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"jansson\""; } >&5 -+ ($PKG_CONFIG --exists --print-errors "jansson") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ pkg_cv_JANSSON_LIBS=`$PKG_CONFIG --libs "jansson" 2>/dev/null` -+ test "x$?" != "x0" && pkg_failed=yes -+else -+ pkg_failed=yes -+fi -+ else -+ pkg_failed=untried -+fi -+ -+if test $pkg_failed = no; then -+ pkg_save_LDFLAGS="$LDFLAGS" -+ LDFLAGS="$LDFLAGS $pkg_cv_JANSSON_LIBS" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ -+else -+ pkg_failed=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ LDFLAGS=$pkg_save_LDFLAGS -+fi -+ -+ -+ -+if test $pkg_failed = yes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+ -+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then -+ _pkg_short_errors_supported=yes -+else -+ _pkg_short_errors_supported=no -+fi -+ if test $_pkg_short_errors_supported = yes; then -+ JANSSON_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "jansson" 2>&1` -+ else -+ JANSSON_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "jansson" 2>&1` -+ fi -+ # Put the nasty error message in config.log where it belongs -+ echo "$JANSSON_PKG_ERRORS" >&5 -+ -+ -+ as_fn_error $? "Cannot find jansson library" "$LINENO" 5 -+ -+elif test $pkg_failed = untried; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+ -+ as_fn_error $? "Cannot find jansson library" "$LINENO" 5 -+ -+else -+ JANSSON_CFLAGS=$pkg_cv_JANSSON_CFLAGS -+ JANSSON_LIBS=$pkg_cv_JANSSON_LIBS -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -+$as_echo "yes" >&6; } -+ -+ -+$as_echo "@%:@define HAVE_JANSSON 1" >>confdefs.h -+ -+ -+ -+ -+fi -+ -+else -+ -+ as_fn_error $? "Cannot find pkg-config" "$LINENO" 5 -+ -+fi -+fi -+ -+ -+# Set the 'development' global. -+. $srcdir/../bfd/development.sh -+ -+# Set acp_cpp_for_build variable -+ac_cpp_for_build="$CC_FOR_BUILD -E $CPPFLAGS_FOR_BUILD" -+ -+# Default set of GCC warnings to enable. -+GCC_WARN_CFLAGS="-W -Wall -Wstrict-prototypes -Wmissing-prototypes" -+GCC_WARN_CFLAGS_FOR_BUILD="-W -Wall -Wstrict-prototypes -Wmissing-prototypes" -+ -+# Add -Wshadow if the compiler is a sufficiently recent version of GCC. -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__GNUC__ -+_ACEOF -+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | -+ $EGREP "(^[0-3]$|^__GNUC__$)" >/dev/null 2>&1; then : -+ -+else -+ GCC_WARN_CFLAGS="$GCC_WARN_CFLAGS -Wshadow" -+fi -+rm -f conftest* -+ -+ -+# Add -Wstack-usage if the compiler is a sufficiently recent version of GCC. -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__GNUC__ -+_ACEOF -+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | -+ $EGREP "(^[0-4]$|^__GNUC__$)" >/dev/null 2>&1; then : -+ -+else -+ GCC_WARN_CFLAGS="$GCC_WARN_CFLAGS -Wstack-usage=262144" -+fi -+rm -f conftest* -+ -+ -+# Set WARN_WRITE_STRINGS if the compiler supports -Wwrite-strings. -+WARN_WRITE_STRINGS="" -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__GNUC__ -+_ACEOF -+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | -+ $EGREP "(^[0-3]$|^__GNUC__$)" >/dev/null 2>&1; then : -+ -+else -+ WARN_WRITE_STRINGS="-Wwrite-strings" -+fi -+rm -f conftest* -+ -+ -+# Verify CC_FOR_BUILD to be compatible with warning flags -+ -+# Add -Wshadow if the compiler is a sufficiently recent version of GCC. -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__GNUC__ -+_ACEOF -+if (eval "$ac_cpp_for_build conftest.$ac_ext") 2>&5 | -+ $EGREP "(^[0-3]$|^__GNUC__$)" >/dev/null 2>&1; then : -+ -+else -+ GCC_WARN_CFLAGS_FOR_BUILD="$GCC_WARN_CFLAGS_FOR_BUILD -Wshadow" -+fi -+rm -f conftest* -+ -+ -+# Add -Wstack-usage if the compiler is a sufficiently recent version of GCC. -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__GNUC__ -+_ACEOF -+if (eval "$ac_cpp_for_build conftest.$ac_ext") 2>&5 | -+ $EGREP "(^[0-4]$|^__GNUC__$)" >/dev/null 2>&1; then : -+ -+else -+ GCC_WARN_CFLAGS_FOR_BUILD="$GCC_WARN_CFLAGS_FOR_BUILD -Wstack-usage=262144" -+fi -+rm -f conftest* -+ -+ -+@%:@ Check whether --enable-werror was given. -+if test "${enable_werror+set}" = set; then : -+ enableval=$enable_werror; case "${enableval}" in -+ yes | y) ERROR_ON_WARNING="yes" ;; -+ no | n) ERROR_ON_WARNING="no" ;; -+ *) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;; -+ esac -+fi -+ -+ -+# Disable -Wformat by default when using gcc on mingw -+case "${host}" in -+ *-*-mingw32*) -+ if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then -+ GCC_WARN_CFLAGS="$GCC_WARN_CFLAGS -Wno-format" -+ GCC_WARN_CFLAGS_FOR_BUILD="$GCC_WARN_CFLAGS_FOR_BUILD -Wno-format" -+ fi -+ ;; -+ *) ;; -+esac -+ -+# Enable -Werror by default when using gcc. Turn it off for releases. -+if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" -a "$development" = true ; then -+ ERROR_ON_WARNING=yes -+fi -+ -+NO_WERROR= -+if test "${ERROR_ON_WARNING}" = yes ; then -+ GCC_WARN_CFLAGS="$GCC_WARN_CFLAGS -Werror" -+ GCC_WARN_CFLAGS_FOR_BUILD="$GCC_WARN_CFLAGS_FOR_BUILD -Werror" -+ NO_WERROR="-Wno-error" -+fi -+ -+if test "${GCC}" = yes ; then -+ WARN_CFLAGS="${GCC_WARN_CFLAGS}" -+ WARN_CFLAGS_FOR_BUILD="${GCC_WARN_CFLAGS_FOR_BUILD}" -+fi -+ -+@%:@ Check whether --enable-build-warnings was given. -+if test "${enable_build_warnings+set}" = set; then : -+ enableval=$enable_build_warnings; case "${enableval}" in -+ yes) WARN_CFLAGS="${GCC_WARN_CFLAGS}" -+ WARN_CFLAGS_FOR_BUILD="${GCC_WARN_CFLAGS_FOR_BUILD}";; -+ no) if test "${GCC}" = yes ; then -+ WARN_CFLAGS="-w" -+ WARN_CFLAGS_FOR_BUILD="-w" -+ fi;; -+ ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"` -+ WARN_CFLAGS="${GCC_WARN_CFLAGS} ${t}" -+ WARN_CFLAGS_FOR_BUILD="${GCC_WARN_CFLAGS_FOR_BUILD} ${t}";; -+ *,) t=`echo "${enableval}" | sed -e "s/,/ /g"` -+ WARN_CFLAGS="${t} ${GCC_WARN_CFLAGS}" -+ WARN_CFLAGS_FOR_BUILD="${t} ${GCC_WARN_CFLAGS_FOR_BUILD}";; -+ *) WARN_CFLAGS=`echo "${enableval}" | sed -e "s/,/ /g"` -+ WARN_CFLAGS_FOR_BUILD=`echo "${enableval}" | sed -e "s/,/ /g"`;; -+esac -+fi -+ -+ -+if test x"$silent" != x"yes" && test x"$WARN_CFLAGS" != x""; then -+ echo "Setting warning flags = $WARN_CFLAGS" 6>&1 -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5 -+$as_echo_n "checking for LC_MESSAGES... " >&6; } -+if ${am_cv_val_LC_MESSAGES+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+return LC_MESSAGES -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ am_cv_val_LC_MESSAGES=yes -+else -+ am_cv_val_LC_MESSAGES=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_val_LC_MESSAGES" >&5 -+$as_echo "$am_cv_val_LC_MESSAGES" >&6; } -+ if test $am_cv_val_LC_MESSAGES = yes; then -+ -+$as_echo "@%:@define HAVE_LC_MESSAGES 1" >>confdefs.h -+ -+ fi -+ -+ -+ac_config_headers="$ac_config_headers config.h:config.in" -+ -+ -+# PR 14072 -+ -+ -+if test -z "$target" ; then -+ as_fn_error $? "Unrecognized target system type; please check config.sub." "$LINENO" 5 -+fi -+if test -z "$host" ; then -+ as_fn_error $? "Unrecognized host system type; please check config.sub." "$LINENO" 5 -+fi -+ -+# host-specific stuff: -+ -+ALL_LINGUAS="bg da de es fi fr ga id it ja pt_BR ru sr sv tr uk vi zh_CN zh_TW" -+# If we haven't got the data from the intl directory, -+# assume NLS is disabled. -+USE_NLS=no -+LIBINTL= -+LIBINTL_DEP= -+INCINTL= -+XGETTEXT= -+GMSGFMT= -+POSUB= -+ -+if test -f ../intl/config.intl; then -+ . ../intl/config.intl -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 -+$as_echo_n "checking whether NLS is requested... " >&6; } -+if test x"$USE_NLS" != xyes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -+$as_echo "yes" >&6; } -+ -+$as_echo "@%:@define ENABLE_NLS 1" >>confdefs.h -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for catalogs to be installed" >&5 -+$as_echo_n "checking for catalogs to be installed... " >&6; } -+ # Look for .po and .gmo files in the source directory. -+ CATALOGS= -+ XLINGUAS= -+ for cat in $srcdir/po/*.gmo $srcdir/po/*.po; do -+ # If there aren't any .gmo files the shell will give us the -+ # literal string "../path/to/srcdir/po/*.gmo" which has to be -+ # weeded out. -+ case "$cat" in *\**) -+ continue;; -+ esac -+ # The quadruple backslash is collapsed to a double backslash -+ # by the backticks, then collapsed again by the double quotes, -+ # leaving us with one backslash in the sed expression (right -+ # before the dot that mustn't act as a wildcard). -+ cat=`echo $cat | sed -e "s!$srcdir/po/!!" -e "s!\\\\.po!.gmo!"` -+ lang=`echo $cat | sed -e "s!\\\\.gmo!!"` -+ # The user is allowed to set LINGUAS to a list of languages to -+ # install catalogs for. If it's empty that means "all of them." -+ if test "x$LINGUAS" = x; then -+ CATALOGS="$CATALOGS $cat" -+ XLINGUAS="$XLINGUAS $lang" -+ else -+ case "$LINGUAS" in *$lang*) -+ CATALOGS="$CATALOGS $cat" -+ XLINGUAS="$XLINGUAS $lang" -+ ;; -+ esac -+ fi -+ done -+ LINGUAS="$XLINGUAS" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LINGUAS" >&5 -+$as_echo "$LINGUAS" >&6; } -+ -+ -+ DATADIRNAME=share -+ -+ INSTOBJEXT=.mo -+ -+ GENCAT=gencat -+ -+ CATOBJEXT=.gmo -+ -+fi -+ -+ MKINSTALLDIRS= -+ if test -n "$ac_aux_dir"; then -+ case "$ac_aux_dir" in -+ /*) MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" ;; -+ *) MKINSTALLDIRS="\$(top_builddir)/$ac_aux_dir/mkinstalldirs" ;; -+ esac -+ fi -+ if test -z "$MKINSTALLDIRS"; then -+ MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 -+$as_echo_n "checking whether NLS is requested... " >&6; } -+ @%:@ Check whether --enable-nls was given. -+if test "${enable_nls+set}" = set; then : -+ enableval=$enable_nls; USE_NLS=$enableval -+else -+ USE_NLS=yes -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 -+$as_echo "$USE_NLS" >&6; } -+ -+ -+ -+ -+ -+ -+# Prepare PATH_SEPARATOR. -+# The user is always right. -+if test "${PATH_SEPARATOR+set}" != set; then -+ echo "#! /bin/sh" >conf$$.sh -+ echo "exit 0" >>conf$$.sh -+ chmod +x conf$$.sh -+ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then -+ PATH_SEPARATOR=';' -+ else -+ PATH_SEPARATOR=: -+ fi -+ rm -f conf$$.sh -+fi -+ -+# Find out how to test for executable files. Don't use a zero-byte file, -+# as systems may use methods other than mode bits to determine executability. -+cat >conf$$.file <<_ASEOF -+#! /bin/sh -+exit 0 -+_ASEOF -+chmod +x conf$$.file -+if test -x conf$$.file >/dev/null 2>&1; then -+ ac_executable_p="test -x" -+else -+ ac_executable_p="test -f" -+fi -+rm -f conf$$.file -+ -+# Extract the first word of "msgfmt", so it can be a program name with args. -+set dummy msgfmt; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_path_MSGFMT+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ case "$MSGFMT" in -+ [\\/]* | ?:[\\/]*) -+ ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. -+ ;; -+ *) -+ ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR -+ for ac_dir in $PATH; do -+ IFS="$ac_save_IFS" -+ test -z "$ac_dir" && ac_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then -+ if $ac_dir/$ac_word --statistics /dev/null >/dev/null 2>&1 && -+ (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then -+ ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exec_ext" -+ break 2 -+ fi -+ fi -+ done -+ done -+ IFS="$ac_save_IFS" -+ test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":" -+ ;; -+esac -+fi -+MSGFMT="$ac_cv_path_MSGFMT" -+if test "$MSGFMT" != ":"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 -+$as_echo "$MSGFMT" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ # Extract the first word of "gmsgfmt", so it can be a program name with args. -+set dummy gmsgfmt; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_path_GMSGFMT+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ case $GMSGFMT in -+ [\\/]* | ?:[\\/]*) -+ ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. -+ ;; -+ *) -+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+ test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" -+ ;; -+esac -+fi -+GMSGFMT=$ac_cv_path_GMSGFMT -+if test -n "$GMSGFMT"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 -+$as_echo "$GMSGFMT" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ -+ -+# Prepare PATH_SEPARATOR. -+# The user is always right. -+if test "${PATH_SEPARATOR+set}" != set; then -+ echo "#! /bin/sh" >conf$$.sh -+ echo "exit 0" >>conf$$.sh -+ chmod +x conf$$.sh -+ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then -+ PATH_SEPARATOR=';' -+ else -+ PATH_SEPARATOR=: -+ fi -+ rm -f conf$$.sh -+fi -+ -+# Find out how to test for executable files. Don't use a zero-byte file, -+# as systems may use methods other than mode bits to determine executability. -+cat >conf$$.file <<_ASEOF -+#! /bin/sh -+exit 0 -+_ASEOF -+chmod +x conf$$.file -+if test -x conf$$.file >/dev/null 2>&1; then -+ ac_executable_p="test -x" -+else -+ ac_executable_p="test -f" -+fi -+rm -f conf$$.file -+ -+# Extract the first word of "xgettext", so it can be a program name with args. -+set dummy xgettext; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_path_XGETTEXT+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ case "$XGETTEXT" in -+ [\\/]* | ?:[\\/]*) -+ ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. -+ ;; -+ *) -+ ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR -+ for ac_dir in $PATH; do -+ IFS="$ac_save_IFS" -+ test -z "$ac_dir" && ac_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then -+ if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 && -+ (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then -+ ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exec_ext" -+ break 2 -+ fi -+ fi -+ done -+ done -+ IFS="$ac_save_IFS" -+ test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" -+ ;; -+esac -+fi -+XGETTEXT="$ac_cv_path_XGETTEXT" -+if test "$XGETTEXT" != ":"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 -+$as_echo "$XGETTEXT" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ rm -f messages.po -+ -+ -+# Prepare PATH_SEPARATOR. -+# The user is always right. -+if test "${PATH_SEPARATOR+set}" != set; then -+ echo "#! /bin/sh" >conf$$.sh -+ echo "exit 0" >>conf$$.sh -+ chmod +x conf$$.sh -+ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then -+ PATH_SEPARATOR=';' -+ else -+ PATH_SEPARATOR=: -+ fi -+ rm -f conf$$.sh -+fi -+ -+# Find out how to test for executable files. Don't use a zero-byte file, -+# as systems may use methods other than mode bits to determine executability. -+cat >conf$$.file <<_ASEOF -+#! /bin/sh -+exit 0 -+_ASEOF -+chmod +x conf$$.file -+if test -x conf$$.file >/dev/null 2>&1; then -+ ac_executable_p="test -x" -+else -+ ac_executable_p="test -f" -+fi -+rm -f conf$$.file -+ -+# Extract the first word of "msgmerge", so it can be a program name with args. -+set dummy msgmerge; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_path_MSGMERGE+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ case "$MSGMERGE" in -+ [\\/]* | ?:[\\/]*) -+ ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. -+ ;; -+ *) -+ ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR -+ for ac_dir in $PATH; do -+ IFS="$ac_save_IFS" -+ test -z "$ac_dir" && ac_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then -+ if $ac_dir/$ac_word --update -q /dev/null /dev/null >/dev/null 2>&1; then -+ ac_cv_path_MSGMERGE="$ac_dir/$ac_word$ac_exec_ext" -+ break 2 -+ fi -+ fi -+ done -+ done -+ IFS="$ac_save_IFS" -+ test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":" -+ ;; -+esac -+fi -+MSGMERGE="$ac_cv_path_MSGMERGE" -+if test "$MSGMERGE" != ":"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 -+$as_echo "$MSGMERGE" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ if test "$GMSGFMT" != ":"; then -+ if $GMSGFMT --statistics /dev/null >/dev/null 2>&1 && -+ (if $GMSGFMT --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then -+ : ; -+ else -+ GMSGFMT=`echo "$GMSGFMT" | sed -e 's,^.*/,,'` -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: found $GMSGFMT program is not GNU msgfmt; ignore it" >&5 -+$as_echo "found $GMSGFMT program is not GNU msgfmt; ignore it" >&6; } -+ GMSGFMT=":" -+ fi -+ fi -+ -+ if test "$XGETTEXT" != ":"; then -+ if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 && -+ (if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then -+ : ; -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: found xgettext program is not GNU xgettext; ignore it" >&5 -+$as_echo "found xgettext program is not GNU xgettext; ignore it" >&6; } -+ XGETTEXT=":" -+ fi -+ rm -f messages.po -+ fi -+ -+ ac_config_commands="$ac_config_commands default-1" -+ -+ -+ -+ -+ -+for ac_prog in 'bison -y' byacc -+do -+ # Extract the first word of "$ac_prog", so it can be a program name with args. -+set dummy $ac_prog; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_YACC+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$YACC"; then -+ ac_cv_prog_YACC="$YACC" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_YACC="$ac_prog" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+YACC=$ac_cv_prog_YACC -+if test -n "$YACC"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $YACC" >&5 -+$as_echo "$YACC" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ test -n "$YACC" && break -+done -+test -n "$YACC" || YACC="yacc" -+ -+for ac_prog in flex lex -+do -+ # Extract the first word of "$ac_prog", so it can be a program name with args. -+set dummy $ac_prog; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_LEX+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$LEX"; then -+ ac_cv_prog_LEX="$LEX" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_LEX="$ac_prog" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+LEX=$ac_cv_prog_LEX -+if test -n "$LEX"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LEX" >&5 -+$as_echo "$LEX" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ test -n "$LEX" && break -+done -+test -n "$LEX" || LEX=":" -+ -+case "$LEX" in -+ :|*"missing "*) ;; -+ *) cat >conftest.l <<_ACEOF -+%% -+a { ECHO; } -+b { REJECT; } -+c { yymore (); } -+d { yyless (1); } -+e { /* IRIX 6.5 flex 2.5.4 underquotes its yyless argument. */ -+ yyless ((input () != 0)); } -+f { unput (yytext[0]); } -+. { BEGIN INITIAL; } -+%% -+#ifdef YYTEXT_POINTER -+extern char *yytext; -+#endif -+int -+main (void) -+{ -+ return ! yylex () + ! yywrap (); -+} -+_ACEOF -+{ { ac_try="$LEX conftest.l" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$LEX conftest.l") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking lex output file root" >&5 -+$as_echo_n "checking lex output file root... " >&6; } -+if ${ac_cv_prog_lex_root+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+if test -f lex.yy.c; then -+ ac_cv_prog_lex_root=lex.yy -+elif test -f lexyy.c; then -+ ac_cv_prog_lex_root=lexyy -+else -+ as_fn_error $? "cannot find output from $LEX; giving up" "$LINENO" 5 -+fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_lex_root" >&5 -+$as_echo "$ac_cv_prog_lex_root" >&6; } -+LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root -+ -+if test -z "${LEXLIB+set}"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking lex library" >&5 -+$as_echo_n "checking lex library... " >&6; } -+if ${ac_cv_lib_lex+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ ac_save_LIBS=$LIBS -+ ac_cv_lib_lex='none needed' -+ for ac_lib in '' -lfl -ll; do -+ LIBS="$ac_lib $ac_save_LIBS" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+`cat $LEX_OUTPUT_ROOT.c` -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_lex=$ac_lib -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ test "$ac_cv_lib_lex" != 'none needed' && break -+ done -+ LIBS=$ac_save_LIBS -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lex" >&5 -+$as_echo "$ac_cv_lib_lex" >&6; } -+ test "$ac_cv_lib_lex" != 'none needed' && LEXLIB=$ac_cv_lib_lex -+fi -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether yytext is a pointer" >&5 -+$as_echo_n "checking whether yytext is a pointer... " >&6; } -+if ${ac_cv_prog_lex_yytext_pointer+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ # POSIX says lex can declare yytext either as a pointer or an array; the -+# default is implementation-dependent. Figure out which it is, since -+# not all implementations provide the %pointer and %array declarations. -+ac_cv_prog_lex_yytext_pointer=no -+ac_save_LIBS=$LIBS -+LIBS="$LEXLIB $ac_save_LIBS" -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+ #define YYTEXT_POINTER 1 -+`cat $LEX_OUTPUT_ROOT.c` -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_prog_lex_yytext_pointer=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_save_LIBS -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_lex_yytext_pointer" >&5 -+$as_echo "$ac_cv_prog_lex_yytext_pointer" >&6; } -+if test $ac_cv_prog_lex_yytext_pointer = yes; then -+ -+$as_echo "@%:@define YYTEXT_POINTER 1" >>confdefs.h -+ -+fi -+rm -f conftest.l $LEX_OUTPUT_ROOT.c -+ ;; -+esac -+if test "$LEX" = :; then -+ LEX=${am_missing_run}flex -+fi -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 -+$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } -+ @%:@ Check whether --enable-maintainer-mode was given. -+if test "${enable_maintainer_mode+set}" = set; then : -+ enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval -+else -+ USE_MAINTAINER_MODE=no -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 -+$as_echo "$USE_MAINTAINER_MODE" >&6; } -+ if test $USE_MAINTAINER_MODE = yes; then -+ MAINTAINER_MODE_TRUE= -+ MAINTAINER_MODE_FALSE='#' -+else -+ MAINTAINER_MODE_TRUE='#' -+ MAINTAINER_MODE_FALSE= -+fi -+ -+ MAINT=$MAINTAINER_MODE_TRUE -+ -+ -+ if false; then -+ GENINSRC_NEVER_TRUE= -+ GENINSRC_NEVER_FALSE='#' -+else -+ GENINSRC_NEVER_TRUE='#' -+ GENINSRC_NEVER_FALSE= -+fi -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to compare bootstrapped objects" >&5 -+$as_echo_n "checking how to compare bootstrapped objects... " >&6; } -+if ${gcc_cv_prog_cmp_skip+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ echo abfoo >t1 -+ echo cdfoo >t2 -+ gcc_cv_prog_cmp_skip='tail -c +17 $$f1 > tmp-foo1; tail -c +17 $$f2 > tmp-foo2; cmp tmp-foo1 tmp-foo2' -+ if cmp t1 t2 2 2 > /dev/null 2>&1; then -+ if cmp t1 t2 1 1 > /dev/null 2>&1; then -+ : -+ else -+ gcc_cv_prog_cmp_skip='cmp $$f1 $$f2 16 16' -+ fi -+ fi -+ if cmp --ignore-initial=2 t1 t2 > /dev/null 2>&1; then -+ if cmp --ignore-initial=1 t1 t2 > /dev/null 2>&1; then -+ : -+ else -+ gcc_cv_prog_cmp_skip='cmp --ignore-initial=16 $$f1 $$f2' -+ fi -+ fi -+ rm t1 t2 -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gcc_cv_prog_cmp_skip" >&5 -+$as_echo "$gcc_cv_prog_cmp_skip" >&6; } -+do_compare="$gcc_cv_prog_cmp_skip" -+ -+ -+ -+. ${srcdir}/configure.host -+ -+ -+ -+ -+# We use headers from include/ that check various HAVE_*_H macros, thus -+# should ensure they are set by configure. This is true even when C99 -+# guarantees they are available. -+# sha1.h and md4.h test HAVE_LIMITS_H, HAVE_SYS_TYPES_H and HAVE_STDINT_H -+# plugin-api.h tests HAVE_STDINT_H and HAVE_INTTYPES_H -+# Besides those, we need to check anything used in ld/ not in C99. -+for ac_header in fcntl.h elf-hints.h limits.h inttypes.h stdint.h \ -+ sys/file.h sys/mman.h sys/param.h sys/stat.h sys/time.h \ -+ sys/types.h unistd.h -+do : -+ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -+ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+ -+done -+ -+for ac_func in close glob lseek mkstemp open realpath sbrk waitpid -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ -+ -+case "${host}" in -+*-*-msdos* | *-*-go32* | *-*-mingw32* | *-*-cygwin* | *-*-windows*) -+ -+$as_echo "@%:@define USE_BINARY_FOPEN 1" >>confdefs.h -+ ;; -+esac -+ -+ac_fn_c_check_decl "$LINENO" "asprintf" "ac_cv_have_decl_asprintf" "$ac_includes_default" -+if test "x$ac_cv_have_decl_asprintf" = xyes; then : -+ ac_have_decl=1 -+else -+ ac_have_decl=0 -+fi -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_DECL_ASPRINTF $ac_have_decl -+_ACEOF -+ac_fn_c_check_decl "$LINENO" "environ" "ac_cv_have_decl_environ" "$ac_includes_default" -+if test "x$ac_cv_have_decl_environ" = xyes; then : -+ ac_have_decl=1 -+else -+ ac_have_decl=0 -+fi -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_DECL_ENVIRON $ac_have_decl -+_ACEOF -+ac_fn_c_check_decl "$LINENO" "sbrk" "ac_cv_have_decl_sbrk" "$ac_includes_default" -+if test "x$ac_cv_have_decl_sbrk" = xyes; then : -+ ac_have_decl=1 -+else -+ ac_have_decl=0 -+fi -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_DECL_SBRK $ac_have_decl -+_ACEOF -+ -+ -+ -+ -+ -+ for ac_header in $ac_header_list -+do : -+ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -+ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default -+" -+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ -+ -+ -+ -+ -+ -+ -+for ac_func in getpagesize -+do : -+ ac_fn_c_check_func "$LINENO" "getpagesize" "ac_cv_func_getpagesize" -+if test "x$ac_cv_func_getpagesize" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_GETPAGESIZE 1 -+_ACEOF -+ -+fi -+done -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working mmap" >&5 -+$as_echo_n "checking for working mmap... " >&6; } -+if ${ac_cv_func_mmap_fixed_mapped+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test "$cross_compiling" = yes; then : -+ ac_cv_func_mmap_fixed_mapped=no -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$ac_includes_default -+/* malloc might have been renamed as rpl_malloc. */ -+#undef malloc -+ -+/* Thanks to Mike Haertel and Jim Avera for this test. -+ Here is a matrix of mmap possibilities: -+ mmap private not fixed -+ mmap private fixed at somewhere currently unmapped -+ mmap private fixed at somewhere already mapped -+ mmap shared not fixed -+ mmap shared fixed at somewhere currently unmapped -+ mmap shared fixed at somewhere already mapped -+ For private mappings, we should verify that changes cannot be read() -+ back from the file, nor mmap's back from the file at a different -+ address. (There have been systems where private was not correctly -+ implemented like the infamous i386 svr4.0, and systems where the -+ VM page cache was not coherent with the file system buffer cache -+ like early versions of FreeBSD and possibly contemporary NetBSD.) -+ For shared mappings, we should conversely verify that changes get -+ propagated back to all the places they're supposed to be. -+ -+ Grep wants private fixed already mapped. -+ The main things grep needs to know about mmap are: -+ * does it exist and is it safe to write into the mmap'd area -+ * how to use it (BSD variants) */ -+ -+#include -+#include -+ -+#if !defined STDC_HEADERS && !defined HAVE_STDLIB_H -+char *malloc (); -+#endif -+ -+/* This mess was copied from the GNU getpagesize.h. */ -+#ifndef HAVE_GETPAGESIZE -+# ifdef _SC_PAGESIZE -+# define getpagesize() sysconf(_SC_PAGESIZE) -+# else /* no _SC_PAGESIZE */ -+# ifdef HAVE_SYS_PARAM_H -+# include -+# ifdef EXEC_PAGESIZE -+# define getpagesize() EXEC_PAGESIZE -+# else /* no EXEC_PAGESIZE */ -+# ifdef NBPG -+# define getpagesize() NBPG * CLSIZE -+# ifndef CLSIZE -+# define CLSIZE 1 -+# endif /* no CLSIZE */ -+# else /* no NBPG */ -+# ifdef NBPC -+# define getpagesize() NBPC -+# else /* no NBPC */ -+# ifdef PAGESIZE -+# define getpagesize() PAGESIZE -+# endif /* PAGESIZE */ -+# endif /* no NBPC */ -+# endif /* no NBPG */ -+# endif /* no EXEC_PAGESIZE */ -+# else /* no HAVE_SYS_PARAM_H */ -+# define getpagesize() 8192 /* punt totally */ -+# endif /* no HAVE_SYS_PARAM_H */ -+# endif /* no _SC_PAGESIZE */ -+ -+#endif /* no HAVE_GETPAGESIZE */ -+ -+int -+main () -+{ -+ char *data, *data2, *data3; -+ const char *cdata2; -+ int i, pagesize; -+ int fd, fd2; -+ -+ pagesize = getpagesize (); -+ -+ /* First, make a file with some known garbage in it. */ -+ data = (char *) malloc (pagesize); -+ if (!data) -+ return 1; -+ for (i = 0; i < pagesize; ++i) -+ *(data + i) = rand (); -+ umask (0); -+ fd = creat ("conftest.mmap", 0600); -+ if (fd < 0) -+ return 2; -+ if (write (fd, data, pagesize) != pagesize) -+ return 3; -+ close (fd); -+ -+ /* Next, check that the tail of a page is zero-filled. File must have -+ non-zero length, otherwise we risk SIGBUS for entire page. */ -+ fd2 = open ("conftest.txt", O_RDWR | O_CREAT | O_TRUNC, 0600); -+ if (fd2 < 0) -+ return 4; -+ cdata2 = ""; -+ if (write (fd2, cdata2, 1) != 1) -+ return 5; -+ data2 = (char *) mmap (0, pagesize, PROT_READ | PROT_WRITE, MAP_SHARED, fd2, 0L); -+ if (data2 == MAP_FAILED) -+ return 6; -+ for (i = 0; i < pagesize; ++i) -+ if (*(data2 + i)) -+ return 7; -+ close (fd2); -+ if (munmap (data2, pagesize)) -+ return 8; -+ -+ /* Next, try to mmap the file at a fixed address which already has -+ something else allocated at it. If we can, also make sure that -+ we see the same garbage. */ -+ fd = open ("conftest.mmap", O_RDWR); -+ if (fd < 0) -+ return 9; -+ if (data2 != mmap (data2, pagesize, PROT_READ | PROT_WRITE, -+ MAP_PRIVATE | MAP_FIXED, fd, 0L)) -+ return 10; -+ for (i = 0; i < pagesize; ++i) -+ if (*(data + i) != *(data2 + i)) -+ return 11; -+ -+ /* Finally, make sure that changes to the mapped area do not -+ percolate back to the file as seen by read(). (This is a bug on -+ some variants of i386 svr4.0.) */ -+ for (i = 0; i < pagesize; ++i) -+ *(data2 + i) = *(data2 + i) + 1; -+ data3 = (char *) malloc (pagesize); -+ if (!data3) -+ return 12; -+ if (read (fd, data3, pagesize) != pagesize) -+ return 13; -+ for (i = 0; i < pagesize; ++i) -+ if (*(data + i) != *(data3 + i)) -+ return 14; -+ close (fd); -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_run "$LINENO"; then : -+ ac_cv_func_mmap_fixed_mapped=yes -+else -+ ac_cv_func_mmap_fixed_mapped=no -+fi -+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ -+ conftest.$ac_objext conftest.beam conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_mmap_fixed_mapped" >&5 -+$as_echo "$ac_cv_func_mmap_fixed_mapped" >&6; } -+if test $ac_cv_func_mmap_fixed_mapped = yes; then -+ -+$as_echo "@%:@define HAVE_MMAP 1" >>confdefs.h -+ -+fi -+rm -f conftest.mmap conftest.txt -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing dlopen" >&5 -+$as_echo_n "checking for library containing dlopen... " >&6; } -+if ${ac_cv_search_dlopen+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_func_search_save_LIBS=$LIBS -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char dlopen (); -+int -+main () -+{ -+return dlopen (); -+ ; -+ return 0; -+} -+_ACEOF -+for ac_lib in '' dl; do -+ if test -z "$ac_lib"; then -+ ac_res="none required" -+ else -+ ac_res=-l$ac_lib -+ LIBS="-l$ac_lib $ac_func_search_save_LIBS" -+ fi -+ if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_search_dlopen=$ac_res -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext -+ if ${ac_cv_search_dlopen+:} false; then : -+ break -+fi -+done -+if ${ac_cv_search_dlopen+:} false; then : -+ -+else -+ ac_cv_search_dlopen=no -+fi -+rm conftest.$ac_ext -+LIBS=$ac_func_search_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_dlopen" >&5 -+$as_echo "$ac_cv_search_dlopen" >&6; } -+ac_res=$ac_cv_search_dlopen -+if test "$ac_res" != no; then : -+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" -+ -+fi -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a known getopt prototype in unistd.h" >&5 -+$as_echo_n "checking for a known getopt prototype in unistd.h... " >&6; } -+if ${ld_cv_decl_getopt_unistd_h+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+extern int getopt (int, char *const*, const char *); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ld_cv_decl_getopt_unistd_h=yes -+else -+ ld_cv_decl_getopt_unistd_h=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_cv_decl_getopt_unistd_h" >&5 -+$as_echo "$ld_cv_decl_getopt_unistd_h" >&6; } -+if test $ld_cv_decl_getopt_unistd_h = yes; then -+ -+$as_echo "@%:@define HAVE_DECL_GETOPT 1" >>confdefs.h -+ -+fi -+ -+# Link in zlib if we can. This allows us to read and write -+# compressed CTF sections. -+ -+ # Use the system's zlib library. -+ zlibdir="-L\$(top_builddir)/../zlib" -+ zlibinc="-I\$(top_srcdir)/../zlib" -+ -+@%:@ Check whether --with-system-zlib was given. -+if test "${with_system_zlib+set}" = set; then : -+ withval=$with_system_zlib; if test x$with_system_zlib = xyes ; then -+ zlibdir= -+ zlibinc= -+ fi -+ -+fi -+ -+ -+ -+ -+ -+# When converting linker scripts into strings for use in emulation -+# files, use astring.sed if the compiler supports ANSI string -+# concatenation, or ostring.sed otherwise. This is to support the -+# broken Microsoft MSVC compiler, which limits the length of string -+# constants, while still supporting pre-ANSI compilers which do not -+# support string concatenation. -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ANSI C string concatenation works" >&5 -+$as_echo_n "checking whether ANSI C string concatenation works... " >&6; } -+if ${ld_cv_string_concatenation+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+char *a = "a" "a"; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ld_cv_string_concatenation=yes -+else -+ ld_cv_string_concatenation=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_cv_string_concatenation" >&5 -+$as_echo "$ld_cv_string_concatenation" >&6; } -+if test "$ld_cv_string_concatenation" = "yes"; then -+ STRINGIFY=astring.sed -+else -+ STRINGIFY=ostring.sed -+fi -+ -+ -+# target-specific stuff: -+ -+all_targets= -+EMUL= -+all_emuls= -+all_emul_extras= -+all_libpath= -+TDIRS= -+ -+elf_list_options=false -+elf_shlib_list_options=false -+elf_plt_unwind_list_options=false -+for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'` -+do -+ if test "$targ_alias" = "all"; then -+ all_targets=true -+ elf_list_options=true -+ elf_shlib_list_options=true -+ elf_plt_unwind_list_options=true -+ else -+ # Canonicalize the secondary target names. -+ result=`$ac_config_sub $targ_alias 2>/dev/null` -+ if test -n "$result"; then -+ targ=$result -+ else -+ targ=$targ_alias -+ fi -+ -+ . ${srcdir}/configure.tgt -+ -+ if test "$targ" = "$target"; then -+ EMUL=$targ_emul -+ fi -+ -+ if test x${enable_64_bit_bfd} = xno; then -+ . ${srcdir}/../bfd/config.bfd -+ fi -+ -+ if test x${enable_64_bit_bfd} = xyes; then -+ targ_extra_emuls="$targ_extra_emuls $targ64_extra_emuls" -+ targ_extra_libpath="$targ_extra_libpath $targ64_extra_libpath" -+ fi -+ -+ for i in $targ_emul $targ_extra_emuls $targ_extra_libpath; do -+ case " $all_emuls " in -+ *" e${i}.o "*) ;; -+ *) -+ all_emuls="$all_emuls e${i}.o" -+ eval result=\$tdir_$i -+ test -z "$result" && result=$targ_alias -+ TDIRS="$TDIRS -+tdir_$i=$result" -+ case "${i}" in -+ *elf*) -+ elf_list_options=true -+ ;; -+ *) -+ if $GREP "TEMPLATE_NAME=elf" ${srcdir}/emulparams/${i}.sh >/dev/null 2>/dev/null; then -+ elf_list_options=true -+ fi -+ ;; -+ esac -+ if test "$elf_list_options" = "true"; then -+ source_sh() -+ { -+ . $1 -+ } -+ source_sh ${srcdir}/emulparams/${i}.sh -+ if test x${GENERATE_SHLIB_SCRIPT} = xyes; then -+ elf_shlib_list_options=true -+ fi -+ if test x${PLT_UNWIND} = xyes; then -+ elf_plt_unwind_list_options=true -+ fi -+ fi -+ ;; -+ esac -+ done -+ -+ for i in $targ_emul $targ_extra_libpath; do -+ case " $all_libpath " in -+ *" ${i} "*) ;; -+ *) -+ if test -z "$all_libpath"; then -+ all_libpath=${i} -+ else -+ all_libpath="$all_libpath ${i}" -+ fi -+ ;; -+ esac -+ done -+ -+ for i in $targ_extra_ofiles; do -+ case " $all_emul_extras " in -+ *" ${i} "*) ;; -+ *) -+ all_emul_extras="$all_emul_extras ${i}" -+ ;; -+ esac -+ done -+ -+ fi -+done -+ -+if test x$ac_default_compressed_debug_sections = xyes ; then -+ -+$as_echo "@%:@define DEFAULT_FLAG_COMPRESS_DEBUG 1" >>confdefs.h -+ -+fi -+ -+if test "${ac_default_new_dtags}" = unset; then -+ ac_default_new_dtags=0 -+fi -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define DEFAULT_NEW_DTAGS $ac_default_new_dtags -+_ACEOF -+ -+ -+if test "${ac_default_ld_z_relro}" = unset; then -+ ac_default_ld_z_relro=0 -+fi -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define DEFAULT_LD_Z_RELRO $ac_default_ld_z_relro -+_ACEOF -+ -+ -+ac_default_ld_textrel_check_warning=0 -+case "${ac_default_ld_textrel_check}" in -+ unset|no) -+ ac_default_ld_textrel_check=textrel_check_none -+ ;; -+ yes|warning) -+ ac_default_ld_textrel_check=textrel_check_warning -+ ac_default_ld_textrel_check_warning=1 -+ ;; -+ error) -+ ac_default_ld_textrel_check=textrel_check_error -+ ;; -+esac -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define DEFAULT_LD_TEXTREL_CHECK $ac_default_ld_textrel_check -+_ACEOF -+ -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define DEFAULT_LD_TEXTREL_CHECK_WARNING $ac_default_ld_textrel_check_warning -+_ACEOF -+ -+ -+if test "${ac_default_ld_z_separate_code}" = unset; then -+ ac_default_ld_z_separate_code=0 -+fi -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define DEFAULT_LD_Z_SEPARATE_CODE $ac_default_ld_z_separate_code -+_ACEOF -+ -+ -+ -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define DEFAULT_LD_WARN_EXECSTACK $ac_default_ld_warn_execstack -+_ACEOF -+ -+ -+if test "${ac_default_ld_warn_rwx_segments}" = unset; then -+ ac_default_ld_warn_rwx_segments=1 -+fi -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define DEFAULT_LD_WARN_RWX_SEGMENTS $ac_default_ld_warn_rwx_segments -+_ACEOF -+ -+ -+if test "${ac_default_ld_default_execstack}" = unset; then -+ ac_default_ld_default_execstack=1 -+fi -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define DEFAULT_LD_EXECSTACK $ac_default_ld_default_execstack -+_ACEOF -+ -+ -+ -+if test "${ac_support_error_handling_script}" = unset; then -+ ac_support_error_handling_script=1 -+fi -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define SUPPORT_ERROR_HANDLING_SCRIPT $ac_support_error_handling_script -+_ACEOF -+ -+ -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define DEFAULT_EMIT_SYSV_HASH $ac_default_emit_sysv_hash -+_ACEOF -+ -+ -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define DEFAULT_EMIT_GNU_HASH $ac_default_emit_gnu_hash -+_ACEOF -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+if test x${all_targets} = xtrue; then -+ if test x${enable_64_bit_bfd} = xyes; then -+ EMULATION_OFILES='$(ALL_EMULATIONS) $(ALL_64_EMULATIONS)' -+ EMUL_EXTRA_OFILES='$(ALL_EMUL_EXTRA_OFILES) $(ALL_64_EMUL_EXTRA_OFILES)' -+ else -+ EMULATION_OFILES='$(ALL_EMULATIONS)' -+ EMUL_EXTRA_OFILES='$(ALL_EMUL_EXTRA_OFILES)' -+ fi -+else -+ EMULATION_OFILES=$all_emuls -+ EMUL_EXTRA_OFILES=$all_emul_extras -+fi -+ -+ -+ -+ -+EMULATION_LIBPATH=$all_libpath -+ -+ -+if test x${enable_static} = xno; then -+ TESTBFDLIB="-Wl,--rpath,../bfd/.libs ../bfd/.libs/libbfd.so" -+ TESTCTFLIB="-Wl,--rpath,../libctf/.libs ../libctf/.libs/libctf.so" -+else -+ TESTBFDLIB="../bfd/.libs/libbfd.a" -+ TESTCTFLIB="../libctf/.libs/libctf.a" -+fi -+if test "${enable_libctf}" = no; then -+ TESTCTFLIB= -+fi -+ -+ -+ -+target_vendor=${target_vendor=$host_vendor} -+case "$target_vendor" in -+ hp) EXTRA_SHLIB_EXTENSION=".sl" ;; -+ *) EXTRA_SHLIB_EXTENSION= ;; -+esac -+ -+case "$target_os" in -+ lynxos) EXTRA_SHLIB_EXTENSION=".a" ;; -+esac -+ -+if test x${EXTRA_SHLIB_EXTENSION} != x ; then -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define EXTRA_SHLIB_EXTENSION "$EXTRA_SHLIB_EXTENSION" -+_ACEOF -+ -+fi -+ -+ac_config_commands="$ac_config_commands default" -+ -+ -+ -+ -+ -+ -+ -+ac_config_files="$ac_config_files Makefile po/Makefile.in:po/Make-in" -+ -+cat >confcache <<\_ACEOF -+# This file is a shell script that caches the results of configure -+# tests run on this system so they can be shared between configure -+# scripts and configure runs, see configure's option --config-cache. -+# It is not useful on other systems. If it contains results you don't -+# want to keep, you may remove or edit it. -+# -+# config.status only pays attention to the cache file if you give it -+# the --recheck option to rerun configure. -+# -+# `ac_cv_env_foo' variables (set or unset) will be overridden when -+# loading this file, other *unset* `ac_cv_foo' will be assigned the -+# following values. -+ -+_ACEOF -+ -+# The following way of writing the cache mishandles newlines in values, -+# but we know of no workaround that is simple, portable, and efficient. -+# So, we kill variables containing newlines. -+# Ultrix sh set writes to stderr and can't be redirected directly, -+# and sets the high bit in the cache file unless we assign to the vars. -+( -+ for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do -+ eval ac_val=\$$ac_var -+ case $ac_val in #( -+ *${as_nl}*) -+ case $ac_var in #( -+ *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; -+ esac -+ case $ac_var in #( -+ _ | IFS | as_nl) ;; #( -+ BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( -+ *) { eval $ac_var=; unset $ac_var;} ;; -+ esac ;; -+ esac -+ done -+ -+ (set) 2>&1 | -+ case $as_nl`(ac_space=' '; set) 2>&1` in #( -+ *${as_nl}ac_space=\ *) -+ # `set' does not quote correctly, so add quotes: double-quote -+ # substitution turns \\\\ into \\, and sed turns \\ into \. -+ sed -n \ -+ "s/'/'\\\\''/g; -+ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" -+ ;; #( -+ *) -+ # `set' quotes correctly as required by POSIX, so do not add quotes. -+ sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" -+ ;; -+ esac | -+ sort -+) | -+ sed ' -+ /^ac_cv_env_/b end -+ t clear -+ :clear -+ s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ -+ t end -+ s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ -+ :end' >>confcache -+if diff "$cache_file" confcache >/dev/null 2>&1; then :; else -+ if test -w "$cache_file"; then -+ if test "x$cache_file" != "x/dev/null"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 -+$as_echo "$as_me: updating cache $cache_file" >&6;} -+ if test ! -f "$cache_file" || test -h "$cache_file"; then -+ cat confcache >"$cache_file" -+ else -+ case $cache_file in #( -+ */* | ?:*) -+ mv -f confcache "$cache_file"$$ && -+ mv -f "$cache_file"$$ "$cache_file" ;; #( -+ *) -+ mv -f confcache "$cache_file" ;; -+ esac -+ fi -+ fi -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 -+$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} -+ fi -+fi -+rm -f confcache -+ -+test "x$prefix" = xNONE && prefix=$ac_default_prefix -+# Let make expand exec_prefix. -+test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' -+ -+DEFS=-DHAVE_CONFIG_H -+ -+ac_libobjs= -+ac_ltlibobjs= -+U= -+for ac_i in : $LIB@&t@OBJS; do test "x$ac_i" = x: && continue -+ # 1. Remove the extension, and $U if already installed. -+ ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' -+ ac_i=`$as_echo "$ac_i" | sed "$ac_script"` -+ # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR -+ # will be set to the directory where LIBOBJS objects are built. -+ as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" -+ as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' -+done -+LIB@&t@OBJS=$ac_libobjs -+ -+LTLIBOBJS=$ac_ltlibobjs -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 -+$as_echo_n "checking that generated files are newer than configure... " >&6; } -+ if test -n "$am_sleep_pid"; then -+ # Hide warnings about reused PIDs. -+ wait $am_sleep_pid 2>/dev/null -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 -+$as_echo "done" >&6; } -+ if test -n "$EXEEXT"; then -+ am__EXEEXT_TRUE= -+ am__EXEEXT_FALSE='#' -+else -+ am__EXEEXT_TRUE='#' -+ am__EXEEXT_FALSE= -+fi -+ -+if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then -+ as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then -+ as_fn_error $? "conditional \"AMDEP\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then -+ as_fn_error $? "conditional \"am__fastdepCC\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then -+ as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${ENABLE_BFD_64_BIT_TRUE}" && test -z "${ENABLE_BFD_64_BIT_FALSE}"; then -+ as_fn_error $? "conditional \"ENABLE_BFD_64_BIT\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${ENABLE_LIBCTF_TRUE}" && test -z "${ENABLE_LIBCTF_FALSE}"; then -+ as_fn_error $? "conditional \"ENABLE_LIBCTF\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then -+ as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${GENINSRC_NEVER_TRUE}" && test -z "${GENINSRC_NEVER_FALSE}"; then -+ as_fn_error $? "conditional \"GENINSRC_NEVER\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+ -+: "${CONFIG_STATUS=./config.status}" -+ac_write_fail=0 -+ac_clean_files_save=$ac_clean_files -+ac_clean_files="$ac_clean_files $CONFIG_STATUS" -+{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 -+$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} -+as_write_fail=0 -+cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 -+#! $SHELL -+# Generated by $as_me. -+# Run this file to recreate the current configuration. -+# Compiler output produced by configure, useful for debugging -+# configure, is in config.log if it exists. -+ -+debug=false -+ac_cs_recheck=false -+ac_cs_silent=false -+ -+SHELL=\${CONFIG_SHELL-$SHELL} -+export SHELL -+_ASEOF -+cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 -+## -------------------- ## -+## M4sh Initialization. ## -+## -------------------- ## -+ -+# Be more Bourne compatible -+DUALCASE=1; export DUALCASE # for MKS sh -+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : -+ emulate sh -+ NULLCMD=: -+ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which -+ # is contrary to our usage. Disable this feature. -+ alias -g '${1+"$@"}'='"$@"' -+ setopt NO_GLOB_SUBST -+else -+ case `(set -o) 2>/dev/null` in @%:@( -+ *posix*) : -+ set -o posix ;; @%:@( -+ *) : -+ ;; -+esac -+fi -+ -+ -+as_nl=' -+' -+export as_nl -+# Printing a long string crashes Solaris 7 /usr/bin/printf. -+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -+# Prefer a ksh shell builtin over an external printf program on Solaris, -+# but without wasting forks for bash or zsh. -+if test -z "$BASH_VERSION$ZSH_VERSION" \ -+ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then -+ as_echo='print -r --' -+ as_echo_n='print -rn --' -+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then -+ as_echo='printf %s\n' -+ as_echo_n='printf %s' -+else -+ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then -+ as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' -+ as_echo_n='/usr/ucb/echo -n' -+ else -+ as_echo_body='eval expr "X$1" : "X\\(.*\\)"' -+ as_echo_n_body='eval -+ arg=$1; -+ case $arg in @%:@( -+ *"$as_nl"*) -+ expr "X$arg" : "X\\(.*\\)$as_nl"; -+ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; -+ esac; -+ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" -+ ' -+ export as_echo_n_body -+ as_echo_n='sh -c $as_echo_n_body as_echo' -+ fi -+ export as_echo_body -+ as_echo='sh -c $as_echo_body as_echo' -+fi -+ -+# The user is always right. -+if test "${PATH_SEPARATOR+set}" != set; then -+ PATH_SEPARATOR=: -+ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { -+ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || -+ PATH_SEPARATOR=';' -+ } -+fi -+ -+ -+# IFS -+# We need space, tab and new line, in precisely that order. Quoting is -+# there to prevent editors from complaining about space-tab. -+# (If _AS_PATH_WALK were called with IFS unset, it would disable word -+# splitting by setting IFS to empty value.) -+IFS=" "" $as_nl" -+ -+# Find who we are. Look in the path if we contain no directory separator. -+as_myself= -+case $0 in @%:@(( -+ *[\\/]* ) as_myself=$0 ;; -+ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -+ done -+IFS=$as_save_IFS -+ -+ ;; -+esac -+# We did not find ourselves, most probably we were run as `sh COMMAND' -+# in which case we are not to be found in the path. -+if test "x$as_myself" = x; then -+ as_myself=$0 -+fi -+if test ! -f "$as_myself"; then -+ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 -+ exit 1 -+fi -+ -+# Unset variables that we do not need and which cause bugs (e.g. in -+# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -+# suppresses any "Segmentation fault" message there. '((' could -+# trigger a bug in pdksh 5.2.14. -+for as_var in BASH_ENV ENV MAIL MAILPATH -+do eval test x\${$as_var+set} = xset \ -+ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -+done -+PS1='$ ' -+PS2='> ' -+PS4='+ ' -+ -+# NLS nuisances. -+LC_ALL=C -+export LC_ALL -+LANGUAGE=C -+export LANGUAGE -+ -+# CDPATH. -+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH -+ -+ -+@%:@ as_fn_error STATUS ERROR [LINENO LOG_FD] -+@%:@ ---------------------------------------- -+@%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are -+@%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the -+@%:@ script with STATUS, using 1 if that was 0. -+as_fn_error () -+{ -+ as_status=$1; test $as_status -eq 0 && as_status=1 -+ if test "$4"; then -+ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 -+ fi -+ $as_echo "$as_me: error: $2" >&2 -+ as_fn_exit $as_status -+} @%:@ as_fn_error -+ -+ -+@%:@ as_fn_set_status STATUS -+@%:@ ----------------------- -+@%:@ Set @S|@? to STATUS, without forking. -+as_fn_set_status () -+{ -+ return $1 -+} @%:@ as_fn_set_status -+ -+@%:@ as_fn_exit STATUS -+@%:@ ----------------- -+@%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -+as_fn_exit () -+{ -+ set +e -+ as_fn_set_status $1 -+ exit $1 -+} @%:@ as_fn_exit -+ -+@%:@ as_fn_unset VAR -+@%:@ --------------- -+@%:@ Portably unset VAR. -+as_fn_unset () -+{ -+ { eval $1=; unset $1;} -+} -+as_unset=as_fn_unset -+@%:@ as_fn_append VAR VALUE -+@%:@ ---------------------- -+@%:@ Append the text in VALUE to the end of the definition contained in VAR. Take -+@%:@ advantage of any shell optimizations that allow amortized linear growth over -+@%:@ repeated appends, instead of the typical quadratic growth present in naive -+@%:@ implementations. -+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : -+ eval 'as_fn_append () -+ { -+ eval $1+=\$2 -+ }' -+else -+ as_fn_append () -+ { -+ eval $1=\$$1\$2 -+ } -+fi # as_fn_append -+ -+@%:@ as_fn_arith ARG... -+@%:@ ------------------ -+@%:@ Perform arithmetic evaluation on the ARGs, and store the result in the -+@%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments -+@%:@ must be portable across @S|@(()) and expr. -+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : -+ eval 'as_fn_arith () -+ { -+ as_val=$(( $* )) -+ }' -+else -+ as_fn_arith () -+ { -+ as_val=`expr "$@" || test $? -eq 1` -+ } -+fi # as_fn_arith -+ -+ -+if expr a : '\(a\)' >/dev/null 2>&1 && -+ test "X`expr 00001 : '.*\(...\)'`" = X001; then -+ as_expr=expr -+else -+ as_expr=false -+fi -+ -+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then -+ as_basename=basename -+else -+ as_basename=false -+fi -+ -+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then -+ as_dirname=dirname -+else -+ as_dirname=false -+fi -+ -+as_me=`$as_basename -- "$0" || -+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ -+ X"$0" : 'X\(//\)$' \| \ -+ X"$0" : 'X\(/\)' \| . 2>/dev/null || -+$as_echo X/"$0" | -+ sed '/^.*\/\([^/][^/]*\)\/*$/{ -+ s//\1/ -+ q -+ } -+ /^X\/\(\/\/\)$/{ -+ s//\1/ -+ q -+ } -+ /^X\/\(\/\).*/{ -+ s//\1/ -+ q -+ } -+ s/.*/./; q'` -+ -+# Avoid depending upon Character Ranges. -+as_cr_letters='abcdefghijklmnopqrstuvwxyz' -+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -+as_cr_Letters=$as_cr_letters$as_cr_LETTERS -+as_cr_digits='0123456789' -+as_cr_alnum=$as_cr_Letters$as_cr_digits -+ -+ECHO_C= ECHO_N= ECHO_T= -+case `echo -n x` in @%:@((((( -+-n*) -+ case `echo 'xy\c'` in -+ *c*) ECHO_T=' ';; # ECHO_T is single tab character. -+ xy) ECHO_C='\c';; -+ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null -+ ECHO_T=' ';; -+ esac;; -+*) -+ ECHO_N='-n';; -+esac -+ -+rm -f conf$$ conf$$.exe conf$$.file -+if test -d conf$$.dir; then -+ rm -f conf$$.dir/conf$$.file -+else -+ rm -f conf$$.dir -+ mkdir conf$$.dir 2>/dev/null -+fi -+if (echo >conf$$.file) 2>/dev/null; then -+ if ln -s conf$$.file conf$$ 2>/dev/null; then -+ as_ln_s='ln -s' -+ # ... but there are two gotchas: -+ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. -+ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. -+ # In both cases, we have to default to `cp -pR'. -+ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || -+ as_ln_s='cp -pR' -+ elif ln conf$$.file conf$$ 2>/dev/null; then -+ as_ln_s=ln -+ else -+ as_ln_s='cp -pR' -+ fi -+else -+ as_ln_s='cp -pR' -+fi -+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -+rmdir conf$$.dir 2>/dev/null -+ -+ -+@%:@ as_fn_mkdir_p -+@%:@ ------------- -+@%:@ Create "@S|@as_dir" as a directory, including parents if necessary. -+as_fn_mkdir_p () -+{ -+ -+ case $as_dir in #( -+ -*) as_dir=./$as_dir;; -+ esac -+ test -d "$as_dir" || eval $as_mkdir_p || { -+ as_dirs= -+ while :; do -+ case $as_dir in #( -+ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( -+ *) as_qdir=$as_dir;; -+ esac -+ as_dirs="'$as_qdir' $as_dirs" -+ as_dir=`$as_dirname -- "$as_dir" || -+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ -+ X"$as_dir" : 'X\(//\)[^/]' \| \ -+ X"$as_dir" : 'X\(//\)$' \| \ -+ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -+$as_echo X"$as_dir" | -+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)[^/].*/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\).*/{ -+ s//\1/ -+ q -+ } -+ s/.*/./; q'` -+ test -d "$as_dir" && break -+ done -+ test -z "$as_dirs" || eval "mkdir $as_dirs" -+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" -+ -+ -+} @%:@ as_fn_mkdir_p -+if mkdir -p . 2>/dev/null; then -+ as_mkdir_p='mkdir -p "$as_dir"' -+else -+ test -d ./-p && rmdir ./-p -+ as_mkdir_p=false -+fi -+ -+ -+@%:@ as_fn_executable_p FILE -+@%:@ ----------------------- -+@%:@ Test if FILE is an executable regular file. -+as_fn_executable_p () -+{ -+ test -f "$1" && test -x "$1" -+} @%:@ as_fn_executable_p -+as_test_x='test -x' -+as_executable_p=as_fn_executable_p -+ -+# Sed expression to map a string onto a valid CPP name. -+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" -+ -+# Sed expression to map a string onto a valid variable name. -+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" -+ -+ -+exec 6>&1 -+## ----------------------------------- ## -+## Main body of $CONFIG_STATUS script. ## -+## ----------------------------------- ## -+_ASEOF -+test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 -+ -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+# Save the log message, to keep $0 and so on meaningful, and to -+# report actual input values of CONFIG_FILES etc. instead of their -+# values after options handling. -+ac_log=" -+This file was extended by ld $as_me 2.39, which was -+generated by GNU Autoconf 2.69. Invocation command line was -+ -+ CONFIG_FILES = $CONFIG_FILES -+ CONFIG_HEADERS = $CONFIG_HEADERS -+ CONFIG_LINKS = $CONFIG_LINKS -+ CONFIG_COMMANDS = $CONFIG_COMMANDS -+ $ $0 $@ -+ -+on `(hostname || uname -n) 2>/dev/null | sed 1q` -+" -+ -+_ACEOF -+ -+case $ac_config_files in *" -+"*) set x $ac_config_files; shift; ac_config_files=$*;; -+esac -+ -+case $ac_config_headers in *" -+"*) set x $ac_config_headers; shift; ac_config_headers=$*;; -+esac -+ -+ -+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -+# Files that config.status was made for. -+config_files="$ac_config_files" -+config_headers="$ac_config_headers" -+config_commands="$ac_config_commands" -+ -+_ACEOF -+ -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+ac_cs_usage="\ -+\`$as_me' instantiates files and other configuration actions -+from templates according to the current configuration. Unless the files -+and actions are specified as TAGs, all are instantiated by default. -+ -+Usage: $0 [OPTION]... [TAG]... -+ -+ -h, --help print this help, then exit -+ -V, --version print version number and configuration settings, then exit -+ --config print configuration, then exit -+ -q, --quiet, --silent -+ do not print progress messages -+ -d, --debug don't remove temporary files -+ --recheck update $as_me by reconfiguring in the same conditions -+ --file=FILE[:TEMPLATE] -+ instantiate the configuration file FILE -+ --header=FILE[:TEMPLATE] -+ instantiate the configuration header FILE -+ -+Configuration files: -+$config_files -+ -+Configuration headers: -+$config_headers -+ -+Configuration commands: -+$config_commands -+ -+Report bugs to the package provider." -+ -+_ACEOF -+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -+ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" -+ac_cs_version="\\ -+ld config.status 2.39 -+configured by $0, generated by GNU Autoconf 2.69, -+ with options \\"\$ac_cs_config\\" -+ -+Copyright (C) 2012 Free Software Foundation, Inc. -+This config.status script is free software; the Free Software Foundation -+gives unlimited permission to copy, distribute and modify it." -+ -+ac_pwd='$ac_pwd' -+srcdir='$srcdir' -+INSTALL='$INSTALL' -+MKDIR_P='$MKDIR_P' -+AWK='$AWK' -+test -n "\$AWK" || AWK=awk -+_ACEOF -+ -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+# The default lists apply if the user does not specify any file. -+ac_need_defaults=: -+while test $# != 0 -+do -+ case $1 in -+ --*=?*) -+ ac_option=`expr "X$1" : 'X\([^=]*\)='` -+ ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` -+ ac_shift=: -+ ;; -+ --*=) -+ ac_option=`expr "X$1" : 'X\([^=]*\)='` -+ ac_optarg= -+ ac_shift=: -+ ;; -+ *) -+ ac_option=$1 -+ ac_optarg=$2 -+ ac_shift=shift -+ ;; -+ esac -+ -+ case $ac_option in -+ # Handling of the options. -+ -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) -+ ac_cs_recheck=: ;; -+ --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) -+ $as_echo "$ac_cs_version"; exit ;; -+ --config | --confi | --conf | --con | --co | --c ) -+ $as_echo "$ac_cs_config"; exit ;; -+ --debug | --debu | --deb | --de | --d | -d ) -+ debug=: ;; -+ --file | --fil | --fi | --f ) -+ $ac_shift -+ case $ac_optarg in -+ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; -+ '') as_fn_error $? "missing file argument" ;; -+ esac -+ as_fn_append CONFIG_FILES " '$ac_optarg'" -+ ac_need_defaults=false;; -+ --header | --heade | --head | --hea ) -+ $ac_shift -+ case $ac_optarg in -+ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; -+ esac -+ as_fn_append CONFIG_HEADERS " '$ac_optarg'" -+ ac_need_defaults=false;; -+ --he | --h) -+ # Conflict between --help and --header -+ as_fn_error $? "ambiguous option: \`$1' -+Try \`$0 --help' for more information.";; -+ --help | --hel | -h ) -+ $as_echo "$ac_cs_usage"; exit ;; -+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \ -+ | -silent | --silent | --silen | --sile | --sil | --si | --s) -+ ac_cs_silent=: ;; -+ -+ # This is an error. -+ -*) as_fn_error $? "unrecognized option: \`$1' -+Try \`$0 --help' for more information." ;; -+ -+ *) as_fn_append ac_config_targets " $1" -+ ac_need_defaults=false ;; -+ -+ esac -+ shift -+done -+ -+ac_configure_extra_args= -+ -+if $ac_cs_silent; then -+ exec 6>/dev/null -+ ac_configure_extra_args="$ac_configure_extra_args --silent" -+fi -+ -+_ACEOF -+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -+if \$ac_cs_recheck; then -+ set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion -+ shift -+ \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 -+ CONFIG_SHELL='$SHELL' -+ export CONFIG_SHELL -+ exec "\$@" -+fi -+ -+_ACEOF -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+exec 5>>config.log -+{ -+ echo -+ sed 'h;s/./-/g;s/^.../@%:@@%:@ /;s/...$/ @%:@@%:@/;p;x;p;x' <<_ASBOX -+@%:@@%:@ Running $as_me. @%:@@%:@ -+_ASBOX -+ $as_echo "$ac_log" -+} >&5 -+ -+_ACEOF -+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -+# -+# INIT-COMMANDS -+# -+AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" -+ -+ -+# The HP-UX ksh and POSIX shell print the target directory to stdout -+# if CDPATH is set. -+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH -+ -+sed_quote_subst='$sed_quote_subst' -+double_quote_subst='$double_quote_subst' -+delay_variable_subst='$delay_variable_subst' -+macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' -+macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' -+enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' -+enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' -+pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' -+enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' -+SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' -+ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' -+host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' -+host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' -+host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' -+build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' -+build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' -+build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' -+SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' -+Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' -+GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' -+EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' -+FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' -+LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' -+NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' -+LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' -+max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' -+ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' -+exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' -+lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' -+lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' -+lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' -+reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' -+reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' -+OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' -+deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' -+file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' -+AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' -+AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' -+STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' -+RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' -+old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' -+old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' -+old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' -+lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' -+CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' -+CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' -+compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' -+GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' -+lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' -+lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' -+lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' -+lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' -+objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' -+MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' -+lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' -+lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' -+lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' -+lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' -+lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' -+need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' -+DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' -+NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' -+LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' -+OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' -+OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' -+libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' -+shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' -+extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' -+archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' -+enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' -+export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' -+whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' -+compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' -+old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' -+old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' -+archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' -+archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' -+module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' -+module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' -+with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' -+allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' -+no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' -+hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' -+hardcode_libdir_flag_spec_ld='`$ECHO "$hardcode_libdir_flag_spec_ld" | $SED "$delay_single_quote_subst"`' -+hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' -+hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' -+hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' -+hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' -+hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' -+hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' -+inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' -+link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' -+fix_srcfile_path='`$ECHO "$fix_srcfile_path" | $SED "$delay_single_quote_subst"`' -+always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' -+export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' -+exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' -+include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' -+prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' -+file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' -+variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' -+need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' -+need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' -+version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' -+runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' -+shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' -+shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' -+libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' -+library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' -+soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' -+install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' -+postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' -+postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' -+finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' -+finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' -+hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' -+sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' -+sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' -+hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' -+enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' -+enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' -+enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' -+old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' -+striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' -+compiler_lib_search_dirs='`$ECHO "$compiler_lib_search_dirs" | $SED "$delay_single_quote_subst"`' -+predep_objects='`$ECHO "$predep_objects" | $SED "$delay_single_quote_subst"`' -+postdep_objects='`$ECHO "$postdep_objects" | $SED "$delay_single_quote_subst"`' -+predeps='`$ECHO "$predeps" | $SED "$delay_single_quote_subst"`' -+postdeps='`$ECHO "$postdeps" | $SED "$delay_single_quote_subst"`' -+compiler_lib_search_path='`$ECHO "$compiler_lib_search_path" | $SED "$delay_single_quote_subst"`' -+LD_CXX='`$ECHO "$LD_CXX" | $SED "$delay_single_quote_subst"`' -+reload_flag_CXX='`$ECHO "$reload_flag_CXX" | $SED "$delay_single_quote_subst"`' -+reload_cmds_CXX='`$ECHO "$reload_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+old_archive_cmds_CXX='`$ECHO "$old_archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+compiler_CXX='`$ECHO "$compiler_CXX" | $SED "$delay_single_quote_subst"`' -+GCC_CXX='`$ECHO "$GCC_CXX" | $SED "$delay_single_quote_subst"`' -+lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "$lt_prog_compiler_no_builtin_flag_CXX" | $SED "$delay_single_quote_subst"`' -+lt_prog_compiler_wl_CXX='`$ECHO "$lt_prog_compiler_wl_CXX" | $SED "$delay_single_quote_subst"`' -+lt_prog_compiler_pic_CXX='`$ECHO "$lt_prog_compiler_pic_CXX" | $SED "$delay_single_quote_subst"`' -+lt_prog_compiler_static_CXX='`$ECHO "$lt_prog_compiler_static_CXX" | $SED "$delay_single_quote_subst"`' -+lt_cv_prog_compiler_c_o_CXX='`$ECHO "$lt_cv_prog_compiler_c_o_CXX" | $SED "$delay_single_quote_subst"`' -+archive_cmds_need_lc_CXX='`$ECHO "$archive_cmds_need_lc_CXX" | $SED "$delay_single_quote_subst"`' -+enable_shared_with_static_runtimes_CXX='`$ECHO "$enable_shared_with_static_runtimes_CXX" | $SED "$delay_single_quote_subst"`' -+export_dynamic_flag_spec_CXX='`$ECHO "$export_dynamic_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' -+whole_archive_flag_spec_CXX='`$ECHO "$whole_archive_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' -+compiler_needs_object_CXX='`$ECHO "$compiler_needs_object_CXX" | $SED "$delay_single_quote_subst"`' -+old_archive_from_new_cmds_CXX='`$ECHO "$old_archive_from_new_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+old_archive_from_expsyms_cmds_CXX='`$ECHO "$old_archive_from_expsyms_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+archive_cmds_CXX='`$ECHO "$archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+archive_expsym_cmds_CXX='`$ECHO "$archive_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+module_cmds_CXX='`$ECHO "$module_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+module_expsym_cmds_CXX='`$ECHO "$module_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+with_gnu_ld_CXX='`$ECHO "$with_gnu_ld_CXX" | $SED "$delay_single_quote_subst"`' -+allow_undefined_flag_CXX='`$ECHO "$allow_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' -+no_undefined_flag_CXX='`$ECHO "$no_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' -+hardcode_libdir_flag_spec_CXX='`$ECHO "$hardcode_libdir_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' -+hardcode_libdir_flag_spec_ld_CXX='`$ECHO "$hardcode_libdir_flag_spec_ld_CXX" | $SED "$delay_single_quote_subst"`' -+hardcode_libdir_separator_CXX='`$ECHO "$hardcode_libdir_separator_CXX" | $SED "$delay_single_quote_subst"`' -+hardcode_direct_CXX='`$ECHO "$hardcode_direct_CXX" | $SED "$delay_single_quote_subst"`' -+hardcode_direct_absolute_CXX='`$ECHO "$hardcode_direct_absolute_CXX" | $SED "$delay_single_quote_subst"`' -+hardcode_minus_L_CXX='`$ECHO "$hardcode_minus_L_CXX" | $SED "$delay_single_quote_subst"`' -+hardcode_shlibpath_var_CXX='`$ECHO "$hardcode_shlibpath_var_CXX" | $SED "$delay_single_quote_subst"`' -+hardcode_automatic_CXX='`$ECHO "$hardcode_automatic_CXX" | $SED "$delay_single_quote_subst"`' -+inherit_rpath_CXX='`$ECHO "$inherit_rpath_CXX" | $SED "$delay_single_quote_subst"`' -+link_all_deplibs_CXX='`$ECHO "$link_all_deplibs_CXX" | $SED "$delay_single_quote_subst"`' -+fix_srcfile_path_CXX='`$ECHO "$fix_srcfile_path_CXX" | $SED "$delay_single_quote_subst"`' -+always_export_symbols_CXX='`$ECHO "$always_export_symbols_CXX" | $SED "$delay_single_quote_subst"`' -+export_symbols_cmds_CXX='`$ECHO "$export_symbols_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+exclude_expsyms_CXX='`$ECHO "$exclude_expsyms_CXX" | $SED "$delay_single_quote_subst"`' -+include_expsyms_CXX='`$ECHO "$include_expsyms_CXX" | $SED "$delay_single_quote_subst"`' -+prelink_cmds_CXX='`$ECHO "$prelink_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+file_list_spec_CXX='`$ECHO "$file_list_spec_CXX" | $SED "$delay_single_quote_subst"`' -+hardcode_action_CXX='`$ECHO "$hardcode_action_CXX" | $SED "$delay_single_quote_subst"`' -+compiler_lib_search_dirs_CXX='`$ECHO "$compiler_lib_search_dirs_CXX" | $SED "$delay_single_quote_subst"`' -+predep_objects_CXX='`$ECHO "$predep_objects_CXX" | $SED "$delay_single_quote_subst"`' -+postdep_objects_CXX='`$ECHO "$postdep_objects_CXX" | $SED "$delay_single_quote_subst"`' -+predeps_CXX='`$ECHO "$predeps_CXX" | $SED "$delay_single_quote_subst"`' -+postdeps_CXX='`$ECHO "$postdeps_CXX" | $SED "$delay_single_quote_subst"`' -+compiler_lib_search_path_CXX='`$ECHO "$compiler_lib_search_path_CXX" | $SED "$delay_single_quote_subst"`' -+ -+LTCC='$LTCC' -+LTCFLAGS='$LTCFLAGS' -+compiler='$compiler_DEFAULT' -+ -+# A function that is used when there is no print builtin or printf. -+func_fallback_echo () -+{ -+ eval 'cat <<_LTECHO_EOF -+\$1 -+_LTECHO_EOF' -+} -+ -+# Quote evaled strings. -+for var in SHELL \ -+ECHO \ -+SED \ -+GREP \ -+EGREP \ -+FGREP \ -+LD \ -+NM \ -+LN_S \ -+lt_SP2NL \ -+lt_NL2SP \ -+reload_flag \ -+OBJDUMP \ -+deplibs_check_method \ -+file_magic_cmd \ -+AR \ -+AR_FLAGS \ -+STRIP \ -+RANLIB \ -+CC \ -+CFLAGS \ -+compiler \ -+lt_cv_sys_global_symbol_pipe \ -+lt_cv_sys_global_symbol_to_cdecl \ -+lt_cv_sys_global_symbol_to_c_name_address \ -+lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ -+lt_prog_compiler_no_builtin_flag \ -+lt_prog_compiler_wl \ -+lt_prog_compiler_pic \ -+lt_prog_compiler_static \ -+lt_cv_prog_compiler_c_o \ -+need_locks \ -+DSYMUTIL \ -+NMEDIT \ -+LIPO \ -+OTOOL \ -+OTOOL64 \ -+shrext_cmds \ -+export_dynamic_flag_spec \ -+whole_archive_flag_spec \ -+compiler_needs_object \ -+with_gnu_ld \ -+allow_undefined_flag \ -+no_undefined_flag \ -+hardcode_libdir_flag_spec \ -+hardcode_libdir_flag_spec_ld \ -+hardcode_libdir_separator \ -+fix_srcfile_path \ -+exclude_expsyms \ -+include_expsyms \ -+file_list_spec \ -+variables_saved_for_relink \ -+libname_spec \ -+library_names_spec \ -+soname_spec \ -+install_override_mode \ -+finish_eval \ -+old_striplib \ -+striplib \ -+compiler_lib_search_dirs \ -+predep_objects \ -+postdep_objects \ -+predeps \ -+postdeps \ -+compiler_lib_search_path \ -+LD_CXX \ -+reload_flag_CXX \ -+compiler_CXX \ -+lt_prog_compiler_no_builtin_flag_CXX \ -+lt_prog_compiler_wl_CXX \ -+lt_prog_compiler_pic_CXX \ -+lt_prog_compiler_static_CXX \ -+lt_cv_prog_compiler_c_o_CXX \ -+export_dynamic_flag_spec_CXX \ -+whole_archive_flag_spec_CXX \ -+compiler_needs_object_CXX \ -+with_gnu_ld_CXX \ -+allow_undefined_flag_CXX \ -+no_undefined_flag_CXX \ -+hardcode_libdir_flag_spec_CXX \ -+hardcode_libdir_flag_spec_ld_CXX \ -+hardcode_libdir_separator_CXX \ -+fix_srcfile_path_CXX \ -+exclude_expsyms_CXX \ -+include_expsyms_CXX \ -+file_list_spec_CXX \ -+compiler_lib_search_dirs_CXX \ -+predep_objects_CXX \ -+postdep_objects_CXX \ -+predeps_CXX \ -+postdeps_CXX \ -+compiler_lib_search_path_CXX; do -+ case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in -+ *[\\\\\\\`\\"\\\$]*) -+ eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" -+ ;; -+ *) -+ eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" -+ ;; -+ esac -+done -+ -+# Double-quote double-evaled strings. -+for var in reload_cmds \ -+old_postinstall_cmds \ -+old_postuninstall_cmds \ -+old_archive_cmds \ -+extract_expsyms_cmds \ -+old_archive_from_new_cmds \ -+old_archive_from_expsyms_cmds \ -+archive_cmds \ -+archive_expsym_cmds \ -+module_cmds \ -+module_expsym_cmds \ -+export_symbols_cmds \ -+prelink_cmds \ -+postinstall_cmds \ -+postuninstall_cmds \ -+finish_cmds \ -+sys_lib_search_path_spec \ -+sys_lib_dlsearch_path_spec \ -+reload_cmds_CXX \ -+old_archive_cmds_CXX \ -+old_archive_from_new_cmds_CXX \ -+old_archive_from_expsyms_cmds_CXX \ -+archive_cmds_CXX \ -+archive_expsym_cmds_CXX \ -+module_cmds_CXX \ -+module_expsym_cmds_CXX \ -+export_symbols_cmds_CXX \ -+prelink_cmds_CXX; do -+ case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in -+ *[\\\\\\\`\\"\\\$]*) -+ eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" -+ ;; -+ *) -+ eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" -+ ;; -+ esac -+done -+ -+ac_aux_dir='$ac_aux_dir' -+xsi_shell='$xsi_shell' -+lt_shell_append='$lt_shell_append' -+ -+# See if we are running on zsh, and set the options which allow our -+# commands through without removal of \ escapes INIT. -+if test -n "\${ZSH_VERSION+set}" ; then -+ setopt NO_GLOB_SUBST -+fi -+ -+ -+ PACKAGE='$PACKAGE' -+ VERSION='$VERSION' -+ TIMESTAMP='$TIMESTAMP' -+ RM='$RM' -+ ofile='$ofile' -+ -+ -+ -+ -+ -+# Capture the value of obsolete ALL_LINGUAS because we need it to compute -+ # POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES, CATALOGS. But hide it -+ # from automake. -+ eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' -+ # Capture the value of LINGUAS because we need it to compute CATALOGS. -+ LINGUAS="${LINGUAS-%UNSET%}" -+ -+ -+ -+_ACEOF -+ -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+ -+# Handling of arguments. -+for ac_config_target in $ac_config_targets -+do -+ case $ac_config_target in -+ "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; -+ "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; -+ "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h:config.in" ;; -+ "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; -+ "default") CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;; -+ "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; -+ "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in:po/Make-in" ;; -+ -+ *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; -+ esac -+done -+ -+ -+# If the user did not use the arguments to specify the items to instantiate, -+# then the envvar interface is used. Set only those that are not. -+# We use the long form for the default assignment because of an extremely -+# bizarre bug on SunOS 4.1.3. -+if $ac_need_defaults; then -+ test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files -+ test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers -+ test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands -+fi -+ -+# Have a temporary directory for convenience. Make it in the build tree -+# simply because there is no reason against having it here, and in addition, -+# creating and moving files from /tmp can sometimes cause problems. -+# Hook for its removal unless debugging. -+# Note that there is a small window in which the directory will not be cleaned: -+# after its creation but before its name has been assigned to `$tmp'. -+$debug || -+{ -+ tmp= ac_tmp= -+ trap 'exit_status=$? -+ : "${ac_tmp:=$tmp}" -+ { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status -+' 0 -+ trap 'as_fn_exit 1' 1 2 13 15 -+} -+# Create a (secure) tmp directory for tmp files. -+ -+{ -+ tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && -+ test -d "$tmp" -+} || -+{ -+ tmp=./conf$$-$RANDOM -+ (umask 077 && mkdir "$tmp") -+} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 -+ac_tmp=$tmp -+ -+# Set up the scripts for CONFIG_FILES section. -+# No need to generate them if there are no CONFIG_FILES. -+# This happens for instance with `./config.status config.h'. -+if test -n "$CONFIG_FILES"; then -+ -+ -+ac_cr=`echo X | tr X '\015'` -+# On cygwin, bash can eat \r inside `` if the user requested igncr. -+# But we know of no other shell where ac_cr would be empty at this -+# point, so we can use a bashism as a fallback. -+if test "x$ac_cr" = x; then -+ eval ac_cr=\$\'\\r\' -+fi -+ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` -+if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then -+ ac_cs_awk_cr='\\r' -+else -+ ac_cs_awk_cr=$ac_cr -+fi -+ -+echo 'BEGIN {' >"$ac_tmp/subs1.awk" && -+_ACEOF -+ -+ -+{ -+ echo "cat >conf$$subs.awk <<_ACEOF" && -+ echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && -+ echo "_ACEOF" -+} >conf$$subs.sh || -+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 -+ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` -+ac_delim='%!_!# ' -+for ac_last_try in false false false false false :; do -+ . ./conf$$subs.sh || -+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 -+ -+ ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` -+ if test $ac_delim_n = $ac_delim_num; then -+ break -+ elif $ac_last_try; then -+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 -+ else -+ ac_delim="$ac_delim!$ac_delim _$ac_delim!! " -+ fi -+done -+rm -f conf$$subs.sh -+ -+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -+cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && -+_ACEOF -+sed -n ' -+h -+s/^/S["/; s/!.*/"]=/ -+p -+g -+s/^[^!]*!// -+:repl -+t repl -+s/'"$ac_delim"'$// -+t delim -+:nl -+h -+s/\(.\{148\}\)..*/\1/ -+t more1 -+s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ -+p -+n -+b repl -+:more1 -+s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -+p -+g -+s/.\{148\}// -+t nl -+:delim -+h -+s/\(.\{148\}\)..*/\1/ -+t more2 -+s/["\\]/\\&/g; s/^/"/; s/$/"/ -+p -+b -+:more2 -+s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -+p -+g -+s/.\{148\}// -+t delim -+' >$CONFIG_STATUS || ac_write_fail=1 -+rm -f conf$$subs.awk -+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -+_ACAWK -+cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && -+ for (key in S) S_is_set[key] = 1 -+ FS = "" -+ -+} -+{ -+ line = $ 0 -+ nfields = split(line, field, "@") -+ substed = 0 -+ len = length(field[1]) -+ for (i = 2; i < nfields; i++) { -+ key = field[i] -+ keylen = length(key) -+ if (S_is_set[key]) { -+ value = S[key] -+ line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) -+ len += length(value) + length(field[++i]) -+ substed = 1 -+ } else -+ len += 1 + keylen -+ } -+ -+ print line -+} -+ -+_ACAWK -+_ACEOF -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then -+ sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" -+else -+ cat -+fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ -+ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 -+_ACEOF -+ -+# VPATH may cause trouble with some makes, so we remove sole $(srcdir), -+# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and -+# trailing colons and then remove the whole line if VPATH becomes empty -+# (actually we leave an empty line to preserve line numbers). -+if test "x$srcdir" = x.; then -+ ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ -+h -+s/// -+s/^/:/ -+s/[ ]*$/:/ -+s/:\$(srcdir):/:/g -+s/:\${srcdir}:/:/g -+s/:@srcdir@:/:/g -+s/^:*// -+s/:*$// -+x -+s/\(=[ ]*\).*/\1/ -+G -+s/\n// -+s/^[^=]*=[ ]*$// -+}' -+fi -+ -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+fi # test -n "$CONFIG_FILES" -+ -+# Set up the scripts for CONFIG_HEADERS section. -+# No need to generate them if there are no CONFIG_HEADERS. -+# This happens for instance with `./config.status Makefile'. -+if test -n "$CONFIG_HEADERS"; then -+cat >"$ac_tmp/defines.awk" <<\_ACAWK || -+BEGIN { -+_ACEOF -+ -+# Transform confdefs.h into an awk script `defines.awk', embedded as -+# here-document in config.status, that substitutes the proper values into -+# config.h.in to produce config.h. -+ -+# Create a delimiter string that does not exist in confdefs.h, to ease -+# handling of long lines. -+ac_delim='%!_!# ' -+for ac_last_try in false false :; do -+ ac_tt=`sed -n "/$ac_delim/p" confdefs.h` -+ if test -z "$ac_tt"; then -+ break -+ elif $ac_last_try; then -+ as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 -+ else -+ ac_delim="$ac_delim!$ac_delim _$ac_delim!! " -+ fi -+done -+ -+# For the awk script, D is an array of macro values keyed by name, -+# likewise P contains macro parameters if any. Preserve backslash -+# newline sequences. -+ -+ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* -+sed -n ' -+s/.\{148\}/&'"$ac_delim"'/g -+t rset -+:rset -+s/^[ ]*#[ ]*define[ ][ ]*/ / -+t def -+d -+:def -+s/\\$// -+t bsnl -+s/["\\]/\\&/g -+s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -+D["\1"]=" \3"/p -+s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p -+d -+:bsnl -+s/["\\]/\\&/g -+s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -+D["\1"]=" \3\\\\\\n"\\/p -+t cont -+s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p -+t cont -+d -+:cont -+n -+s/.\{148\}/&'"$ac_delim"'/g -+t clear -+:clear -+s/\\$// -+t bsnlc -+s/["\\]/\\&/g; s/^/"/; s/$/"/p -+d -+:bsnlc -+s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p -+b cont -+' >$CONFIG_STATUS || ac_write_fail=1 -+ -+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -+ for (key in D) D_is_set[key] = 1 -+ FS = "" -+} -+/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { -+ line = \$ 0 -+ split(line, arg, " ") -+ if (arg[1] == "#") { -+ defundef = arg[2] -+ mac1 = arg[3] -+ } else { -+ defundef = substr(arg[1], 2) -+ mac1 = arg[2] -+ } -+ split(mac1, mac2, "(") #) -+ macro = mac2[1] -+ prefix = substr(line, 1, index(line, defundef) - 1) -+ if (D_is_set[macro]) { -+ # Preserve the white space surrounding the "#". -+ print prefix "define", macro P[macro] D[macro] -+ next -+ } else { -+ # Replace #undef with comments. This is necessary, for example, -+ # in the case of _POSIX_SOURCE, which is predefined and required -+ # on some systems where configure will not decide to define it. -+ if (defundef == "undef") { -+ print "/*", prefix defundef, macro, "*/" -+ next -+ } -+ } -+} -+{ print } -+_ACAWK -+_ACEOF -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+ as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 -+fi # test -n "$CONFIG_HEADERS" -+ -+ -+eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" -+shift -+for ac_tag -+do -+ case $ac_tag in -+ :[FHLC]) ac_mode=$ac_tag; continue;; -+ esac -+ case $ac_mode$ac_tag in -+ :[FHL]*:*);; -+ :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; -+ :[FH]-) ac_tag=-:-;; -+ :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; -+ esac -+ ac_save_IFS=$IFS -+ IFS=: -+ set x $ac_tag -+ IFS=$ac_save_IFS -+ shift -+ ac_file=$1 -+ shift -+ -+ case $ac_mode in -+ :L) ac_source=$1;; -+ :[FH]) -+ ac_file_inputs= -+ for ac_f -+ do -+ case $ac_f in -+ -) ac_f="$ac_tmp/stdin";; -+ *) # Look for the file first in the build tree, then in the source tree -+ # (if the path is not absolute). The absolute path cannot be DOS-style, -+ # because $ac_f cannot contain `:'. -+ test -f "$ac_f" || -+ case $ac_f in -+ [\\/$]*) false;; -+ *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; -+ esac || -+ as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; -+ esac -+ case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac -+ as_fn_append ac_file_inputs " '$ac_f'" -+ done -+ -+ # Let's still pretend it is `configure' which instantiates (i.e., don't -+ # use $as_me), people would be surprised to read: -+ # /* config.h. Generated by config.status. */ -+ configure_input='Generated from '` -+ $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' -+ `' by configure.' -+ if test x"$ac_file" != x-; then -+ configure_input="$ac_file. $configure_input" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 -+$as_echo "$as_me: creating $ac_file" >&6;} -+ fi -+ # Neutralize special characters interpreted by sed in replacement strings. -+ case $configure_input in #( -+ *\&* | *\|* | *\\* ) -+ ac_sed_conf_input=`$as_echo "$configure_input" | -+ sed 's/[\\\\&|]/\\\\&/g'`;; #( -+ *) ac_sed_conf_input=$configure_input;; -+ esac -+ -+ case $ac_tag in -+ *:-:* | *:-) cat >"$ac_tmp/stdin" \ -+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; -+ esac -+ ;; -+ esac -+ -+ ac_dir=`$as_dirname -- "$ac_file" || -+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ -+ X"$ac_file" : 'X\(//\)[^/]' \| \ -+ X"$ac_file" : 'X\(//\)$' \| \ -+ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || -+$as_echo X"$ac_file" | -+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)[^/].*/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\).*/{ -+ s//\1/ -+ q -+ } -+ s/.*/./; q'` -+ as_dir="$ac_dir"; as_fn_mkdir_p -+ ac_builddir=. -+ -+case "$ac_dir" in -+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -+*) -+ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` -+ # A ".." for each directory in $ac_dir_suffix. -+ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` -+ case $ac_top_builddir_sub in -+ "") ac_top_builddir_sub=. ac_top_build_prefix= ;; -+ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; -+ esac ;; -+esac -+ac_abs_top_builddir=$ac_pwd -+ac_abs_builddir=$ac_pwd$ac_dir_suffix -+# for backward compatibility: -+ac_top_builddir=$ac_top_build_prefix -+ -+case $srcdir in -+ .) # We are building in place. -+ ac_srcdir=. -+ ac_top_srcdir=$ac_top_builddir_sub -+ ac_abs_top_srcdir=$ac_pwd ;; -+ [\\/]* | ?:[\\/]* ) # Absolute name. -+ ac_srcdir=$srcdir$ac_dir_suffix; -+ ac_top_srcdir=$srcdir -+ ac_abs_top_srcdir=$srcdir ;; -+ *) # Relative name. -+ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix -+ ac_top_srcdir=$ac_top_build_prefix$srcdir -+ ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -+esac -+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix -+ -+ -+ case $ac_mode in -+ :F) -+ # -+ # CONFIG_FILE -+ # -+ -+ case $INSTALL in -+ [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; -+ *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; -+ esac -+ ac_MKDIR_P=$MKDIR_P -+ case $MKDIR_P in -+ [\\/$]* | ?:[\\/]* ) ;; -+ */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; -+ esac -+_ACEOF -+ -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+# If the template does not know about datarootdir, expand it. -+# FIXME: This hack should be removed a few years after 2.60. -+ac_datarootdir_hack=; ac_datarootdir_seen= -+ac_sed_dataroot=' -+/datarootdir/ { -+ p -+ q -+} -+/@datadir@/p -+/@docdir@/p -+/@infodir@/p -+/@localedir@/p -+/@mandir@/p' -+case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in -+*datarootdir*) ac_datarootdir_seen=yes;; -+*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 -+$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} -+_ACEOF -+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -+ ac_datarootdir_hack=' -+ s&@datadir@&$datadir&g -+ s&@docdir@&$docdir&g -+ s&@infodir@&$infodir&g -+ s&@localedir@&$localedir&g -+ s&@mandir@&$mandir&g -+ s&\\\${datarootdir}&$datarootdir&g' ;; -+esac -+_ACEOF -+ -+# Neutralize VPATH when `$srcdir' = `.'. -+# Shell code in configure.ac might set extrasub. -+# FIXME: do we really want to maintain this feature? -+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -+ac_sed_extra="$ac_vpsub -+$extrasub -+_ACEOF -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+:t -+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b -+s|@configure_input@|$ac_sed_conf_input|;t t -+s&@top_builddir@&$ac_top_builddir_sub&;t t -+s&@top_build_prefix@&$ac_top_build_prefix&;t t -+s&@srcdir@&$ac_srcdir&;t t -+s&@abs_srcdir@&$ac_abs_srcdir&;t t -+s&@top_srcdir@&$ac_top_srcdir&;t t -+s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t -+s&@builddir@&$ac_builddir&;t t -+s&@abs_builddir@&$ac_abs_builddir&;t t -+s&@abs_top_builddir@&$ac_abs_top_builddir&;t t -+s&@INSTALL@&$ac_INSTALL&;t t -+s&@MKDIR_P@&$ac_MKDIR_P&;t t -+$ac_datarootdir_hack -+" -+eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ -+ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 -+ -+test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && -+ { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && -+ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ -+ "$ac_tmp/out"`; test -z "$ac_out"; } && -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' -+which seems to be undefined. Please make sure it is defined" >&5 -+$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' -+which seems to be undefined. Please make sure it is defined" >&2;} -+ -+ rm -f "$ac_tmp/stdin" -+ case $ac_file in -+ -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; -+ *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; -+ esac \ -+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 -+ ;; -+ :H) -+ # -+ # CONFIG_HEADER -+ # -+ if test x"$ac_file" != x-; then -+ { -+ $as_echo "/* $configure_input */" \ -+ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" -+ } >"$ac_tmp/config.h" \ -+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 -+ if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 -+$as_echo "$as_me: $ac_file is unchanged" >&6;} -+ else -+ rm -f "$ac_file" -+ mv "$ac_tmp/config.h" "$ac_file" \ -+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 -+ fi -+ else -+ $as_echo "/* $configure_input */" \ -+ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ -+ || as_fn_error $? "could not create -" "$LINENO" 5 -+ fi -+# Compute "$ac_file"'s index in $config_headers. -+_am_arg="$ac_file" -+_am_stamp_count=1 -+for _am_header in $config_headers :; do -+ case $_am_header in -+ $_am_arg | $_am_arg:* ) -+ break ;; -+ * ) -+ _am_stamp_count=`expr $_am_stamp_count + 1` ;; -+ esac -+done -+echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || -+$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ -+ X"$_am_arg" : 'X\(//\)[^/]' \| \ -+ X"$_am_arg" : 'X\(//\)$' \| \ -+ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || -+$as_echo X"$_am_arg" | -+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)[^/].*/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\).*/{ -+ s//\1/ -+ q -+ } -+ s/.*/./; q'`/stamp-h$_am_stamp_count -+ ;; -+ -+ :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 -+$as_echo "$as_me: executing $ac_file commands" >&6;} -+ ;; -+ esac -+ -+ -+ case $ac_file$ac_mode in -+ "depfiles":C) test x"$AMDEP_TRUE" != x"" || { -+ # Older Autoconf quotes --file arguments for eval, but not when files -+ # are listed without --file. Let's play safe and only enable the eval -+ # if we detect the quoting. -+ case $CONFIG_FILES in -+ *\'*) eval set x "$CONFIG_FILES" ;; -+ *) set x $CONFIG_FILES ;; -+ esac -+ shift -+ for mf -+ do -+ # Strip MF so we end up with the name of the file. -+ mf=`echo "$mf" | sed -e 's/:.*$//'` -+ # Check whether this is an Automake generated Makefile or not. -+ # We used to match only the files named 'Makefile.in', but -+ # some people rename them; so instead we look at the file content. -+ # Grep'ing the first line is not enough: some people post-process -+ # each Makefile.in and add a new line on top of each file to say so. -+ # Grep'ing the whole file is not good either: AIX grep has a line -+ # limit of 2048, but all sed's we know have understand at least 4000. -+ if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then -+ dirpart=`$as_dirname -- "$mf" || -+$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ -+ X"$mf" : 'X\(//\)[^/]' \| \ -+ X"$mf" : 'X\(//\)$' \| \ -+ X"$mf" : 'X\(/\)' \| . 2>/dev/null || -+$as_echo X"$mf" | -+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)[^/].*/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\).*/{ -+ s//\1/ -+ q -+ } -+ s/.*/./; q'` -+ else -+ continue -+ fi -+ # Extract the definition of DEPDIR, am__include, and am__quote -+ # from the Makefile without running 'make'. -+ DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` -+ test -z "$DEPDIR" && continue -+ am__include=`sed -n 's/^am__include = //p' < "$mf"` -+ test -z "$am__include" && continue -+ am__quote=`sed -n 's/^am__quote = //p' < "$mf"` -+ # Find all dependency output files, they are included files with -+ # $(DEPDIR) in their names. We invoke sed twice because it is the -+ # simplest approach to changing $(DEPDIR) to its actual value in the -+ # expansion. -+ for file in `sed -n " -+ s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ -+ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do -+ # Make sure the directory exists. -+ test -f "$dirpart/$file" && continue -+ fdir=`$as_dirname -- "$file" || -+$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ -+ X"$file" : 'X\(//\)[^/]' \| \ -+ X"$file" : 'X\(//\)$' \| \ -+ X"$file" : 'X\(/\)' \| . 2>/dev/null || -+$as_echo X"$file" | -+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)[^/].*/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\).*/{ -+ s//\1/ -+ q -+ } -+ s/.*/./; q'` -+ as_dir=$dirpart/$fdir; as_fn_mkdir_p -+ # echo "creating $dirpart/$file" -+ echo '# dummy' > "$dirpart/$file" -+ done -+ done -+} -+ ;; -+ "libtool":C) -+ -+ # See if we are running on zsh, and set the options which allow our -+ # commands through without removal of \ escapes. -+ if test -n "${ZSH_VERSION+set}" ; then -+ setopt NO_GLOB_SUBST -+ fi -+ -+ cfgfile="${ofile}T" -+ trap "$RM \"$cfgfile\"; exit 1" 1 2 15 -+ $RM "$cfgfile" -+ -+ cat <<_LT_EOF >> "$cfgfile" -+#! $SHELL -+ -+# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. -+# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION -+# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: -+# NOTE: Changes made to this file will be lost: look at ltmain.sh. -+# -+# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -+# 2006, 2007, 2008, 2009 Free Software Foundation, Inc. -+# Written by Gordon Matzigkeit, 1996 -+# -+# This file is part of GNU Libtool. -+# -+# GNU Libtool is free software; you can redistribute it and/or -+# modify it under the terms of the GNU General Public License as -+# published by the Free Software Foundation; either version 2 of -+# the License, or (at your option) any later version. -+# -+# As a special exception to the GNU General Public License, -+# if you distribute this file as part of a program or library that -+# is built using GNU Libtool, you may include this file under the -+# same distribution terms that you use for the rest of that program. -+# -+# GNU Libtool is distributed in the hope that it will be useful, -+# but WITHOUT ANY WARRANTY; without even the implied warranty of -+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+# GNU General Public License for more details. -+# -+# You should have received a copy of the GNU General Public License -+# along with GNU Libtool; see the file COPYING. If not, a copy -+# can be downloaded from http://www.gnu.org/licenses/gpl.html, or -+# obtained by writing to the Free Software Foundation, Inc., -+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -+ -+ -+# The names of the tagged configurations supported by this script. -+available_tags="CXX " -+ -+# ### BEGIN LIBTOOL CONFIG -+ -+# Which release of libtool.m4 was used? -+macro_version=$macro_version -+macro_revision=$macro_revision -+ -+# Whether or not to build shared libraries. -+build_libtool_libs=$enable_shared -+ -+# Whether or not to build static libraries. -+build_old_libs=$enable_static -+ -+# What type of objects to build. -+pic_mode=$pic_mode -+ -+# Whether or not to optimize for fast installation. -+fast_install=$enable_fast_install -+ -+# Shell to use when invoking shell scripts. -+SHELL=$lt_SHELL -+ -+# An echo program that protects backslashes. -+ECHO=$lt_ECHO -+ -+# The host system. -+host_alias=$host_alias -+host=$host -+host_os=$host_os -+ -+# The build system. -+build_alias=$build_alias -+build=$build -+build_os=$build_os -+ -+# A sed program that does not truncate output. -+SED=$lt_SED -+ -+# Sed that helps us avoid accidentally triggering echo(1) options like -n. -+Xsed="\$SED -e 1s/^X//" -+ -+# A grep program that handles long lines. -+GREP=$lt_GREP -+ -+# An ERE matcher. -+EGREP=$lt_EGREP -+ -+# A literal string matcher. -+FGREP=$lt_FGREP -+ -+# A BSD- or MS-compatible name lister. -+NM=$lt_NM -+ -+# Whether we need soft or hard links. -+LN_S=$lt_LN_S -+ -+# What is the maximum length of a command? -+max_cmd_len=$max_cmd_len -+ -+# Object file suffix (normally "o"). -+objext=$ac_objext -+ -+# Executable file suffix (normally ""). -+exeext=$exeext -+ -+# whether the shell understands "unset". -+lt_unset=$lt_unset -+ -+# turn spaces into newlines. -+SP2NL=$lt_lt_SP2NL -+ -+# turn newlines into spaces. -+NL2SP=$lt_lt_NL2SP -+ -+# An object symbol dumper. -+OBJDUMP=$lt_OBJDUMP -+ -+# Method to check whether dependent libraries are shared objects. -+deplibs_check_method=$lt_deplibs_check_method -+ -+# Command to use when deplibs_check_method == "file_magic". -+file_magic_cmd=$lt_file_magic_cmd -+ -+# The archiver. -+AR=$lt_AR -+AR_FLAGS=$lt_AR_FLAGS -+ -+# A symbol stripping program. -+STRIP=$lt_STRIP -+ -+# Commands used to install an old-style archive. -+RANLIB=$lt_RANLIB -+old_postinstall_cmds=$lt_old_postinstall_cmds -+old_postuninstall_cmds=$lt_old_postuninstall_cmds -+ -+# Whether to use a lock for old archive extraction. -+lock_old_archive_extraction=$lock_old_archive_extraction -+ -+# A C compiler. -+LTCC=$lt_CC -+ -+# LTCC compiler flags. -+LTCFLAGS=$lt_CFLAGS -+ -+# Take the output of nm and produce a listing of raw symbols and C names. -+global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe -+ -+# Transform the output of nm in a proper C declaration. -+global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl -+ -+# Transform the output of nm in a C name address pair. -+global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address -+ -+# Transform the output of nm in a C name address pair when lib prefix is needed. -+global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix -+ -+# The name of the directory that contains temporary libtool files. -+objdir=$objdir -+ -+# Used to examine libraries when file_magic_cmd begins with "file". -+MAGIC_CMD=$MAGIC_CMD -+ -+# Must we lock files when doing compilation? -+need_locks=$lt_need_locks -+ -+# Tool to manipulate archived DWARF debug symbol files on Mac OS X. -+DSYMUTIL=$lt_DSYMUTIL -+ -+# Tool to change global to local symbols on Mac OS X. -+NMEDIT=$lt_NMEDIT -+ -+# Tool to manipulate fat objects and archives on Mac OS X. -+LIPO=$lt_LIPO -+ -+# ldd/readelf like tool for Mach-O binaries on Mac OS X. -+OTOOL=$lt_OTOOL -+ -+# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. -+OTOOL64=$lt_OTOOL64 -+ -+# Old archive suffix (normally "a"). -+libext=$libext -+ -+# Shared library suffix (normally ".so"). -+shrext_cmds=$lt_shrext_cmds -+ -+# The commands to extract the exported symbol list from a shared archive. -+extract_expsyms_cmds=$lt_extract_expsyms_cmds -+ -+# Variables whose values should be saved in libtool wrapper scripts and -+# restored at link time. -+variables_saved_for_relink=$lt_variables_saved_for_relink -+ -+# Do we need the "lib" prefix for modules? -+need_lib_prefix=$need_lib_prefix -+ -+# Do we need a version for libraries? -+need_version=$need_version -+ -+# Library versioning type. -+version_type=$version_type -+ -+# Shared library runtime path variable. -+runpath_var=$runpath_var -+ -+# Shared library path variable. -+shlibpath_var=$shlibpath_var -+ -+# Is shlibpath searched before the hard-coded library search path? -+shlibpath_overrides_runpath=$shlibpath_overrides_runpath -+ -+# Format of library name prefix. -+libname_spec=$lt_libname_spec -+ -+# List of archive names. First name is the real one, the rest are links. -+# The last name is the one that the linker finds with -lNAME -+library_names_spec=$lt_library_names_spec -+ -+# The coded name of the library, if different from the real name. -+soname_spec=$lt_soname_spec -+ -+# Permission mode override for installation of shared libraries. -+install_override_mode=$lt_install_override_mode -+ -+# Command to use after installation of a shared archive. -+postinstall_cmds=$lt_postinstall_cmds -+ -+# Command to use after uninstallation of a shared archive. -+postuninstall_cmds=$lt_postuninstall_cmds -+ -+# Commands used to finish a libtool library installation in a directory. -+finish_cmds=$lt_finish_cmds -+ -+# As "finish_cmds", except a single script fragment to be evaled but -+# not shown. -+finish_eval=$lt_finish_eval -+ -+# Whether we should hardcode library paths into libraries. -+hardcode_into_libs=$hardcode_into_libs -+ -+# Compile-time system search path for libraries. -+sys_lib_search_path_spec=$lt_sys_lib_search_path_spec -+ -+# Run-time system search path for libraries. -+sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec -+ -+# Whether dlopen is supported. -+dlopen_support=$enable_dlopen -+ -+# Whether dlopen of programs is supported. -+dlopen_self=$enable_dlopen_self -+ -+# Whether dlopen of statically linked programs is supported. -+dlopen_self_static=$enable_dlopen_self_static -+ -+# Commands to strip libraries. -+old_striplib=$lt_old_striplib -+striplib=$lt_striplib -+ -+ -+# The linker used to build libraries. -+LD=$lt_LD -+ -+# How to create reloadable object files. -+reload_flag=$lt_reload_flag -+reload_cmds=$lt_reload_cmds -+ -+# Commands used to build an old-style archive. -+old_archive_cmds=$lt_old_archive_cmds -+ -+# A language specific compiler. -+CC=$lt_compiler -+ -+# Is the compiler the GNU compiler? -+with_gcc=$GCC -+ -+# Compiler flag to turn off builtin functions. -+no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag -+ -+# How to pass a linker flag through the compiler. -+wl=$lt_lt_prog_compiler_wl -+ -+# Additional compiler flags for building library objects. -+pic_flag=$lt_lt_prog_compiler_pic -+ -+# Compiler flag to prevent dynamic linking. -+link_static_flag=$lt_lt_prog_compiler_static -+ -+# Does compiler simultaneously support -c and -o options? -+compiler_c_o=$lt_lt_cv_prog_compiler_c_o -+ -+# Whether or not to add -lc for building shared libraries. -+build_libtool_need_lc=$archive_cmds_need_lc -+ -+# Whether or not to disallow shared libs when runtime libs are static. -+allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes -+ -+# Compiler flag to allow reflexive dlopens. -+export_dynamic_flag_spec=$lt_export_dynamic_flag_spec -+ -+# Compiler flag to generate shared objects directly from archives. -+whole_archive_flag_spec=$lt_whole_archive_flag_spec -+ -+# Whether the compiler copes with passing no objects directly. -+compiler_needs_object=$lt_compiler_needs_object -+ -+# Create an old-style archive from a shared archive. -+old_archive_from_new_cmds=$lt_old_archive_from_new_cmds -+ -+# Create a temporary old-style archive to link instead of a shared archive. -+old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds -+ -+# Commands used to build a shared archive. -+archive_cmds=$lt_archive_cmds -+archive_expsym_cmds=$lt_archive_expsym_cmds -+ -+# Commands used to build a loadable module if different from building -+# a shared archive. -+module_cmds=$lt_module_cmds -+module_expsym_cmds=$lt_module_expsym_cmds -+ -+# Whether we are building with GNU ld or not. -+with_gnu_ld=$lt_with_gnu_ld -+ -+# Flag that allows shared libraries with undefined symbols to be built. -+allow_undefined_flag=$lt_allow_undefined_flag -+ -+# Flag that enforces no undefined symbols. -+no_undefined_flag=$lt_no_undefined_flag -+ -+# Flag to hardcode \$libdir into a binary during linking. -+# This must work even if \$libdir does not exist -+hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec -+ -+# If ld is used when linking, flag to hardcode \$libdir into a binary -+# during linking. This must work even if \$libdir does not exist. -+hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld -+ -+# Whether we need a single "-rpath" flag with a separated argument. -+hardcode_libdir_separator=$lt_hardcode_libdir_separator -+ -+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes -+# DIR into the resulting binary. -+hardcode_direct=$hardcode_direct -+ -+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes -+# DIR into the resulting binary and the resulting library dependency is -+# "absolute",i.e impossible to change by setting \${shlibpath_var} if the -+# library is relocated. -+hardcode_direct_absolute=$hardcode_direct_absolute -+ -+# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -+# into the resulting binary. -+hardcode_minus_L=$hardcode_minus_L -+ -+# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -+# into the resulting binary. -+hardcode_shlibpath_var=$hardcode_shlibpath_var -+ -+# Set to "yes" if building a shared library automatically hardcodes DIR -+# into the library and all subsequent libraries and executables linked -+# against it. -+hardcode_automatic=$hardcode_automatic -+ -+# Set to yes if linker adds runtime paths of dependent libraries -+# to runtime path list. -+inherit_rpath=$inherit_rpath -+ -+# Whether libtool must link a program against all its dependency libraries. -+link_all_deplibs=$link_all_deplibs -+ -+# Fix the shell variable \$srcfile for the compiler. -+fix_srcfile_path=$lt_fix_srcfile_path -+ -+# Set to "yes" if exported symbols are required. -+always_export_symbols=$always_export_symbols -+ -+# The commands to list exported symbols. -+export_symbols_cmds=$lt_export_symbols_cmds -+ -+# Symbols that should not be listed in the preloaded symbols. -+exclude_expsyms=$lt_exclude_expsyms -+ -+# Symbols that must always be exported. -+include_expsyms=$lt_include_expsyms -+ -+# Commands necessary for linking programs (against libraries) with templates. -+prelink_cmds=$lt_prelink_cmds -+ -+# Specify filename containing input files. -+file_list_spec=$lt_file_list_spec -+ -+# How to hardcode a shared library path into an executable. -+hardcode_action=$hardcode_action -+ -+# The directories searched by this compiler when creating a shared library. -+compiler_lib_search_dirs=$lt_compiler_lib_search_dirs -+ -+# Dependencies to place before and after the objects being linked to -+# create a shared library. -+predep_objects=$lt_predep_objects -+postdep_objects=$lt_postdep_objects -+predeps=$lt_predeps -+postdeps=$lt_postdeps -+ -+# The library search path used internally by the compiler when linking -+# a shared library. -+compiler_lib_search_path=$lt_compiler_lib_search_path -+ -+# ### END LIBTOOL CONFIG -+ -+_LT_EOF -+ -+ case $host_os in -+ aix3*) -+ cat <<\_LT_EOF >> "$cfgfile" -+# AIX sometimes has problems with the GCC collect2 program. For some -+# reason, if we set the COLLECT_NAMES environment variable, the problems -+# vanish in a puff of smoke. -+if test "X${COLLECT_NAMES+set}" != Xset; then -+ COLLECT_NAMES= -+ export COLLECT_NAMES -+fi -+_LT_EOF -+ ;; -+ esac -+ -+ -+ltmain="$ac_aux_dir/ltmain.sh" -+ -+ -+ # We use sed instead of cat because bash on DJGPP gets confused if -+ # if finds mixed CR/LF and LF-only lines. Since sed operates in -+ # text mode, it properly converts lines to CR/LF. This bash problem -+ # is reportedly fixed, but why not run on old versions too? -+ sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \ -+ || (rm -f "$cfgfile"; exit 1) -+ -+ case $xsi_shell in -+ yes) -+ cat << \_LT_EOF >> "$cfgfile" -+ -+# func_dirname file append nondir_replacement -+# Compute the dirname of FILE. If nonempty, add APPEND to the result, -+# otherwise set result to NONDIR_REPLACEMENT. -+func_dirname () -+{ -+ case ${1} in -+ */*) func_dirname_result="${1%/*}${2}" ;; -+ * ) func_dirname_result="${3}" ;; -+ esac -+} -+ -+# func_basename file -+func_basename () -+{ -+ func_basename_result="${1##*/}" -+} -+ -+# func_dirname_and_basename file append nondir_replacement -+# perform func_basename and func_dirname in a single function -+# call: -+# dirname: Compute the dirname of FILE. If nonempty, -+# add APPEND to the result, otherwise set result -+# to NONDIR_REPLACEMENT. -+# value returned in "$func_dirname_result" -+# basename: Compute filename of FILE. -+# value retuned in "$func_basename_result" -+# Implementation must be kept synchronized with func_dirname -+# and func_basename. For efficiency, we do not delegate to -+# those functions but instead duplicate the functionality here. -+func_dirname_and_basename () -+{ -+ case ${1} in -+ */*) func_dirname_result="${1%/*}${2}" ;; -+ * ) func_dirname_result="${3}" ;; -+ esac -+ func_basename_result="${1##*/}" -+} -+ -+# func_stripname prefix suffix name -+# strip PREFIX and SUFFIX off of NAME. -+# PREFIX and SUFFIX must not contain globbing or regex special -+# characters, hashes, percent signs, but SUFFIX may contain a leading -+# dot (in which case that matches only a dot). -+func_stripname () -+{ -+ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are -+ # positional parameters, so assign one to ordinary parameter first. -+ func_stripname_result=${3} -+ func_stripname_result=${func_stripname_result#"${1}"} -+ func_stripname_result=${func_stripname_result%"${2}"} -+} -+ -+# func_opt_split -+func_opt_split () -+{ -+ func_opt_split_opt=${1%%=*} -+ func_opt_split_arg=${1#*=} -+} -+ -+# func_lo2o object -+func_lo2o () -+{ -+ case ${1} in -+ *.lo) func_lo2o_result=${1%.lo}.${objext} ;; -+ *) func_lo2o_result=${1} ;; -+ esac -+} -+ -+# func_xform libobj-or-source -+func_xform () -+{ -+ func_xform_result=${1%.*}.lo -+} -+ -+# func_arith arithmetic-term... -+func_arith () -+{ -+ func_arith_result=$(( $* )) -+} -+ -+# func_len string -+# STRING may not start with a hyphen. -+func_len () -+{ -+ func_len_result=${#1} -+} -+ -+_LT_EOF -+ ;; -+ *) # Bourne compatible functions. -+ cat << \_LT_EOF >> "$cfgfile" -+ -+# func_dirname file append nondir_replacement -+# Compute the dirname of FILE. If nonempty, add APPEND to the result, -+# otherwise set result to NONDIR_REPLACEMENT. -+func_dirname () -+{ -+ # Extract subdirectory from the argument. -+ func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` -+ if test "X$func_dirname_result" = "X${1}"; then -+ func_dirname_result="${3}" -+ else -+ func_dirname_result="$func_dirname_result${2}" -+ fi -+} -+ -+# func_basename file -+func_basename () -+{ -+ func_basename_result=`$ECHO "${1}" | $SED "$basename"` -+} -+ -+ -+# func_stripname prefix suffix name -+# strip PREFIX and SUFFIX off of NAME. -+# PREFIX and SUFFIX must not contain globbing or regex special -+# characters, hashes, percent signs, but SUFFIX may contain a leading -+# dot (in which case that matches only a dot). -+# func_strip_suffix prefix name -+func_stripname () -+{ -+ case ${2} in -+ .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; -+ *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; -+ esac -+} -+ -+# sed scripts: -+my_sed_long_opt='1s/^\(-[^=]*\)=.*/\1/;q' -+my_sed_long_arg='1s/^-[^=]*=//' -+ -+# func_opt_split -+func_opt_split () -+{ -+ func_opt_split_opt=`$ECHO "${1}" | $SED "$my_sed_long_opt"` -+ func_opt_split_arg=`$ECHO "${1}" | $SED "$my_sed_long_arg"` -+} -+ -+# func_lo2o object -+func_lo2o () -+{ -+ func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` -+} -+ -+# func_xform libobj-or-source -+func_xform () -+{ -+ func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` -+} -+ -+# func_arith arithmetic-term... -+func_arith () -+{ -+ func_arith_result=`expr "$@"` -+} -+ -+# func_len string -+# STRING may not start with a hyphen. -+func_len () -+{ -+ func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` -+} -+ -+_LT_EOF -+esac -+ -+case $lt_shell_append in -+ yes) -+ cat << \_LT_EOF >> "$cfgfile" -+ -+# func_append var value -+# Append VALUE to the end of shell variable VAR. -+func_append () -+{ -+ eval "$1+=\$2" -+} -+_LT_EOF -+ ;; -+ *) -+ cat << \_LT_EOF >> "$cfgfile" -+ -+# func_append var value -+# Append VALUE to the end of shell variable VAR. -+func_append () -+{ -+ eval "$1=\$$1\$2" -+} -+ -+_LT_EOF -+ ;; -+ esac -+ -+ -+ sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \ -+ || (rm -f "$cfgfile"; exit 1) -+ -+ mv -f "$cfgfile" "$ofile" || -+ (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") -+ chmod +x "$ofile" -+ -+ -+ cat <<_LT_EOF >> "$ofile" -+ -+# ### BEGIN LIBTOOL TAG CONFIG: CXX -+ -+# The linker used to build libraries. -+LD=$lt_LD_CXX -+ -+# How to create reloadable object files. -+reload_flag=$lt_reload_flag_CXX -+reload_cmds=$lt_reload_cmds_CXX -+ -+# Commands used to build an old-style archive. -+old_archive_cmds=$lt_old_archive_cmds_CXX -+ -+# A language specific compiler. -+CC=$lt_compiler_CXX -+ -+# Is the compiler the GNU compiler? -+with_gcc=$GCC_CXX -+ -+# Compiler flag to turn off builtin functions. -+no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX -+ -+# How to pass a linker flag through the compiler. -+wl=$lt_lt_prog_compiler_wl_CXX -+ -+# Additional compiler flags for building library objects. -+pic_flag=$lt_lt_prog_compiler_pic_CXX -+ -+# Compiler flag to prevent dynamic linking. -+link_static_flag=$lt_lt_prog_compiler_static_CXX -+ -+# Does compiler simultaneously support -c and -o options? -+compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX -+ -+# Whether or not to add -lc for building shared libraries. -+build_libtool_need_lc=$archive_cmds_need_lc_CXX -+ -+# Whether or not to disallow shared libs when runtime libs are static. -+allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX -+ -+# Compiler flag to allow reflexive dlopens. -+export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX -+ -+# Compiler flag to generate shared objects directly from archives. -+whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX -+ -+# Whether the compiler copes with passing no objects directly. -+compiler_needs_object=$lt_compiler_needs_object_CXX -+ -+# Create an old-style archive from a shared archive. -+old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX -+ -+# Create a temporary old-style archive to link instead of a shared archive. -+old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX -+ -+# Commands used to build a shared archive. -+archive_cmds=$lt_archive_cmds_CXX -+archive_expsym_cmds=$lt_archive_expsym_cmds_CXX -+ -+# Commands used to build a loadable module if different from building -+# a shared archive. -+module_cmds=$lt_module_cmds_CXX -+module_expsym_cmds=$lt_module_expsym_cmds_CXX -+ -+# Whether we are building with GNU ld or not. -+with_gnu_ld=$lt_with_gnu_ld_CXX -+ -+# Flag that allows shared libraries with undefined symbols to be built. -+allow_undefined_flag=$lt_allow_undefined_flag_CXX -+ -+# Flag that enforces no undefined symbols. -+no_undefined_flag=$lt_no_undefined_flag_CXX -+ -+# Flag to hardcode \$libdir into a binary during linking. -+# This must work even if \$libdir does not exist -+hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX -+ -+# If ld is used when linking, flag to hardcode \$libdir into a binary -+# during linking. This must work even if \$libdir does not exist. -+hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX -+ -+# Whether we need a single "-rpath" flag with a separated argument. -+hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX -+ -+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes -+# DIR into the resulting binary. -+hardcode_direct=$hardcode_direct_CXX -+ -+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes -+# DIR into the resulting binary and the resulting library dependency is -+# "absolute",i.e impossible to change by setting \${shlibpath_var} if the -+# library is relocated. -+hardcode_direct_absolute=$hardcode_direct_absolute_CXX -+ -+# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -+# into the resulting binary. -+hardcode_minus_L=$hardcode_minus_L_CXX -+ -+# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -+# into the resulting binary. -+hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX -+ -+# Set to "yes" if building a shared library automatically hardcodes DIR -+# into the library and all subsequent libraries and executables linked -+# against it. -+hardcode_automatic=$hardcode_automatic_CXX -+ -+# Set to yes if linker adds runtime paths of dependent libraries -+# to runtime path list. -+inherit_rpath=$inherit_rpath_CXX -+ -+# Whether libtool must link a program against all its dependency libraries. -+link_all_deplibs=$link_all_deplibs_CXX -+ -+# Fix the shell variable \$srcfile for the compiler. -+fix_srcfile_path=$lt_fix_srcfile_path_CXX -+ -+# Set to "yes" if exported symbols are required. -+always_export_symbols=$always_export_symbols_CXX -+ -+# The commands to list exported symbols. -+export_symbols_cmds=$lt_export_symbols_cmds_CXX -+ -+# Symbols that should not be listed in the preloaded symbols. -+exclude_expsyms=$lt_exclude_expsyms_CXX -+ -+# Symbols that must always be exported. -+include_expsyms=$lt_include_expsyms_CXX -+ -+# Commands necessary for linking programs (against libraries) with templates. -+prelink_cmds=$lt_prelink_cmds_CXX -+ -+# Specify filename containing input files. -+file_list_spec=$lt_file_list_spec_CXX -+ -+# How to hardcode a shared library path into an executable. -+hardcode_action=$hardcode_action_CXX -+ -+# The directories searched by this compiler when creating a shared library. -+compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX -+ -+# Dependencies to place before and after the objects being linked to -+# create a shared library. -+predep_objects=$lt_predep_objects_CXX -+postdep_objects=$lt_postdep_objects_CXX -+predeps=$lt_predeps_CXX -+postdeps=$lt_postdeps_CXX -+ -+# The library search path used internally by the compiler when linking -+# a shared library. -+compiler_lib_search_path=$lt_compiler_lib_search_path_CXX -+ -+# ### END LIBTOOL TAG CONFIG: CXX -+_LT_EOF -+ -+ ;; -+ "default-1":C) -+ for ac_file in $CONFIG_FILES; do -+ # Support "outfile[:infile[:infile...]]" -+ case "$ac_file" in -+ *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; -+ esac -+ # PO directories have a Makefile.in generated from Makefile.in.in. -+ case "$ac_file" in */Makefile.in) -+ # Adjust a relative srcdir. -+ ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` -+ ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'` -+ ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` -+ # In autoconf-2.13 it is called $ac_given_srcdir. -+ # In autoconf-2.50 it is called $srcdir. -+ test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" -+ case "$ac_given_srcdir" in -+ .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; -+ /*) top_srcdir="$ac_given_srcdir" ;; -+ *) top_srcdir="$ac_dots$ac_given_srcdir" ;; -+ esac -+ if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then -+ rm -f "$ac_dir/POTFILES" -+ test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" -+ cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" -+ POMAKEFILEDEPS="POTFILES.in" -+ # ALL_LINGUAS, POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES depend -+ # on $ac_dir but don't depend on user-specified configuration -+ # parameters. -+ if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then -+ # The LINGUAS file contains the set of available languages. -+ if test -n "$OBSOLETE_ALL_LINGUAS"; then -+ test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.ac is obsolete" || echo "setting ALL_LINGUAS in configure.ac is obsolete" -+ fi -+ ALL_LINGUAS_=`sed -e "/^#/d" "$ac_given_srcdir/$ac_dir/LINGUAS"` -+ # Hide the ALL_LINGUAS assigment from automake. -+ eval 'ALL_LINGUAS''=$ALL_LINGUAS_' -+ POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" -+ else -+ # The set of available languages was given in configure.ac. -+ eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' -+ fi -+ case "$ac_given_srcdir" in -+ .) srcdirpre= ;; -+ *) srcdirpre='$(srcdir)/' ;; -+ esac -+ POFILES= -+ GMOFILES= -+ UPDATEPOFILES= -+ DUMMYPOFILES= -+ for lang in $ALL_LINGUAS; do -+ POFILES="$POFILES $srcdirpre$lang.po" -+ GMOFILES="$GMOFILES $srcdirpre$lang.gmo" -+ UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" -+ DUMMYPOFILES="$DUMMYPOFILES $lang.nop" -+ done -+ # CATALOGS depends on both $ac_dir and the user's LINGUAS -+ # environment variable. -+ INST_LINGUAS= -+ if test -n "$ALL_LINGUAS"; then -+ for presentlang in $ALL_LINGUAS; do -+ useit=no -+ if test "%UNSET%" != "$LINGUAS"; then -+ desiredlanguages="$LINGUAS" -+ else -+ desiredlanguages="$ALL_LINGUAS" -+ fi -+ for desiredlang in $desiredlanguages; do -+ # Use the presentlang catalog if desiredlang is -+ # a. equal to presentlang, or -+ # b. a variant of presentlang (because in this case, -+ # presentlang can be used as a fallback for messages -+ # which are not translated in the desiredlang catalog). -+ case "$desiredlang" in -+ "$presentlang"*) useit=yes;; -+ esac -+ done -+ if test $useit = yes; then -+ INST_LINGUAS="$INST_LINGUAS $presentlang" -+ fi -+ done -+ fi -+ CATALOGS= -+ if test -n "$INST_LINGUAS"; then -+ for lang in $INST_LINGUAS; do -+ CATALOGS="$CATALOGS $lang.gmo" -+ done -+ fi -+ test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" -+ sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" -+ for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do -+ if test -f "$f"; then -+ case "$f" in -+ *.orig | *.bak | *~) ;; -+ *) cat "$f" >> "$ac_dir/Makefile" ;; -+ esac -+ fi -+ done -+ fi -+ ;; -+ esac -+ done ;; -+ "default":C) -+case "$srcdir" in -+ .) srcdirpre= ;; -+ *) srcdirpre='$(srcdir)/' ;; -+esac -+POFILES= -+GMOFILES= -+for lang in dummy $OBSOLETE_ALL_LINGUAS; do -+ if test $lang != dummy; then -+ POFILES="$POFILES $srcdirpre$lang.po" -+ GMOFILES="$GMOFILES $srcdirpre$lang.gmo" -+ fi -+done -+sed -e '/^SRC-POTFILES =/r po/SRC-POTFILES' \ -+ -e '/^BLD-POTFILES =/r po/BLD-POTFILES' \ -+ -e "s,@POFILES@,$POFILES," \ -+ -e "s,@GMOFILES@,$GMOFILES," \ -+ po/Makefile.in > po/Makefile ;; -+ -+ esac -+done # for ac_tag -+ -+ -+as_fn_exit 0 -+_ACEOF -+ac_clean_files=$ac_clean_files_save -+ -+test $ac_write_fail = 0 || -+ as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 -+ -+ -+# configure is writing to config.log, and then calls config.status. -+# config.status does its own redirection, appending to config.log. -+# Unfortunately, on DOS this fails, as config.log is still kept open -+# by configure, so config.status won't be able to write to it; its -+# output is simply discarded. So we exec the FD to /dev/null, -+# effectively closing config.log, so it can be properly (re)opened and -+# appended to by config.status. When coming back to configure, we -+# need to make the FD available again. -+if test "$no_create" != yes; then -+ ac_cs_success=: -+ ac_config_status_args= -+ test "$silent" = yes && -+ ac_config_status_args="$ac_config_status_args --quiet" -+ exec 5>/dev/null -+ $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false -+ exec 5>>config.log -+ # Use ||, not &&, to avoid exiting from the if with $? = 1, which -+ # would make configure fail if this is the last instruction. -+ $ac_cs_success || as_fn_exit 1 -+fi -+if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 -+$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} -+fi -+ -+ -+ -+touch config.status.tmp -+if touch --reference=config.status config.status.tmp > /dev/null 2>&1; then -+ sed '/as_fn_exit 0/i \ -+sed -e \"s/^\t\\\(\\\$(AM_V_CCLD)\\\)/\t+ \\\1/\" Makefile > Makefile.tmp \ -+touch --reference=Makefile Makefile.tmp \ -+mv Makefile.tmp Makefile \ -+' config.status > config.status.tmp -+ touch --reference=config.status config.status.tmp -+ mv config.status.tmp config.status -+ chmod +x config.status -+ sed -e "s/^\t\(\$(AM_V_CCLD)\)/\t+ \1/" Makefile > Makefile.tmp -+ touch --reference=Makefile Makefile.tmp -+ mv Makefile.tmp Makefile -+else -+ rm -f config.status.tmp -+fi -diff -ruN binutils-2.39/ld/autom4te.cache/requests binutils-2.39_banan/ld/autom4te.cache/requests ---- binutils-2.39/ld/autom4te.cache/requests 1970-01-01 02:00:00.000000000 +0200 -+++ binutils-2.39_banan/ld/autom4te.cache/requests 2023-04-05 21:25:27.057638473 +0300 -@@ -0,0 +1,80 @@ -+# This file was generated. -+# It contains the lists of macros which have been traced. -+# It can be safely removed. -+ -+@request = ( -+ bless( [ -+ '0', -+ 1, -+ [ -+ '/usr/share/autoconf' -+ ], -+ [ -+ '/usr/share/autoconf/autoconf/autoconf.m4f', -+ 'aclocal.m4', -+ 'configure.ac' -+ ], -+ { -+ 'AH_OUTPUT' => 1, -+ 'AM_MAKEFILE_INCLUDE' => 1, -+ '_AM_SUBST_NOTMAKE' => 1, -+ '_AM_COND_ENDIF' => 1, -+ '_m4_warn' => 1, -+ 'AC_CONFIG_FILES' => 1, -+ 'AM_PROG_F77_C_O' => 1, -+ 'AC_CANONICAL_SYSTEM' => 1, -+ 'LT_CONFIG_LTDL_DIR' => 1, -+ '_AM_COND_IF' => 1, -+ 'AM_PROG_FC_C_O' => 1, -+ 'AM_EXTRA_RECURSIVE_TARGETS' => 1, -+ 'AM_SILENT_RULES' => 1, -+ 'AM_MAINTAINER_MODE' => 1, -+ 'AC_FC_FREEFORM' => 1, -+ 'AM_NLS' => 1, -+ 'AC_PROG_LIBTOOL' => 1, -+ 'AC_REQUIRE_AUX_FILE' => 1, -+ 'AM_GNU_GETTEXT' => 1, -+ '_AM_MAKEFILE_INCLUDE' => 1, -+ 'AM_POT_TOOLS' => 1, -+ 'AC_FC_PP_SRCEXT' => 1, -+ 'AC_LIBSOURCE' => 1, -+ 'AC_SUBST' => 1, -+ 'AC_FC_PP_DEFINE' => 1, -+ 'AM_PROG_MKDIR_P' => 1, -+ 'AC_CANONICAL_TARGET' => 1, -+ 'AM_PROG_AR' => 1, -+ 'AC_CONFIG_HEADERS' => 1, -+ 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1, -+ 'sinclude' => 1, -+ 'AM_PATH_GUILE' => 1, -+ 'AM_INIT_AUTOMAKE' => 1, -+ 'AC_SUBST_TRACE' => 1, -+ 'LT_SUPPORTED_TAG' => 1, -+ 'm4_pattern_forbid' => 1, -+ 'AC_CONFIG_AUX_DIR' => 1, -+ 'AM_CONDITIONAL' => 1, -+ 'AC_CONFIG_LINKS' => 1, -+ 'm4_sinclude' => 1, -+ 'AM_PROG_MOC' => 1, -+ 'AM_ENABLE_MULTILIB' => 1, -+ 'AC_INIT' => 1, -+ 'AC_CANONICAL_BUILD' => 1, -+ 'AC_CONFIG_SUBDIRS' => 1, -+ 'AC_CANONICAL_HOST' => 1, -+ 'AM_AUTOMAKE_VERSION' => 1, -+ 'AM_PROG_CXX_C_O' => 1, -+ 'AC_CONFIG_LIBOBJ_DIR' => 1, -+ 'AC_FC_SRCEXT' => 1, -+ 'include' => 1, -+ 'm4_include' => 1, -+ 'AM_PROG_CC_C_O' => 1, -+ 'AM_XGETTEXT_OPTION' => 1, -+ 'AC_DEFINE_TRACE_LITERAL' => 1, -+ 'm4_pattern_allow' => 1, -+ '_LT_AC_TAGCONFIG' => 1, -+ '_AM_COND_ELSE' => 1, -+ 'LT_INIT' => 1 -+ } -+ ], 'Autom4te::Request' ) -+ ); -+ -diff -ruN binutils-2.39/ld/autom4te.cache/traces.0 binutils-2.39_banan/ld/autom4te.cache/traces.0 ---- binutils-2.39/ld/autom4te.cache/traces.0 1970-01-01 02:00:00.000000000 +0200 -+++ binutils-2.39_banan/ld/autom4te.cache/traces.0 2023-04-05 21:25:27.027638963 +0300 -@@ -0,0 +1,1135 @@ -+m4trace:aclocal.m4:1188: -1- m4_include([../bfd/acinclude.m4]) -+m4trace:aclocal.m4:1189: -1- m4_include([../bfd/warning.m4]) -+m4trace:aclocal.m4:1190: -1- m4_include([../config/acx.m4]) -+m4trace:aclocal.m4:1191: -1- m4_include([../config/bfd64.m4]) -+m4trace:aclocal.m4:1192: -1- m4_include([../config/depstand.m4]) -+m4trace:aclocal.m4:1193: -1- m4_include([../config/enable.m4]) -+m4trace:aclocal.m4:1194: -1- m4_include([../config/gettext-sister.m4]) -+m4trace:aclocal.m4:1195: -1- m4_include([../config/jobserver.m4]) -+m4trace:aclocal.m4:1196: -1- m4_include([../config/largefile.m4]) -+m4trace:aclocal.m4:1197: -1- m4_include([../config/lcmessage.m4]) -+m4trace:aclocal.m4:1198: -1- m4_include([../config/lead-dot.m4]) -+m4trace:aclocal.m4:1199: -1- m4_include([../config/nls.m4]) -+m4trace:aclocal.m4:1200: -1- m4_include([../config/override.m4]) -+m4trace:aclocal.m4:1201: -1- m4_include([../config/pkg.m4]) -+m4trace:aclocal.m4:1202: -1- m4_include([../config/plugins.m4]) -+m4trace:aclocal.m4:1203: -1- m4_include([../config/po.m4]) -+m4trace:aclocal.m4:1204: -1- m4_include([../config/progtest.m4]) -+m4trace:aclocal.m4:1205: -1- m4_include([../config/zlib.m4]) -+m4trace:aclocal.m4:1206: -1- m4_include([../libtool.m4]) -+m4trace:aclocal.m4:1207: -1- m4_include([../ltoptions.m4]) -+m4trace:aclocal.m4:1208: -1- m4_include([../ltsugar.m4]) -+m4trace:aclocal.m4:1209: -1- m4_include([../ltversion.m4]) -+m4trace:aclocal.m4:1210: -1- m4_include([../lt~obsolete.m4]) -+m4trace:configure.ac:20: -1- m4_include([../bfd/version.m4]) -+m4trace:configure.ac:21: -1- AC_INIT([ld], [2.39]) -+m4trace:configure.ac:21: -1- m4_pattern_forbid([^_?A[CHUM]_]) -+m4trace:configure.ac:21: -1- m4_pattern_forbid([_AC_]) -+m4trace:configure.ac:21: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS']) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^AS_FLAGS$]) -+m4trace:configure.ac:21: -1- m4_pattern_forbid([^_?m4_]) -+m4trace:configure.ac:21: -1- m4_pattern_forbid([^dnl$]) -+m4trace:configure.ac:21: -1- m4_pattern_forbid([^_?AS_]) -+m4trace:configure.ac:21: -1- AC_SUBST([SHELL]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([SHELL]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^SHELL$]) -+m4trace:configure.ac:21: -1- AC_SUBST([PATH_SEPARATOR]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([PATH_SEPARATOR]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^PATH_SEPARATOR$]) -+m4trace:configure.ac:21: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME], ['AC_PACKAGE_NAME'])]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([PACKAGE_NAME]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_NAME$]) -+m4trace:configure.ac:21: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME], ['AC_PACKAGE_TARNAME'])]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([PACKAGE_TARNAME]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) -+m4trace:configure.ac:21: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION], ['AC_PACKAGE_VERSION'])]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([PACKAGE_VERSION]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_VERSION$]) -+m4trace:configure.ac:21: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING], ['AC_PACKAGE_STRING'])]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([PACKAGE_STRING]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_STRING$]) -+m4trace:configure.ac:21: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([PACKAGE_BUGREPORT]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) -+m4trace:configure.ac:21: -1- AC_SUBST([PACKAGE_URL], [m4_ifdef([AC_PACKAGE_URL], ['AC_PACKAGE_URL'])]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([PACKAGE_URL]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_URL$]) -+m4trace:configure.ac:21: -1- AC_SUBST([exec_prefix], [NONE]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([exec_prefix]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^exec_prefix$]) -+m4trace:configure.ac:21: -1- AC_SUBST([prefix], [NONE]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([prefix]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^prefix$]) -+m4trace:configure.ac:21: -1- AC_SUBST([program_transform_name], [s,x,x,]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([program_transform_name]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^program_transform_name$]) -+m4trace:configure.ac:21: -1- AC_SUBST([bindir], ['${exec_prefix}/bin']) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([bindir]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^bindir$]) -+m4trace:configure.ac:21: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin']) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([sbindir]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^sbindir$]) -+m4trace:configure.ac:21: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec']) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([libexecdir]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^libexecdir$]) -+m4trace:configure.ac:21: -1- AC_SUBST([datarootdir], ['${prefix}/share']) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([datarootdir]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^datarootdir$]) -+m4trace:configure.ac:21: -1- AC_SUBST([datadir], ['${datarootdir}']) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([datadir]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^datadir$]) -+m4trace:configure.ac:21: -1- AC_SUBST([sysconfdir], ['${prefix}/etc']) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([sysconfdir]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^sysconfdir$]) -+m4trace:configure.ac:21: -1- AC_SUBST([sharedstatedir], ['${prefix}/com']) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([sharedstatedir]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^sharedstatedir$]) -+m4trace:configure.ac:21: -1- AC_SUBST([localstatedir], ['${prefix}/var']) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([localstatedir]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^localstatedir$]) -+m4trace:configure.ac:21: -1- AC_SUBST([includedir], ['${prefix}/include']) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([includedir]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^includedir$]) -+m4trace:configure.ac:21: -1- AC_SUBST([oldincludedir], ['/usr/include']) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([oldincludedir]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^oldincludedir$]) -+m4trace:configure.ac:21: -1- AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME], -+ ['${datarootdir}/doc/${PACKAGE_TARNAME}'], -+ ['${datarootdir}/doc/${PACKAGE}'])]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([docdir]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^docdir$]) -+m4trace:configure.ac:21: -1- AC_SUBST([infodir], ['${datarootdir}/info']) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([infodir]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^infodir$]) -+m4trace:configure.ac:21: -1- AC_SUBST([htmldir], ['${docdir}']) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([htmldir]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^htmldir$]) -+m4trace:configure.ac:21: -1- AC_SUBST([dvidir], ['${docdir}']) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([dvidir]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^dvidir$]) -+m4trace:configure.ac:21: -1- AC_SUBST([pdfdir], ['${docdir}']) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([pdfdir]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^pdfdir$]) -+m4trace:configure.ac:21: -1- AC_SUBST([psdir], ['${docdir}']) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([psdir]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^psdir$]) -+m4trace:configure.ac:21: -1- AC_SUBST([libdir], ['${exec_prefix}/lib']) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([libdir]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^libdir$]) -+m4trace:configure.ac:21: -1- AC_SUBST([localedir], ['${datarootdir}/locale']) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([localedir]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^localedir$]) -+m4trace:configure.ac:21: -1- AC_SUBST([mandir], ['${datarootdir}/man']) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([mandir]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^mandir$]) -+m4trace:configure.ac:21: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_NAME$]) -+m4trace:configure.ac:21: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */ -+@%:@undef PACKAGE_NAME]) -+m4trace:configure.ac:21: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) -+m4trace:configure.ac:21: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */ -+@%:@undef PACKAGE_TARNAME]) -+m4trace:configure.ac:21: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_VERSION$]) -+m4trace:configure.ac:21: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */ -+@%:@undef PACKAGE_VERSION]) -+m4trace:configure.ac:21: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_STRING$]) -+m4trace:configure.ac:21: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */ -+@%:@undef PACKAGE_STRING]) -+m4trace:configure.ac:21: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) -+m4trace:configure.ac:21: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */ -+@%:@undef PACKAGE_BUGREPORT]) -+m4trace:configure.ac:21: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_URL]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^PACKAGE_URL$]) -+m4trace:configure.ac:21: -1- AH_OUTPUT([PACKAGE_URL], [/* Define to the home page for this package. */ -+@%:@undef PACKAGE_URL]) -+m4trace:configure.ac:21: -1- AC_SUBST([DEFS]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([DEFS]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^DEFS$]) -+m4trace:configure.ac:21: -1- AC_SUBST([ECHO_C]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([ECHO_C]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^ECHO_C$]) -+m4trace:configure.ac:21: -1- AC_SUBST([ECHO_N]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([ECHO_N]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^ECHO_N$]) -+m4trace:configure.ac:21: -1- AC_SUBST([ECHO_T]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([ECHO_T]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^ECHO_T$]) -+m4trace:configure.ac:21: -1- AC_SUBST([LIBS]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([LIBS]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^LIBS$]) -+m4trace:configure.ac:21: -1- AC_SUBST([build_alias]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([build_alias]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^build_alias$]) -+m4trace:configure.ac:21: -1- AC_SUBST([host_alias]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([host_alias]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^host_alias$]) -+m4trace:configure.ac:21: -1- AC_SUBST([target_alias]) -+m4trace:configure.ac:21: -1- AC_SUBST_TRACE([target_alias]) -+m4trace:configure.ac:21: -1- m4_pattern_allow([^target_alias$]) -+m4trace:configure.ac:24: -1- AC_CANONICAL_TARGET -+m4trace:configure.ac:24: -1- AC_CANONICAL_HOST -+m4trace:configure.ac:24: -1- AC_CANONICAL_BUILD -+m4trace:configure.ac:24: -1- AC_REQUIRE_AUX_FILE([config.sub]) -+m4trace:configure.ac:24: -1- AC_REQUIRE_AUX_FILE([config.guess]) -+m4trace:configure.ac:24: -1- AC_SUBST([build], [$ac_cv_build]) -+m4trace:configure.ac:24: -1- AC_SUBST_TRACE([build]) -+m4trace:configure.ac:24: -1- m4_pattern_allow([^build$]) -+m4trace:configure.ac:24: -1- AC_SUBST([build_cpu], [$[1]]) -+m4trace:configure.ac:24: -1- AC_SUBST_TRACE([build_cpu]) -+m4trace:configure.ac:24: -1- m4_pattern_allow([^build_cpu$]) -+m4trace:configure.ac:24: -1- AC_SUBST([build_vendor], [$[2]]) -+m4trace:configure.ac:24: -1- AC_SUBST_TRACE([build_vendor]) -+m4trace:configure.ac:24: -1- m4_pattern_allow([^build_vendor$]) -+m4trace:configure.ac:24: -1- AC_SUBST([build_os]) -+m4trace:configure.ac:24: -1- AC_SUBST_TRACE([build_os]) -+m4trace:configure.ac:24: -1- m4_pattern_allow([^build_os$]) -+m4trace:configure.ac:24: -1- AC_SUBST([host], [$ac_cv_host]) -+m4trace:configure.ac:24: -1- AC_SUBST_TRACE([host]) -+m4trace:configure.ac:24: -1- m4_pattern_allow([^host$]) -+m4trace:configure.ac:24: -1- AC_SUBST([host_cpu], [$[1]]) -+m4trace:configure.ac:24: -1- AC_SUBST_TRACE([host_cpu]) -+m4trace:configure.ac:24: -1- m4_pattern_allow([^host_cpu$]) -+m4trace:configure.ac:24: -1- AC_SUBST([host_vendor], [$[2]]) -+m4trace:configure.ac:24: -1- AC_SUBST_TRACE([host_vendor]) -+m4trace:configure.ac:24: -1- m4_pattern_allow([^host_vendor$]) -+m4trace:configure.ac:24: -1- AC_SUBST([host_os]) -+m4trace:configure.ac:24: -1- AC_SUBST_TRACE([host_os]) -+m4trace:configure.ac:24: -1- m4_pattern_allow([^host_os$]) -+m4trace:configure.ac:24: -1- AC_SUBST([target], [$ac_cv_target]) -+m4trace:configure.ac:24: -1- AC_SUBST_TRACE([target]) -+m4trace:configure.ac:24: -1- m4_pattern_allow([^target$]) -+m4trace:configure.ac:24: -1- AC_SUBST([target_cpu], [$[1]]) -+m4trace:configure.ac:24: -1- AC_SUBST_TRACE([target_cpu]) -+m4trace:configure.ac:24: -1- m4_pattern_allow([^target_cpu$]) -+m4trace:configure.ac:24: -1- AC_SUBST([target_vendor], [$[2]]) -+m4trace:configure.ac:24: -1- AC_SUBST_TRACE([target_vendor]) -+m4trace:configure.ac:24: -1- m4_pattern_allow([^target_vendor$]) -+m4trace:configure.ac:24: -1- AC_SUBST([target_os]) -+m4trace:configure.ac:24: -1- AC_SUBST_TRACE([target_os]) -+m4trace:configure.ac:24: -1- m4_pattern_allow([^target_os$]) -+m4trace:configure.ac:25: -1- AC_CANONICAL_BUILD -+m4trace:configure.ac:27: -1- AM_INIT_AUTOMAKE -+m4trace:configure.ac:27: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$]) -+m4trace:configure.ac:27: -1- AM_AUTOMAKE_VERSION([1.15.1]) -+m4trace:configure.ac:27: -1- AC_REQUIRE_AUX_FILE([install-sh]) -+m4trace:configure.ac:27: -1- AC_SUBST([INSTALL_PROGRAM]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([INSTALL_PROGRAM]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^INSTALL_PROGRAM$]) -+m4trace:configure.ac:27: -1- AC_SUBST([INSTALL_SCRIPT]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([INSTALL_SCRIPT]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^INSTALL_SCRIPT$]) -+m4trace:configure.ac:27: -1- AC_SUBST([INSTALL_DATA]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([INSTALL_DATA]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^INSTALL_DATA$]) -+m4trace:configure.ac:27: -1- AC_SUBST([am__isrc], [' -I$(srcdir)']) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([am__isrc]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^am__isrc$]) -+m4trace:configure.ac:27: -1- _AM_SUBST_NOTMAKE([am__isrc]) -+m4trace:configure.ac:27: -1- AC_SUBST([CYGPATH_W]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([CYGPATH_W]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^CYGPATH_W$]) -+m4trace:configure.ac:27: -1- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME']) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([PACKAGE]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE$]) -+m4trace:configure.ac:27: -1- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION']) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([VERSION]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^VERSION$]) -+m4trace:configure.ac:27: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE$]) -+m4trace:configure.ac:27: -1- AH_OUTPUT([PACKAGE], [/* Name of package */ -+@%:@undef PACKAGE]) -+m4trace:configure.ac:27: -1- AC_DEFINE_TRACE_LITERAL([VERSION]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^VERSION$]) -+m4trace:configure.ac:27: -1- AH_OUTPUT([VERSION], [/* Version number of package */ -+@%:@undef VERSION]) -+m4trace:configure.ac:27: -1- AC_REQUIRE_AUX_FILE([missing]) -+m4trace:configure.ac:27: -1- AC_SUBST([ACLOCAL]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([ACLOCAL]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^ACLOCAL$]) -+m4trace:configure.ac:27: -1- AC_SUBST([AUTOCONF]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([AUTOCONF]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^AUTOCONF$]) -+m4trace:configure.ac:27: -1- AC_SUBST([AUTOMAKE]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([AUTOMAKE]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^AUTOMAKE$]) -+m4trace:configure.ac:27: -1- AC_SUBST([AUTOHEADER]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([AUTOHEADER]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^AUTOHEADER$]) -+m4trace:configure.ac:27: -1- AC_SUBST([MAKEINFO]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([MAKEINFO]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^MAKEINFO$]) -+m4trace:configure.ac:27: -1- AC_SUBST([install_sh]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([install_sh]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^install_sh$]) -+m4trace:configure.ac:27: -1- AC_SUBST([STRIP]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([STRIP]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^STRIP$]) -+m4trace:configure.ac:27: -1- AC_SUBST([INSTALL_STRIP_PROGRAM]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([INSTALL_STRIP_PROGRAM]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$]) -+m4trace:configure.ac:27: -1- AC_REQUIRE_AUX_FILE([install-sh]) -+m4trace:configure.ac:27: -1- AC_SUBST([MKDIR_P]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([MKDIR_P]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^MKDIR_P$]) -+m4trace:configure.ac:27: -1- AC_SUBST([mkdir_p], ['$(MKDIR_P)']) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([mkdir_p]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^mkdir_p$]) -+m4trace:configure.ac:27: -1- AC_SUBST([AWK]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([AWK]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^AWK$]) -+m4trace:configure.ac:27: -1- AC_SUBST([SET_MAKE]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([SET_MAKE]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^SET_MAKE$]) -+m4trace:configure.ac:27: -1- AC_SUBST([am__leading_dot]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([am__leading_dot]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^am__leading_dot$]) -+m4trace:configure.ac:27: -1- AC_SUBST([AMTAR], ['$${TAR-tar}']) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([AMTAR]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^AMTAR$]) -+m4trace:configure.ac:27: -1- AC_SUBST([am__tar]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([am__tar]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^am__tar$]) -+m4trace:configure.ac:27: -1- AC_SUBST([am__untar]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([am__untar]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^am__untar$]) -+m4trace:configure.ac:27: -1- AM_SILENT_RULES -+m4trace:configure.ac:27: -1- AC_SUBST([AM_V]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([AM_V]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^AM_V$]) -+m4trace:configure.ac:27: -1- _AM_SUBST_NOTMAKE([AM_V]) -+m4trace:configure.ac:27: -1- AC_SUBST([AM_DEFAULT_V]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([AM_DEFAULT_V]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^AM_DEFAULT_V$]) -+m4trace:configure.ac:27: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V]) -+m4trace:configure.ac:27: -1- AC_SUBST([AM_DEFAULT_VERBOSITY]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([AM_DEFAULT_VERBOSITY]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$]) -+m4trace:configure.ac:27: -1- AC_SUBST([AM_BACKSLASH]) -+m4trace:configure.ac:27: -1- AC_SUBST_TRACE([AM_BACKSLASH]) -+m4trace:configure.ac:27: -1- m4_pattern_allow([^AM_BACKSLASH$]) -+m4trace:configure.ac:27: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH]) -+m4trace:configure.ac:28: -1- AM_SILENT_RULES([yes]) -+m4trace:configure.ac:28: -1- AC_SUBST([AM_V]) -+m4trace:configure.ac:28: -1- AC_SUBST_TRACE([AM_V]) -+m4trace:configure.ac:28: -1- m4_pattern_allow([^AM_V$]) -+m4trace:configure.ac:28: -1- _AM_SUBST_NOTMAKE([AM_V]) -+m4trace:configure.ac:28: -1- AC_SUBST([AM_DEFAULT_V]) -+m4trace:configure.ac:28: -1- AC_SUBST_TRACE([AM_DEFAULT_V]) -+m4trace:configure.ac:28: -1- m4_pattern_allow([^AM_DEFAULT_V$]) -+m4trace:configure.ac:28: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V]) -+m4trace:configure.ac:28: -1- AC_SUBST([AM_DEFAULT_VERBOSITY]) -+m4trace:configure.ac:28: -1- AC_SUBST_TRACE([AM_DEFAULT_VERBOSITY]) -+m4trace:configure.ac:28: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$]) -+m4trace:configure.ac:28: -1- AC_SUBST([AM_BACKSLASH]) -+m4trace:configure.ac:28: -1- AC_SUBST_TRACE([AM_BACKSLASH]) -+m4trace:configure.ac:28: -1- m4_pattern_allow([^AM_BACKSLASH$]) -+m4trace:configure.ac:28: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH]) -+m4trace:configure.ac:29: -1- AM_MAINTAINER_MODE -+m4trace:configure.ac:29: -1- AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) -+m4trace:configure.ac:29: -1- AC_SUBST([MAINTAINER_MODE_TRUE]) -+m4trace:configure.ac:29: -1- AC_SUBST_TRACE([MAINTAINER_MODE_TRUE]) -+m4trace:configure.ac:29: -1- m4_pattern_allow([^MAINTAINER_MODE_TRUE$]) -+m4trace:configure.ac:29: -1- AC_SUBST([MAINTAINER_MODE_FALSE]) -+m4trace:configure.ac:29: -1- AC_SUBST_TRACE([MAINTAINER_MODE_FALSE]) -+m4trace:configure.ac:29: -1- m4_pattern_allow([^MAINTAINER_MODE_FALSE$]) -+m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_TRUE]) -+m4trace:configure.ac:29: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_FALSE]) -+m4trace:configure.ac:29: -1- AC_SUBST([MAINT]) -+m4trace:configure.ac:29: -1- AC_SUBST_TRACE([MAINT]) -+m4trace:configure.ac:29: -1- m4_pattern_allow([^MAINT$]) -+m4trace:configure.ac:31: -1- AC_SUBST([CC]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([CC]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^CC$]) -+m4trace:configure.ac:31: -1- AC_SUBST([CFLAGS]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([CFLAGS]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^CFLAGS$]) -+m4trace:configure.ac:31: -1- AC_SUBST([LDFLAGS]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([LDFLAGS]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^LDFLAGS$]) -+m4trace:configure.ac:31: -1- AC_SUBST([LIBS]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([LIBS]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^LIBS$]) -+m4trace:configure.ac:31: -1- AC_SUBST([CPPFLAGS]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([CPPFLAGS]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^CPPFLAGS$]) -+m4trace:configure.ac:31: -1- AC_SUBST([CC]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([CC]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^CC$]) -+m4trace:configure.ac:31: -1- AC_SUBST([CC]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([CC]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^CC$]) -+m4trace:configure.ac:31: -1- AC_SUBST([CC]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([CC]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^CC$]) -+m4trace:configure.ac:31: -1- AC_SUBST([CC]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([CC]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^CC$]) -+m4trace:configure.ac:31: -1- AC_SUBST([ac_ct_CC]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([ac_ct_CC]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^ac_ct_CC$]) -+m4trace:configure.ac:31: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([EXEEXT]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^EXEEXT$]) -+m4trace:configure.ac:31: -1- AC_SUBST([OBJEXT], [$ac_cv_objext]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([OBJEXT]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^OBJEXT$]) -+m4trace:configure.ac:31: -1- AC_REQUIRE_AUX_FILE([compile]) -+m4trace:configure.ac:31: -1- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([DEPDIR]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^DEPDIR$]) -+m4trace:configure.ac:31: -1- AC_SUBST([am__include]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([am__include]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^am__include$]) -+m4trace:configure.ac:31: -1- AC_SUBST([am__quote]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([am__quote]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^am__quote$]) -+m4trace:configure.ac:31: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) -+m4trace:configure.ac:31: -1- AC_SUBST([AMDEP_TRUE]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([AMDEP_TRUE]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^AMDEP_TRUE$]) -+m4trace:configure.ac:31: -1- AC_SUBST([AMDEP_FALSE]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([AMDEP_FALSE]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^AMDEP_FALSE$]) -+m4trace:configure.ac:31: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE]) -+m4trace:configure.ac:31: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE]) -+m4trace:configure.ac:31: -1- AC_SUBST([AMDEPBACKSLASH]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([AMDEPBACKSLASH]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^AMDEPBACKSLASH$]) -+m4trace:configure.ac:31: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH]) -+m4trace:configure.ac:31: -1- AC_SUBST([am__nodep]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([am__nodep]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^am__nodep$]) -+m4trace:configure.ac:31: -1- _AM_SUBST_NOTMAKE([am__nodep]) -+m4trace:configure.ac:31: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([CCDEPMODE]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^CCDEPMODE$]) -+m4trace:configure.ac:31: -1- AM_CONDITIONAL([am__fastdepCC], [ -+ test "x$enable_dependency_tracking" != xno \ -+ && test "$am_cv_CC_dependencies_compiler_type" = gcc3]) -+m4trace:configure.ac:31: -1- AC_SUBST([am__fastdepCC_TRUE]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^am__fastdepCC_TRUE$]) -+m4trace:configure.ac:31: -1- AC_SUBST([am__fastdepCC_FALSE]) -+m4trace:configure.ac:31: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE]) -+m4trace:configure.ac:31: -1- m4_pattern_allow([^am__fastdepCC_FALSE$]) -+m4trace:configure.ac:31: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE]) -+m4trace:configure.ac:31: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE]) -+m4trace:configure.ac:32: -1- AC_SUBST([CXX]) -+m4trace:configure.ac:32: -1- AC_SUBST_TRACE([CXX]) -+m4trace:configure.ac:32: -1- m4_pattern_allow([^CXX$]) -+m4trace:configure.ac:32: -1- AC_SUBST([CXXFLAGS]) -+m4trace:configure.ac:32: -1- AC_SUBST_TRACE([CXXFLAGS]) -+m4trace:configure.ac:32: -1- m4_pattern_allow([^CXXFLAGS$]) -+m4trace:configure.ac:32: -1- AC_SUBST([LDFLAGS]) -+m4trace:configure.ac:32: -1- AC_SUBST_TRACE([LDFLAGS]) -+m4trace:configure.ac:32: -1- m4_pattern_allow([^LDFLAGS$]) -+m4trace:configure.ac:32: -1- AC_SUBST([LIBS]) -+m4trace:configure.ac:32: -1- AC_SUBST_TRACE([LIBS]) -+m4trace:configure.ac:32: -1- m4_pattern_allow([^LIBS$]) -+m4trace:configure.ac:32: -1- AC_SUBST([CPPFLAGS]) -+m4trace:configure.ac:32: -1- AC_SUBST_TRACE([CPPFLAGS]) -+m4trace:configure.ac:32: -1- m4_pattern_allow([^CPPFLAGS$]) -+m4trace:configure.ac:32: -1- AC_SUBST([CXX]) -+m4trace:configure.ac:32: -1- AC_SUBST_TRACE([CXX]) -+m4trace:configure.ac:32: -1- m4_pattern_allow([^CXX$]) -+m4trace:configure.ac:32: -1- AC_SUBST([ac_ct_CXX]) -+m4trace:configure.ac:32: -1- AC_SUBST_TRACE([ac_ct_CXX]) -+m4trace:configure.ac:32: -1- m4_pattern_allow([^ac_ct_CXX$]) -+m4trace:configure.ac:32: -1- AC_SUBST([CXXDEPMODE], [depmode=$am_cv_CXX_dependencies_compiler_type]) -+m4trace:configure.ac:32: -1- AC_SUBST_TRACE([CXXDEPMODE]) -+m4trace:configure.ac:32: -1- m4_pattern_allow([^CXXDEPMODE$]) -+m4trace:configure.ac:32: -1- AM_CONDITIONAL([am__fastdepCXX], [ -+ test "x$enable_dependency_tracking" != xno \ -+ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3]) -+m4trace:configure.ac:32: -1- AC_SUBST([am__fastdepCXX_TRUE]) -+m4trace:configure.ac:32: -1- AC_SUBST_TRACE([am__fastdepCXX_TRUE]) -+m4trace:configure.ac:32: -1- m4_pattern_allow([^am__fastdepCXX_TRUE$]) -+m4trace:configure.ac:32: -1- AC_SUBST([am__fastdepCXX_FALSE]) -+m4trace:configure.ac:32: -1- AC_SUBST_TRACE([am__fastdepCXX_FALSE]) -+m4trace:configure.ac:32: -1- m4_pattern_allow([^am__fastdepCXX_FALSE$]) -+m4trace:configure.ac:32: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_TRUE]) -+m4trace:configure.ac:32: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_FALSE]) -+m4trace:configure.ac:33: -1- AC_SUBST([GREP]) -+m4trace:configure.ac:33: -1- AC_SUBST_TRACE([GREP]) -+m4trace:configure.ac:33: -1- m4_pattern_allow([^GREP$]) -+m4trace:configure.ac:34: -1- _m4_warn([obsolete], [The macro `AC_GNU_SOURCE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/specific.m4:314: AC_GNU_SOURCE is expanded from... -+configure.ac:34: the top level]) -+m4trace:configure.ac:34: -1- AC_SUBST([CPP]) -+m4trace:configure.ac:34: -1- AC_SUBST_TRACE([CPP]) -+m4trace:configure.ac:34: -1- m4_pattern_allow([^CPP$]) -+m4trace:configure.ac:34: -1- AC_SUBST([CPPFLAGS]) -+m4trace:configure.ac:34: -1- AC_SUBST_TRACE([CPPFLAGS]) -+m4trace:configure.ac:34: -1- m4_pattern_allow([^CPPFLAGS$]) -+m4trace:configure.ac:34: -1- AC_SUBST([CPP]) -+m4trace:configure.ac:34: -1- AC_SUBST_TRACE([CPP]) -+m4trace:configure.ac:34: -1- m4_pattern_allow([^CPP$]) -+m4trace:configure.ac:34: -1- AC_SUBST([EGREP]) -+m4trace:configure.ac:34: -1- AC_SUBST_TRACE([EGREP]) -+m4trace:configure.ac:34: -1- m4_pattern_allow([^EGREP$]) -+m4trace:configure.ac:34: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS]) -+m4trace:configure.ac:34: -1- m4_pattern_allow([^STDC_HEADERS$]) -+m4trace:configure.ac:34: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */ -+@%:@undef STDC_HEADERS]) -+m4trace:configure.ac:34: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_SYS_TYPES_H]) -+m4trace:configure.ac:34: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_SYS_STAT_H]) -+m4trace:configure.ac:34: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_STDLIB_H]) -+m4trace:configure.ac:34: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_STRING_H]) -+m4trace:configure.ac:34: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_MEMORY_H]) -+m4trace:configure.ac:34: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_STRINGS_H]) -+m4trace:configure.ac:34: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_INTTYPES_H]) -+m4trace:configure.ac:34: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_STDINT_H]) -+m4trace:configure.ac:34: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_UNISTD_H]) -+m4trace:configure.ac:34: -1- AC_DEFINE_TRACE_LITERAL([_POSIX_SOURCE]) -+m4trace:configure.ac:34: -1- m4_pattern_allow([^_POSIX_SOURCE$]) -+m4trace:configure.ac:34: -1- AH_OUTPUT([_POSIX_SOURCE], [/* Define to 1 if you need to in order for `stat\' and other things to work. */ -+@%:@undef _POSIX_SOURCE]) -+m4trace:configure.ac:34: -1- AC_DEFINE_TRACE_LITERAL([_POSIX_1_SOURCE]) -+m4trace:configure.ac:34: -1- m4_pattern_allow([^_POSIX_1_SOURCE$]) -+m4trace:configure.ac:34: -1- AH_OUTPUT([_POSIX_1_SOURCE], [/* Define to 2 if the system does not provide POSIX.1 features except with -+ this defined. */ -+@%:@undef _POSIX_1_SOURCE]) -+m4trace:configure.ac:34: -1- AC_DEFINE_TRACE_LITERAL([_MINIX]) -+m4trace:configure.ac:34: -1- m4_pattern_allow([^_MINIX$]) -+m4trace:configure.ac:34: -1- AH_OUTPUT([_MINIX], [/* Define to 1 if on MINIX. */ -+@%:@undef _MINIX]) -+m4trace:configure.ac:34: -1- AH_OUTPUT([USE_SYSTEM_EXTENSIONS], [/* Enable extensions on AIX 3, Interix. */ -+#ifndef _ALL_SOURCE -+# undef _ALL_SOURCE -+#endif -+/* Enable GNU extensions on systems that have them. */ -+#ifndef _GNU_SOURCE -+# undef _GNU_SOURCE -+#endif -+/* Enable threading extensions on Solaris. */ -+#ifndef _POSIX_PTHREAD_SEMANTICS -+# undef _POSIX_PTHREAD_SEMANTICS -+#endif -+/* Enable extensions on HP NonStop. */ -+#ifndef _TANDEM_SOURCE -+# undef _TANDEM_SOURCE -+#endif -+/* Enable general extensions on Solaris. */ -+#ifndef __EXTENSIONS__ -+# undef __EXTENSIONS__ -+#endif -+]) -+m4trace:configure.ac:34: -1- AC_DEFINE_TRACE_LITERAL([__EXTENSIONS__]) -+m4trace:configure.ac:34: -1- m4_pattern_allow([^__EXTENSIONS__$]) -+m4trace:configure.ac:34: -1- AC_DEFINE_TRACE_LITERAL([_ALL_SOURCE]) -+m4trace:configure.ac:34: -1- m4_pattern_allow([^_ALL_SOURCE$]) -+m4trace:configure.ac:34: -1- AC_DEFINE_TRACE_LITERAL([_GNU_SOURCE]) -+m4trace:configure.ac:34: -1- m4_pattern_allow([^_GNU_SOURCE$]) -+m4trace:configure.ac:34: -1- AC_DEFINE_TRACE_LITERAL([_POSIX_PTHREAD_SEMANTICS]) -+m4trace:configure.ac:34: -1- m4_pattern_allow([^_POSIX_PTHREAD_SEMANTICS$]) -+m4trace:configure.ac:34: -1- AC_DEFINE_TRACE_LITERAL([_TANDEM_SOURCE]) -+m4trace:configure.ac:34: -1- m4_pattern_allow([^_TANDEM_SOURCE$]) -+m4trace:configure.ac:38: -1- LT_INIT -+m4trace:configure.ac:38: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$]) -+m4trace:configure.ac:38: -1- AC_REQUIRE_AUX_FILE([ltmain.sh]) -+m4trace:configure.ac:38: -1- AC_SUBST([LIBTOOL]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([LIBTOOL]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^LIBTOOL$]) -+m4trace:configure.ac:38: -1- AC_SUBST([SED]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([SED]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^SED$]) -+m4trace:configure.ac:38: -1- AC_SUBST([FGREP]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([FGREP]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^FGREP$]) -+m4trace:configure.ac:38: -1- AC_SUBST([GREP]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([GREP]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^GREP$]) -+m4trace:configure.ac:38: -1- AC_SUBST([LD]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([LD]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^LD$]) -+m4trace:configure.ac:38: -1- AC_SUBST([DUMPBIN]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([DUMPBIN]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^DUMPBIN$]) -+m4trace:configure.ac:38: -1- AC_SUBST([ac_ct_DUMPBIN]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([ac_ct_DUMPBIN]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^ac_ct_DUMPBIN$]) -+m4trace:configure.ac:38: -1- AC_SUBST([DUMPBIN]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([DUMPBIN]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^DUMPBIN$]) -+m4trace:configure.ac:38: -1- AC_SUBST([NM]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([NM]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^NM$]) -+m4trace:configure.ac:38: -1- AC_SUBST([LN_S], [$as_ln_s]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([LN_S]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^LN_S$]) -+m4trace:configure.ac:38: -1- AC_SUBST([OBJDUMP]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([OBJDUMP]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^OBJDUMP$]) -+m4trace:configure.ac:38: -1- AC_SUBST([OBJDUMP]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([OBJDUMP]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^OBJDUMP$]) -+m4trace:configure.ac:38: -1- AC_SUBST([AR]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([AR]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^AR$]) -+m4trace:configure.ac:38: -1- AC_SUBST([STRIP]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([STRIP]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^STRIP$]) -+m4trace:configure.ac:38: -1- AC_SUBST([RANLIB]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([RANLIB]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^RANLIB$]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([LT_OBJDIR]) -+m4trace:configure.ac:38: -1- AC_DEFINE_TRACE_LITERAL([LT_OBJDIR]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^LT_OBJDIR$]) -+m4trace:configure.ac:38: -1- AH_OUTPUT([LT_OBJDIR], [/* Define to the sub-directory in which libtool stores uninstalled libraries. -+ */ -+@%:@undef LT_OBJDIR]) -+m4trace:configure.ac:38: -1- LT_SUPPORTED_TAG([CC]) -+m4trace:configure.ac:38: -1- AC_SUBST([DSYMUTIL]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([DSYMUTIL]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^DSYMUTIL$]) -+m4trace:configure.ac:38: -1- AC_SUBST([NMEDIT]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([NMEDIT]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^NMEDIT$]) -+m4trace:configure.ac:38: -1- AC_SUBST([LIPO]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([LIPO]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^LIPO$]) -+m4trace:configure.ac:38: -1- AC_SUBST([OTOOL]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([OTOOL]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^OTOOL$]) -+m4trace:configure.ac:38: -1- AC_SUBST([OTOOL64]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([OTOOL64]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^OTOOL64$]) -+m4trace:configure.ac:38: -1- AH_OUTPUT([HAVE_DLFCN_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_DLFCN_H]) -+m4trace:configure.ac:38: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DLFCN_H]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^HAVE_DLFCN_H$]) -+m4trace:configure.ac:38: -1- LT_SUPPORTED_TAG([CXX]) -+m4trace:configure.ac:38: -1- AC_SUBST([CXXCPP]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([CXXCPP]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^CXXCPP$]) -+m4trace:configure.ac:38: -1- AC_SUBST([CPPFLAGS]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([CPPFLAGS]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^CPPFLAGS$]) -+m4trace:configure.ac:38: -1- AC_SUBST([CXXCPP]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([CXXCPP]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^CXXCPP$]) -+m4trace:configure.ac:38: -1- AC_SUBST([LD]) -+m4trace:configure.ac:38: -1- AC_SUBST_TRACE([LD]) -+m4trace:configure.ac:38: -1- m4_pattern_allow([^LD$]) -+m4trace:configure.ac:39: -1- AH_OUTPUT([HAVE_DLFCN_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_DLFCN_H]) -+m4trace:configure.ac:39: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DLFCN_H]) -+m4trace:configure.ac:39: -1- m4_pattern_allow([^HAVE_DLFCN_H$]) -+m4trace:configure.ac:39: -1- AH_OUTPUT([HAVE_WINDOWS_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_WINDOWS_H]) -+m4trace:configure.ac:39: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WINDOWS_H]) -+m4trace:configure.ac:39: -1- m4_pattern_allow([^HAVE_WINDOWS_H$]) -+m4trace:configure.ac:39: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/largefile.m4:6: ACX_LARGEFILE is expanded from... -+configure.ac:39: the top level]) -+m4trace:configure.ac:39: -1- AC_SUBST([LARGEFILE_CPPFLAGS]) -+m4trace:configure.ac:39: -1- AC_SUBST_TRACE([LARGEFILE_CPPFLAGS]) -+m4trace:configure.ac:39: -1- m4_pattern_allow([^LARGEFILE_CPPFLAGS$]) -+m4trace:configure.ac:39: -1- AC_DEFINE_TRACE_LITERAL([_FILE_OFFSET_BITS]) -+m4trace:configure.ac:39: -1- m4_pattern_allow([^_FILE_OFFSET_BITS$]) -+m4trace:configure.ac:39: -1- AH_OUTPUT([_FILE_OFFSET_BITS], [/* Number of bits in a file offset, on hosts where this is settable. */ -+@%:@undef _FILE_OFFSET_BITS]) -+m4trace:configure.ac:39: -1- AC_DEFINE_TRACE_LITERAL([_LARGE_FILES]) -+m4trace:configure.ac:39: -1- m4_pattern_allow([^_LARGE_FILES$]) -+m4trace:configure.ac:39: -1- AH_OUTPUT([_LARGE_FILES], [/* Define for large files, on AIX-style hosts. */ -+@%:@undef _LARGE_FILES]) -+m4trace:configure.ac:39: -1- AH_OUTPUT([_DARWIN_USE_64_BIT_INODE], [/* Enable large inode numbers on Mac OS X 10.5. */ -+#ifndef _DARWIN_USE_64_BIT_INODE -+# define _DARWIN_USE_64_BIT_INODE 1 -+#endif]) -+m4trace:configure.ac:51: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_CHECKING]) -+m4trace:configure.ac:51: -1- m4_pattern_allow([^ENABLE_CHECKING$]) -+m4trace:configure.ac:51: -1- AH_OUTPUT([ENABLE_CHECKING], [/* Define if you want run-time sanity checks. */ -+@%:@undef ENABLE_CHECKING]) -+m4trace:configure.ac:64: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_VOID_P]) -+m4trace:configure.ac:64: -1- m4_pattern_allow([^SIZEOF_VOID_P$]) -+m4trace:configure.ac:64: -1- AH_OUTPUT([SIZEOF_VOID_P], [/* The size of `void *\', as computed by sizeof. */ -+@%:@undef SIZEOF_VOID_P]) -+m4trace:configure.ac:64: -1- AM_CONDITIONAL([ENABLE_BFD_64_BIT], [test "x$enable_64_bit_bfd" = "xyes"]) -+m4trace:configure.ac:64: -1- AC_SUBST([ENABLE_BFD_64_BIT_TRUE]) -+m4trace:configure.ac:64: -1- AC_SUBST_TRACE([ENABLE_BFD_64_BIT_TRUE]) -+m4trace:configure.ac:64: -1- m4_pattern_allow([^ENABLE_BFD_64_BIT_TRUE$]) -+m4trace:configure.ac:64: -1- AC_SUBST([ENABLE_BFD_64_BIT_FALSE]) -+m4trace:configure.ac:64: -1- AC_SUBST_TRACE([ENABLE_BFD_64_BIT_FALSE]) -+m4trace:configure.ac:64: -1- m4_pattern_allow([^ENABLE_BFD_64_BIT_FALSE$]) -+m4trace:configure.ac:64: -1- _AM_SUBST_NOTMAKE([ENABLE_BFD_64_BIT_TRUE]) -+m4trace:configure.ac:64: -1- _AM_SUBST_NOTMAKE([ENABLE_BFD_64_BIT_FALSE]) -+m4trace:configure.ac:101: -1- AC_SUBST([use_sysroot]) -+m4trace:configure.ac:101: -1- AC_SUBST_TRACE([use_sysroot]) -+m4trace:configure.ac:101: -1- m4_pattern_allow([^use_sysroot$]) -+m4trace:configure.ac:102: -1- AC_SUBST([TARGET_SYSTEM_ROOT]) -+m4trace:configure.ac:102: -1- AC_SUBST_TRACE([TARGET_SYSTEM_ROOT]) -+m4trace:configure.ac:102: -1- m4_pattern_allow([^TARGET_SYSTEM_ROOT$]) -+m4trace:configure.ac:103: -1- AC_SUBST([TARGET_SYSTEM_ROOT_DEFINE]) -+m4trace:configure.ac:103: -1- AC_SUBST_TRACE([TARGET_SYSTEM_ROOT_DEFINE]) -+m4trace:configure.ac:103: -1- m4_pattern_allow([^TARGET_SYSTEM_ROOT_DEFINE$]) -+m4trace:configure.ac:125: -1- AC_SUBST([install_as_default]) -+m4trace:configure.ac:125: -1- AC_SUBST_TRACE([install_as_default]) -+m4trace:configure.ac:125: -1- m4_pattern_allow([^install_as_default$]) -+m4trace:configure.ac:126: -1- AC_SUBST([installed_linker]) -+m4trace:configure.ac:126: -1- AC_SUBST_TRACE([installed_linker]) -+m4trace:configure.ac:126: -1- m4_pattern_allow([^installed_linker$]) -+m4trace:configure.ac:139: -1- AC_DEFINE_TRACE_LITERAL([GOT_HANDLING_DEFAULT]) -+m4trace:configure.ac:139: -1- m4_pattern_allow([^GOT_HANDLING_DEFAULT$]) -+m4trace:configure.ac:139: -1- AH_OUTPUT([GOT_HANDLING_DEFAULT], [/* Define to choose default GOT handling scheme */ -+@%:@undef GOT_HANDLING_DEFAULT]) -+m4trace:configure.ac:142: -1- AC_DEFINE_TRACE_LITERAL([GOT_HANDLING_DEFAULT]) -+m4trace:configure.ac:142: -1- m4_pattern_allow([^GOT_HANDLING_DEFAULT$]) -+m4trace:configure.ac:142: -1- AH_OUTPUT([GOT_HANDLING_DEFAULT], [/* Define to choose default GOT handling scheme */ -+@%:@undef GOT_HANDLING_DEFAULT]) -+m4trace:configure.ac:145: -1- AC_DEFINE_TRACE_LITERAL([GOT_HANDLING_DEFAULT]) -+m4trace:configure.ac:145: -1- m4_pattern_allow([^GOT_HANDLING_DEFAULT$]) -+m4trace:configure.ac:145: -1- AH_OUTPUT([GOT_HANDLING_DEFAULT], [/* Define to choose default GOT handling scheme */ -+@%:@undef GOT_HANDLING_DEFAULT]) -+m4trace:configure.ac:148: -1- AC_DEFINE_TRACE_LITERAL([GOT_HANDLING_DEFAULT]) -+m4trace:configure.ac:148: -1- m4_pattern_allow([^GOT_HANDLING_DEFAULT$]) -+m4trace:configure.ac:148: -1- AH_OUTPUT([GOT_HANDLING_DEFAULT], [/* Define to choose default GOT handling scheme */ -+@%:@undef GOT_HANDLING_DEFAULT]) -+m4trace:configure.ac:190: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+configure.ac:190: the top level]) -+m4trace:configure.ac:279: -1- AC_SUBST([enable_initfini_array]) -+m4trace:configure.ac:279: -1- AC_SUBST_TRACE([enable_initfini_array]) -+m4trace:configure.ac:279: -1- m4_pattern_allow([^enable_initfini_array$]) -+m4trace:configure.ac:281: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INITFINI_ARRAY]) -+m4trace:configure.ac:281: -1- m4_pattern_allow([^HAVE_INITFINI_ARRAY$]) -+m4trace:configure.ac:281: -1- AH_OUTPUT([HAVE_INITFINI_ARRAY], [/* Define .init_array/.fini_array sections are available and working. */ -+@%:@undef HAVE_INITFINI_ARRAY]) -+m4trace:configure.ac:285: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+../config/enable.m4:12: GCC_ENABLE is expanded from... -+configure.ac:285: the top level]) -+m4trace:configure.ac:287: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_LIBCTF]) -+m4trace:configure.ac:287: -1- m4_pattern_allow([^ENABLE_LIBCTF$]) -+m4trace:configure.ac:287: -1- AH_OUTPUT([ENABLE_LIBCTF], [/* Handle .ctf type-info sections */ -+@%:@undef ENABLE_LIBCTF]) -+m4trace:configure.ac:289: -1- AM_CONDITIONAL([ENABLE_LIBCTF], [test "${enable_libctf}" = yes]) -+m4trace:configure.ac:289: -1- AC_SUBST([ENABLE_LIBCTF_TRUE]) -+m4trace:configure.ac:289: -1- AC_SUBST_TRACE([ENABLE_LIBCTF_TRUE]) -+m4trace:configure.ac:289: -1- m4_pattern_allow([^ENABLE_LIBCTF_TRUE$]) -+m4trace:configure.ac:289: -1- AC_SUBST([ENABLE_LIBCTF_FALSE]) -+m4trace:configure.ac:289: -1- AC_SUBST_TRACE([ENABLE_LIBCTF_FALSE]) -+m4trace:configure.ac:289: -1- m4_pattern_allow([^ENABLE_LIBCTF_FALSE$]) -+m4trace:configure.ac:289: -1- _AM_SUBST_NOTMAKE([ENABLE_LIBCTF_TRUE]) -+m4trace:configure.ac:289: -1- _AM_SUBST_NOTMAKE([ENABLE_LIBCTF_FALSE]) -+m4trace:configure.ac:290: -1- AC_SUBST([enable_libctf]) -+m4trace:configure.ac:290: -1- AC_SUBST_TRACE([enable_libctf]) -+m4trace:configure.ac:290: -1- m4_pattern_allow([^enable_libctf$]) -+m4trace:configure.ac:300: -1- m4_pattern_forbid([^_?PKG_[A-Z_]+$]) -+m4trace:configure.ac:300: -1- m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) -+m4trace:configure.ac:300: -1- m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) -+m4trace:configure.ac:300: -1- AC_SUBST([PKG_CONFIG]) -+m4trace:configure.ac:300: -1- AC_SUBST_TRACE([PKG_CONFIG]) -+m4trace:configure.ac:300: -1- m4_pattern_allow([^PKG_CONFIG$]) -+m4trace:configure.ac:300: -1- AC_SUBST([PKG_CONFIG_PATH]) -+m4trace:configure.ac:300: -1- AC_SUBST_TRACE([PKG_CONFIG_PATH]) -+m4trace:configure.ac:300: -1- m4_pattern_allow([^PKG_CONFIG_PATH$]) -+m4trace:configure.ac:300: -1- AC_SUBST([PKG_CONFIG_LIBDIR]) -+m4trace:configure.ac:300: -1- AC_SUBST_TRACE([PKG_CONFIG_LIBDIR]) -+m4trace:configure.ac:300: -1- m4_pattern_allow([^PKG_CONFIG_LIBDIR$]) -+m4trace:configure.ac:300: -1- AC_SUBST([PKG_CONFIG]) -+m4trace:configure.ac:300: -1- AC_SUBST_TRACE([PKG_CONFIG]) -+m4trace:configure.ac:300: -1- m4_pattern_allow([^PKG_CONFIG$]) -+m4trace:configure.ac:301: -1- AC_SUBST([JANSSON_CFLAGS]) -+m4trace:configure.ac:301: -1- AC_SUBST_TRACE([JANSSON_CFLAGS]) -+m4trace:configure.ac:301: -1- m4_pattern_allow([^JANSSON_CFLAGS$]) -+m4trace:configure.ac:301: -1- AC_SUBST([JANSSON_LIBS]) -+m4trace:configure.ac:301: -1- AC_SUBST_TRACE([JANSSON_LIBS]) -+m4trace:configure.ac:301: -1- m4_pattern_allow([^JANSSON_LIBS$]) -+m4trace:configure.ac:301: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/pkg.m4:139: PKG_CHECK_MODULES is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+configure.ac:301: the top level]) -+m4trace:configure.ac:301: -1- AC_DEFINE_TRACE_LITERAL([HAVE_JANSSON]) -+m4trace:configure.ac:301: -1- m4_pattern_allow([^HAVE_JANSSON$]) -+m4trace:configure.ac:301: -1- AH_OUTPUT([HAVE_JANSSON], [/* The jansson library is to be used */ -+@%:@undef HAVE_JANSSON]) -+m4trace:configure.ac:301: -1- AC_SUBST([JANSSON_CFLAGS]) -+m4trace:configure.ac:301: -1- AC_SUBST_TRACE([JANSSON_CFLAGS]) -+m4trace:configure.ac:301: -1- m4_pattern_allow([^JANSSON_CFLAGS$]) -+m4trace:configure.ac:301: -1- AC_SUBST([JANSSON_LIBS]) -+m4trace:configure.ac:301: -1- AC_SUBST_TRACE([JANSSON_LIBS]) -+m4trace:configure.ac:301: -1- m4_pattern_allow([^JANSSON_LIBS$]) -+m4trace:configure.ac:318: -1- AC_SUBST([WARN_CFLAGS]) -+m4trace:configure.ac:318: -1- AC_SUBST_TRACE([WARN_CFLAGS]) -+m4trace:configure.ac:318: -1- m4_pattern_allow([^WARN_CFLAGS$]) -+m4trace:configure.ac:318: -1- AC_SUBST([WARN_CFLAGS_FOR_BUILD]) -+m4trace:configure.ac:318: -1- AC_SUBST_TRACE([WARN_CFLAGS_FOR_BUILD]) -+m4trace:configure.ac:318: -1- m4_pattern_allow([^WARN_CFLAGS_FOR_BUILD$]) -+m4trace:configure.ac:318: -1- AC_SUBST([NO_WERROR]) -+m4trace:configure.ac:318: -1- AC_SUBST_TRACE([NO_WERROR]) -+m4trace:configure.ac:318: -1- m4_pattern_allow([^NO_WERROR$]) -+m4trace:configure.ac:318: -1- AC_SUBST([WARN_WRITE_STRINGS]) -+m4trace:configure.ac:318: -1- AC_SUBST_TRACE([WARN_WRITE_STRINGS]) -+m4trace:configure.ac:318: -1- m4_pattern_allow([^WARN_WRITE_STRINGS$]) -+m4trace:configure.ac:320: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+../config/lcmessage.m4:23: AM_LC_MESSAGES is expanded from... -+configure.ac:320: the top level]) -+m4trace:configure.ac:320: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LC_MESSAGES]) -+m4trace:configure.ac:320: -1- m4_pattern_allow([^HAVE_LC_MESSAGES$]) -+m4trace:configure.ac:320: -1- AH_OUTPUT([HAVE_LC_MESSAGES], [/* Define if your file defines LC_MESSAGES. */ -+@%:@undef HAVE_LC_MESSAGES]) -+m4trace:configure.ac:322: -1- AC_CONFIG_HEADERS([config.h:config.in]) -+m4trace:configure.ac:325: -1- AH_OUTPUT([00_CONFIG_H_CHECK], [/* Check that config.h is #included before system headers -+ (this works only for glibc, but that should be enough). */ -+#if defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__CONFIG_H__) -+# error config.h must be #included before system headers -+#endif -+#define __CONFIG_H__ 1]) -+m4trace:configure.ac:343: -1- AC_SUBST([USE_NLS]) -+m4trace:configure.ac:343: -1- AC_SUBST_TRACE([USE_NLS]) -+m4trace:configure.ac:343: -1- m4_pattern_allow([^USE_NLS$]) -+m4trace:configure.ac:343: -1- AC_SUBST([LIBINTL]) -+m4trace:configure.ac:343: -1- AC_SUBST_TRACE([LIBINTL]) -+m4trace:configure.ac:343: -1- m4_pattern_allow([^LIBINTL$]) -+m4trace:configure.ac:343: -1- AC_SUBST([LIBINTL_DEP]) -+m4trace:configure.ac:343: -1- AC_SUBST_TRACE([LIBINTL_DEP]) -+m4trace:configure.ac:343: -1- m4_pattern_allow([^LIBINTL_DEP$]) -+m4trace:configure.ac:343: -1- AC_SUBST([INCINTL]) -+m4trace:configure.ac:343: -1- AC_SUBST_TRACE([INCINTL]) -+m4trace:configure.ac:343: -1- m4_pattern_allow([^INCINTL$]) -+m4trace:configure.ac:343: -1- AC_SUBST([XGETTEXT]) -+m4trace:configure.ac:343: -1- AC_SUBST_TRACE([XGETTEXT]) -+m4trace:configure.ac:343: -1- m4_pattern_allow([^XGETTEXT$]) -+m4trace:configure.ac:343: -1- AC_SUBST([GMSGFMT]) -+m4trace:configure.ac:343: -1- AC_SUBST_TRACE([GMSGFMT]) -+m4trace:configure.ac:343: -1- m4_pattern_allow([^GMSGFMT$]) -+m4trace:configure.ac:343: -1- AC_SUBST([POSUB]) -+m4trace:configure.ac:343: -1- AC_SUBST_TRACE([POSUB]) -+m4trace:configure.ac:343: -1- m4_pattern_allow([^POSUB$]) -+m4trace:configure.ac:343: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_NLS]) -+m4trace:configure.ac:343: -1- m4_pattern_allow([^ENABLE_NLS$]) -+m4trace:configure.ac:343: -1- AH_OUTPUT([ENABLE_NLS], [/* Define to 1 if translation of program messages to the user\'s native -+ language is requested. */ -+@%:@undef ENABLE_NLS]) -+m4trace:configure.ac:343: -1- AC_SUBST([CATALOGS]) -+m4trace:configure.ac:343: -1- AC_SUBST_TRACE([CATALOGS]) -+m4trace:configure.ac:343: -1- m4_pattern_allow([^CATALOGS$]) -+m4trace:configure.ac:343: -1- AC_SUBST([DATADIRNAME]) -+m4trace:configure.ac:343: -1- AC_SUBST_TRACE([DATADIRNAME]) -+m4trace:configure.ac:343: -1- m4_pattern_allow([^DATADIRNAME$]) -+m4trace:configure.ac:343: -1- AC_SUBST([INSTOBJEXT]) -+m4trace:configure.ac:343: -1- AC_SUBST_TRACE([INSTOBJEXT]) -+m4trace:configure.ac:343: -1- m4_pattern_allow([^INSTOBJEXT$]) -+m4trace:configure.ac:343: -1- AC_SUBST([GENCAT]) -+m4trace:configure.ac:343: -1- AC_SUBST_TRACE([GENCAT]) -+m4trace:configure.ac:343: -1- m4_pattern_allow([^GENCAT$]) -+m4trace:configure.ac:343: -1- AC_SUBST([CATOBJEXT]) -+m4trace:configure.ac:343: -1- AC_SUBST_TRACE([CATOBJEXT]) -+m4trace:configure.ac:343: -1- m4_pattern_allow([^CATOBJEXT$]) -+m4trace:configure.ac:344: -1- AC_SUBST([MKINSTALLDIRS]) -+m4trace:configure.ac:344: -1- AC_SUBST_TRACE([MKINSTALLDIRS]) -+m4trace:configure.ac:344: -1- m4_pattern_allow([^MKINSTALLDIRS$]) -+m4trace:configure.ac:344: -1- AM_NLS -+m4trace:configure.ac:344: -1- AC_SUBST([USE_NLS]) -+m4trace:configure.ac:344: -1- AC_SUBST_TRACE([USE_NLS]) -+m4trace:configure.ac:344: -1- m4_pattern_allow([^USE_NLS$]) -+m4trace:configure.ac:344: -1- AC_SUBST([MSGFMT]) -+m4trace:configure.ac:344: -1- AC_SUBST_TRACE([MSGFMT]) -+m4trace:configure.ac:344: -1- m4_pattern_allow([^MSGFMT$]) -+m4trace:configure.ac:344: -1- AC_SUBST([GMSGFMT]) -+m4trace:configure.ac:344: -1- AC_SUBST_TRACE([GMSGFMT]) -+m4trace:configure.ac:344: -1- m4_pattern_allow([^GMSGFMT$]) -+m4trace:configure.ac:344: -1- AC_SUBST([XGETTEXT]) -+m4trace:configure.ac:344: -1- AC_SUBST_TRACE([XGETTEXT]) -+m4trace:configure.ac:344: -1- m4_pattern_allow([^XGETTEXT$]) -+m4trace:configure.ac:344: -1- AC_SUBST([MSGMERGE]) -+m4trace:configure.ac:344: -1- AC_SUBST_TRACE([MSGMERGE]) -+m4trace:configure.ac:344: -1- m4_pattern_allow([^MSGMERGE$]) -+m4trace:configure.ac:344: -1- _m4_warn([obsolete], [The macro `AC_OUTPUT_COMMANDS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/status.m4:1026: AC_OUTPUT_COMMANDS is expanded from... -+../config/po.m4:23: AM_PO_SUBDIRS is expanded from... -+configure.ac:344: the top level]) -+m4trace:configure.ac:348: -1- AC_SUBST([YACC]) -+m4trace:configure.ac:348: -1- AC_SUBST_TRACE([YACC]) -+m4trace:configure.ac:348: -1- m4_pattern_allow([^YACC$]) -+m4trace:configure.ac:348: -1- AC_SUBST([YACC]) -+m4trace:configure.ac:348: -1- AC_SUBST_TRACE([YACC]) -+m4trace:configure.ac:348: -1- m4_pattern_allow([^YACC$]) -+m4trace:configure.ac:348: -1- AC_SUBST([YFLAGS]) -+m4trace:configure.ac:348: -1- AC_SUBST_TRACE([YFLAGS]) -+m4trace:configure.ac:348: -1- m4_pattern_allow([^YFLAGS$]) -+m4trace:configure.ac:349: -1- AC_SUBST([LEX]) -+m4trace:configure.ac:349: -1- AC_SUBST_TRACE([LEX]) -+m4trace:configure.ac:349: -1- m4_pattern_allow([^LEX$]) -+m4trace:configure.ac:349: -1- AC_SUBST([LEX_OUTPUT_ROOT], [$ac_cv_prog_lex_root]) -+m4trace:configure.ac:349: -1- AC_SUBST_TRACE([LEX_OUTPUT_ROOT]) -+m4trace:configure.ac:349: -1- m4_pattern_allow([^LEX_OUTPUT_ROOT$]) -+m4trace:configure.ac:349: -1- AC_SUBST([LEXLIB]) -+m4trace:configure.ac:349: -1- AC_SUBST_TRACE([LEXLIB]) -+m4trace:configure.ac:349: -1- m4_pattern_allow([^LEXLIB$]) -+m4trace:configure.ac:349: -1- AC_DEFINE_TRACE_LITERAL([YYTEXT_POINTER]) -+m4trace:configure.ac:349: -1- m4_pattern_allow([^YYTEXT_POINTER$]) -+m4trace:configure.ac:349: -1- AH_OUTPUT([YYTEXT_POINTER], [/* Define to 1 if `lex\' declares `yytext\' as a `char *\' by default, not a -+ `char@<:@@:>@\'. */ -+@%:@undef YYTEXT_POINTER]) -+m4trace:configure.ac:351: -1- AM_MAINTAINER_MODE -+m4trace:configure.ac:351: -1- AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) -+m4trace:configure.ac:351: -1- AC_SUBST([MAINTAINER_MODE_TRUE]) -+m4trace:configure.ac:351: -1- AC_SUBST_TRACE([MAINTAINER_MODE_TRUE]) -+m4trace:configure.ac:351: -1- m4_pattern_allow([^MAINTAINER_MODE_TRUE$]) -+m4trace:configure.ac:351: -1- AC_SUBST([MAINTAINER_MODE_FALSE]) -+m4trace:configure.ac:351: -1- AC_SUBST_TRACE([MAINTAINER_MODE_FALSE]) -+m4trace:configure.ac:351: -1- m4_pattern_allow([^MAINTAINER_MODE_FALSE$]) -+m4trace:configure.ac:351: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_TRUE]) -+m4trace:configure.ac:351: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_FALSE]) -+m4trace:configure.ac:351: -1- AC_SUBST([MAINT]) -+m4trace:configure.ac:351: -1- AC_SUBST_TRACE([MAINT]) -+m4trace:configure.ac:351: -1- m4_pattern_allow([^MAINT$]) -+m4trace:configure.ac:352: -1- AM_CONDITIONAL([GENINSRC_NEVER], [false]) -+m4trace:configure.ac:352: -1- AC_SUBST([GENINSRC_NEVER_TRUE]) -+m4trace:configure.ac:352: -1- AC_SUBST_TRACE([GENINSRC_NEVER_TRUE]) -+m4trace:configure.ac:352: -1- m4_pattern_allow([^GENINSRC_NEVER_TRUE$]) -+m4trace:configure.ac:352: -1- AC_SUBST([GENINSRC_NEVER_FALSE]) -+m4trace:configure.ac:352: -1- AC_SUBST_TRACE([GENINSRC_NEVER_FALSE]) -+m4trace:configure.ac:352: -1- m4_pattern_allow([^GENINSRC_NEVER_FALSE$]) -+m4trace:configure.ac:352: -1- _AM_SUBST_NOTMAKE([GENINSRC_NEVER_TRUE]) -+m4trace:configure.ac:352: -1- _AM_SUBST_NOTMAKE([GENINSRC_NEVER_FALSE]) -+m4trace:configure.ac:353: -1- AC_SUBST([do_compare]) -+m4trace:configure.ac:353: -1- AC_SUBST_TRACE([do_compare]) -+m4trace:configure.ac:353: -1- m4_pattern_allow([^do_compare$]) -+m4trace:configure.ac:357: -1- AC_SUBST([HDEFINES]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([HDEFINES]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HDEFINES$]) -+m4trace:configure.ac:358: -1- AC_SUBST([NATIVE_LIB_DIRS]) -+m4trace:configure.ac:358: -1- AC_SUBST_TRACE([NATIVE_LIB_DIRS]) -+m4trace:configure.ac:358: -1- m4_pattern_allow([^NATIVE_LIB_DIRS$]) -+m4trace:configure.ac:366: -1- AH_OUTPUT([HAVE_FCNTL_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_FCNTL_H]) -+m4trace:configure.ac:366: -1- AH_OUTPUT([HAVE_ELF_HINTS_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_ELF_HINTS_H]) -+m4trace:configure.ac:366: -1- AH_OUTPUT([HAVE_LIMITS_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_LIMITS_H]) -+m4trace:configure.ac:366: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_INTTYPES_H]) -+m4trace:configure.ac:366: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_STDINT_H]) -+m4trace:configure.ac:366: -1- AH_OUTPUT([HAVE_SYS_FILE_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_SYS_FILE_H]) -+m4trace:configure.ac:366: -1- AH_OUTPUT([HAVE_SYS_MMAN_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_SYS_MMAN_H]) -+m4trace:configure.ac:366: -1- AH_OUTPUT([HAVE_SYS_PARAM_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_SYS_PARAM_H]) -+m4trace:configure.ac:366: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_SYS_STAT_H]) -+m4trace:configure.ac:366: -1- AH_OUTPUT([HAVE_SYS_TIME_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_SYS_TIME_H]) -+m4trace:configure.ac:366: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_SYS_TYPES_H]) -+m4trace:configure.ac:366: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_UNISTD_H]) -+m4trace:configure.ac:369: -1- AH_OUTPUT([HAVE_CLOSE], [/* Define to 1 if you have the `close\' function. */ -+@%:@undef HAVE_CLOSE]) -+m4trace:configure.ac:369: -1- AH_OUTPUT([HAVE_GLOB], [/* Define to 1 if you have the `glob\' function. */ -+@%:@undef HAVE_GLOB]) -+m4trace:configure.ac:369: -1- AH_OUTPUT([HAVE_LSEEK], [/* Define to 1 if you have the `lseek\' function. */ -+@%:@undef HAVE_LSEEK]) -+m4trace:configure.ac:369: -1- AH_OUTPUT([HAVE_MKSTEMP], [/* Define to 1 if you have the `mkstemp\' function. */ -+@%:@undef HAVE_MKSTEMP]) -+m4trace:configure.ac:369: -1- AH_OUTPUT([HAVE_OPEN], [/* Define to 1 if you have the `open\' function. */ -+@%:@undef HAVE_OPEN]) -+m4trace:configure.ac:369: -1- AH_OUTPUT([HAVE_REALPATH], [/* Define to 1 if you have the `realpath\' function. */ -+@%:@undef HAVE_REALPATH]) -+m4trace:configure.ac:369: -1- AH_OUTPUT([HAVE_SBRK], [/* Define to 1 if you have the `sbrk\' function. */ -+@%:@undef HAVE_SBRK]) -+m4trace:configure.ac:369: -1- AH_OUTPUT([HAVE_WAITPID], [/* Define to 1 if you have the `waitpid\' function. */ -+@%:@undef HAVE_WAITPID]) -+m4trace:configure.ac:371: -1- AC_DEFINE_TRACE_LITERAL([USE_BINARY_FOPEN]) -+m4trace:configure.ac:371: -1- m4_pattern_allow([^USE_BINARY_FOPEN$]) -+m4trace:configure.ac:371: -1- AH_OUTPUT([USE_BINARY_FOPEN], [/* Use b modifier when opening binary files? */ -+@%:@undef USE_BINARY_FOPEN]) -+m4trace:configure.ac:373: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL_ASPRINTF]) -+m4trace:configure.ac:373: -1- m4_pattern_allow([^HAVE_DECL_ASPRINTF$]) -+m4trace:configure.ac:373: -1- AH_OUTPUT([HAVE_DECL_ASPRINTF], [/* Define to 1 if you have the declaration of `asprintf\', and to 0 if you -+ don\'t. */ -+@%:@undef HAVE_DECL_ASPRINTF]) -+m4trace:configure.ac:373: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL_ENVIRON]) -+m4trace:configure.ac:373: -1- m4_pattern_allow([^HAVE_DECL_ENVIRON$]) -+m4trace:configure.ac:373: -1- AH_OUTPUT([HAVE_DECL_ENVIRON], [/* Define to 1 if you have the declaration of `environ\', and to 0 if you -+ don\'t. */ -+@%:@undef HAVE_DECL_ENVIRON]) -+m4trace:configure.ac:373: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL_SBRK]) -+m4trace:configure.ac:373: -1- m4_pattern_allow([^HAVE_DECL_SBRK$]) -+m4trace:configure.ac:373: -1- AH_OUTPUT([HAVE_DECL_SBRK], [/* Define to 1 if you have the declaration of `sbrk\', and to 0 if you don\'t. -+ */ -+@%:@undef HAVE_DECL_SBRK]) -+m4trace:configure.ac:375: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_STDLIB_H]) -+m4trace:configure.ac:375: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_UNISTD_H]) -+m4trace:configure.ac:375: -1- AH_OUTPUT([HAVE_SYS_PARAM_H], [/* Define to 1 if you have the header file. */ -+@%:@undef HAVE_SYS_PARAM_H]) -+m4trace:configure.ac:375: -1- AH_OUTPUT([HAVE_GETPAGESIZE], [/* Define to 1 if you have the `getpagesize\' function. */ -+@%:@undef HAVE_GETPAGESIZE]) -+m4trace:configure.ac:375: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETPAGESIZE]) -+m4trace:configure.ac:375: -1- m4_pattern_allow([^HAVE_GETPAGESIZE$]) -+m4trace:configure.ac:375: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MMAP]) -+m4trace:configure.ac:375: -1- m4_pattern_allow([^HAVE_MMAP$]) -+m4trace:configure.ac:375: -1- AH_OUTPUT([HAVE_MMAP], [/* Define to 1 if you have a working `mmap\' system call. */ -+@%:@undef HAVE_MMAP]) -+m4trace:configure.ac:385: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL_GETOPT]) -+m4trace:configure.ac:385: -1- m4_pattern_allow([^HAVE_DECL_GETOPT$]) -+m4trace:configure.ac:385: -1- AH_OUTPUT([HAVE_DECL_GETOPT], [/* Is the prototype for getopt in in the expected format? */ -+@%:@undef HAVE_DECL_GETOPT]) -+m4trace:configure.ac:391: -1- AC_SUBST([zlibdir]) -+m4trace:configure.ac:391: -1- AC_SUBST_TRACE([zlibdir]) -+m4trace:configure.ac:391: -1- m4_pattern_allow([^zlibdir$]) -+m4trace:configure.ac:391: -1- AC_SUBST([zlibinc]) -+m4trace:configure.ac:391: -1- AC_SUBST_TRACE([zlibinc]) -+m4trace:configure.ac:391: -1- m4_pattern_allow([^zlibinc$]) -+m4trace:configure.ac:410: -1- AC_SUBST([STRINGIFY]) -+m4trace:configure.ac:410: -1- AC_SUBST_TRACE([STRINGIFY]) -+m4trace:configure.ac:410: -1- m4_pattern_allow([^STRINGIFY$]) -+m4trace:configure.ac:517: -1- AC_DEFINE_TRACE_LITERAL([DEFAULT_FLAG_COMPRESS_DEBUG]) -+m4trace:configure.ac:517: -1- m4_pattern_allow([^DEFAULT_FLAG_COMPRESS_DEBUG$]) -+m4trace:configure.ac:517: -1- AH_OUTPUT([DEFAULT_FLAG_COMPRESS_DEBUG], [/* Define if you want compressed debug sections by default. */ -+@%:@undef DEFAULT_FLAG_COMPRESS_DEBUG]) -+m4trace:configure.ac:523: -1- AC_DEFINE_TRACE_LITERAL([DEFAULT_NEW_DTAGS]) -+m4trace:configure.ac:523: -1- m4_pattern_allow([^DEFAULT_NEW_DTAGS$]) -+m4trace:configure.ac:523: -1- AH_OUTPUT([DEFAULT_NEW_DTAGS], [/* Define to 1 if you want to set DT_RUNPATH instead of DT_RPATH by default. -+ */ -+@%:@undef DEFAULT_NEW_DTAGS]) -+m4trace:configure.ac:530: -1- AC_DEFINE_TRACE_LITERAL([DEFAULT_LD_Z_RELRO]) -+m4trace:configure.ac:530: -1- m4_pattern_allow([^DEFAULT_LD_Z_RELRO$]) -+m4trace:configure.ac:530: -1- AH_OUTPUT([DEFAULT_LD_Z_RELRO], [/* Define to 1 if you want to enable -z relro in ELF linker by default. */ -+@%:@undef DEFAULT_LD_Z_RELRO]) -+m4trace:configure.ac:547: -1- AC_DEFINE_TRACE_LITERAL([DEFAULT_LD_TEXTREL_CHECK]) -+m4trace:configure.ac:547: -1- m4_pattern_allow([^DEFAULT_LD_TEXTREL_CHECK$]) -+m4trace:configure.ac:547: -1- AH_OUTPUT([DEFAULT_LD_TEXTREL_CHECK], [/* The default method for DT_TEXTREL check in ELF linker. */ -+@%:@undef DEFAULT_LD_TEXTREL_CHECK]) -+m4trace:configure.ac:550: -1- AC_DEFINE_TRACE_LITERAL([DEFAULT_LD_TEXTREL_CHECK_WARNING]) -+m4trace:configure.ac:550: -1- m4_pattern_allow([^DEFAULT_LD_TEXTREL_CHECK_WARNING$]) -+m4trace:configure.ac:550: -1- AH_OUTPUT([DEFAULT_LD_TEXTREL_CHECK_WARNING], [/* Define to 1 if DT_TEXTREL check is warning in ELF linker by default. */ -+@%:@undef DEFAULT_LD_TEXTREL_CHECK_WARNING]) -+m4trace:configure.ac:557: -1- AC_DEFINE_TRACE_LITERAL([DEFAULT_LD_Z_SEPARATE_CODE]) -+m4trace:configure.ac:557: -1- m4_pattern_allow([^DEFAULT_LD_Z_SEPARATE_CODE$]) -+m4trace:configure.ac:557: -1- AH_OUTPUT([DEFAULT_LD_Z_SEPARATE_CODE], [/* Define to 1 if you want to enable -z separate-code in ELF linker by -+ default. */ -+@%:@undef DEFAULT_LD_Z_SEPARATE_CODE]) -+m4trace:configure.ac:562: -1- AC_DEFINE_TRACE_LITERAL([DEFAULT_LD_WARN_EXECSTACK]) -+m4trace:configure.ac:562: -1- m4_pattern_allow([^DEFAULT_LD_WARN_EXECSTACK$]) -+m4trace:configure.ac:562: -1- AH_OUTPUT([DEFAULT_LD_WARN_EXECSTACK], [/* Define to 1 if you want to enable --warn-execstack in ELF linker by -+ default. */ -+@%:@undef DEFAULT_LD_WARN_EXECSTACK]) -+m4trace:configure.ac:569: -1- AC_DEFINE_TRACE_LITERAL([DEFAULT_LD_WARN_RWX_SEGMENTS]) -+m4trace:configure.ac:569: -1- m4_pattern_allow([^DEFAULT_LD_WARN_RWX_SEGMENTS$]) -+m4trace:configure.ac:569: -1- AH_OUTPUT([DEFAULT_LD_WARN_RWX_SEGMENTS], [/* Define to 0 if you want to disable --warn-rwx-segments in ELF linker by -+ default. */ -+@%:@undef DEFAULT_LD_WARN_RWX_SEGMENTS]) -+m4trace:configure.ac:576: -1- AC_DEFINE_TRACE_LITERAL([DEFAULT_LD_EXECSTACK]) -+m4trace:configure.ac:576: -1- m4_pattern_allow([^DEFAULT_LD_EXECSTACK$]) -+m4trace:configure.ac:576: -1- AH_OUTPUT([DEFAULT_LD_EXECSTACK], [/* Define to 0 if you want to disable the generation of an executable stack -+ when a .note-GNU-stack section is missing. */ -+@%:@undef DEFAULT_LD_EXECSTACK]) -+m4trace:configure.ac:584: -1- AC_DEFINE_TRACE_LITERAL([SUPPORT_ERROR_HANDLING_SCRIPT]) -+m4trace:configure.ac:584: -1- m4_pattern_allow([^SUPPORT_ERROR_HANDLING_SCRIPT$]) -+m4trace:configure.ac:584: -1- AH_OUTPUT([SUPPORT_ERROR_HANDLING_SCRIPT], [/* Define to 1 if you want to support the --error-handling-script command line -+ option. */ -+@%:@undef SUPPORT_ERROR_HANDLING_SCRIPT]) -+m4trace:configure.ac:588: -1- AC_DEFINE_TRACE_LITERAL([DEFAULT_EMIT_SYSV_HASH]) -+m4trace:configure.ac:588: -1- m4_pattern_allow([^DEFAULT_EMIT_SYSV_HASH$]) -+m4trace:configure.ac:588: -1- AH_OUTPUT([DEFAULT_EMIT_SYSV_HASH], [/* Define to 1 if you want to emit sysv hash in the ELF linker by default. */ -+@%:@undef DEFAULT_EMIT_SYSV_HASH]) -+m4trace:configure.ac:592: -1- AC_DEFINE_TRACE_LITERAL([DEFAULT_EMIT_GNU_HASH]) -+m4trace:configure.ac:592: -1- m4_pattern_allow([^DEFAULT_EMIT_GNU_HASH$]) -+m4trace:configure.ac:592: -1- AH_OUTPUT([DEFAULT_EMIT_GNU_HASH], [/* Define to 1 if you want to emit gnu hash in the ELF linker by default. */ -+@%:@undef DEFAULT_EMIT_GNU_HASH]) -+m4trace:configure.ac:596: -1- AC_SUBST([elf_list_options]) -+m4trace:configure.ac:596: -1- AC_SUBST_TRACE([elf_list_options]) -+m4trace:configure.ac:596: -1- m4_pattern_allow([^elf_list_options$]) -+m4trace:configure.ac:597: -1- AC_SUBST([elf_shlib_list_options]) -+m4trace:configure.ac:597: -1- AC_SUBST_TRACE([elf_shlib_list_options]) -+m4trace:configure.ac:597: -1- m4_pattern_allow([^elf_shlib_list_options$]) -+m4trace:configure.ac:598: -1- AC_SUBST([elf_plt_unwind_list_options]) -+m4trace:configure.ac:598: -1- AC_SUBST_TRACE([elf_plt_unwind_list_options]) -+m4trace:configure.ac:598: -1- m4_pattern_allow([^elf_plt_unwind_list_options$]) -+m4trace:configure.ac:599: -1- AC_SUBST([EMUL]) -+m4trace:configure.ac:599: -1- AC_SUBST_TRACE([EMUL]) -+m4trace:configure.ac:599: -1- m4_pattern_allow([^EMUL$]) -+m4trace:configure.ac:601: -1- AC_SUBST([TDIRS]) -+m4trace:configure.ac:601: -1- AC_SUBST_TRACE([TDIRS]) -+m4trace:configure.ac:601: -1- m4_pattern_allow([^TDIRS$]) -+m4trace:configure.ac:602: -1- _AM_SUBST_NOTMAKE([TDIRS]) -+m4trace:configure.ac:616: -1- AC_SUBST([EMULATION_OFILES]) -+m4trace:configure.ac:616: -1- AC_SUBST_TRACE([EMULATION_OFILES]) -+m4trace:configure.ac:616: -1- m4_pattern_allow([^EMULATION_OFILES$]) -+m4trace:configure.ac:617: -1- AC_SUBST([EMUL_EXTRA_OFILES]) -+m4trace:configure.ac:617: -1- AC_SUBST_TRACE([EMUL_EXTRA_OFILES]) -+m4trace:configure.ac:617: -1- m4_pattern_allow([^EMUL_EXTRA_OFILES$]) -+m4trace:configure.ac:618: -1- AC_SUBST([LIB_PATH]) -+m4trace:configure.ac:618: -1- AC_SUBST_TRACE([LIB_PATH]) -+m4trace:configure.ac:618: -1- m4_pattern_allow([^LIB_PATH$]) -+m4trace:configure.ac:621: -1- AC_SUBST([EMULATION_LIBPATH]) -+m4trace:configure.ac:621: -1- AC_SUBST_TRACE([EMULATION_LIBPATH]) -+m4trace:configure.ac:621: -1- m4_pattern_allow([^EMULATION_LIBPATH$]) -+m4trace:configure.ac:633: -1- AC_SUBST([TESTBFDLIB]) -+m4trace:configure.ac:633: -1- AC_SUBST_TRACE([TESTBFDLIB]) -+m4trace:configure.ac:633: -1- m4_pattern_allow([^TESTBFDLIB$]) -+m4trace:configure.ac:634: -1- AC_SUBST([TESTCTFLIB]) -+m4trace:configure.ac:634: -1- AC_SUBST_TRACE([TESTCTFLIB]) -+m4trace:configure.ac:634: -1- m4_pattern_allow([^TESTCTFLIB$]) -+m4trace:configure.ac:647: -1- AC_DEFINE_TRACE_LITERAL([EXTRA_SHLIB_EXTENSION]) -+m4trace:configure.ac:647: -1- m4_pattern_allow([^EXTRA_SHLIB_EXTENSION$]) -+m4trace:configure.ac:647: -1- AH_OUTPUT([EXTRA_SHLIB_EXTENSION], [/* Additional extension a shared object might have. */ -+@%:@undef EXTRA_SHLIB_EXTENSION]) -+m4trace:configure.ac:672: -1- AC_SUBST([datarootdir]) -+m4trace:configure.ac:672: -1- AC_SUBST_TRACE([datarootdir]) -+m4trace:configure.ac:672: -1- m4_pattern_allow([^datarootdir$]) -+m4trace:configure.ac:673: -1- AC_SUBST([docdir]) -+m4trace:configure.ac:673: -1- AC_SUBST_TRACE([docdir]) -+m4trace:configure.ac:673: -1- m4_pattern_allow([^docdir$]) -+m4trace:configure.ac:674: -1- AC_SUBST([htmldir]) -+m4trace:configure.ac:674: -1- AC_SUBST_TRACE([htmldir]) -+m4trace:configure.ac:674: -1- m4_pattern_allow([^htmldir$]) -+m4trace:configure.ac:675: -1- AC_SUBST([pdfdir]) -+m4trace:configure.ac:675: -1- AC_SUBST_TRACE([pdfdir]) -+m4trace:configure.ac:675: -1- m4_pattern_allow([^pdfdir$]) -+m4trace:configure.ac:677: -1- AC_CONFIG_FILES([Makefile po/Makefile.in:po/Make-in]) -+m4trace:configure.ac:678: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs]) -+m4trace:configure.ac:678: -1- AC_SUBST_TRACE([LIB@&t@OBJS]) -+m4trace:configure.ac:678: -1- m4_pattern_allow([^LIB@&t@OBJS$]) -+m4trace:configure.ac:678: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs]) -+m4trace:configure.ac:678: -1- AC_SUBST_TRACE([LTLIBOBJS]) -+m4trace:configure.ac:678: -1- m4_pattern_allow([^LTLIBOBJS$]) -+m4trace:configure.ac:678: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"]) -+m4trace:configure.ac:678: -1- AC_SUBST([am__EXEEXT_TRUE]) -+m4trace:configure.ac:678: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE]) -+m4trace:configure.ac:678: -1- m4_pattern_allow([^am__EXEEXT_TRUE$]) -+m4trace:configure.ac:678: -1- AC_SUBST([am__EXEEXT_FALSE]) -+m4trace:configure.ac:678: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE]) -+m4trace:configure.ac:678: -1- m4_pattern_allow([^am__EXEEXT_FALSE$]) -+m4trace:configure.ac:678: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE]) -+m4trace:configure.ac:678: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE]) -+m4trace:configure.ac:678: -1- AC_SUBST_TRACE([top_builddir]) -+m4trace:configure.ac:678: -1- AC_SUBST_TRACE([top_build_prefix]) -+m4trace:configure.ac:678: -1- AC_SUBST_TRACE([srcdir]) -+m4trace:configure.ac:678: -1- AC_SUBST_TRACE([abs_srcdir]) -+m4trace:configure.ac:678: -1- AC_SUBST_TRACE([top_srcdir]) -+m4trace:configure.ac:678: -1- AC_SUBST_TRACE([abs_top_srcdir]) -+m4trace:configure.ac:678: -1- AC_SUBST_TRACE([builddir]) -+m4trace:configure.ac:678: -1- AC_SUBST_TRACE([abs_builddir]) -+m4trace:configure.ac:678: -1- AC_SUBST_TRACE([abs_top_builddir]) -+m4trace:configure.ac:678: -1- AC_SUBST_TRACE([INSTALL]) -+m4trace:configure.ac:678: -1- AC_SUBST_TRACE([MKDIR_P]) -+m4trace:configure.ac:678: -1- AC_REQUIRE_AUX_FILE([ltmain.sh]) -+m4trace:configure.ac:680: -1- m4_pattern_allow([AM_V_CCLD]) -diff -ruN binutils-2.39/ld/configure.tgt binutils-2.39_banan/ld/configure.tgt ---- binutils-2.39/ld/configure.tgt 2022-07-29 10:37:48.000000000 +0300 -+++ binutils-2.39_banan/ld/configure.tgt 2023-04-05 21:21:26.498228417 +0300 -@@ -336,6 +336,11 @@ +diff --git a/ld/configure.tgt b/ld/configure.tgt +index 2bae9099b6..640426e81f 100644 +--- a/ld/configure.tgt ++++ b/ld/configure.tgt +@@ -352,6 +352,9 @@ i[3-7]86-*-aros*) targ_emul=elf_i386 + i[3-7]86-*-rdos*) targ_emul=elf_i386 + targ_extra_emuls=elf_iamcu ;; - hppa*-*-openbsd*) targ_emul=hppaobsd - ;; -+i[3-7]86-*-banan_os*) -+ targ_emul=elf_i386_banan_os -+ targ_extra_emuls=elf_i386 -+ targ64_extra_emuls="elf_x86_64_banan_os elf_x86_64" ++i[3-7]86-*-banan_os*) targ_emul=elf_i386 ++ targ64_extra_emuls=elf_x86_64 + ;; - i[3-7]86-*-nto-qnx*) targ_emul=i386nto + i[3-7]86-*-bsd) targ_emul=i386bsd + targ_extra_ofiles= ;; - i[3-7]86-*-go32) targ_emul=i386go32 -@@ -986,6 +991,10 @@ +@@ -988,6 +991,9 @@ visium-*-elf) targ_emul=elf32visium ;; - visium-*-elf) targ_emul=elf32visium - ;; -+x86_64-*-banan_os*) -+ targ_emul=elf_x86_64_banan_os -+ targ_extra_emuls="elf_i386_banan_os elf_x86_64 elf_i386" -+ ;; x86_64-*-rdos*) targ_emul=elf64rdos ;; ++x86_64-*-banan_os*) targ_emul=elf_x86_64 ++ targ_extra_emuls=elf_i386 ++ ;; x86_64-*-cloudabi*) targ_emul=elf_x86_64_cloudabi -diff -ruN binutils-2.39/ld/emulparams/elf_i386_banan_os.sh binutils-2.39_banan/ld/emulparams/elf_i386_banan_os.sh ---- binutils-2.39/ld/emulparams/elf_i386_banan_os.sh 1970-01-01 02:00:00.000000000 +0200 -+++ binutils-2.39_banan/ld/emulparams/elf_i386_banan_os.sh 2023-04-05 21:22:09.864189088 +0300 -@@ -0,0 +1,2 @@ -+source_sh ${srcdir}/emulparams/elf_i386.sh -+TEXT_START_ADDR=0x08000000 -diff -ruN binutils-2.39/ld/emulparams/elf_x86_64_banan_os.sh binutils-2.39_banan/ld/emulparams/elf_x86_64_banan_os.sh ---- binutils-2.39/ld/emulparams/elf_x86_64_banan_os.sh 1970-01-01 02:00:00.000000000 +0200 -+++ binutils-2.39_banan/ld/emulparams/elf_x86_64_banan_os.sh 2023-04-05 21:22:54.166800491 +0300 -@@ -0,0 +1 @@ -+source_sh ${srcdir}/emulparams/elf_x86_64.sh -diff -ruN binutils-2.39/ld/Makefile.am binutils-2.39_banan/ld/Makefile.am ---- binutils-2.39/ld/Makefile.am 2022-07-08 12:46:48.000000000 +0300 -+++ binutils-2.39_banan/ld/Makefile.am 2023-04-05 21:25:18.347780755 +0300 -@@ -275,6 +275,7 @@ - eelf32xtensa.c \ - eelf32z80.c \ - eelf_i386.c \ -+ eelf_i386_banan_os.c \ - eelf_i386_be.c \ - eelf_i386_fbsd.c \ - eelf_i386_haiku.c \ -@@ -453,6 +454,7 @@ - eelf64tilegx_be.c \ - eelf_mipsel_haiku.c \ - eelf_x86_64.c \ -+ eelf_x86_64_banan_os.c \ - eelf_x86_64_cloudabi.c \ - eelf_x86_64_fbsd.c \ - eelf_x86_64_haiku.c \ -@@ -766,6 +768,7 @@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xtensa.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32z80.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386.Pc@am__quote@ -+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_banan_os.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_be.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_fbsd.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_haiku.Pc@am__quote@ -@@ -941,6 +944,7 @@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64tilegx_be.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_mipsel_haiku.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64.Pc@am__quote@ -+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_banan_os.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_cloudabi.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_fbsd.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_haiku.Pc@am__quote@ -diff -ruN binutils-2.39/ld/Makefile.in binutils-2.39_banan/ld/Makefile.in ---- binutils-2.39/ld/Makefile.in 2022-08-05 12:56:53.000000000 +0300 -+++ binutils-2.39_banan/ld/Makefile.in 2023-04-05 21:25:27.167636676 +0300 -@@ -772,6 +772,7 @@ - eelf32xtensa.c \ - eelf32z80.c \ - eelf_i386.c \ -+ eelf_i386_banan_os.c \ - eelf_i386_be.c \ - eelf_i386_fbsd.c \ - eelf_i386_haiku.c \ -@@ -949,6 +950,7 @@ - eelf64tilegx_be.c \ - eelf_mipsel_haiku.c \ - eelf_x86_64.c \ -+ eelf_x86_64_banan_os.c \ - eelf_x86_64_cloudabi.c \ - eelf_x86_64_fbsd.c \ - eelf_x86_64_haiku.c \ -@@ -1441,6 +1443,7 @@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64tilegx.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64tilegx_be.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386.Po@am__quote@ -+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_banan_os.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_be.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_fbsd.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_haiku.Po@am__quote@ -@@ -1451,6 +1454,7 @@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_mipsel_haiku.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_s390.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64.Po@am__quote@ -+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_banan_os.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_cloudabi.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_fbsd.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_haiku.Po@am__quote@ -@@ -2432,6 +2436,7 @@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xtensa.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32z80.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386.Pc@am__quote@ -+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_banan_os.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_be.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_fbsd.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_haiku.Pc@am__quote@ -@@ -2607,6 +2612,7 @@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64tilegx_be.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_mipsel_haiku.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64.Pc@am__quote@ -+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_banan_os.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_cloudabi.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_fbsd.Pc@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_haiku.Pc@am__quote@ + ;; + x86_64-*-haiku*) targ_emul=elf_x86_64_haiku +-- +2.42.0 + diff --git a/toolchain/build.sh b/toolchain/build.sh index 34e7d1af..fc54a714 100755 --- a/toolchain/build.sh +++ b/toolchain/build.sh @@ -2,7 +2,13 @@ set -e BINUTILS_VERSION="binutils-2.39" +BINUTILS_GIT="https://sourceware.org/git/binutils-gdb.git" +BINUTILS_BRANCH="binutils-2_39" + GCC_VERSION="gcc-12.2.0" +GCC_GIT="https://gcc.gnu.org/git/gcc.git" +GCC_BRANCH="releases/$GCC_VERSION" + GRUB_VERSION="grub-2.06" if [[ -z $BANAN_SYSROOT ]]; then @@ -51,22 +57,20 @@ build_binutils () { cd $BANAN_BUILD_DIR/toolchain - if [ ! -f ${BINUTILS_VERSION}.tar.xz ]; then - wget https://ftp.gnu.org/gnu/binutils/${BINUTILS_VERSION}.tar.xz - fi - if [ ! -d $BINUTILS_VERSION ]; then - tar xvf ${BINUTILS_VERSION}.tar.xz - patch -s -p0 < $BANAN_TOOLCHAIN_DIR/${BINUTILS_VERSION}.patch + git clone --single-branch --branch $BINUTILS_BRANCH $BINUTILS_GIT $BINUTILS_VERSION + cd $BINUTILS_VERSION + git am $BANAN_TOOLCHAIN_DIR/$BINUTILS_VERSION.patch fi - cd $BINUTILS_VERSION + cd $BANAN_BUILD_DIR/toolchain/$BINUTILS_VERSION enter_clean_build ../configure \ --target="$BANAN_TOOLCHAIN_TRIPLE_PREFIX" \ --prefix="$BANAN_TOOLCHAIN_PREFIX" \ --with-sysroot="$BANAN_SYSROOT" \ + --disable-initfini-array \ --disable-nls \ --disable-werror @@ -79,22 +83,20 @@ build_gcc () { cd $BANAN_BUILD_DIR/toolchain - if [ ! -f ${GCC_VERSION}.tar.xz ]; then - wget https://ftp.gnu.org/gnu/gcc/${GCC_VERSION}/${GCC_VERSION}.tar.xz - fi - if [ ! -d $GCC_VERSION ]; then - tar xvf ${GCC_VERSION}.tar.xz - patch -s -p0 < $BANAN_TOOLCHAIN_DIR/${GCC_VERSION}.patch + git clone --single-branch --branch $GCC_BRANCH $GCC_GIT $GCC_VERSION + cd $GCC_VERSION + git am $BANAN_TOOLCHAIN_DIR/$GCC_VERSION.patch fi - cd ${GCC_VERSION} + cd $BANAN_BUILD_DIR/toolchain/$GCC_VERSION enter_clean_build ../configure \ --target="$BANAN_TOOLCHAIN_TRIPLE_PREFIX" \ --prefix="$BANAN_TOOLCHAIN_PREFIX" \ --with-sysroot="$BANAN_SYSROOT" \ + --disable-initfini-array \ --disable-nls \ --enable-languages=c,c++ @@ -159,6 +161,9 @@ sudo rsync -a $BANAN_ROOT_DIR/libc/include/ $BANAN_SYSROOT/usr/include/ mkdir -p $BANAN_BUILD_DIR/toolchain +# Cleanup all old files from toolchain prefix +rm -rf $BANAN_TOOLCHAIN_PREFIX + build_binutils build_gcc build_grub diff --git a/toolchain/gcc-12.2.0.patch b/toolchain/gcc-12.2.0.patch index b4b421e5..ef396c55 100644 --- a/toolchain/gcc-12.2.0.patch +++ b/toolchain/gcc-12.2.0.patch @@ -1,7 +1,24 @@ -/diff -ruN gcc-12.2.0/config.sub gcc-12.2.0-banan/config.sub ---- gcc-12.2.0/config.sub 2022-08-19 11:09:52.128656687 +0300 -+++ gcc-12.2.0-banan/config.sub 2023-04-05 21:48:39.434844559 +0300 -@@ -1749,7 +1749,7 @@ +From 8dbafba748aa280df08a5a41627e13bff088dce9 Mon Sep 17 00:00:00 2001 +From: Bananymous +Date: Sun, 29 Oct 2023 18:25:18 +0200 +Subject: [PATCH] Add target banan_os for i386 and x86_64 + +--- + config.sub | 2 +- + fixincludes/mkfixinc.sh | 2 + + gcc/config.gcc | 12 + + gcc/config/banan_os.h | 31 + + libgcc/config.host | 8 + + libstdc++-v3/configure | 5974 +++++++++++++++++++++++++++++++++++ + libstdc++-v3/crossconfig.m4 | 7 + + 7 files changed, 6035 insertions(+), 1 deletion(-) + create mode 100644 gcc/config/banan_os.h + +diff --git a/config.sub b/config.sub +index 38f3d037a78..5e23663a102 100755 +--- a/config.sub ++++ b/config.sub +@@ -1749,7 +1749,7 @@ case $os in | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \ | midnightbsd* | amdhsa* | unleashed* | emscripten* | wasi* \ | nsk* | powerunix* | genode* | zvmoe* | qnx* | emx* | zephyr* \ @@ -10,10 +27,11 @@ ;; # This one is extra strict with allowed versions sco3.2v2 | sco3.2v[4-9]* | sco5v6*) -diff -ruN gcc-12.2.0/fixincludes/mkfixinc.sh gcc-12.2.0-banan/fixincludes/mkfixinc.sh ---- gcc-12.2.0/fixincludes/mkfixinc.sh 2022-08-19 11:09:52.160657095 +0300 -+++ gcc-12.2.0-banan/fixincludes/mkfixinc.sh 2023-04-05 22:00:58.256077444 +0300 -@@ -11,6 +11,8 @@ +diff --git a/fixincludes/mkfixinc.sh b/fixincludes/mkfixinc.sh +index df90720b716..d5fe688bdac 100755 +--- a/fixincludes/mkfixinc.sh ++++ b/fixincludes/mkfixinc.sh +@@ -11,6 +11,8 @@ target=fixinc.sh # Check for special fix rules for particular targets case $machine in @@ -22,45 +40,11 @@ diff -ruN gcc-12.2.0/fixincludes/mkfixinc.sh gcc-12.2.0-banan/fixincludes/mkfixi i?86-*-cygwin* | \ i?86-*-mingw32* | \ x86_64-*-mingw32* | \ -diff -ruN gcc-12.2.0/gcc/config/banan_os.h gcc-12.2.0-banan/gcc/config/banan_os.h ---- gcc-12.2.0/gcc/config/banan_os.h 1970-01-01 02:00:00.000000000 +0200 -+++ gcc-12.2.0-banan/gcc/config/banan_os.h 2023-04-05 22:03:20.133753757 +0300 -@@ -0,0 +1,31 @@ -+/* Useful if you wish to make target-specific GCC changes. */ -+#undef TARGET_BANAN_OS -+#define TARGET_BANAN_OS 1 -+ -+/* Default arguments you want when running your -+ i686-banan_os-gcc/x86_64-banan_os-gcc toolchain */ -+#undef LIB_SPEC -+#define LIB_SPEC "-lc" /* link against C standard library */ -+ -+/* Files that are linked before user code. -+ The %s tells GCC to look for these files in the library directory. */ -+#undef STARTFILE_SPEC -+#define STARTFILE_SPEC "crt0.o%s crti.o%s crtbegin.o%s" -+ -+/* Files that are linked after user code. */ -+#undef ENDFILE_SPEC -+#define ENDFILE_SPEC "crtend.o%s crtn.o%s" -+ -+/* Don't use separate math library */ -+#define MATH_LIBRARY "" -+ -+/* Additional predefined macros. */ -+#undef TARGET_OS_CPP_BUILTINS -+#define TARGET_OS_CPP_BUILTINS() \ -+ do { \ -+ builtin_define ("__banan_os__"); \ -+ builtin_define ("__unix__"); \ -+ builtin_assert ("system=banan_os"); \ -+ builtin_assert ("system=unix"); \ -+ builtin_assert ("system=posix"); \ -+ } while(0); -diff -ruN gcc-12.2.0/gcc/config.gcc gcc-12.2.0-banan/gcc/config.gcc ---- gcc-12.2.0/gcc/config.gcc 2022-08-19 11:09:52.552662114 +0300 -+++ gcc-12.2.0-banan/gcc/config.gcc 2023-04-05 21:53:33.963354105 +0300 -@@ -673,6 +673,12 @@ +diff --git a/gcc/config.gcc b/gcc/config.gcc +index c5064dd3766..5b630fb5d79 100644 +--- a/gcc/config.gcc ++++ b/gcc/config.gcc +@@ -673,6 +673,12 @@ x86_cpus="generic intel" # Common parts for widely ported systems. case ${target} in @@ -73,27 +57,65 @@ diff -ruN gcc-12.2.0/gcc/config.gcc gcc-12.2.0-banan/gcc/config.gcc *-*-darwin*) tmake_file="t-darwin " tm_file="${tm_file} darwin.h" -@@ -1087,6 +1093,12 @@ - esac - - case ${target} in +@@ -1870,6 +1876,12 @@ hppa[12]*-*-hpux11*) + dwarf2=no + fi + ;; +i[34567]86-*-banan_os*) + tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h glibc-stdint.h i386/i386elf.h banan_os.h" + ;; +x86_64-*-banan_os*) + tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h glibc-stdint.h i386/i386elf.h i386/x86-64.h banan_os.h" + ;; - aarch64*-*-elf | aarch64*-*-fuchsia* | aarch64*-*-rtems*) - tm_file="${tm_file} dbxelf.h elfos.h newlib-stdint.h" - tm_file="${tm_file} aarch64/aarch64-elf.h aarch64/aarch64-errata.h aarch64/aarch64-elf-raw.h" -diff -ruN gcc-12.2.0/libgcc/config.host gcc-12.2.0-banan/libgcc/config.host ---- gcc-12.2.0/libgcc/config.host 2022-08-19 11:09:54.664689148 +0300 -+++ gcc-12.2.0-banan/libgcc/config.host 2023-04-05 22:00:17.580076972 +0300 -@@ -376,6 +376,14 @@ - esac - - case ${host} in -+i[34567]86-*banan_os*) + i[34567]86-*-darwin1[89]* | i[34567]86-*-darwin2*) + echo "Error: 32bit target is not supported after Darwin17" 1>&2 + ;; +diff --git a/gcc/config/banan_os.h b/gcc/config/banan_os.h +new file mode 100644 +index 00000000000..3274a5021ad +--- /dev/null ++++ b/gcc/config/banan_os.h +@@ -0,0 +1,31 @@ ++/* Useful if you wish to make target-specific GCC changes. */ ++#undef TARGET_BANAN_OS ++#define TARGET_BANAN_OS 1 ++ ++/* Default arguments you want when running your ++ *-banan_os-gcc toolchain */ ++#undef LIB_SPEC ++#define LIB_SPEC "-lc" /* link against C standard library */ ++ ++/* Files that are linked before user code. ++ The %s tells GCC to look for these files in the library directory. */ ++#undef STARTFILE_SPEC ++#define STARTFILE_SPEC "crt0.o%s crti.o%s crtbegin.o%s" ++ ++/* Files that are linked after user code. */ ++#undef ENDFILE_SPEC ++#define ENDFILE_SPEC "crtend.o%s crtn.o%s" ++ ++/* We don't have separate math library so don't link it. */ ++#define MATH_LIBRARY "" ++ ++/* Additional predefined macros. */ ++#undef TARGET_OS_CPP_BUILTINS ++#define TARGET_OS_CPP_BUILTINS() \ ++ do { \ ++ builtin_define ("__banan_os__"); \ ++ builtin_define ("__unix__"); \ ++ builtin_assert ("system=banan_os"); \ ++ builtin_assert ("system=unix"); \ ++ builtin_assert ("system=posix"); \ ++ } while(0); +diff --git a/libgcc/config.host b/libgcc/config.host +index 8c56fcae5d2..1323083c653 100644 +--- a/libgcc/config.host ++++ b/libgcc/config.host +@@ -698,6 +698,14 @@ hppa*-*-openbsd*) + hppa*-*-netbsd*) + tmake_file="$tmake_file pa/t-netbsd" + ;; ++i[34567]86-*-banan_os*) + extra_parts="$extra_parts crti.o crtbegin.o crtend.o crtn.o" + tmake_file="$tmake_file i386/t-crtstuff t-crtstuff-pic t-libgcc-pic" + ;; @@ -101,131639 +123,15 @@ diff -ruN gcc-12.2.0/libgcc/config.host gcc-12.2.0-banan/libgcc/config.host + extra_parts="$extra_parts crti.o crtbegin.o crtend.o crtn.o" + tmake_file="$tmake_file i386/t-crtstuff t-crtstuff-pic t-libgcc-pic" + ;; - aarch64*-*-elf | aarch64*-*-rtems*) - extra_parts="$extra_parts crtbegin.o crtend.o crti.o crtn.o" - extra_parts="$extra_parts crtfastmath.o" -diff -ruN gcc-12.2.0/libstdc++-v3/autom4te.cache/output.0 gcc-12.2.0-banan/libstdc++-v3/autom4te.cache/output.0 ---- gcc-12.2.0/libstdc++-v3/autom4te.cache/output.0 1970-01-01 02:00:00.000000000 +0200 -+++ gcc-12.2.0-banan/libstdc++-v3/autom4te.cache/output.0 2023-04-05 21:57:17.349695468 +0300 -@@ -0,0 +1,88121 @@ -+@%:@! /bin/sh -+@%:@ Guess values for system-dependent variables and create Makefiles. -+@%:@ Generated by GNU Autoconf 2.69 for package-unused version-unused. -+@%:@ -+@%:@ -+@%:@ Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. -+@%:@ -+@%:@ -+@%:@ This configure script is free software; the Free Software Foundation -+@%:@ gives unlimited permission to copy, distribute and modify it. -+## -------------------- ## -+## M4sh Initialization. ## -+## -------------------- ## -+ -+# Be more Bourne compatible -+DUALCASE=1; export DUALCASE # for MKS sh -+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : -+ emulate sh -+ NULLCMD=: -+ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which -+ # is contrary to our usage. Disable this feature. -+ alias -g '${1+"$@"}'='"$@"' -+ setopt NO_GLOB_SUBST -+else -+ case `(set -o) 2>/dev/null` in @%:@( -+ *posix*) : -+ set -o posix ;; @%:@( -+ *) : -+ ;; -+esac -+fi -+ -+ -+as_nl=' -+' -+export as_nl -+# Printing a long string crashes Solaris 7 /usr/bin/printf. -+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -+# Prefer a ksh shell builtin over an external printf program on Solaris, -+# but without wasting forks for bash or zsh. -+if test -z "$BASH_VERSION$ZSH_VERSION" \ -+ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then -+ as_echo='print -r --' -+ as_echo_n='print -rn --' -+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then -+ as_echo='printf %s\n' -+ as_echo_n='printf %s' -+else -+ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then -+ as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' -+ as_echo_n='/usr/ucb/echo -n' -+ else -+ as_echo_body='eval expr "X$1" : "X\\(.*\\)"' -+ as_echo_n_body='eval -+ arg=$1; -+ case $arg in @%:@( -+ *"$as_nl"*) -+ expr "X$arg" : "X\\(.*\\)$as_nl"; -+ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; -+ esac; -+ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" -+ ' -+ export as_echo_n_body -+ as_echo_n='sh -c $as_echo_n_body as_echo' -+ fi -+ export as_echo_body -+ as_echo='sh -c $as_echo_body as_echo' -+fi -+ -+# The user is always right. -+if test "${PATH_SEPARATOR+set}" != set; then -+ PATH_SEPARATOR=: -+ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { -+ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || -+ PATH_SEPARATOR=';' -+ } -+fi -+ -+ -+# IFS -+# We need space, tab and new line, in precisely that order. Quoting is -+# there to prevent editors from complaining about space-tab. -+# (If _AS_PATH_WALK were called with IFS unset, it would disable word -+# splitting by setting IFS to empty value.) -+IFS=" "" $as_nl" -+ -+# Find who we are. Look in the path if we contain no directory separator. -+as_myself= -+case $0 in @%:@(( -+ *[\\/]* ) as_myself=$0 ;; -+ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -+ done -+IFS=$as_save_IFS -+ -+ ;; -+esac -+# We did not find ourselves, most probably we were run as `sh COMMAND' -+# in which case we are not to be found in the path. -+if test "x$as_myself" = x; then -+ as_myself=$0 -+fi -+if test ! -f "$as_myself"; then -+ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 -+ exit 1 -+fi -+ -+# Unset variables that we do not need and which cause bugs (e.g. in -+# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -+# suppresses any "Segmentation fault" message there. '((' could -+# trigger a bug in pdksh 5.2.14. -+for as_var in BASH_ENV ENV MAIL MAILPATH -+do eval test x\${$as_var+set} = xset \ -+ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -+done -+PS1='$ ' -+PS2='> ' -+PS4='+ ' -+ -+# NLS nuisances. -+LC_ALL=C -+export LC_ALL -+LANGUAGE=C -+export LANGUAGE -+ -+# CDPATH. -+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH -+ -+# Use a proper internal environment variable to ensure we don't fall -+ # into an infinite loop, continuously re-executing ourselves. -+ if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then -+ _as_can_reexec=no; export _as_can_reexec; -+ # We cannot yet assume a decent shell, so we have to provide a -+# neutralization value for shells without unset; and this also -+# works around shells that cannot unset nonexistent variables. -+# Preserve -v and -x to the replacement shell. -+BASH_ENV=/dev/null -+ENV=/dev/null -+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV -+case $- in @%:@ (((( -+ *v*x* | *x*v* ) as_opts=-vx ;; -+ *v* ) as_opts=-v ;; -+ *x* ) as_opts=-x ;; -+ * ) as_opts= ;; -+esac -+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} -+# Admittedly, this is quite paranoid, since all the known shells bail -+# out after a failed `exec'. -+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 -+as_fn_exit 255 -+ fi -+ # We don't want this to propagate to other subprocesses. -+ { _as_can_reexec=; unset _as_can_reexec;} -+if test "x$CONFIG_SHELL" = x; then -+ as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : -+ emulate sh -+ NULLCMD=: -+ # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which -+ # is contrary to our usage. Disable this feature. -+ alias -g '\${1+\"\$@\"}'='\"\$@\"' -+ setopt NO_GLOB_SUBST -+else -+ case \`(set -o) 2>/dev/null\` in @%:@( -+ *posix*) : -+ set -o posix ;; @%:@( -+ *) : -+ ;; -+esac -+fi -+" -+ as_required="as_fn_return () { (exit \$1); } -+as_fn_success () { as_fn_return 0; } -+as_fn_failure () { as_fn_return 1; } -+as_fn_ret_success () { return 0; } -+as_fn_ret_failure () { return 1; } -+ -+exitcode=0 -+as_fn_success || { exitcode=1; echo as_fn_success failed.; } -+as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } -+as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } -+as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } -+if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : -+ -+else -+ exitcode=1; echo positional parameters were not saved. -+fi -+test x\$exitcode = x0 || exit 1 -+test -x / || exit 1" -+ as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO -+ as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO -+ eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && -+ test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 -+test \$(( 1 + 1 )) = 2 || exit 1 -+ -+ test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( -+ ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -+ ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO -+ ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO -+ PATH=/empty FPATH=/empty; export PATH FPATH -+ test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ -+ || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1" -+ if (eval "$as_required") 2>/dev/null; then : -+ as_have_required=yes -+else -+ as_have_required=no -+fi -+ if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : -+ -+else -+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+as_found=false -+for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ as_found=: -+ case $as_dir in @%:@( -+ /*) -+ for as_base in sh bash ksh sh5; do -+ # Try only shells that exist, to save several forks. -+ as_shell=$as_dir/$as_base -+ if { test -f "$as_shell" || test -f "$as_shell.exe"; } && -+ { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : -+ CONFIG_SHELL=$as_shell as_have_required=yes -+ if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : -+ break 2 -+fi -+fi -+ done;; -+ esac -+ as_found=false -+done -+$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && -+ { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : -+ CONFIG_SHELL=$SHELL as_have_required=yes -+fi; } -+IFS=$as_save_IFS -+ -+ -+ if test "x$CONFIG_SHELL" != x; then : -+ export CONFIG_SHELL -+ # We cannot yet assume a decent shell, so we have to provide a -+# neutralization value for shells without unset; and this also -+# works around shells that cannot unset nonexistent variables. -+# Preserve -v and -x to the replacement shell. -+BASH_ENV=/dev/null -+ENV=/dev/null -+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV -+case $- in @%:@ (((( -+ *v*x* | *x*v* ) as_opts=-vx ;; -+ *v* ) as_opts=-v ;; -+ *x* ) as_opts=-x ;; -+ * ) as_opts= ;; -+esac -+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} -+# Admittedly, this is quite paranoid, since all the known shells bail -+# out after a failed `exec'. -+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 -+exit 255 -+fi -+ -+ if test x$as_have_required = xno; then : -+ $as_echo "$0: This script requires a shell more modern than all" -+ $as_echo "$0: the shells that I found on your system." -+ if test x${ZSH_VERSION+set} = xset ; then -+ $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" -+ $as_echo "$0: be upgraded to zsh 4.3.4 or later." -+ else -+ $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, -+$0: including any error possibly output before this -+$0: message. Then install a modern shell, or manually run -+$0: the script under such a shell if you do have one." -+ fi -+ exit 1 -+fi -+fi -+fi -+SHELL=${CONFIG_SHELL-/bin/sh} -+export SHELL -+# Unset more variables known to interfere with behavior of common tools. -+CLICOLOR_FORCE= GREP_OPTIONS= -+unset CLICOLOR_FORCE GREP_OPTIONS -+ -+## --------------------- ## -+## M4sh Shell Functions. ## -+## --------------------- ## -+@%:@ as_fn_unset VAR -+@%:@ --------------- -+@%:@ Portably unset VAR. -+as_fn_unset () -+{ -+ { eval $1=; unset $1;} -+} -+as_unset=as_fn_unset -+ -+@%:@ as_fn_set_status STATUS -+@%:@ ----------------------- -+@%:@ Set @S|@? to STATUS, without forking. -+as_fn_set_status () -+{ -+ return $1 -+} @%:@ as_fn_set_status -+ -+@%:@ as_fn_exit STATUS -+@%:@ ----------------- -+@%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -+as_fn_exit () -+{ -+ set +e -+ as_fn_set_status $1 -+ exit $1 -+} @%:@ as_fn_exit -+ -+@%:@ as_fn_mkdir_p -+@%:@ ------------- -+@%:@ Create "@S|@as_dir" as a directory, including parents if necessary. -+as_fn_mkdir_p () -+{ -+ -+ case $as_dir in #( -+ -*) as_dir=./$as_dir;; -+ esac -+ test -d "$as_dir" || eval $as_mkdir_p || { -+ as_dirs= -+ while :; do -+ case $as_dir in #( -+ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( -+ *) as_qdir=$as_dir;; -+ esac -+ as_dirs="'$as_qdir' $as_dirs" -+ as_dir=`$as_dirname -- "$as_dir" || -+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ -+ X"$as_dir" : 'X\(//\)[^/]' \| \ -+ X"$as_dir" : 'X\(//\)$' \| \ -+ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -+$as_echo X"$as_dir" | -+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)[^/].*/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\).*/{ -+ s//\1/ -+ q -+ } -+ s/.*/./; q'` -+ test -d "$as_dir" && break -+ done -+ test -z "$as_dirs" || eval "mkdir $as_dirs" -+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" -+ -+ -+} @%:@ as_fn_mkdir_p -+ -+@%:@ as_fn_executable_p FILE -+@%:@ ----------------------- -+@%:@ Test if FILE is an executable regular file. -+as_fn_executable_p () -+{ -+ test -f "$1" && test -x "$1" -+} @%:@ as_fn_executable_p -+@%:@ as_fn_append VAR VALUE -+@%:@ ---------------------- -+@%:@ Append the text in VALUE to the end of the definition contained in VAR. Take -+@%:@ advantage of any shell optimizations that allow amortized linear growth over -+@%:@ repeated appends, instead of the typical quadratic growth present in naive -+@%:@ implementations. -+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : -+ eval 'as_fn_append () -+ { -+ eval $1+=\$2 -+ }' -+else -+ as_fn_append () -+ { -+ eval $1=\$$1\$2 -+ } -+fi # as_fn_append -+ -+@%:@ as_fn_arith ARG... -+@%:@ ------------------ -+@%:@ Perform arithmetic evaluation on the ARGs, and store the result in the -+@%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments -+@%:@ must be portable across @S|@(()) and expr. -+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : -+ eval 'as_fn_arith () -+ { -+ as_val=$(( $* )) -+ }' -+else -+ as_fn_arith () -+ { -+ as_val=`expr "$@" || test $? -eq 1` -+ } -+fi # as_fn_arith -+ -+ -+@%:@ as_fn_error STATUS ERROR [LINENO LOG_FD] -+@%:@ ---------------------------------------- -+@%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are -+@%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the -+@%:@ script with STATUS, using 1 if that was 0. -+as_fn_error () -+{ -+ as_status=$1; test $as_status -eq 0 && as_status=1 -+ if test "$4"; then -+ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 -+ fi -+ $as_echo "$as_me: error: $2" >&2 -+ as_fn_exit $as_status -+} @%:@ as_fn_error -+ -+if expr a : '\(a\)' >/dev/null 2>&1 && -+ test "X`expr 00001 : '.*\(...\)'`" = X001; then -+ as_expr=expr -+else -+ as_expr=false -+fi -+ -+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then -+ as_basename=basename -+else -+ as_basename=false -+fi -+ -+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then -+ as_dirname=dirname -+else -+ as_dirname=false -+fi -+ -+as_me=`$as_basename -- "$0" || -+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ -+ X"$0" : 'X\(//\)$' \| \ -+ X"$0" : 'X\(/\)' \| . 2>/dev/null || -+$as_echo X/"$0" | -+ sed '/^.*\/\([^/][^/]*\)\/*$/{ -+ s//\1/ -+ q -+ } -+ /^X\/\(\/\/\)$/{ -+ s//\1/ -+ q -+ } -+ /^X\/\(\/\).*/{ -+ s//\1/ -+ q -+ } -+ s/.*/./; q'` -+ -+# Avoid depending upon Character Ranges. -+as_cr_letters='abcdefghijklmnopqrstuvwxyz' -+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -+as_cr_Letters=$as_cr_letters$as_cr_LETTERS -+as_cr_digits='0123456789' -+as_cr_alnum=$as_cr_Letters$as_cr_digits -+ -+ -+ as_lineno_1=$LINENO as_lineno_1a=$LINENO -+ as_lineno_2=$LINENO as_lineno_2a=$LINENO -+ eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && -+ test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { -+ # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) -+ sed -n ' -+ p -+ /[$]LINENO/= -+ ' <$as_myself | -+ sed ' -+ s/[$]LINENO.*/&-/ -+ t lineno -+ b -+ :lineno -+ N -+ :loop -+ s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ -+ t loop -+ s/-\n.*// -+ ' >$as_me.lineno && -+ chmod +x "$as_me.lineno" || -+ { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } -+ -+ # If we had to re-execute with $CONFIG_SHELL, we're ensured to have -+ # already done that, so ensure we don't try to do so again and fall -+ # in an infinite loop. This has already happened in practice. -+ _as_can_reexec=no; export _as_can_reexec -+ # Don't try to exec as it changes $[0], causing all sort of problems -+ # (the dirname of $[0] is not the place where we might find the -+ # original and so on. Autoconf is especially sensitive to this). -+ . "./$as_me.lineno" -+ # Exit status is that of the last command. -+ exit -+} -+ -+ECHO_C= ECHO_N= ECHO_T= -+case `echo -n x` in @%:@((((( -+-n*) -+ case `echo 'xy\c'` in -+ *c*) ECHO_T=' ';; # ECHO_T is single tab character. -+ xy) ECHO_C='\c';; -+ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null -+ ECHO_T=' ';; -+ esac;; -+*) -+ ECHO_N='-n';; -+esac -+ -+rm -f conf$$ conf$$.exe conf$$.file -+if test -d conf$$.dir; then -+ rm -f conf$$.dir/conf$$.file -+else -+ rm -f conf$$.dir -+ mkdir conf$$.dir 2>/dev/null -+fi -+if (echo >conf$$.file) 2>/dev/null; then -+ if ln -s conf$$.file conf$$ 2>/dev/null; then -+ as_ln_s='ln -s' -+ # ... but there are two gotchas: -+ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. -+ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. -+ # In both cases, we have to default to `cp -pR'. -+ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || -+ as_ln_s='cp -pR' -+ elif ln conf$$.file conf$$ 2>/dev/null; then -+ as_ln_s=ln -+ else -+ as_ln_s='cp -pR' -+ fi -+else -+ as_ln_s='cp -pR' -+fi -+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -+rmdir conf$$.dir 2>/dev/null -+ -+if mkdir -p . 2>/dev/null; then -+ as_mkdir_p='mkdir -p "$as_dir"' -+else -+ test -d ./-p && rmdir ./-p -+ as_mkdir_p=false -+fi -+ -+as_test_x='test -x' -+as_executable_p=as_fn_executable_p -+ -+# Sed expression to map a string onto a valid CPP name. -+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" -+ -+# Sed expression to map a string onto a valid variable name. -+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" -+ -+SHELL=${CONFIG_SHELL-/bin/sh} -+ -+ -+test -n "$DJDIR" || exec 7<&0 &1 -+ -+# Name of the host. -+# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, -+# so uname gets run too. -+ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` -+ -+# -+# Initializations. -+# -+ac_default_prefix=/usr/local -+ac_clean_files= -+ac_config_libobj_dir=. -+LIB@&t@OBJS= -+cross_compiling=no -+subdirs= -+MFLAGS= -+MAKEFLAGS= -+ -+# Identity of this package. -+PACKAGE_NAME='package-unused' -+PACKAGE_TARNAME='libstdc++' -+PACKAGE_VERSION='version-unused' -+PACKAGE_STRING='package-unused version-unused' -+PACKAGE_BUGREPORT='' -+PACKAGE_URL='' -+ -+ac_unique_file="src/shared/hashtable-aux.cc" -+# Factoring default headers for most tests. -+ac_includes_default="\ -+#include -+#ifdef HAVE_SYS_TYPES_H -+# include -+#endif -+#ifdef HAVE_SYS_STAT_H -+# include -+#endif -+#ifdef STDC_HEADERS -+# include -+# include -+#else -+# ifdef HAVE_STDLIB_H -+# include -+# endif -+#endif -+#ifdef HAVE_STRING_H -+# if !defined STDC_HEADERS && defined HAVE_MEMORY_H -+# include -+# endif -+# include -+#endif -+#ifdef HAVE_STRINGS_H -+# include -+#endif -+#ifdef HAVE_INTTYPES_H -+# include -+#endif -+#ifdef HAVE_STDINT_H -+# include -+#endif -+#ifdef HAVE_UNISTD_H -+# include -+#endif" -+ -+ac_subst_vars='am__EXEEXT_FALSE -+am__EXEEXT_TRUE -+LTLIBOBJS -+LIB@&t@OBJS -+get_gcc_base_ver -+WARN_FLAGS -+OPTIMIZE_CXXFLAGS -+TOPLEVEL_INCLUDES -+GLIBCXX_INCLUDES -+glibcxx_toolexeclibdir -+glibcxx_toolexecdir -+gxx_include_dir -+glibcxx_prefixdir -+EXTRA_CFLAGS -+tmake_file -+CPU_OPT_BITS_RANDOM -+CPU_OPT_EXT_RANDOM -+ERROR_CONSTANTS_SRCDIR -+OS_INC_SRCDIR -+ABI_TWEAKS_SRCDIR -+CPU_DEFINES_SRCDIR -+ATOMIC_FLAGS -+ATOMIC_WORD_SRCDIR -+ATOMICITY_SRCDIR -+INCLUDE_DIR_NOTPARALLEL_FALSE -+INCLUDE_DIR_NOTPARALLEL_TRUE -+BUILD_PDF_FALSE -+BUILD_PDF_TRUE -+PDFLATEX -+DBLATEX -+BUILD_MAN_FALSE -+BUILD_MAN_TRUE -+BUILD_HTML_FALSE -+BUILD_HTML_TRUE -+BUILD_XML_FALSE -+BUILD_XML_TRUE -+BUILD_EPUB_FALSE -+BUILD_EPUB_TRUE -+XSL_STYLE_DIR -+XMLLINT -+XSLTPROC -+XMLCATALOG -+DOT -+DOXYGEN -+BUILD_INFO_FALSE -+BUILD_INFO_TRUE -+ENABLE_BACKTRACE_FALSE -+ENABLE_BACKTRACE_TRUE -+BACKTRACE_SUPPORTS_THREADS -+BACKTRACE_USES_MALLOC -+BACKTRACE_SUPPORTED -+BACKTRACE_CPPFLAGS -+ALLOC_FILE -+VIEW_FILE -+FORMAT_FILE -+ENABLE_FILESYSTEM_TS_FALSE -+ENABLE_FILESYSTEM_TS_TRUE -+baseline_subdir_switch -+baseline_dir -+HWCAP_CFLAGS -+GLIBCXX_LDBL_ALT128_COMPAT_FALSE -+GLIBCXX_LDBL_ALT128_COMPAT_TRUE -+GLIBCXX_LDBL_COMPAT_FALSE -+GLIBCXX_LDBL_COMPAT_TRUE -+LONG_DOUBLE_ALT128_COMPAT_FLAGS -+LONG_DOUBLE_128_FLAGS -+LONG_DOUBLE_COMPAT_FLAGS -+ENABLE_CXX11_ABI_FALSE -+ENABLE_CXX11_ABI_TRUE -+glibcxx_cxx98_abi -+ENABLE_DUAL_ABI_FALSE -+ENABLE_DUAL_ABI_TRUE -+ENABLE_VISIBILITY_FALSE -+ENABLE_VISIBILITY_TRUE -+libtool_VERSION -+ENABLE_SYMVERS_SUN_FALSE -+ENABLE_SYMVERS_SUN_TRUE -+ENABLE_SYMVERS_DARWIN_FALSE -+ENABLE_SYMVERS_DARWIN_TRUE -+ENABLE_SYMVERS_GNU_NAMESPACE_FALSE -+ENABLE_SYMVERS_GNU_NAMESPACE_TRUE -+ENABLE_SYMVERS_GNU_FALSE -+ENABLE_SYMVERS_GNU_TRUE -+ENABLE_SYMVERS_FALSE -+ENABLE_SYMVERS_TRUE -+port_specific_symbol_files -+SYMVER_FILE -+CXXFILT -+LTLIBICONV -+LIBICONV -+OPT_LDFLAGS -+SECTION_LDFLAGS -+GLIBCXX_LIBS -+ENABLE_VTABLE_VERIFY_FALSE -+ENABLE_VTABLE_VERIFY_TRUE -+VTV_CYGMIN_FALSE -+VTV_CYGMIN_TRUE -+VTV_CXXLINKFLAGS -+VTV_PCH_CXXFLAGS -+VTV_CXXFLAGS -+ENABLE_WERROR_FALSE -+ENABLE_WERROR_TRUE -+ENABLE_PYTHONDIR_FALSE -+ENABLE_PYTHONDIR_TRUE -+python_mod_dir -+ENABLE_EXTERN_TEMPLATE_FALSE -+ENABLE_EXTERN_TEMPLATE_TRUE -+EXTRA_CXX_FLAGS -+GLIBCXX_BUILD_DEBUG_FALSE -+GLIBCXX_BUILD_DEBUG_TRUE -+DEBUG_FLAGS -+GLIBCXX_C_HEADERS_COMPATIBILITY_FALSE -+GLIBCXX_C_HEADERS_COMPATIBILITY_TRUE -+GLIBCXX_C_HEADERS_C_GLOBAL_FALSE -+GLIBCXX_C_HEADERS_C_GLOBAL_TRUE -+GLIBCXX_C_HEADERS_C_STD_FALSE -+GLIBCXX_C_HEADERS_C_STD_TRUE -+GLIBCXX_C_HEADERS_C_FALSE -+GLIBCXX_C_HEADERS_C_TRUE -+C_INCLUDE_DIR -+ALLOCATOR_NAME -+ALLOCATOR_H -+ENABLE_ALLOCATOR_NEW_FALSE -+ENABLE_ALLOCATOR_NEW_TRUE -+CLOCALE_INTERNAL_H -+CLOCALE_CC -+CTIME_CC -+CTIME_H -+CNUMERIC_CC -+CMONEY_CC -+CMESSAGES_CC -+CCTYPE_CC -+CCOLLATE_CC -+CCODECVT_CC -+CMESSAGES_H -+CLOCALE_H -+USE_NLS -+glibcxx_localedir -+glibcxx_POFILES -+glibcxx_MOFILES -+check_msgfmt -+BASIC_FILE_CC -+BASIC_FILE_H -+CSTDIO_H -+SECTION_FLAGS -+ENABLE_FLOAT128_FALSE -+ENABLE_FLOAT128_TRUE -+thread_header -+glibcxx_PCHFLAGS -+GLIBCXX_BUILD_PCH_FALSE -+GLIBCXX_BUILD_PCH_TRUE -+FREESTANDING_FLAGS -+GLIBCXX_HOSTED_FALSE -+GLIBCXX_HOSTED_TRUE -+glibcxx_compiler_shared_flag -+glibcxx_compiler_pic_flag -+glibcxx_lt_pic_flag -+enable_static -+enable_shared -+lt_host_flags -+CXXCPP -+OTOOL64 -+OTOOL -+LIPO -+NMEDIT -+DSYMUTIL -+OBJDUMP -+NM -+ac_ct_DUMPBIN -+DUMPBIN -+LD -+FGREP -+SED -+LIBTOOL -+EGREP -+GREP -+CPP -+MAINT -+MAINTAINER_MODE_FALSE -+MAINTAINER_MODE_TRUE -+RANLIB -+AR -+AS -+LN_S -+toplevel_srcdir -+toplevel_builddir -+glibcxx_srcdir -+glibcxx_builddir -+ac_ct_CXX -+CXXFLAGS -+CXX -+OBJEXT -+EXEEXT -+ac_ct_CC -+CPPFLAGS -+LDFLAGS -+CFLAGS -+CC -+AM_BACKSLASH -+AM_DEFAULT_VERBOSITY -+AM_DEFAULT_V -+AM_V -+am__untar -+am__tar -+AMTAR -+am__leading_dot -+SET_MAKE -+AWK -+mkdir_p -+MKDIR_P -+INSTALL_STRIP_PROGRAM -+STRIP -+install_sh -+MAKEINFO -+AUTOHEADER -+AUTOMAKE -+AUTOCONF -+ACLOCAL -+VERSION -+PACKAGE -+CYGPATH_W -+am__isrc -+INSTALL_DATA -+INSTALL_SCRIPT -+INSTALL_PROGRAM -+target_os -+target_vendor -+target_cpu -+target -+host_os -+host_vendor -+host_cpu -+host -+build_os -+build_vendor -+build_cpu -+build -+multi_basedir -+target_alias -+host_alias -+build_alias -+LIBS -+ECHO_T -+ECHO_N -+ECHO_C -+DEFS -+mandir -+localedir -+libdir -+psdir -+pdfdir -+dvidir -+htmldir -+infodir -+docdir -+oldincludedir -+includedir -+localstatedir -+sharedstatedir -+sysconfdir -+datadir -+datarootdir -+libexecdir -+sbindir -+bindir -+program_transform_name -+prefix -+exec_prefix -+PACKAGE_URL -+PACKAGE_BUGREPORT -+PACKAGE_STRING -+PACKAGE_VERSION -+PACKAGE_TARNAME -+PACKAGE_NAME -+PATH_SEPARATOR -+SHELL' -+ac_subst_files='' -+ac_user_opts=' -+enable_option_checking -+enable_multilib -+enable_silent_rules -+enable_largefile -+with_target_subdir -+with_cross_host -+with_newlib -+enable_maintainer_mode -+enable_shared -+enable_static -+with_pic -+enable_fast_install -+with_gnu_ld -+enable_libtool_lock -+enable_hosted_libstdcxx -+enable_libstdcxx_verbose -+enable_libstdcxx_pch -+with_libstdcxx_lock_policy -+enable_cstdio -+enable_clocale -+enable_nls -+enable_libstdcxx_allocator -+enable_cheaders_obsolete -+enable_cheaders -+enable_long_long -+enable_wchar_t -+enable_c99 -+enable_concept_checks -+enable_libstdcxx_debug_flags -+enable_libstdcxx_debug -+enable_cxx_flags -+enable_fully_dynamic_string -+enable_extern_template -+with_python_dir -+enable_werror -+enable_vtable_verify -+enable_libstdcxx_time -+enable_tls -+enable_rpath -+with_libiconv_prefix -+with_libiconv_type -+with_system_libunwind -+enable_linux_futex -+enable_symvers -+enable_libstdcxx_visibility -+enable_libstdcxx_dual_abi -+with_default_libstdcxx_abi -+enable_libstdcxx_threads -+enable_libstdcxx_filesystem_ts -+enable_libstdcxx_backtrace -+enable_cet -+with_gxx_include_dir -+enable_version_specific_runtime_libs -+with_toolexeclibdir -+with_gcc_major_version_only -+' -+ ac_precious_vars='build_alias -+host_alias -+target_alias -+CC -+CFLAGS -+LDFLAGS -+LIBS -+CPPFLAGS -+CXX -+CXXFLAGS -+CCC -+CPP -+CXXCPP -+CXXFILT' -+ -+ -+# Initialize some variables set by options. -+ac_init_help= -+ac_init_version=false -+ac_unrecognized_opts= -+ac_unrecognized_sep= -+# The variables have the same names as the options, with -+# dashes changed to underlines. -+cache_file=/dev/null -+exec_prefix=NONE -+no_create= -+no_recursion= -+prefix=NONE -+program_prefix=NONE -+program_suffix=NONE -+program_transform_name=s,x,x, -+silent= -+site= -+srcdir= -+verbose= -+x_includes=NONE -+x_libraries=NONE -+ -+# Installation directory options. -+# These are left unexpanded so users can "make install exec_prefix=/foo" -+# and all the variables that are supposed to be based on exec_prefix -+# by default will actually change. -+# Use braces instead of parens because sh, perl, etc. also accept them. -+# (The list follows the same order as the GNU Coding Standards.) -+bindir='${exec_prefix}/bin' -+sbindir='${exec_prefix}/sbin' -+libexecdir='${exec_prefix}/libexec' -+datarootdir='${prefix}/share' -+datadir='${datarootdir}' -+sysconfdir='${prefix}/etc' -+sharedstatedir='${prefix}/com' -+localstatedir='${prefix}/var' -+includedir='${prefix}/include' -+oldincludedir='/usr/include' -+docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' -+infodir='${datarootdir}/info' -+htmldir='${docdir}' -+dvidir='${docdir}' -+pdfdir='${docdir}' -+psdir='${docdir}' -+libdir='${exec_prefix}/lib' -+localedir='${datarootdir}/locale' -+mandir='${datarootdir}/man' -+ -+ac_prev= -+ac_dashdash= -+for ac_option -+do -+ # If the previous option needs an argument, assign it. -+ if test -n "$ac_prev"; then -+ eval $ac_prev=\$ac_option -+ ac_prev= -+ continue -+ fi -+ -+ case $ac_option in -+ *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; -+ *=) ac_optarg= ;; -+ *) ac_optarg=yes ;; -+ esac -+ -+ # Accept the important Cygnus configure options, so we can diagnose typos. -+ -+ case $ac_dashdash$ac_option in -+ --) -+ ac_dashdash=yes ;; -+ -+ -bindir | --bindir | --bindi | --bind | --bin | --bi) -+ ac_prev=bindir ;; -+ -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) -+ bindir=$ac_optarg ;; -+ -+ -build | --build | --buil | --bui | --bu) -+ ac_prev=build_alias ;; -+ -build=* | --build=* | --buil=* | --bui=* | --bu=*) -+ build_alias=$ac_optarg ;; -+ -+ -cache-file | --cache-file | --cache-fil | --cache-fi \ -+ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) -+ ac_prev=cache_file ;; -+ -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ -+ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) -+ cache_file=$ac_optarg ;; -+ -+ --config-cache | -C) -+ cache_file=config.cache ;; -+ -+ -datadir | --datadir | --datadi | --datad) -+ ac_prev=datadir ;; -+ -datadir=* | --datadir=* | --datadi=* | --datad=*) -+ datadir=$ac_optarg ;; -+ -+ -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ -+ | --dataroo | --dataro | --datar) -+ ac_prev=datarootdir ;; -+ -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ -+ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) -+ datarootdir=$ac_optarg ;; -+ -+ -disable-* | --disable-*) -+ ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` -+ # Reject names that are not valid shell variable names. -+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && -+ as_fn_error $? "invalid feature name: $ac_useropt" -+ ac_useropt_orig=$ac_useropt -+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` -+ case $ac_user_opts in -+ *" -+"enable_$ac_useropt" -+"*) ;; -+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" -+ ac_unrecognized_sep=', ';; -+ esac -+ eval enable_$ac_useropt=no ;; -+ -+ -docdir | --docdir | --docdi | --doc | --do) -+ ac_prev=docdir ;; -+ -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) -+ docdir=$ac_optarg ;; -+ -+ -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) -+ ac_prev=dvidir ;; -+ -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) -+ dvidir=$ac_optarg ;; -+ -+ -enable-* | --enable-*) -+ ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` -+ # Reject names that are not valid shell variable names. -+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && -+ as_fn_error $? "invalid feature name: $ac_useropt" -+ ac_useropt_orig=$ac_useropt -+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` -+ case $ac_user_opts in -+ *" -+"enable_$ac_useropt" -+"*) ;; -+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" -+ ac_unrecognized_sep=', ';; -+ esac -+ eval enable_$ac_useropt=\$ac_optarg ;; -+ -+ -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ -+ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ -+ | --exec | --exe | --ex) -+ ac_prev=exec_prefix ;; -+ -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ -+ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ -+ | --exec=* | --exe=* | --ex=*) -+ exec_prefix=$ac_optarg ;; -+ -+ -gas | --gas | --ga | --g) -+ # Obsolete; use --with-gas. -+ with_gas=yes ;; -+ -+ -help | --help | --hel | --he | -h) -+ ac_init_help=long ;; -+ -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) -+ ac_init_help=recursive ;; -+ -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) -+ ac_init_help=short ;; -+ -+ -host | --host | --hos | --ho) -+ ac_prev=host_alias ;; -+ -host=* | --host=* | --hos=* | --ho=*) -+ host_alias=$ac_optarg ;; -+ -+ -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) -+ ac_prev=htmldir ;; -+ -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ -+ | --ht=*) -+ htmldir=$ac_optarg ;; -+ -+ -includedir | --includedir | --includedi | --included | --include \ -+ | --includ | --inclu | --incl | --inc) -+ ac_prev=includedir ;; -+ -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ -+ | --includ=* | --inclu=* | --incl=* | --inc=*) -+ includedir=$ac_optarg ;; -+ -+ -infodir | --infodir | --infodi | --infod | --info | --inf) -+ ac_prev=infodir ;; -+ -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) -+ infodir=$ac_optarg ;; -+ -+ -libdir | --libdir | --libdi | --libd) -+ ac_prev=libdir ;; -+ -libdir=* | --libdir=* | --libdi=* | --libd=*) -+ libdir=$ac_optarg ;; -+ -+ -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ -+ | --libexe | --libex | --libe) -+ ac_prev=libexecdir ;; -+ -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ -+ | --libexe=* | --libex=* | --libe=*) -+ libexecdir=$ac_optarg ;; -+ -+ -localedir | --localedir | --localedi | --localed | --locale) -+ ac_prev=localedir ;; -+ -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) -+ localedir=$ac_optarg ;; -+ -+ -localstatedir | --localstatedir | --localstatedi | --localstated \ -+ | --localstate | --localstat | --localsta | --localst | --locals) -+ ac_prev=localstatedir ;; -+ -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ -+ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) -+ localstatedir=$ac_optarg ;; -+ -+ -mandir | --mandir | --mandi | --mand | --man | --ma | --m) -+ ac_prev=mandir ;; -+ -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) -+ mandir=$ac_optarg ;; -+ -+ -nfp | --nfp | --nf) -+ # Obsolete; use --without-fp. -+ with_fp=no ;; -+ -+ -no-create | --no-create | --no-creat | --no-crea | --no-cre \ -+ | --no-cr | --no-c | -n) -+ no_create=yes ;; -+ -+ -no-recursion | --no-recursion | --no-recursio | --no-recursi \ -+ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) -+ no_recursion=yes ;; -+ -+ -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ -+ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ -+ | --oldin | --oldi | --old | --ol | --o) -+ ac_prev=oldincludedir ;; -+ -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ -+ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ -+ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) -+ oldincludedir=$ac_optarg ;; -+ -+ -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) -+ ac_prev=prefix ;; -+ -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) -+ prefix=$ac_optarg ;; -+ -+ -program-prefix | --program-prefix | --program-prefi | --program-pref \ -+ | --program-pre | --program-pr | --program-p) -+ ac_prev=program_prefix ;; -+ -program-prefix=* | --program-prefix=* | --program-prefi=* \ -+ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) -+ program_prefix=$ac_optarg ;; -+ -+ -program-suffix | --program-suffix | --program-suffi | --program-suff \ -+ | --program-suf | --program-su | --program-s) -+ ac_prev=program_suffix ;; -+ -program-suffix=* | --program-suffix=* | --program-suffi=* \ -+ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) -+ program_suffix=$ac_optarg ;; -+ -+ -program-transform-name | --program-transform-name \ -+ | --program-transform-nam | --program-transform-na \ -+ | --program-transform-n | --program-transform- \ -+ | --program-transform | --program-transfor \ -+ | --program-transfo | --program-transf \ -+ | --program-trans | --program-tran \ -+ | --progr-tra | --program-tr | --program-t) -+ ac_prev=program_transform_name ;; -+ -program-transform-name=* | --program-transform-name=* \ -+ | --program-transform-nam=* | --program-transform-na=* \ -+ | --program-transform-n=* | --program-transform-=* \ -+ | --program-transform=* | --program-transfor=* \ -+ | --program-transfo=* | --program-transf=* \ -+ | --program-trans=* | --program-tran=* \ -+ | --progr-tra=* | --program-tr=* | --program-t=*) -+ program_transform_name=$ac_optarg ;; -+ -+ -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) -+ ac_prev=pdfdir ;; -+ -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) -+ pdfdir=$ac_optarg ;; -+ -+ -psdir | --psdir | --psdi | --psd | --ps) -+ ac_prev=psdir ;; -+ -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) -+ psdir=$ac_optarg ;; -+ -+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \ -+ | -silent | --silent | --silen | --sile | --sil) -+ silent=yes ;; -+ -+ -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) -+ ac_prev=sbindir ;; -+ -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ -+ | --sbi=* | --sb=*) -+ sbindir=$ac_optarg ;; -+ -+ -sharedstatedir | --sharedstatedir | --sharedstatedi \ -+ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ -+ | --sharedst | --shareds | --shared | --share | --shar \ -+ | --sha | --sh) -+ ac_prev=sharedstatedir ;; -+ -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ -+ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ -+ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ -+ | --sha=* | --sh=*) -+ sharedstatedir=$ac_optarg ;; -+ -+ -site | --site | --sit) -+ ac_prev=site ;; -+ -site=* | --site=* | --sit=*) -+ site=$ac_optarg ;; -+ -+ -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) -+ ac_prev=srcdir ;; -+ -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) -+ srcdir=$ac_optarg ;; -+ -+ -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ -+ | --syscon | --sysco | --sysc | --sys | --sy) -+ ac_prev=sysconfdir ;; -+ -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ -+ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) -+ sysconfdir=$ac_optarg ;; -+ -+ -target | --target | --targe | --targ | --tar | --ta | --t) -+ ac_prev=target_alias ;; -+ -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) -+ target_alias=$ac_optarg ;; -+ -+ -v | -verbose | --verbose | --verbos | --verbo | --verb) -+ verbose=yes ;; -+ -+ -version | --version | --versio | --versi | --vers | -V) -+ ac_init_version=: ;; -+ -+ -with-* | --with-*) -+ ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` -+ # Reject names that are not valid shell variable names. -+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && -+ as_fn_error $? "invalid package name: $ac_useropt" -+ ac_useropt_orig=$ac_useropt -+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` -+ case $ac_user_opts in -+ *" -+"with_$ac_useropt" -+"*) ;; -+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" -+ ac_unrecognized_sep=', ';; -+ esac -+ eval with_$ac_useropt=\$ac_optarg ;; -+ -+ -without-* | --without-*) -+ ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` -+ # Reject names that are not valid shell variable names. -+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && -+ as_fn_error $? "invalid package name: $ac_useropt" -+ ac_useropt_orig=$ac_useropt -+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` -+ case $ac_user_opts in -+ *" -+"with_$ac_useropt" -+"*) ;; -+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" -+ ac_unrecognized_sep=', ';; -+ esac -+ eval with_$ac_useropt=no ;; -+ -+ --x) -+ # Obsolete; use --with-x. -+ with_x=yes ;; -+ -+ -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ -+ | --x-incl | --x-inc | --x-in | --x-i) -+ ac_prev=x_includes ;; -+ -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ -+ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) -+ x_includes=$ac_optarg ;; -+ -+ -x-libraries | --x-libraries | --x-librarie | --x-librari \ -+ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) -+ ac_prev=x_libraries ;; -+ -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ -+ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) -+ x_libraries=$ac_optarg ;; -+ -+ -*) as_fn_error $? "unrecognized option: \`$ac_option' -+Try \`$0 --help' for more information" -+ ;; -+ -+ *=*) -+ ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` -+ # Reject names that are not valid shell variable names. -+ case $ac_envvar in #( -+ '' | [0-9]* | *[!_$as_cr_alnum]* ) -+ as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; -+ esac -+ eval $ac_envvar=\$ac_optarg -+ export $ac_envvar ;; -+ -+ *) -+ # FIXME: should be removed in autoconf 3.0. -+ $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 -+ expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && -+ $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 -+ : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" -+ ;; -+ -+ esac -+done -+ -+if test -n "$ac_prev"; then -+ ac_option=--`echo $ac_prev | sed 's/_/-/g'` -+ as_fn_error $? "missing argument to $ac_option" -+fi -+ -+if test -n "$ac_unrecognized_opts"; then -+ case $enable_option_checking in -+ no) ;; -+ fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; -+ *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; -+ esac -+fi -+ -+# Check all directory arguments for consistency. -+for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ -+ datadir sysconfdir sharedstatedir localstatedir includedir \ -+ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ -+ libdir localedir mandir -+do -+ eval ac_val=\$$ac_var -+ # Remove trailing slashes. -+ case $ac_val in -+ */ ) -+ ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` -+ eval $ac_var=\$ac_val;; -+ esac -+ # Be sure to have absolute directory names. -+ case $ac_val in -+ [\\/$]* | ?:[\\/]* ) continue;; -+ NONE | '' ) case $ac_var in *prefix ) continue;; esac;; -+ esac -+ as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" -+done -+ -+# There might be people who depend on the old broken behavior: `$host' -+# used to hold the argument of --host etc. -+# FIXME: To remove some day. -+build=$build_alias -+host=$host_alias -+target=$target_alias -+ -+# FIXME: To remove some day. -+if test "x$host_alias" != x; then -+ if test "x$build_alias" = x; then -+ cross_compiling=maybe -+ elif test "x$build_alias" != "x$host_alias"; then -+ cross_compiling=yes -+ fi -+fi -+ -+ac_tool_prefix= -+test -n "$host_alias" && ac_tool_prefix=$host_alias- -+ -+test "$silent" = yes && exec 6>/dev/null -+ -+ -+ac_pwd=`pwd` && test -n "$ac_pwd" && -+ac_ls_di=`ls -di .` && -+ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || -+ as_fn_error $? "working directory cannot be determined" -+test "X$ac_ls_di" = "X$ac_pwd_ls_di" || -+ as_fn_error $? "pwd does not report name of working directory" -+ -+ -+# Find the source files, if location was not specified. -+if test -z "$srcdir"; then -+ ac_srcdir_defaulted=yes -+ # Try the directory containing this script, then the parent directory. -+ ac_confdir=`$as_dirname -- "$as_myself" || -+$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ -+ X"$as_myself" : 'X\(//\)[^/]' \| \ -+ X"$as_myself" : 'X\(//\)$' \| \ -+ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || -+$as_echo X"$as_myself" | -+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)[^/].*/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\).*/{ -+ s//\1/ -+ q -+ } -+ s/.*/./; q'` -+ srcdir=$ac_confdir -+ if test ! -r "$srcdir/$ac_unique_file"; then -+ srcdir=.. -+ fi -+else -+ ac_srcdir_defaulted=no -+fi -+if test ! -r "$srcdir/$ac_unique_file"; then -+ test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." -+ as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" -+fi -+ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" -+ac_abs_confdir=`( -+ cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" -+ pwd)` -+# When building in place, set srcdir=. -+if test "$ac_abs_confdir" = "$ac_pwd"; then -+ srcdir=. -+fi -+# Remove unnecessary trailing slashes from srcdir. -+# Double slashes in file names in object file debugging info -+# mess up M-x gdb in Emacs. -+case $srcdir in -+*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; -+esac -+for ac_var in $ac_precious_vars; do -+ eval ac_env_${ac_var}_set=\${${ac_var}+set} -+ eval ac_env_${ac_var}_value=\$${ac_var} -+ eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} -+ eval ac_cv_env_${ac_var}_value=\$${ac_var} -+done -+ -+# -+# Report the --help message. -+# -+if test "$ac_init_help" = "long"; then -+ # Omit some internal or obsolete options to make the list less imposing. -+ # This message is too long to be a string in the A/UX 3.1 sh. -+ cat <<_ACEOF -+\`configure' configures package-unused version-unused to adapt to many kinds of systems. -+ -+Usage: $0 [OPTION]... [VAR=VALUE]... -+ -+To assign environment variables (e.g., CC, CFLAGS...), specify them as -+VAR=VALUE. See below for descriptions of some of the useful variables. -+ -+Defaults for the options are specified in brackets. -+ -+Configuration: -+ -h, --help display this help and exit -+ --help=short display options specific to this package -+ --help=recursive display the short help of all the included packages -+ -V, --version display version information and exit -+ -q, --quiet, --silent do not print \`checking ...' messages -+ --cache-file=FILE cache test results in FILE [disabled] -+ -C, --config-cache alias for \`--cache-file=config.cache' -+ -n, --no-create do not create output files -+ --srcdir=DIR find the sources in DIR [configure dir or \`..'] -+ -+Installation directories: -+ --prefix=PREFIX install architecture-independent files in PREFIX -+ @<:@@S|@ac_default_prefix@:>@ -+ --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX -+ @<:@PREFIX@:>@ -+ -+By default, \`make install' will install all the files in -+\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify -+an installation prefix other than \`$ac_default_prefix' using \`--prefix', -+for instance \`--prefix=\$HOME'. -+ -+For better control, use the options below. -+ -+Fine tuning of the installation directories: -+ --bindir=DIR user executables [EPREFIX/bin] -+ --sbindir=DIR system admin executables [EPREFIX/sbin] -+ --libexecdir=DIR program executables [EPREFIX/libexec] -+ --sysconfdir=DIR read-only single-machine data [PREFIX/etc] -+ --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] -+ --localstatedir=DIR modifiable single-machine data [PREFIX/var] -+ --libdir=DIR object code libraries [EPREFIX/lib] -+ --includedir=DIR C header files [PREFIX/include] -+ --oldincludedir=DIR C header files for non-gcc [/usr/include] -+ --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] -+ --datadir=DIR read-only architecture-independent data [DATAROOTDIR] -+ --infodir=DIR info documentation [DATAROOTDIR/info] -+ --localedir=DIR locale-dependent data [DATAROOTDIR/locale] -+ --mandir=DIR man documentation [DATAROOTDIR/man] -+ --docdir=DIR documentation root @<:@DATAROOTDIR/doc/libstdc++@:>@ -+ --htmldir=DIR html documentation [DOCDIR] -+ --dvidir=DIR dvi documentation [DOCDIR] -+ --pdfdir=DIR pdf documentation [DOCDIR] -+ --psdir=DIR ps documentation [DOCDIR] -+_ACEOF -+ -+ cat <<\_ACEOF -+ -+Program names: -+ --program-prefix=PREFIX prepend PREFIX to installed program names -+ --program-suffix=SUFFIX append SUFFIX to installed program names -+ --program-transform-name=PROGRAM run sed PROGRAM on installed program names -+ -+System types: -+ --build=BUILD configure for building on BUILD [guessed] -+ --host=HOST cross-compile to build programs to run on HOST [BUILD] -+ --target=TARGET configure for building compilers for TARGET [HOST] -+_ACEOF -+fi -+ -+if test -n "$ac_init_help"; then -+ case $ac_init_help in -+ short | recursive ) echo "Configuration of package-unused version-unused:";; -+ esac -+ cat <<\_ACEOF -+ -+Optional Features: -+ --disable-option-checking ignore unrecognized --enable/--with options -+ --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) -+ --enable-FEATURE[=ARG] include FEATURE [ARG=yes] -+ --enable-multilib build many library versions (default) -+ --enable-silent-rules less verbose build output (undo: "make V=1") -+ --disable-silent-rules verbose build output (undo: "make V=0") -+ --disable-largefile omit support for large files -+ --enable-maintainer-mode -+ enable make rules and dependencies not useful (and -+ sometimes confusing) to the casual installer -+ --enable-shared@<:@=PKGS@:>@ build shared libraries @<:@default=yes@:>@ -+ --enable-static@<:@=PKGS@:>@ build static libraries @<:@default=yes@:>@ -+ --enable-fast-install@<:@=PKGS@:>@ -+ optimize for fast installation @<:@default=yes@:>@ -+ --disable-libtool-lock avoid locking (might break parallel builds) -+ --disable-hosted-libstdcxx -+ only build freestanding C++ runtime support -+ --disable-libstdcxx-verbose -+ disable termination messages to standard error -+ --enable-libstdcxx-pch build pre-compiled libstdc++ headers -+ @<:@default=@S|@is_hosted@:>@ -+ --enable-cstdio[=PACKAGE] -+ use target-specific I/O package @<:@default=stdio@:>@ -+ --enable-clocale[=MODEL] -+ use MODEL for target locale package @<:@default=auto@:>@ -+ --enable-nls use Native Language Support (default) -+ --enable-libstdcxx-allocator[=KIND] -+ use KIND for target std::allocator base -+ @<:@default=auto@:>@ -+ --enable-cheaders-obsolete -+ allow use of obsolete "C" headers for g++ -+ @<:@default=no@:>@ -+ --enable-cheaders[=KIND] -+ construct "C" headers for g++ @<:@default=@S|@c_model@:>@ -+ --enable-long-long enable template specializations for 'long long' -+ @<:@default=yes@:>@ -+ --enable-wchar_t enable template specializations for 'wchar_t' -+ @<:@default=yes@:>@ -+ --enable-c99 turns on ISO/IEC 9899:1999 support @<:@default=yes@:>@ -+ --enable-concept-checks use Boost-derived template checks @<:@default=no@:>@ -+ --enable-libstdcxx-debug-flags=FLAGS -+ pass compiler FLAGS when building debug library -+ @<:@default="-g3 -O0 -D_GLIBCXX_ASSERTIONS"@:>@ -+ --enable-libstdcxx-debug -+ build extra debug library @<:@default=no@:>@ -+ --enable-cxx-flags=FLAGS -+ pass compiler FLAGS when building library @<:@default=@:>@ -+ --enable-fully-dynamic-string -+ do not put empty strings in per-process static -+ memory @<:@default=no@:>@ -+ --enable-extern-template -+ enable extern template @<:@default=yes@:>@ -+ --enable-werror turns on -Werror @<:@default=no@:>@ -+ --enable-vtable-verify enable vtable verify @<:@default=no@:>@ -+ --enable-libstdcxx-time[=KIND] -+ use KIND for check type @<:@default=auto@:>@ -+ --enable-tls Use thread-local storage @<:@default=yes@:>@ -+ --disable-rpath do not hardcode runtime library paths -+ --enable-linux-futex use the Linux futex system call @<:@default=default@:>@ -+ --enable-symvers[=STYLE] -+ enables symbol versioning of the shared library -+ @<:@default=yes@:>@ -+ --enable-libstdcxx-visibility -+ enables visibility safe usage @<:@default=yes@:>@ -+ --enable-libstdcxx-dual-abi -+ support two versions of std::string @<:@default=yes@:>@ -+ --enable-libstdcxx-threads -+ enable C++11 threads support @<:@default=auto@:>@ -+ --enable-libstdcxx-filesystem-ts -+ turns on ISO/IEC TS 18822 support @<:@default=auto@:>@ -+ --enable-libstdcxx-backtrace -+ turns on libbacktrace support @<:@default=auto@:>@ -+ --enable-cet enable Intel CET in target libraries @<:@default=auto@:>@ -+ --enable-version-specific-runtime-libs -+ Specify that runtime libraries should be installed -+ in a compiler-specific directory -+ -+Optional Packages: -+ --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] -+ --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) -+ --with-target-subdir=SUBDIR -+ configuring in a subdirectory -+ --with-cross-host=HOST configuring with a cross compiler -+ --with-newlib assume newlib as a system C library -+ --with-pic try to use only PIC/non-PIC objects @<:@default=use -+ both@:>@ -+ --with-gnu-ld assume the C compiler uses GNU ld @<:@default=no@:>@ -+ --with-libstdcxx-lock-policy={atomic,mutex,auto} -+ synchronization policy for shared_ptr reference -+ counting @<:@default=auto@:>@ -+ --with-python-dir the location to install Python modules. This path is -+ relative starting from the prefix. -+ --with-gnu-ld assume the C compiler uses GNU ld default=no -+ --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib -+ --without-libiconv-prefix don't search for libiconv in includedir and libdir -+ --with-libiconv-type=TYPE type of library to search for (auto/static/shared) -+ --with-system-libunwind use installed libunwind -+ --with-default-libstdcxx-abi -+ set the std::string ABI to use by default -+ --with-gxx-include-dir=DIR -+ installation directory for include files -+ --with-toolexeclibdir=DIR -+ install libraries built with a cross compiler within -+ DIR -+ --with-gcc-major-version-only -+ use only GCC major number in filesystem paths -+ -+Some influential environment variables: -+ CC C compiler command -+ CFLAGS C compiler flags -+ LDFLAGS linker flags, e.g. -L if you have libraries in a -+ nonstandard directory -+ LIBS libraries to pass to the linker, e.g. -l -+ CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if -+ you have headers in a nonstandard directory -+ CXX C++ compiler command -+ CXXFLAGS C++ compiler flags -+ CPP C preprocessor -+ CXXCPP C++ preprocessor -+ CXXFILT Location of GNU c++filt. Defaults to the first GNU version of -+ `c++filt', `gc++filt' on PATH. -+ -+Use these variables to override the choices made by `configure' or to help -+it to find libraries and programs with nonstandard names/locations. -+ -+Report bugs to the package provider. -+_ACEOF -+ac_status=$? -+fi -+ -+if test "$ac_init_help" = "recursive"; then -+ # If there are subdirs, report their specific --help. -+ for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue -+ test -d "$ac_dir" || -+ { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || -+ continue -+ ac_builddir=. -+ -+case "$ac_dir" in -+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -+*) -+ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` -+ # A ".." for each directory in $ac_dir_suffix. -+ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` -+ case $ac_top_builddir_sub in -+ "") ac_top_builddir_sub=. ac_top_build_prefix= ;; -+ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; -+ esac ;; -+esac -+ac_abs_top_builddir=$ac_pwd -+ac_abs_builddir=$ac_pwd$ac_dir_suffix -+# for backward compatibility: -+ac_top_builddir=$ac_top_build_prefix -+ -+case $srcdir in -+ .) # We are building in place. -+ ac_srcdir=. -+ ac_top_srcdir=$ac_top_builddir_sub -+ ac_abs_top_srcdir=$ac_pwd ;; -+ [\\/]* | ?:[\\/]* ) # Absolute name. -+ ac_srcdir=$srcdir$ac_dir_suffix; -+ ac_top_srcdir=$srcdir -+ ac_abs_top_srcdir=$srcdir ;; -+ *) # Relative name. -+ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix -+ ac_top_srcdir=$ac_top_build_prefix$srcdir -+ ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -+esac -+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix -+ -+ cd "$ac_dir" || { ac_status=$?; continue; } -+ # Check for guested configure. -+ if test -f "$ac_srcdir/configure.gnu"; then -+ echo && -+ $SHELL "$ac_srcdir/configure.gnu" --help=recursive -+ elif test -f "$ac_srcdir/configure"; then -+ echo && -+ $SHELL "$ac_srcdir/configure" --help=recursive -+ else -+ $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 -+ fi || ac_status=$? -+ cd "$ac_pwd" || { ac_status=$?; break; } -+ done -+fi -+ -+test -n "$ac_init_help" && exit $ac_status -+if $ac_init_version; then -+ cat <<\_ACEOF -+package-unused configure version-unused -+generated by GNU Autoconf 2.69 -+ -+Copyright (C) 2012 Free Software Foundation, Inc. -+This configure script is free software; the Free Software Foundation -+gives unlimited permission to copy, distribute and modify it. -+_ACEOF -+ exit -+fi -+ -+## ------------------------ ## -+## Autoconf initialization. ## -+## ------------------------ ## -+ -+@%:@ ac_fn_c_try_compile LINENO -+@%:@ -------------------------- -+@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. -+ac_fn_c_try_compile () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ rm -f conftest.$ac_objext -+ if { { ac_try="$ac_compile" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_compile") 2>conftest.err -+ ac_status=$? -+ if test -s conftest.err; then -+ grep -v '^ *+' conftest.err >conftest.er1 -+ cat conftest.er1 >&5 -+ mv -f conftest.er1 conftest.err -+ fi -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } && { -+ test -z "$ac_c_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest.$ac_objext; then : -+ ac_retval=0 -+else -+ $as_echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_retval=1 -+fi -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ as_fn_set_status $ac_retval -+ -+} @%:@ ac_fn_c_try_compile -+ -+@%:@ ac_fn_cxx_try_compile LINENO -+@%:@ ---------------------------- -+@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. -+ac_fn_cxx_try_compile () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ rm -f conftest.$ac_objext -+ if { { ac_try="$ac_compile" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_compile") 2>conftest.err -+ ac_status=$? -+ if test -s conftest.err; then -+ grep -v '^ *+' conftest.err >conftest.er1 -+ cat conftest.er1 >&5 -+ mv -f conftest.er1 conftest.err -+ fi -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } && { -+ test -z "$ac_cxx_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest.$ac_objext; then : -+ ac_retval=0 -+else -+ $as_echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_retval=1 -+fi -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ as_fn_set_status $ac_retval -+ -+} @%:@ ac_fn_cxx_try_compile -+ -+@%:@ ac_fn_c_try_cpp LINENO -+@%:@ ---------------------- -+@%:@ Try to preprocess conftest.@S|@ac_ext, and return whether this succeeded. -+ac_fn_c_try_cpp () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ if { { ac_try="$ac_cpp conftest.$ac_ext" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err -+ ac_status=$? -+ if test -s conftest.err; then -+ grep -v '^ *+' conftest.err >conftest.er1 -+ cat conftest.er1 >&5 -+ mv -f conftest.er1 conftest.err -+ fi -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } > conftest.i && { -+ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || -+ test ! -s conftest.err -+ }; then : -+ ac_retval=0 -+else -+ $as_echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_retval=1 -+fi -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ as_fn_set_status $ac_retval -+ -+} @%:@ ac_fn_c_try_cpp -+ -+@%:@ ac_fn_c_try_link LINENO -+@%:@ ----------------------- -+@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. -+ac_fn_c_try_link () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ rm -f conftest.$ac_objext conftest$ac_exeext -+ if { { ac_try="$ac_link" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_link") 2>conftest.err -+ ac_status=$? -+ if test -s conftest.err; then -+ grep -v '^ *+' conftest.err >conftest.er1 -+ cat conftest.er1 >&5 -+ mv -f conftest.er1 conftest.err -+ fi -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } && { -+ test -z "$ac_c_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest$ac_exeext && { -+ test "$cross_compiling" = yes || -+ test -x conftest$ac_exeext -+ }; then : -+ ac_retval=0 -+else -+ $as_echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_retval=1 -+fi -+ # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information -+ # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would -+ # interfere with the next link command; also delete a directory that is -+ # left behind by Apple's compiler. We do this before executing the actions. -+ rm -rf conftest.dSYM conftest_ipa8_conftest.oo -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ as_fn_set_status $ac_retval -+ -+} @%:@ ac_fn_c_try_link -+ -+@%:@ ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES -+@%:@ ------------------------------------------------------- -+@%:@ Tests whether HEADER exists and can be compiled using the include files in -+@%:@ INCLUDES, setting the cache variable VAR accordingly. -+ac_fn_c_check_header_compile () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -+$as_echo_n "checking for $2... " >&6; } -+if eval \${$3+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+@%:@include <$2> -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ eval "$3=yes" -+else -+ eval "$3=no" -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+eval ac_res=\$$3 -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -+$as_echo "$ac_res" >&6; } -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ -+} @%:@ ac_fn_c_check_header_compile -+ -+@%:@ ac_fn_c_try_run LINENO -+@%:@ ---------------------- -+@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. Assumes -+@%:@ that executables *can* be run. -+ac_fn_c_try_run () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ if { { ac_try="$ac_link" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_link") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' -+ { { case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_try") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; }; then : -+ ac_retval=0 -+else -+ $as_echo "$as_me: program exited with status $ac_status" >&5 -+ $as_echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_retval=$ac_status -+fi -+ rm -rf conftest.dSYM conftest_ipa8_conftest.oo -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ as_fn_set_status $ac_retval -+ -+} @%:@ ac_fn_c_try_run -+ -+@%:@ ac_fn_c_check_func LINENO FUNC VAR -+@%:@ ---------------------------------- -+@%:@ Tests whether FUNC exists, setting the cache variable VAR accordingly -+ac_fn_c_check_func () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -+$as_echo_n "checking for $2... " >&6; } -+if eval \${$3+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+/* Define $2 to an innocuous variant, in case declares $2. -+ For example, HP-UX 11i declares gettimeofday. */ -+#define $2 innocuous_$2 -+ -+/* System header to define __stub macros and hopefully few prototypes, -+ which can conflict with char $2 (); below. -+ Prefer to if __STDC__ is defined, since -+ exists even on freestanding compilers. */ -+ -+#ifdef __STDC__ -+# include -+#else -+# include -+#endif -+ -+#undef $2 -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char $2 (); -+/* The GNU C library defines this for functions which it implements -+ to always fail with ENOSYS. Some functions are actually named -+ something starting with __ and the normal name is an alias. */ -+#if defined __stub_$2 || defined __stub___$2 -+choke me -+#endif -+ -+int -+main () -+{ -+return $2 (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ eval "$3=yes" -+else -+ eval "$3=no" -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+eval ac_res=\$$3 -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -+$as_echo "$ac_res" >&6; } -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ -+} @%:@ ac_fn_c_check_func -+ -+@%:@ ac_fn_cxx_try_cpp LINENO -+@%:@ ------------------------ -+@%:@ Try to preprocess conftest.@S|@ac_ext, and return whether this succeeded. -+ac_fn_cxx_try_cpp () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ if { { ac_try="$ac_cpp conftest.$ac_ext" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err -+ ac_status=$? -+ if test -s conftest.err; then -+ grep -v '^ *+' conftest.err >conftest.er1 -+ cat conftest.er1 >&5 -+ mv -f conftest.er1 conftest.err -+ fi -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } > conftest.i && { -+ test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || -+ test ! -s conftest.err -+ }; then : -+ ac_retval=0 -+else -+ $as_echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_retval=1 -+fi -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ as_fn_set_status $ac_retval -+ -+} @%:@ ac_fn_cxx_try_cpp -+ -+@%:@ ac_fn_cxx_try_link LINENO -+@%:@ ------------------------- -+@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. -+ac_fn_cxx_try_link () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ rm -f conftest.$ac_objext conftest$ac_exeext -+ if { { ac_try="$ac_link" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_link") 2>conftest.err -+ ac_status=$? -+ if test -s conftest.err; then -+ grep -v '^ *+' conftest.err >conftest.er1 -+ cat conftest.er1 >&5 -+ mv -f conftest.er1 conftest.err -+ fi -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } && { -+ test -z "$ac_cxx_werror_flag" || -+ test ! -s conftest.err -+ } && test -s conftest$ac_exeext && { -+ test "$cross_compiling" = yes || -+ test -x conftest$ac_exeext -+ }; then : -+ ac_retval=0 -+else -+ $as_echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+ ac_retval=1 -+fi -+ # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information -+ # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would -+ # interfere with the next link command; also delete a directory that is -+ # left behind by Apple's compiler. We do this before executing the actions. -+ rm -rf conftest.dSYM conftest_ipa8_conftest.oo -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ as_fn_set_status $ac_retval -+ -+} @%:@ ac_fn_cxx_try_link -+ -+@%:@ ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES -+@%:@ ------------------------------------------------------- -+@%:@ Tests whether HEADER exists, giving a warning if it cannot be compiled using -+@%:@ the include files in INCLUDES and setting the cache variable VAR -+@%:@ accordingly. -+ac_fn_c_check_header_mongrel () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ if eval \${$3+:} false; then : -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -+$as_echo_n "checking for $2... " >&6; } -+if eval \${$3+:} false; then : -+ $as_echo_n "(cached) " >&6 -+fi -+eval ac_res=\$$3 -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -+$as_echo "$ac_res" >&6; } -+else -+ # Is the header compilable? -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 -+$as_echo_n "checking $2 usability... " >&6; } -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+@%:@include <$2> -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_header_compiler=yes -+else -+ ac_header_compiler=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 -+$as_echo "$ac_header_compiler" >&6; } -+ -+# Is the header present? -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 -+$as_echo_n "checking $2 presence... " >&6; } -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@include <$2> -+_ACEOF -+if ac_fn_c_try_cpp "$LINENO"; then : -+ ac_header_preproc=yes -+else -+ ac_header_preproc=no -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 -+$as_echo "$ac_header_preproc" >&6; } -+ -+# So? What about this header? -+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( -+ yes:no: ) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 -+$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -+$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} -+ ;; -+ no:yes:* ) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 -+$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 -+$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 -+$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 -+$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -+$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} -+ ;; -+esac -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -+$as_echo_n "checking for $2... " >&6; } -+if eval \${$3+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ eval "$3=\$ac_header_compiler" -+fi -+eval ac_res=\$$3 -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -+$as_echo "$ac_res" >&6; } -+fi -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ -+} @%:@ ac_fn_c_check_header_mongrel -+ -+@%:@ ac_fn_cxx_check_header_mongrel LINENO HEADER VAR INCLUDES -+@%:@ --------------------------------------------------------- -+@%:@ Tests whether HEADER exists, giving a warning if it cannot be compiled using -+@%:@ the include files in INCLUDES and setting the cache variable VAR -+@%:@ accordingly. -+ac_fn_cxx_check_header_mongrel () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ if eval \${$3+:} false; then : -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -+$as_echo_n "checking for $2... " >&6; } -+if eval \${$3+:} false; then : -+ $as_echo_n "(cached) " >&6 -+fi -+eval ac_res=\$$3 -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -+$as_echo "$ac_res" >&6; } -+else -+ # Is the header compilable? -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 -+$as_echo_n "checking $2 usability... " >&6; } -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+@%:@include <$2> -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_header_compiler=yes -+else -+ ac_header_compiler=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 -+$as_echo "$ac_header_compiler" >&6; } -+ -+# Is the header present? -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 -+$as_echo_n "checking $2 presence... " >&6; } -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@include <$2> -+_ACEOF -+if ac_fn_cxx_try_cpp "$LINENO"; then : -+ ac_header_preproc=yes -+else -+ ac_header_preproc=no -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 -+$as_echo "$ac_header_preproc" >&6; } -+ -+# So? What about this header? -+case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in #(( -+ yes:no: ) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 -+$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -+$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} -+ ;; -+ no:yes:* ) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 -+$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 -+$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 -+$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 -+$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -+$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} -+ ;; -+esac -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -+$as_echo_n "checking for $2... " >&6; } -+if eval \${$3+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ eval "$3=\$ac_header_compiler" -+fi -+eval ac_res=\$$3 -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -+$as_echo "$ac_res" >&6; } -+fi -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ -+} @%:@ ac_fn_cxx_check_header_mongrel -+ -+@%:@ ac_fn_c_compute_int LINENO EXPR VAR INCLUDES -+@%:@ -------------------------------------------- -+@%:@ Tries to find the compile-time value of EXPR in a program that includes -+@%:@ INCLUDES, setting VAR accordingly. Returns whether the value could be -+@%:@ computed -+ac_fn_c_compute_int () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ if test "$cross_compiling" = yes; then -+ # Depending upon the size, compute the lo and hi bounds. -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+int -+main () -+{ -+static int test_array @<:@1 - 2 * !(($2) >= 0)@:>@; -+test_array @<:@0@:>@ = 0; -+return test_array @<:@0@:>@; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_lo=0 ac_mid=0 -+ while :; do -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+int -+main () -+{ -+static int test_array @<:@1 - 2 * !(($2) <= $ac_mid)@:>@; -+test_array @<:@0@:>@ = 0; -+return test_array @<:@0@:>@; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_hi=$ac_mid; break -+else -+ as_fn_arith $ac_mid + 1 && ac_lo=$as_val -+ if test $ac_lo -le $ac_mid; then -+ ac_lo= ac_hi= -+ break -+ fi -+ as_fn_arith 2 '*' $ac_mid + 1 && ac_mid=$as_val -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ done -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+int -+main () -+{ -+static int test_array @<:@1 - 2 * !(($2) < 0)@:>@; -+test_array @<:@0@:>@ = 0; -+return test_array @<:@0@:>@; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_hi=-1 ac_mid=-1 -+ while :; do -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+int -+main () -+{ -+static int test_array @<:@1 - 2 * !(($2) >= $ac_mid)@:>@; -+test_array @<:@0@:>@ = 0; -+return test_array @<:@0@:>@; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_lo=$ac_mid; break -+else -+ as_fn_arith '(' $ac_mid ')' - 1 && ac_hi=$as_val -+ if test $ac_mid -le $ac_hi; then -+ ac_lo= ac_hi= -+ break -+ fi -+ as_fn_arith 2 '*' $ac_mid && ac_mid=$as_val -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ done -+else -+ ac_lo= ac_hi= -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+# Binary search between lo and hi bounds. -+while test "x$ac_lo" != "x$ac_hi"; do -+ as_fn_arith '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo && ac_mid=$as_val -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+int -+main () -+{ -+static int test_array @<:@1 - 2 * !(($2) <= $ac_mid)@:>@; -+test_array @<:@0@:>@ = 0; -+return test_array @<:@0@:>@; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_hi=$ac_mid -+else -+ as_fn_arith '(' $ac_mid ')' + 1 && ac_lo=$as_val -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+done -+case $ac_lo in @%:@(( -+?*) eval "$3=\$ac_lo"; ac_retval=0 ;; -+'') ac_retval=1 ;; -+esac -+ else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+static long int longval () { return $2; } -+static unsigned long int ulongval () { return $2; } -+@%:@include -+@%:@include -+int -+main () -+{ -+ -+ FILE *f = fopen ("conftest.val", "w"); -+ if (! f) -+ return 1; -+ if (($2) < 0) -+ { -+ long int i = longval (); -+ if (i != ($2)) -+ return 1; -+ fprintf (f, "%ld", i); -+ } -+ else -+ { -+ unsigned long int i = ulongval (); -+ if (i != ($2)) -+ return 1; -+ fprintf (f, "%lu", i); -+ } -+ /* Do not output a trailing newline, as this causes \r\n confusion -+ on some platforms. */ -+ return ferror (f) || fclose (f) != 0; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_run "$LINENO"; then : -+ echo >>conftest.val; read $3 &5 -+$as_echo_n "checking for $2... " >&6; } -+if eval \${$3+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+/* Define $2 to an innocuous variant, in case declares $2. -+ For example, HP-UX 11i declares gettimeofday. */ -+#define $2 innocuous_$2 -+ -+/* System header to define __stub macros and hopefully few prototypes, -+ which can conflict with char $2 (); below. -+ Prefer to if __STDC__ is defined, since -+ exists even on freestanding compilers. */ -+ -+#ifdef __STDC__ -+# include -+#else -+# include -+#endif -+ -+#undef $2 -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char $2 (); -+/* The GNU C library defines this for functions which it implements -+ to always fail with ENOSYS. Some functions are actually named -+ something starting with __ and the normal name is an alias. */ -+#if defined __stub_$2 || defined __stub___$2 -+choke me -+#endif -+ -+int -+main () -+{ -+return $2 (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ eval "$3=yes" -+else -+ eval "$3=no" -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+eval ac_res=\$$3 -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -+$as_echo "$ac_res" >&6; } -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ -+} @%:@ ac_fn_cxx_check_func -+ -+@%:@ ac_fn_c_check_type LINENO TYPE VAR INCLUDES -+@%:@ ------------------------------------------- -+@%:@ Tests whether TYPE exists after having included INCLUDES, setting cache -+@%:@ variable VAR accordingly. -+ac_fn_c_check_type () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -+$as_echo_n "checking for $2... " >&6; } -+if eval \${$3+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ eval "$3=no" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+int -+main () -+{ -+if (sizeof ($2)) -+ return 0; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+int -+main () -+{ -+if (sizeof (($2))) -+ return 0; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ -+else -+ eval "$3=yes" -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+eval ac_res=\$$3 -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -+$as_echo "$ac_res" >&6; } -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ -+} @%:@ ac_fn_c_check_type -+ -+@%:@ ac_fn_cxx_check_type LINENO TYPE VAR INCLUDES -+@%:@ --------------------------------------------- -+@%:@ Tests whether TYPE exists after having included INCLUDES, setting cache -+@%:@ variable VAR accordingly. -+ac_fn_cxx_check_type () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -+$as_echo_n "checking for $2... " >&6; } -+if eval \${$3+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ eval "$3=no" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+int -+main () -+{ -+if (sizeof ($2)) -+ return 0; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+int -+main () -+{ -+if (sizeof (($2))) -+ return 0; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ -+else -+ eval "$3=yes" -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+eval ac_res=\$$3 -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -+$as_echo "$ac_res" >&6; } -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ -+} @%:@ ac_fn_cxx_check_type -+ -+@%:@ ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES -+@%:@ --------------------------------------------- -+@%:@ Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR -+@%:@ accordingly. -+ac_fn_c_check_decl () -+{ -+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ as_decl_name=`echo $2|sed 's/ *(.*//'` -+ as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'` -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5 -+$as_echo_n "checking whether $as_decl_name is declared... " >&6; } -+if eval \${$3+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+$4 -+int -+main () -+{ -+@%:@ifndef $as_decl_name -+@%:@ifdef __cplusplus -+ (void) $as_decl_use; -+@%:@else -+ (void) $as_decl_name; -+@%:@endif -+@%:@endif -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ eval "$3=yes" -+else -+ eval "$3=no" -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+eval ac_res=\$$3 -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -+$as_echo "$ac_res" >&6; } -+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno -+ -+} @%:@ ac_fn_c_check_decl -+cat >config.log <<_ACEOF -+This file contains any messages produced by compilers while -+running configure, to aid debugging if configure makes a mistake. -+ -+It was created by package-unused $as_me version-unused, which was -+generated by GNU Autoconf 2.69. Invocation command line was -+ -+ $ $0 $@ -+ -+_ACEOF -+exec 5>>config.log -+{ -+cat <<_ASUNAME -+## --------- ## -+## Platform. ## -+## --------- ## -+ -+hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` -+uname -m = `(uname -m) 2>/dev/null || echo unknown` -+uname -r = `(uname -r) 2>/dev/null || echo unknown` -+uname -s = `(uname -s) 2>/dev/null || echo unknown` -+uname -v = `(uname -v) 2>/dev/null || echo unknown` -+ -+/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` -+/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` -+ -+/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` -+/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` -+/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` -+/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` -+/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` -+/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` -+/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` -+ -+_ASUNAME -+ -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ $as_echo "PATH: $as_dir" -+ done -+IFS=$as_save_IFS -+ -+} >&5 -+ -+cat >&5 <<_ACEOF -+ -+ -+## ----------- ## -+## Core tests. ## -+## ----------- ## -+ -+_ACEOF -+ -+ -+# Keep a trace of the command line. -+# Strip out --no-create and --no-recursion so they do not pile up. -+# Strip out --silent because we don't want to record it for future runs. -+# Also quote any args containing shell meta-characters. -+# Make two passes to allow for proper duplicate-argument suppression. -+ac_configure_args= -+ac_configure_args0= -+ac_configure_args1= -+ac_must_keep_next=false -+for ac_pass in 1 2 -+do -+ for ac_arg -+ do -+ case $ac_arg in -+ -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \ -+ | -silent | --silent | --silen | --sile | --sil) -+ continue ;; -+ *\'*) -+ ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; -+ esac -+ case $ac_pass in -+ 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; -+ 2) -+ as_fn_append ac_configure_args1 " '$ac_arg'" -+ if test $ac_must_keep_next = true; then -+ ac_must_keep_next=false # Got value, back to normal. -+ else -+ case $ac_arg in -+ *=* | --config-cache | -C | -disable-* | --disable-* \ -+ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ -+ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ -+ | -with-* | --with-* | -without-* | --without-* | --x) -+ case "$ac_configure_args0 " in -+ "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; -+ esac -+ ;; -+ -* ) ac_must_keep_next=true ;; -+ esac -+ fi -+ as_fn_append ac_configure_args " '$ac_arg'" -+ ;; -+ esac -+ done -+done -+{ ac_configure_args0=; unset ac_configure_args0;} -+{ ac_configure_args1=; unset ac_configure_args1;} -+ -+# When interrupted or exit'd, cleanup temporary files, and complete -+# config.log. We remove comments because anyway the quotes in there -+# would cause problems or look ugly. -+# WARNING: Use '\'' to represent an apostrophe within the trap. -+# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. -+trap 'exit_status=$? -+ # Save into config.log some information that might help in debugging. -+ { -+ echo -+ -+ $as_echo "## ---------------- ## -+## Cache variables. ## -+## ---------------- ##" -+ echo -+ # The following way of writing the cache mishandles newlines in values, -+( -+ for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do -+ eval ac_val=\$$ac_var -+ case $ac_val in #( -+ *${as_nl}*) -+ case $ac_var in #( -+ *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; -+ esac -+ case $ac_var in #( -+ _ | IFS | as_nl) ;; #( -+ BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( -+ *) { eval $ac_var=; unset $ac_var;} ;; -+ esac ;; -+ esac -+ done -+ (set) 2>&1 | -+ case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( -+ *${as_nl}ac_space=\ *) -+ sed -n \ -+ "s/'\''/'\''\\\\'\'''\''/g; -+ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" -+ ;; #( -+ *) -+ sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" -+ ;; -+ esac | -+ sort -+) -+ echo -+ -+ $as_echo "## ----------------- ## -+## Output variables. ## -+## ----------------- ##" -+ echo -+ for ac_var in $ac_subst_vars -+ do -+ eval ac_val=\$$ac_var -+ case $ac_val in -+ *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; -+ esac -+ $as_echo "$ac_var='\''$ac_val'\''" -+ done | sort -+ echo -+ -+ if test -n "$ac_subst_files"; then -+ $as_echo "## ------------------- ## -+## File substitutions. ## -+## ------------------- ##" -+ echo -+ for ac_var in $ac_subst_files -+ do -+ eval ac_val=\$$ac_var -+ case $ac_val in -+ *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; -+ esac -+ $as_echo "$ac_var='\''$ac_val'\''" -+ done | sort -+ echo -+ fi -+ -+ if test -s confdefs.h; then -+ $as_echo "## ----------- ## -+## confdefs.h. ## -+## ----------- ##" -+ echo -+ cat confdefs.h -+ echo -+ fi -+ test "$ac_signal" != 0 && -+ $as_echo "$as_me: caught signal $ac_signal" -+ $as_echo "$as_me: exit $exit_status" -+ } >&5 -+ rm -f core *.core core.conftest.* && -+ rm -f -r conftest* confdefs* conf$$* $ac_clean_files && -+ exit $exit_status -+' 0 -+for ac_signal in 1 2 13 15; do -+ trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal -+done -+ac_signal=0 -+ -+# confdefs.h avoids OS command line length limits that DEFS can exceed. -+rm -f -r conftest* confdefs.h -+ -+$as_echo "/* confdefs.h */" > confdefs.h -+ -+# Predefined preprocessor variables. -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define PACKAGE_NAME "$PACKAGE_NAME" -+_ACEOF -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define PACKAGE_TARNAME "$PACKAGE_TARNAME" -+_ACEOF -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define PACKAGE_VERSION "$PACKAGE_VERSION" -+_ACEOF -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define PACKAGE_STRING "$PACKAGE_STRING" -+_ACEOF -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" -+_ACEOF -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define PACKAGE_URL "$PACKAGE_URL" -+_ACEOF -+ -+ -+# Let the site file select an alternate cache file if it wants to. -+# Prefer an explicitly selected file to automatically selected ones. -+ac_site_file1=NONE -+ac_site_file2=NONE -+if test -n "$CONFIG_SITE"; then -+ # We do not want a PATH search for config.site. -+ case $CONFIG_SITE in @%:@(( -+ -*) ac_site_file1=./$CONFIG_SITE;; -+ */*) ac_site_file1=$CONFIG_SITE;; -+ *) ac_site_file1=./$CONFIG_SITE;; -+ esac -+elif test "x$prefix" != xNONE; then -+ ac_site_file1=$prefix/share/config.site -+ ac_site_file2=$prefix/etc/config.site -+else -+ ac_site_file1=$ac_default_prefix/share/config.site -+ ac_site_file2=$ac_default_prefix/etc/config.site -+fi -+for ac_site_file in "$ac_site_file1" "$ac_site_file2" -+do -+ test "x$ac_site_file" = xNONE && continue -+ if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 -+$as_echo "$as_me: loading site script $ac_site_file" >&6;} -+ sed 's/^/| /' "$ac_site_file" >&5 -+ . "$ac_site_file" \ -+ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "failed to load site script $ac_site_file -+See \`config.log' for more details" "$LINENO" 5; } -+ fi -+done -+ -+if test -r "$cache_file"; then -+ # Some versions of bash will fail to source /dev/null (special files -+ # actually), so we avoid doing that. DJGPP emulates it as a regular file. -+ if test /dev/null != "$cache_file" && test -f "$cache_file"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 -+$as_echo "$as_me: loading cache $cache_file" >&6;} -+ case $cache_file in -+ [\\/]* | ?:[\\/]* ) . "$cache_file";; -+ *) . "./$cache_file";; -+ esac -+ fi -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 -+$as_echo "$as_me: creating cache $cache_file" >&6;} -+ >$cache_file -+fi -+ -+# Check that the precious variables saved in the cache have kept the same -+# value. -+ac_cache_corrupted=false -+for ac_var in $ac_precious_vars; do -+ eval ac_old_set=\$ac_cv_env_${ac_var}_set -+ eval ac_new_set=\$ac_env_${ac_var}_set -+ eval ac_old_val=\$ac_cv_env_${ac_var}_value -+ eval ac_new_val=\$ac_env_${ac_var}_value -+ case $ac_old_set,$ac_new_set in -+ set,) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 -+$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} -+ ac_cache_corrupted=: ;; -+ ,set) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 -+$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} -+ ac_cache_corrupted=: ;; -+ ,);; -+ *) -+ if test "x$ac_old_val" != "x$ac_new_val"; then -+ # differences in whitespace do not lead to failure. -+ ac_old_val_w=`echo x $ac_old_val` -+ ac_new_val_w=`echo x $ac_new_val` -+ if test "$ac_old_val_w" != "$ac_new_val_w"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 -+$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} -+ ac_cache_corrupted=: -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 -+$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} -+ eval $ac_var=\$ac_old_val -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 -+$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 -+$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} -+ fi;; -+ esac -+ # Pass precious variables to config.status. -+ if test "$ac_new_set" = set; then -+ case $ac_new_val in -+ *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; -+ *) ac_arg=$ac_var=$ac_new_val ;; -+ esac -+ case " $ac_configure_args " in -+ *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. -+ *) as_fn_append ac_configure_args " '$ac_arg'" ;; -+ esac -+ fi -+done -+if $ac_cache_corrupted; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 -+$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} -+ as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 -+fi -+## -------------------- ## -+## Main body of script. ## -+## -------------------- ## -+ -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ -+ -+ -+ac_config_headers="$ac_config_headers config.h" -+ -+ -+# This works around the fact that libtool configuration may change LD -+# for this particular configuration, but some shells, instead of -+# keeping the changes in LD private, export them just because LD is -+# exported. Only used at the end of this file. -+### am handles this now? ORIGINAL_LD_FOR_MULTILIBS=$LD -+ -+# Find the rest of the source tree framework. -+# Default to --enable-multilib -+@%:@ Check whether --enable-multilib was given. -+if test "${enable_multilib+set}" = set; then : -+ enableval=$enable_multilib; case "$enableval" in -+ yes) multilib=yes ;; -+ no) multilib=no ;; -+ *) as_fn_error $? "bad value $enableval for multilib option" "$LINENO" 5 ;; -+ esac -+else -+ multilib=yes -+fi -+ -+ -+# We may get other options which we leave undocumented: -+# --with-target-subdir, --with-multisrctop, --with-multisubdir -+# See config-ml.in if you want the gory details. -+ -+if test "$srcdir" = "."; then -+ if test "$with_target_subdir" != "."; then -+ multi_basedir="$srcdir/$with_multisrctop../.." -+ else -+ multi_basedir="$srcdir/$with_multisrctop.." -+ fi -+else -+ multi_basedir="$srcdir/.." -+fi -+ -+ -+# Even if the default multilib is not a cross compilation, -+# it may be that some of the other multilibs are. -+if test $cross_compiling = no && test $multilib = yes \ -+ && test "x${with_multisubdir}" != x ; then -+ cross_compiling=maybe -+fi -+ -+ac_config_commands="$ac_config_commands default-1" -+ -+ -+# Gets build, host, target, *_vendor, *_cpu, *_os, etc. -+# -+# You will slowly go insane if you do not grok the following fact: when -+# building v3 as part of the compiler, the top-level /target/ becomes the -+# library's /host/. configure then causes --target to default to --host, -+# exactly like any other package using autoconf. Therefore, 'target' and -+# 'host' will always be the same. This makes sense both for native and -+# cross compilers, just think about it for a little while. :-) -+# -+# Also, if v3 is being configured as part of a cross compiler, the top-level -+# configure script will pass the "real" host as $with_cross_host. -+# -+# Do not delete or change the following two lines. For why, see -+# http://gcc.gnu.org/ml/libstdc++/2003-07/msg00451.html -+ac_aux_dir= -+for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do -+ if test -f "$ac_dir/install-sh"; then -+ ac_aux_dir=$ac_dir -+ ac_install_sh="$ac_aux_dir/install-sh -c" -+ break -+ elif test -f "$ac_dir/install.sh"; then -+ ac_aux_dir=$ac_dir -+ ac_install_sh="$ac_aux_dir/install.sh -c" -+ break -+ elif test -f "$ac_dir/shtool"; then -+ ac_aux_dir=$ac_dir -+ ac_install_sh="$ac_aux_dir/shtool install -c" -+ break -+ fi -+done -+if test -z "$ac_aux_dir"; then -+ as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 -+fi -+ -+# These three variables are undocumented and unsupported, -+# and are intended to be withdrawn in a future Autoconf release. -+# They can cause serious problems if a builder's source tree is in a directory -+# whose full name contains unusual characters. -+ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. -+ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. -+ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. -+ -+ -+# Make sure we can run config.sub. -+$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || -+ as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 -+$as_echo_n "checking build system type... " >&6; } -+if ${ac_cv_build+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_build_alias=$build_alias -+test "x$ac_build_alias" = x && -+ ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` -+test "x$ac_build_alias" = x && -+ as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 -+ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || -+ as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 -+$as_echo "$ac_cv_build" >&6; } -+case $ac_cv_build in -+*-*-*) ;; -+*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; -+esac -+build=$ac_cv_build -+ac_save_IFS=$IFS; IFS='-' -+set x $ac_cv_build -+shift -+build_cpu=$1 -+build_vendor=$2 -+shift; shift -+# Remember, the first character of IFS is used to create $*, -+# except with old shells: -+build_os=$* -+IFS=$ac_save_IFS -+case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 -+$as_echo_n "checking host system type... " >&6; } -+if ${ac_cv_host+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test "x$host_alias" = x; then -+ ac_cv_host=$ac_cv_build -+else -+ ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || -+ as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 -+$as_echo "$ac_cv_host" >&6; } -+case $ac_cv_host in -+*-*-*) ;; -+*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; -+esac -+host=$ac_cv_host -+ac_save_IFS=$IFS; IFS='-' -+set x $ac_cv_host -+shift -+host_cpu=$1 -+host_vendor=$2 -+shift; shift -+# Remember, the first character of IFS is used to create $*, -+# except with old shells: -+host_os=$* -+IFS=$ac_save_IFS -+case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking target system type" >&5 -+$as_echo_n "checking target system type... " >&6; } -+if ${ac_cv_target+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test "x$target_alias" = x; then -+ ac_cv_target=$ac_cv_host -+else -+ ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` || -+ as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5 -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_target" >&5 -+$as_echo "$ac_cv_target" >&6; } -+case $ac_cv_target in -+*-*-*) ;; -+*) as_fn_error $? "invalid value of canonical target" "$LINENO" 5;; -+esac -+target=$ac_cv_target -+ac_save_IFS=$IFS; IFS='-' -+set x $ac_cv_target -+shift -+target_cpu=$1 -+target_vendor=$2 -+shift; shift -+# Remember, the first character of IFS is used to create $*, -+# except with old shells: -+target_os=$* -+IFS=$ac_save_IFS -+case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac -+ -+ -+# The aliases save the names the user supplied, while $host etc. -+# will get canonicalized. -+test -n "$target_alias" && -+ test "$program_prefix$program_suffix$program_transform_name" = \ -+ NONENONEs,x,x, && -+ program_prefix=${target_alias}- -+ -+target_alias=${target_alias-$host_alias} -+ -+# Handy for debugging: -+#AC_MSG_NOTICE($build / $host / $target / $host_alias / $target_alias); sleep 5 -+ -+if test "$build" != "$host"; then -+ # We are being configured with some form of cross compiler. -+ GLIBCXX_IS_NATIVE=false -+ case "$host","$target" in -+ # Darwin crosses can use the host system's libraries and headers, -+ # because of the fat library support. Of course, it must be the -+ # same version of Darwin on both sides. Allow the user to -+ # just say --target=foo-darwin without a version number to mean -+ # "the version on this system". -+ *-*-darwin*,*-*-darwin*) -+ hostos=`echo $host | sed 's/.*-darwin/darwin/'` -+ targetos=`echo $target | sed 's/.*-darwin/darwin/'` -+ if test $hostos = $targetos -o $targetos = darwin ; then -+ GLIBCXX_IS_NATIVE=true -+ fi -+ ;; -+ -+ *) -+ -+ ;; -+ esac -+else -+ GLIBCXX_IS_NATIVE=true -+fi -+ -+# Sets up automake. Must come after AC_CANONICAL_SYSTEM. Each of the -+# following is magically included in AUTOMAKE_OPTIONS in each Makefile.am. -+# 1.x: minimum required version -+# no-define: PACKAGE and VERSION will not be #define'd in config.h (a bunch -+# of other PACKAGE_* variables will, however, and there's nothing -+# we can do about that; they come from AC_INIT). -+# foreign: we don't follow the normal rules for GNU packages (no COPYING -+# file in the top srcdir, etc, etc), so stop complaining. -+# no-dependencies: turns off auto dependency generation (just for now) -+# no-dist: we don't want 'dist' and related rules. -+# -Wall: turns on all automake warnings... -+# -Wno-portability: ...except this one, since GNU make is now required. -+am__api_version='1.15' -+ -+# Find a good install program. We prefer a C program (faster), -+# so one script is as good as another. But avoid the broken or -+# incompatible versions: -+# SysV /etc/install, /usr/sbin/install -+# SunOS /usr/etc/install -+# IRIX /sbin/install -+# AIX /bin/install -+# AmigaOS /C/install, which installs bootblocks on floppy discs -+# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag -+# AFS /usr/afsws/bin/install, which mishandles nonexistent args -+# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" -+# OS/2's system install, which has a completely different semantic -+# ./install, which can be erroneously created by make from ./install.sh. -+# Reject install programs that cannot install multiple files. -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 -+$as_echo_n "checking for a BSD-compatible install... " >&6; } -+if test -z "$INSTALL"; then -+if ${ac_cv_path_install+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ # Account for people who put trailing slashes in PATH elements. -+case $as_dir/ in @%:@(( -+ ./ | .// | /[cC]/* | \ -+ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ -+ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ -+ /usr/ucb/* ) ;; -+ *) -+ # OSF1 and SCO ODT 3.0 have their own names for install. -+ # Don't use installbsd from OSF since it installs stuff as root -+ # by default. -+ for ac_prog in ginstall scoinst install; do -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then -+ if test $ac_prog = install && -+ grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then -+ # AIX install. It has an incompatible calling convention. -+ : -+ elif test $ac_prog = install && -+ grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then -+ # program-specific install script used by HP pwplus--don't use. -+ : -+ else -+ rm -rf conftest.one conftest.two conftest.dir -+ echo one > conftest.one -+ echo two > conftest.two -+ mkdir conftest.dir -+ if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && -+ test -s conftest.one && test -s conftest.two && -+ test -s conftest.dir/conftest.one && -+ test -s conftest.dir/conftest.two -+ then -+ ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" -+ break 3 -+ fi -+ fi -+ fi -+ done -+ done -+ ;; -+esac -+ -+ done -+IFS=$as_save_IFS -+ -+rm -rf conftest.one conftest.two conftest.dir -+ -+fi -+ if test "${ac_cv_path_install+set}" = set; then -+ INSTALL=$ac_cv_path_install -+ else -+ # As a last resort, use the slow shell script. Don't cache a -+ # value for INSTALL within a source directory, because that will -+ # break other packages using the cache if that directory is -+ # removed, or if the value is a relative name. -+ INSTALL=$ac_install_sh -+ fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 -+$as_echo "$INSTALL" >&6; } -+ -+# Use test -z because SunOS4 sh mishandles braces in ${var-val}. -+# It thinks the first close brace ends the variable substitution. -+test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' -+ -+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' -+ -+test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 -+$as_echo_n "checking whether build environment is sane... " >&6; } -+# Reject unsafe characters in $srcdir or the absolute working directory -+# name. Accept space and tab only in the latter. -+am_lf=' -+' -+case `pwd` in -+ *[\\\"\#\$\&\'\`$am_lf]*) -+ as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; -+esac -+case $srcdir in -+ *[\\\"\#\$\&\'\`$am_lf\ \ ]*) -+ as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; -+esac -+ -+# Do 'set' in a subshell so we don't clobber the current shell's -+# arguments. Must try -L first in case configure is actually a -+# symlink; some systems play weird games with the mod time of symlinks -+# (eg FreeBSD returns the mod time of the symlink's containing -+# directory). -+if ( -+ am_has_slept=no -+ for am_try in 1 2; do -+ echo "timestamp, slept: $am_has_slept" > conftest.file -+ set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` -+ if test "$*" = "X"; then -+ # -L didn't work. -+ set X `ls -t "$srcdir/configure" conftest.file` -+ fi -+ if test "$*" != "X $srcdir/configure conftest.file" \ -+ && test "$*" != "X conftest.file $srcdir/configure"; then -+ -+ # If neither matched, then we have a broken ls. This can happen -+ # if, for instance, CONFIG_SHELL is bash and it inherits a -+ # broken ls alias from the environment. This has actually -+ # happened. Such a system could not be considered "sane". -+ as_fn_error $? "ls -t appears to fail. Make sure there is not a broken -+ alias in your environment" "$LINENO" 5 -+ fi -+ if test "$2" = conftest.file || test $am_try -eq 2; then -+ break -+ fi -+ # Just in case. -+ sleep 1 -+ am_has_slept=yes -+ done -+ test "$2" = conftest.file -+ ) -+then -+ # Ok. -+ : -+else -+ as_fn_error $? "newly created file is older than distributed files! -+Check your system clock" "$LINENO" 5 -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -+$as_echo "yes" >&6; } -+# If we didn't sleep, we still need to ensure time stamps of config.status and -+# generated files are strictly newer. -+am_sleep_pid= -+if grep 'slept: no' conftest.file >/dev/null 2>&1; then -+ ( sleep 1 ) & -+ am_sleep_pid=$! -+fi -+ -+rm -f conftest.file -+ -+test "$program_prefix" != NONE && -+ program_transform_name="s&^&$program_prefix&;$program_transform_name" -+# Use a double $ so make ignores it. -+test "$program_suffix" != NONE && -+ program_transform_name="s&\$&$program_suffix&;$program_transform_name" -+# Double any \ or $. -+# By default was `s,x,x', remove it if useless. -+ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' -+program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` -+ -+# Expand $ac_aux_dir to an absolute path. -+am_aux_dir=`cd "$ac_aux_dir" && pwd` -+ -+if test x"${MISSING+set}" != xset; then -+ case $am_aux_dir in -+ *\ * | *\ *) -+ MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; -+ *) -+ MISSING="\${SHELL} $am_aux_dir/missing" ;; -+ esac -+fi -+# Use eval to expand $SHELL -+if eval "$MISSING --is-lightweight"; then -+ am_missing_run="$MISSING " -+else -+ am_missing_run= -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 -+$as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} -+fi -+ -+if test x"${install_sh+set}" != xset; then -+ case $am_aux_dir in -+ *\ * | *\ *) -+ install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; -+ *) -+ install_sh="\${SHELL} $am_aux_dir/install-sh" -+ esac -+fi -+ -+# Installed binaries are usually stripped using 'strip' when the user -+# run "make install-strip". However 'strip' might not be the right -+# tool to use in cross-compilation environments, therefore Automake -+# will honor the 'STRIP' environment variable to overrule this program. -+if test "$cross_compiling" != no; then -+ if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. -+set dummy ${ac_tool_prefix}strip; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_STRIP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$STRIP"; then -+ ac_cv_prog_STRIP="$STRIP" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_STRIP="${ac_tool_prefix}strip" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+STRIP=$ac_cv_prog_STRIP -+if test -n "$STRIP"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 -+$as_echo "$STRIP" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_STRIP"; then -+ ac_ct_STRIP=$STRIP -+ # Extract the first word of "strip", so it can be a program name with args. -+set dummy strip; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_STRIP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_STRIP"; then -+ ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_STRIP="strip" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP -+if test -n "$ac_ct_STRIP"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 -+$as_echo "$ac_ct_STRIP" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_STRIP" = x; then -+ STRIP=":" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ STRIP=$ac_ct_STRIP -+ fi -+else -+ STRIP="$ac_cv_prog_STRIP" -+fi -+ -+fi -+INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 -+$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } -+if test -z "$MKDIR_P"; then -+ if ${ac_cv_path_mkdir+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_prog in mkdir gmkdir; do -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue -+ case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( -+ 'mkdir (GNU coreutils) '* | \ -+ 'mkdir (coreutils) '* | \ -+ 'mkdir (fileutils) '4.1*) -+ ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext -+ break 3;; -+ esac -+ done -+ done -+ done -+IFS=$as_save_IFS -+ -+fi -+ -+ test -d ./--version && rmdir ./--version -+ if test "${ac_cv_path_mkdir+set}" = set; then -+ MKDIR_P="$ac_cv_path_mkdir -p" -+ else -+ # As a last resort, use the slow shell script. Don't cache a -+ # value for MKDIR_P within a source directory, because that will -+ # break other packages using the cache if that directory is -+ # removed, or if the value is a relative name. -+ MKDIR_P="$ac_install_sh -d" -+ fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 -+$as_echo "$MKDIR_P" >&6; } -+ -+for ac_prog in gawk mawk nawk awk -+do -+ # Extract the first word of "$ac_prog", so it can be a program name with args. -+set dummy $ac_prog; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_AWK+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$AWK"; then -+ ac_cv_prog_AWK="$AWK" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_AWK="$ac_prog" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+AWK=$ac_cv_prog_AWK -+if test -n "$AWK"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 -+$as_echo "$AWK" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ test -n "$AWK" && break -+done -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 -+$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } -+set x ${MAKE-make} -+ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` -+if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat >conftest.make <<\_ACEOF -+SHELL = /bin/sh -+all: -+ @echo '@@@%%%=$(MAKE)=@@@%%%' -+_ACEOF -+# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. -+case `${MAKE-make} -f conftest.make 2>/dev/null` in -+ *@@@%%%=?*=@@@%%%*) -+ eval ac_cv_prog_make_${ac_make}_set=yes;; -+ *) -+ eval ac_cv_prog_make_${ac_make}_set=no;; -+esac -+rm -f conftest.make -+fi -+if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -+$as_echo "yes" >&6; } -+ SET_MAKE= -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+ SET_MAKE="MAKE=${MAKE-make}" -+fi -+ -+rm -rf .tst 2>/dev/null -+mkdir .tst 2>/dev/null -+if test -d .tst; then -+ am__leading_dot=. -+else -+ am__leading_dot=_ -+fi -+rmdir .tst 2>/dev/null -+ -+@%:@ Check whether --enable-silent-rules was given. -+if test "${enable_silent_rules+set}" = set; then : -+ enableval=$enable_silent_rules; -+fi -+ -+case $enable_silent_rules in @%:@ ((( -+ yes) AM_DEFAULT_VERBOSITY=0;; -+ no) AM_DEFAULT_VERBOSITY=1;; -+ *) AM_DEFAULT_VERBOSITY=1;; -+esac -+am_make=${MAKE-make} -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 -+$as_echo_n "checking whether $am_make supports nested variables... " >&6; } -+if ${am_cv_make_support_nested_variables+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if $as_echo 'TRUE=$(BAR$(V)) -+BAR0=false -+BAR1=true -+V=1 -+am__doit: -+ @$(TRUE) -+.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then -+ am_cv_make_support_nested_variables=yes -+else -+ am_cv_make_support_nested_variables=no -+fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 -+$as_echo "$am_cv_make_support_nested_variables" >&6; } -+if test $am_cv_make_support_nested_variables = yes; then -+ AM_V='$(V)' -+ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' -+else -+ AM_V=$AM_DEFAULT_VERBOSITY -+ AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY -+fi -+AM_BACKSLASH='\' -+ -+if test "`cd $srcdir && pwd`" != "`pwd`"; then -+ # Use -I$(srcdir) only when $(srcdir) != ., so that make's output -+ # is not polluted with repeated "-I." -+ am__isrc=' -I$(srcdir)' -+ # test to see if srcdir already configured -+ if test -f $srcdir/config.status; then -+ as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 -+ fi -+fi -+ -+# test whether we have cygpath -+if test -z "$CYGPATH_W"; then -+ if (cygpath --version) >/dev/null 2>/dev/null; then -+ CYGPATH_W='cygpath -w' -+ else -+ CYGPATH_W=echo -+ fi -+fi -+ -+ -+# Define the identity of the package. -+ PACKAGE='libstdc++' -+ VERSION='version-unused' -+ -+ -+# Some tools Automake needs. -+ -+ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} -+ -+ -+AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} -+ -+ -+AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} -+ -+ -+AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} -+ -+ -+MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} -+ -+# For better backward compatibility. To be removed once Automake 1.9.x -+# dies out for good. For more background, see: -+# -+# -+mkdir_p='$(MKDIR_P)' -+ -+# We need awk for the "check" target (and possibly the TAP driver). The -+# system "awk" is bad on some platforms. -+# Always define AMTAR for backward compatibility. Yes, it's still used -+# in the wild :-( We should find a proper way to deprecate it ... -+AMTAR='$${TAR-tar}' -+ -+ -+# We'll loop over all known methods to create a tar archive until one works. -+_am_tools='gnutar pax cpio none' -+ -+am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' -+ -+ -+ -+ -+ -+ -+# POSIX will say in a future version that running "rm -f" with no argument -+# is OK; and we want to be able to make that assumption in our Makefile -+# recipes. So use an aggressive probe to check that the usage we want is -+# actually supported "in the wild" to an acceptable degree. -+# See automake bug#10828. -+# To make any issue more visible, cause the running configure to be aborted -+# by default if the 'rm' program in use doesn't match our expectations; the -+# user can still override this though. -+if rm -f && rm -fr && rm -rf; then : OK; else -+ cat >&2 <<'END' -+Oops! -+ -+Your 'rm' program seems unable to run without file operands specified -+on the command line, even when the '-f' option is present. This is contrary -+to the behaviour of most rm programs out there, and not conforming with -+the upcoming POSIX standard: -+ -+Please tell bug-automake@gnu.org about your system, including the value -+of your $PATH and any error possibly output before this message. This -+can help us improve future automake versions. -+ -+END -+ if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then -+ echo 'Configuration will proceed anyway, since you have set the' >&2 -+ echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 -+ echo >&2 -+ else -+ cat >&2 <<'END' -+Aborting the configuration process, to ensure you take notice of the issue. -+ -+You can download and install GNU coreutils to get an 'rm' implementation -+that behaves properly: . -+ -+If you want to complete the configuration process using your problematic -+'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM -+to "yes", and re-run configure. -+ -+END -+ as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 -+ fi -+fi -+ -+ -+ -+ -+# -fno-builtin must be present here so that a non-conflicting form of -+# std::exit can be guessed by AC_PROG_CXX, and used in later tests. -+ -+save_CXXFLAGS="$CXXFLAGS" -+CXXFLAGS="$CXXFLAGS -fno-builtin" -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -+set dummy ${ac_tool_prefix}gcc; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_CC+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$CC"; then -+ ac_cv_prog_CC="$CC" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_CC="${ac_tool_prefix}gcc" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+CC=$ac_cv_prog_CC -+if test -n "$CC"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -+$as_echo "$CC" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_CC"; then -+ ac_ct_CC=$CC -+ # Extract the first word of "gcc", so it can be a program name with args. -+set dummy gcc; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_CC+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_CC"; then -+ ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_CC="gcc" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_CC=$ac_cv_prog_ac_ct_CC -+if test -n "$ac_ct_CC"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -+$as_echo "$ac_ct_CC" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_CC" = x; then -+ CC="" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ CC=$ac_ct_CC -+ fi -+else -+ CC="$ac_cv_prog_CC" -+fi -+ -+if test -z "$CC"; then -+ if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -+set dummy ${ac_tool_prefix}cc; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_CC+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$CC"; then -+ ac_cv_prog_CC="$CC" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_CC="${ac_tool_prefix}cc" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+CC=$ac_cv_prog_CC -+if test -n "$CC"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -+$as_echo "$CC" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ fi -+fi -+if test -z "$CC"; then -+ # Extract the first word of "cc", so it can be a program name with args. -+set dummy cc; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_CC+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$CC"; then -+ ac_cv_prog_CC="$CC" # Let the user override the test. -+else -+ ac_prog_rejected=no -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then -+ ac_prog_rejected=yes -+ continue -+ fi -+ ac_cv_prog_CC="cc" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+if test $ac_prog_rejected = yes; then -+ # We found a bogon in the path, so make sure we never use it. -+ set dummy $ac_cv_prog_CC -+ shift -+ if test $@%:@ != 0; then -+ # We chose a different compiler from the bogus one. -+ # However, it has the same basename, so the bogon will be chosen -+ # first if we set CC to just the basename; use the full file name. -+ shift -+ ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" -+ fi -+fi -+fi -+fi -+CC=$ac_cv_prog_CC -+if test -n "$CC"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -+$as_echo "$CC" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$CC"; then -+ if test -n "$ac_tool_prefix"; then -+ for ac_prog in cl.exe -+ do -+ # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -+set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_CC+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$CC"; then -+ ac_cv_prog_CC="$CC" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_CC="$ac_tool_prefix$ac_prog" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+CC=$ac_cv_prog_CC -+if test -n "$CC"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -+$as_echo "$CC" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ test -n "$CC" && break -+ done -+fi -+if test -z "$CC"; then -+ ac_ct_CC=$CC -+ for ac_prog in cl.exe -+do -+ # Extract the first word of "$ac_prog", so it can be a program name with args. -+set dummy $ac_prog; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_CC+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_CC"; then -+ ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_CC="$ac_prog" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_CC=$ac_cv_prog_ac_ct_CC -+if test -n "$ac_ct_CC"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -+$as_echo "$ac_ct_CC" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ test -n "$ac_ct_CC" && break -+done -+ -+ if test "x$ac_ct_CC" = x; then -+ CC="" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ CC=$ac_ct_CC -+ fi -+fi -+ -+fi -+ -+ -+test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "no acceptable C compiler found in \$PATH -+See \`config.log' for more details" "$LINENO" 5; } -+ -+# Provide some information about the compiler. -+$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 -+set X $ac_compile -+ac_compiler=$2 -+for ac_option in --version -v -V -qversion; do -+ { { ac_try="$ac_compiler $ac_option >&5" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_compiler $ac_option >&5") 2>conftest.err -+ ac_status=$? -+ if test -s conftest.err; then -+ sed '10a\ -+... rest of stderr output deleted ... -+ 10q' conftest.err >conftest.er1 -+ cat conftest.er1 >&5 -+ fi -+ rm -f conftest.er1 conftest.err -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } -+done -+ -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+printf ("hello world\n"); -+ ; -+ return 0; -+} -+_ACEOF -+# FIXME: Cleanup? -+if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 -+ (eval $ac_link) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then : -+ gcc_no_link=no -+else -+ gcc_no_link=yes -+fi -+if test x$gcc_no_link = xyes; then -+ # Setting cross_compile will disable run tests; it will -+ # also disable AC_CHECK_FILE but that's generally -+ # correct if we can't link. -+ cross_compiling=yes -+ EXEEXT= -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+ac_clean_files_save=$ac_clean_files -+ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" -+# Try to create an executable without -o first, disregard a.out. -+# It will help us diagnose broken compilers, and finding out an intuition -+# of exeext. -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 -+$as_echo_n "checking whether the C compiler works... " >&6; } -+ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` -+ -+# The possible output files: -+ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" -+ -+ac_rmfiles= -+for ac_file in $ac_files -+do -+ case $ac_file in -+ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; -+ * ) ac_rmfiles="$ac_rmfiles $ac_file";; -+ esac -+done -+rm -f $ac_rmfiles -+ -+if { { ac_try="$ac_link_default" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_link_default") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then : -+ # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. -+# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' -+# in a Makefile. We should not override ac_cv_exeext if it was cached, -+# so that the user can short-circuit this test for compilers unknown to -+# Autoconf. -+for ac_file in $ac_files '' -+do -+ test -f "$ac_file" || continue -+ case $ac_file in -+ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) -+ ;; -+ [ab].out ) -+ # We found the default executable, but exeext='' is most -+ # certainly right. -+ break;; -+ *.* ) -+ if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; -+ then :; else -+ ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` -+ fi -+ # We set ac_cv_exeext here because the later test for it is not -+ # safe: cross compilers may not add the suffix if given an `-o' -+ # argument, so we may need to know it at that point already. -+ # Even if this section looks crufty: it has the advantage of -+ # actually working. -+ break;; -+ * ) -+ break;; -+ esac -+done -+test "$ac_cv_exeext" = no && ac_cv_exeext= -+ -+else -+ ac_file='' -+fi -+if test -z "$ac_file"; then : -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+$as_echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error 77 "C compiler cannot create executables -+See \`config.log' for more details" "$LINENO" 5; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -+$as_echo "yes" >&6; } -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 -+$as_echo_n "checking for C compiler default output file name... " >&6; } -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 -+$as_echo "$ac_file" >&6; } -+ac_exeext=$ac_cv_exeext -+ -+rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out -+ac_clean_files=$ac_clean_files_save -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 -+$as_echo_n "checking for suffix of executables... " >&6; } -+if { { ac_try="$ac_link" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_link") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then : -+ # If both `conftest.exe' and `conftest' are `present' (well, observable) -+# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will -+# work properly (i.e., refer to `conftest.exe'), while it won't with -+# `rm'. -+for ac_file in conftest.exe conftest conftest.*; do -+ test -f "$ac_file" || continue -+ case $ac_file in -+ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; -+ *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` -+ break;; -+ * ) break;; -+ esac -+done -+else -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "cannot compute suffix of executables: cannot compile and link -+See \`config.log' for more details" "$LINENO" 5; } -+fi -+rm -f conftest conftest$ac_cv_exeext -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 -+$as_echo "$ac_cv_exeext" >&6; } -+ -+rm -f conftest.$ac_ext -+EXEEXT=$ac_cv_exeext -+ac_exeext=$EXEEXT -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@include -+int -+main () -+{ -+FILE *f = fopen ("conftest.out", "w"); -+ return ferror (f) || fclose (f) != 0; -+ -+ ; -+ return 0; -+} -+_ACEOF -+ac_clean_files="$ac_clean_files conftest.out" -+# Check that the compiler produces executables we can run. If not, either -+# the compiler is broken, or we cross compile. -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 -+$as_echo_n "checking whether we are cross compiling... " >&6; } -+if test "$cross_compiling" != yes; then -+ { { ac_try="$ac_link" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_link") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } -+ if { ac_try='./conftest$ac_cv_exeext' -+ { { case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_try") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; }; then -+ cross_compiling=no -+ else -+ if test "$cross_compiling" = maybe; then -+ cross_compiling=yes -+ else -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "cannot run C compiled programs. -+If you meant to cross compile, use \`--host'. -+See \`config.log' for more details" "$LINENO" 5; } -+ fi -+ fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 -+$as_echo "$cross_compiling" >&6; } -+ -+rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out -+ac_clean_files=$ac_clean_files_save -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 -+$as_echo_n "checking for suffix of object files... " >&6; } -+if ${ac_cv_objext+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+rm -f conftest.o conftest.obj -+if { { ac_try="$ac_compile" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_compile") 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then : -+ for ac_file in conftest.o conftest.obj conftest.*; do -+ test -f "$ac_file" || continue; -+ case $ac_file in -+ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; -+ *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` -+ break;; -+ esac -+done -+else -+ $as_echo "$as_me: failed program was:" >&5 -+sed 's/^/| /' conftest.$ac_ext >&5 -+ -+{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "cannot compute suffix of object files: cannot compile -+See \`config.log' for more details" "$LINENO" 5; } -+fi -+rm -f conftest.$ac_cv_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 -+$as_echo "$ac_cv_objext" >&6; } -+OBJEXT=$ac_cv_objext -+ac_objext=$OBJEXT -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 -+$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -+if ${ac_cv_c_compiler_gnu+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+#ifndef __GNUC__ -+ choke me -+#endif -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_compiler_gnu=yes -+else -+ ac_compiler_gnu=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ac_cv_c_compiler_gnu=$ac_compiler_gnu -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 -+$as_echo "$ac_cv_c_compiler_gnu" >&6; } -+if test $ac_compiler_gnu = yes; then -+ GCC=yes -+else -+ GCC= -+fi -+ac_test_CFLAGS=${CFLAGS+set} -+ac_save_CFLAGS=$CFLAGS -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 -+$as_echo_n "checking whether $CC accepts -g... " >&6; } -+if ${ac_cv_prog_cc_g+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_save_c_werror_flag=$ac_c_werror_flag -+ ac_c_werror_flag=yes -+ ac_cv_prog_cc_g=no -+ CFLAGS="-g" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_prog_cc_g=yes -+else -+ CFLAGS="" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ -+else -+ ac_c_werror_flag=$ac_save_c_werror_flag -+ CFLAGS="-g" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_prog_cc_g=yes -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_c_werror_flag=$ac_save_c_werror_flag -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 -+$as_echo "$ac_cv_prog_cc_g" >&6; } -+if test "$ac_test_CFLAGS" = set; then -+ CFLAGS=$ac_save_CFLAGS -+elif test $ac_cv_prog_cc_g = yes; then -+ if test "$GCC" = yes; then -+ CFLAGS="-g -O2" -+ else -+ CFLAGS="-g" -+ fi -+else -+ if test "$GCC" = yes; then -+ CFLAGS="-O2" -+ else -+ CFLAGS= -+ fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 -+$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -+if ${ac_cv_prog_cc_c89+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_cv_prog_cc_c89=no -+ac_save_CC=$CC -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+#include -+struct stat; -+/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -+struct buf { int x; }; -+FILE * (*rcsopen) (struct buf *, struct stat *, int); -+static char *e (p, i) -+ char **p; -+ int i; -+{ -+ return p[i]; -+} -+static char *f (char * (*g) (char **, int), char **p, ...) -+{ -+ char *s; -+ va_list v; -+ va_start (v,p); -+ s = g (p, va_arg (v,int)); -+ va_end (v); -+ return s; -+} -+ -+/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has -+ function prototypes and stuff, but not '\xHH' hex character constants. -+ These don't provoke an error unfortunately, instead are silently treated -+ as 'x'. The following induces an error, until -std is added to get -+ proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an -+ array size at least. It's necessary to write '\x00'==0 to get something -+ that's true only with -std. */ -+int osf4_cc_array ['\x00' == 0 ? 1 : -1]; -+ -+/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters -+ inside strings and character constants. */ -+#define FOO(x) 'x' -+int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; -+ -+int test (int i, double x); -+struct s1 {int (*f) (int a);}; -+struct s2 {int (*f) (double a);}; -+int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -+int argc; -+char **argv; -+int -+main () -+{ -+return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; -+ ; -+ return 0; -+} -+_ACEOF -+for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -+ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -+do -+ CC="$ac_save_CC $ac_arg" -+ if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_prog_cc_c89=$ac_arg -+fi -+rm -f core conftest.err conftest.$ac_objext -+ test "x$ac_cv_prog_cc_c89" != "xno" && break -+done -+rm -f conftest.$ac_ext -+CC=$ac_save_CC -+ -+fi -+# AC_CACHE_VAL -+case "x$ac_cv_prog_cc_c89" in -+ x) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 -+$as_echo "none needed" >&6; } ;; -+ xno) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 -+$as_echo "unsupported" >&6; } ;; -+ *) -+ CC="$CC $ac_cv_prog_cc_c89" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 -+$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; -+esac -+if test "x$ac_cv_prog_cc_c89" != xno; then : -+ -+fi -+ -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 -+$as_echo_n "checking whether $CC understands -c and -o together... " >&6; } -+if ${am_cv_prog_cc_c_o+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+ # Make sure it works both with $CC and with simple cc. -+ # Following AC_PROG_CC_C_O, we do the test twice because some -+ # compilers refuse to overwrite an existing .o file with -o, -+ # though they will create one. -+ am_cv_prog_cc_c_o=yes -+ for am_i in 1 2; do -+ if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 -+ ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 -+ ac_status=$? -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ (exit $ac_status); } \ -+ && test -f conftest2.$ac_objext; then -+ : OK -+ else -+ am_cv_prog_cc_c_o=no -+ break -+ fi -+ done -+ rm -f core conftest* -+ unset am_i -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 -+$as_echo "$am_cv_prog_cc_c_o" >&6; } -+if test "$am_cv_prog_cc_c_o" != yes; then -+ # Losing compiler, so override with the script. -+ # FIXME: It is wrong to rewrite CC. -+ # But if we don't then we get into trouble of one sort or another. -+ # A longer-term fix would be to have automake use am__CC in this case, -+ # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" -+ CC="$am_aux_dir/compile $CC" -+fi -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+if test -z "$CXX"; then -+ if test -n "$CCC"; then -+ CXX=$CCC -+ else -+ if test -n "$ac_tool_prefix"; then -+ for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC -+ do -+ # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -+set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_CXX+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$CXX"; then -+ ac_cv_prog_CXX="$CXX" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+CXX=$ac_cv_prog_CXX -+if test -n "$CXX"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 -+$as_echo "$CXX" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ test -n "$CXX" && break -+ done -+fi -+if test -z "$CXX"; then -+ ac_ct_CXX=$CXX -+ for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC -+do -+ # Extract the first word of "$ac_prog", so it can be a program name with args. -+set dummy $ac_prog; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_CXX+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_CXX"; then -+ ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_CXX="$ac_prog" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_CXX=$ac_cv_prog_ac_ct_CXX -+if test -n "$ac_ct_CXX"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 -+$as_echo "$ac_ct_CXX" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ test -n "$ac_ct_CXX" && break -+done -+ -+ if test "x$ac_ct_CXX" = x; then -+ CXX="g++" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ CXX=$ac_ct_CXX -+ fi -+fi -+ -+ fi -+fi -+# Provide some information about the compiler. -+$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 -+set X $ac_compile -+ac_compiler=$2 -+for ac_option in --version -v -V -qversion; do -+ { { ac_try="$ac_compiler $ac_option >&5" -+case "(($ac_try" in -+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; -+ *) ac_try_echo=$ac_try;; -+esac -+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -+$as_echo "$ac_try_echo"; } >&5 -+ (eval "$ac_compiler $ac_option >&5") 2>conftest.err -+ ac_status=$? -+ if test -s conftest.err; then -+ sed '10a\ -+... rest of stderr output deleted ... -+ 10q' conftest.err >conftest.er1 -+ cat conftest.er1 >&5 -+ fi -+ rm -f conftest.er1 conftest.err -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } -+done -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 -+$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } -+if ${ac_cv_cxx_compiler_gnu+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+#ifndef __GNUC__ -+ choke me -+#endif -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_compiler_gnu=yes -+else -+ ac_compiler_gnu=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ac_cv_cxx_compiler_gnu=$ac_compiler_gnu -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 -+$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } -+if test $ac_compiler_gnu = yes; then -+ GXX=yes -+else -+ GXX= -+fi -+ac_test_CXXFLAGS=${CXXFLAGS+set} -+ac_save_CXXFLAGS=$CXXFLAGS -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 -+$as_echo_n "checking whether $CXX accepts -g... " >&6; } -+if ${ac_cv_prog_cxx_g+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_save_cxx_werror_flag=$ac_cxx_werror_flag -+ ac_cxx_werror_flag=yes -+ ac_cv_prog_cxx_g=no -+ CXXFLAGS="-g" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_cv_prog_cxx_g=yes -+else -+ CXXFLAGS="" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ -+else -+ ac_cxx_werror_flag=$ac_save_cxx_werror_flag -+ CXXFLAGS="-g" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_cv_prog_cxx_g=yes -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_cxx_werror_flag=$ac_save_cxx_werror_flag -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 -+$as_echo "$ac_cv_prog_cxx_g" >&6; } -+if test "$ac_test_CXXFLAGS" = set; then -+ CXXFLAGS=$ac_save_CXXFLAGS -+elif test $ac_cv_prog_cxx_g = yes; then -+ if test "$GXX" = yes; then -+ CXXFLAGS="-g -O2" -+ else -+ CXXFLAGS="-g" -+ fi -+else -+ if test "$GXX" = yes; then -+ CXXFLAGS="-O2" -+ else -+ CXXFLAGS= -+ fi -+fi -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+CXXFLAGS="$save_CXXFLAGS" -+ -+ -+@%:@ Check whether --enable-largefile was given. -+if test "${enable_largefile+set}" = set; then : -+ enableval=$enable_largefile; -+fi -+ -+if test "$enable_largefile" != no; then -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5 -+$as_echo_n "checking for special C compiler options needed for large files... " >&6; } -+if ${ac_cv_sys_largefile_CC+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_cv_sys_largefile_CC=no -+ if test "$GCC" != yes; then -+ ac_save_CC=$CC -+ while :; do -+ # IRIX 6.2 and later do not support large files by default, -+ # so use the C compiler's -n32 option if that helps. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@include -+ /* Check that off_t can represent 2**63 - 1 correctly. -+ We can't simply define LARGE_OFF_T to be 9223372036854775807, -+ since some C++ compilers masquerading as C compilers -+ incorrectly reject 9223372036854775807. */ -+@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) -+ int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+ if ac_fn_c_try_compile "$LINENO"; then : -+ break -+fi -+rm -f core conftest.err conftest.$ac_objext -+ CC="$CC -n32" -+ if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_sys_largefile_CC=' -n32'; break -+fi -+rm -f core conftest.err conftest.$ac_objext -+ break -+ done -+ CC=$ac_save_CC -+ rm -f conftest.$ac_ext -+ fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_CC" >&5 -+$as_echo "$ac_cv_sys_largefile_CC" >&6; } -+ if test "$ac_cv_sys_largefile_CC" != no; then -+ CC=$CC$ac_cv_sys_largefile_CC -+ fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5 -+$as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; } -+if ${ac_cv_sys_file_offset_bits+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ while :; do -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@include -+ /* Check that off_t can represent 2**63 - 1 correctly. -+ We can't simply define LARGE_OFF_T to be 9223372036854775807, -+ since some C++ compilers masquerading as C compilers -+ incorrectly reject 9223372036854775807. */ -+@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) -+ int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_sys_file_offset_bits=no; break -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@define _FILE_OFFSET_BITS 64 -+@%:@include -+ /* Check that off_t can represent 2**63 - 1 correctly. -+ We can't simply define LARGE_OFF_T to be 9223372036854775807, -+ since some C++ compilers masquerading as C compilers -+ incorrectly reject 9223372036854775807. */ -+@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) -+ int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_sys_file_offset_bits=64; break -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_cv_sys_file_offset_bits=unknown -+ break -+done -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_file_offset_bits" >&5 -+$as_echo "$ac_cv_sys_file_offset_bits" >&6; } -+case $ac_cv_sys_file_offset_bits in #( -+ no | unknown) ;; -+ *) -+cat >>confdefs.h <<_ACEOF -+@%:@define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits -+_ACEOF -+;; -+esac -+rm -rf conftest* -+ if test $ac_cv_sys_file_offset_bits = unknown; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5 -+$as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; } -+if ${ac_cv_sys_large_files+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ while :; do -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@include -+ /* Check that off_t can represent 2**63 - 1 correctly. -+ We can't simply define LARGE_OFF_T to be 9223372036854775807, -+ since some C++ compilers masquerading as C compilers -+ incorrectly reject 9223372036854775807. */ -+@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) -+ int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_sys_large_files=no; break -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@define _LARGE_FILES 1 -+@%:@include -+ /* Check that off_t can represent 2**63 - 1 correctly. -+ We can't simply define LARGE_OFF_T to be 9223372036854775807, -+ since some C++ compilers masquerading as C compilers -+ incorrectly reject 9223372036854775807. */ -+@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) -+ int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 -+ && LARGE_OFF_T % 2147483647 == 1) -+ ? 1 : -1]; -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_sys_large_files=1; break -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_cv_sys_large_files=unknown -+ break -+done -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_large_files" >&5 -+$as_echo "$ac_cv_sys_large_files" >&6; } -+case $ac_cv_sys_large_files in #( -+ no | unknown) ;; -+ *) -+cat >>confdefs.h <<_ACEOF -+@%:@define _LARGE_FILES $ac_cv_sys_large_files -+_ACEOF -+;; -+esac -+rm -rf conftest* -+ fi -+ -+ -+fi -+ -+ -+# Runs configure.host, and assorted other critical bits. Sets -+# up critical shell variables. -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 -+$as_echo_n "checking how to run the C preprocessor... " >&6; } -+# On Suns, sometimes $CPP names a directory. -+if test -n "$CPP" && test -d "$CPP"; then -+ CPP= -+fi -+if test -z "$CPP"; then -+ if ${ac_cv_prog_CPP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ # Double quotes because CPP needs to be expanded -+ for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" -+ do -+ ac_preproc_ok=false -+for ac_c_preproc_warn_flag in '' yes -+do -+ # Use a header file that comes with gcc, so configuring glibc -+ # with a fresh cross-compiler works. -+ # Prefer to if __STDC__ is defined, since -+ # exists even on freestanding compilers. -+ # On the NeXT, cc -E runs the code through the compiler's parser, -+ # not just through cpp. "Syntax error" is here to catch this case. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@ifdef __STDC__ -+@%:@ include -+@%:@else -+@%:@ include -+@%:@endif -+ Syntax error -+_ACEOF -+if ac_fn_c_try_cpp "$LINENO"; then : -+ -+else -+ # Broken: fails on valid input. -+continue -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+ -+ # OK, works on sane cases. Now check whether nonexistent headers -+ # can be detected and how. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@include -+_ACEOF -+if ac_fn_c_try_cpp "$LINENO"; then : -+ # Broken: success on invalid input. -+continue -+else -+ # Passes both tests. -+ac_preproc_ok=: -+break -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+ -+done -+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -+rm -f conftest.i conftest.err conftest.$ac_ext -+if $ac_preproc_ok; then : -+ break -+fi -+ -+ done -+ ac_cv_prog_CPP=$CPP -+ -+fi -+ CPP=$ac_cv_prog_CPP -+else -+ ac_cv_prog_CPP=$CPP -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 -+$as_echo "$CPP" >&6; } -+ac_preproc_ok=false -+for ac_c_preproc_warn_flag in '' yes -+do -+ # Use a header file that comes with gcc, so configuring glibc -+ # with a fresh cross-compiler works. -+ # Prefer to if __STDC__ is defined, since -+ # exists even on freestanding compilers. -+ # On the NeXT, cc -E runs the code through the compiler's parser, -+ # not just through cpp. "Syntax error" is here to catch this case. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@ifdef __STDC__ -+@%:@ include -+@%:@else -+@%:@ include -+@%:@endif -+ Syntax error -+_ACEOF -+if ac_fn_c_try_cpp "$LINENO"; then : -+ -+else -+ # Broken: fails on valid input. -+continue -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+ -+ # OK, works on sane cases. Now check whether nonexistent headers -+ # can be detected and how. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@include -+_ACEOF -+if ac_fn_c_try_cpp "$LINENO"; then : -+ # Broken: success on invalid input. -+continue -+else -+ # Passes both tests. -+ac_preproc_ok=: -+break -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+ -+done -+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -+rm -f conftest.i conftest.err conftest.$ac_ext -+if $ac_preproc_ok; then : -+ -+else -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "C preprocessor \"$CPP\" fails sanity check -+See \`config.log' for more details" "$LINENO" 5; } -+fi -+ -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 -+$as_echo_n "checking for grep that handles long lines and -e... " >&6; } -+if ${ac_cv_path_GREP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -z "$GREP"; then -+ ac_path_GREP_found=false -+ # Loop through the user's path and test for each of PROGNAME-LIST -+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_prog in grep ggrep; do -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" -+ as_fn_executable_p "$ac_path_GREP" || continue -+# Check for GNU ac_path_GREP and select it if it is found. -+ # Check for GNU $ac_path_GREP -+case `"$ac_path_GREP" --version 2>&1` in -+*GNU*) -+ ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; -+*) -+ ac_count=0 -+ $as_echo_n 0123456789 >"conftest.in" -+ while : -+ do -+ cat "conftest.in" "conftest.in" >"conftest.tmp" -+ mv "conftest.tmp" "conftest.in" -+ cp "conftest.in" "conftest.nl" -+ $as_echo 'GREP' >> "conftest.nl" -+ "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break -+ diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break -+ as_fn_arith $ac_count + 1 && ac_count=$as_val -+ if test $ac_count -gt ${ac_path_GREP_max-0}; then -+ # Best one so far, save it but keep looking for a better one -+ ac_cv_path_GREP="$ac_path_GREP" -+ ac_path_GREP_max=$ac_count -+ fi -+ # 10*(2^10) chars as input seems more than enough -+ test $ac_count -gt 10 && break -+ done -+ rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -+esac -+ -+ $ac_path_GREP_found && break 3 -+ done -+ done -+ done -+IFS=$as_save_IFS -+ if test -z "$ac_cv_path_GREP"; then -+ as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 -+ fi -+else -+ ac_cv_path_GREP=$GREP -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 -+$as_echo "$ac_cv_path_GREP" >&6; } -+ GREP="$ac_cv_path_GREP" -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 -+$as_echo_n "checking for egrep... " >&6; } -+if ${ac_cv_path_EGREP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 -+ then ac_cv_path_EGREP="$GREP -E" -+ else -+ if test -z "$EGREP"; then -+ ac_path_EGREP_found=false -+ # Loop through the user's path and test for each of PROGNAME-LIST -+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_prog in egrep; do -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" -+ as_fn_executable_p "$ac_path_EGREP" || continue -+# Check for GNU ac_path_EGREP and select it if it is found. -+ # Check for GNU $ac_path_EGREP -+case `"$ac_path_EGREP" --version 2>&1` in -+*GNU*) -+ ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; -+*) -+ ac_count=0 -+ $as_echo_n 0123456789 >"conftest.in" -+ while : -+ do -+ cat "conftest.in" "conftest.in" >"conftest.tmp" -+ mv "conftest.tmp" "conftest.in" -+ cp "conftest.in" "conftest.nl" -+ $as_echo 'EGREP' >> "conftest.nl" -+ "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break -+ diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break -+ as_fn_arith $ac_count + 1 && ac_count=$as_val -+ if test $ac_count -gt ${ac_path_EGREP_max-0}; then -+ # Best one so far, save it but keep looking for a better one -+ ac_cv_path_EGREP="$ac_path_EGREP" -+ ac_path_EGREP_max=$ac_count -+ fi -+ # 10*(2^10) chars as input seems more than enough -+ test $ac_count -gt 10 && break -+ done -+ rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -+esac -+ -+ $ac_path_EGREP_found && break 3 -+ done -+ done -+ done -+IFS=$as_save_IFS -+ if test -z "$ac_cv_path_EGREP"; then -+ as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 -+ fi -+else -+ ac_cv_path_EGREP=$EGREP -+fi -+ -+ fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 -+$as_echo "$ac_cv_path_EGREP" >&6; } -+ EGREP="$ac_cv_path_EGREP" -+ -+ -+ -+ # Keep these sync'd with the list in Makefile.am. The first provides an -+ # expandable list at autoconf time; the second provides an expandable list -+ # (i.e., shell variable) at configure time. -+ -+ SUBDIRS='include libsupc++ src src/c++98 src/c++11 src/c++17 src/c++20 src/filesystem src/libbacktrace doc po testsuite python' -+ -+ # These need to be absolute paths, yet at the same time need to -+ # canonicalize only relative paths, because then amd will not unmount -+ # drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd. -+ glibcxx_builddir=`${PWDCMD-pwd}` -+ case $srcdir in -+ \\/$* | ?:\\/*) glibcxx_srcdir=${srcdir} ;; -+ *) glibcxx_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;; -+ esac -+ toplevel_builddir=${glibcxx_builddir}/.. -+ toplevel_srcdir=${glibcxx_srcdir}/.. -+ -+ -+ -+ -+ -+ # We use these options to decide which functions to include. They are -+ # set from the top level. -+ -+@%:@ Check whether --with-target-subdir was given. -+if test "${with_target_subdir+set}" = set; then : -+ withval=$with_target_subdir; -+fi -+ -+ -+ -+@%:@ Check whether --with-cross-host was given. -+if test "${with_cross_host+set}" = set; then : -+ withval=$with_cross_host; -+fi -+ -+ -+ -+@%:@ Check whether --with-newlib was given. -+if test "${with_newlib+set}" = set; then : -+ withval=$with_newlib; -+fi -+ -+ -+ # Will set LN_S to either 'ln -s', 'ln', or 'cp -p' (if linking isn't -+ # available). Uncomment the next line to force a particular method. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 -+$as_echo_n "checking whether ln -s works... " >&6; } -+LN_S=$as_ln_s -+if test "$LN_S" = "ln -s"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -+$as_echo "yes" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 -+$as_echo "no, using $LN_S" >&6; } -+fi -+ -+ #LN_S='cp -p' -+ -+ if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}as", so it can be a program name with args. -+set dummy ${ac_tool_prefix}as; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_AS+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$AS"; then -+ ac_cv_prog_AS="$AS" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_AS="${ac_tool_prefix}as" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+AS=$ac_cv_prog_AS -+if test -n "$AS"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AS" >&5 -+$as_echo "$AS" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_AS"; then -+ ac_ct_AS=$AS -+ # Extract the first word of "as", so it can be a program name with args. -+set dummy as; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_AS+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_AS"; then -+ ac_cv_prog_ac_ct_AS="$ac_ct_AS" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_AS="as" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_AS=$ac_cv_prog_ac_ct_AS -+if test -n "$ac_ct_AS"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AS" >&5 -+$as_echo "$ac_ct_AS" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_AS" = x; then -+ AS="" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ AS=$ac_ct_AS -+ fi -+else -+ AS="$ac_cv_prog_AS" -+fi -+ -+ if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. -+set dummy ${ac_tool_prefix}ar; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_AR+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$AR"; then -+ ac_cv_prog_AR="$AR" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_AR="${ac_tool_prefix}ar" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+AR=$ac_cv_prog_AR -+if test -n "$AR"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 -+$as_echo "$AR" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_AR"; then -+ ac_ct_AR=$AR -+ # Extract the first word of "ar", so it can be a program name with args. -+set dummy ar; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_AR+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_AR"; then -+ ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_AR="ar" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_AR=$ac_cv_prog_ac_ct_AR -+if test -n "$ac_ct_AR"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 -+$as_echo "$ac_ct_AR" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_AR" = x; then -+ AR="" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ AR=$ac_ct_AR -+ fi -+else -+ AR="$ac_cv_prog_AR" -+fi -+ -+ if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. -+set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_RANLIB+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$RANLIB"; then -+ ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+RANLIB=$ac_cv_prog_RANLIB -+if test -n "$RANLIB"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 -+$as_echo "$RANLIB" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_RANLIB"; then -+ ac_ct_RANLIB=$RANLIB -+ # Extract the first word of "ranlib", so it can be a program name with args. -+set dummy ranlib; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_RANLIB"; then -+ ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_RANLIB="ranlib" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB -+if test -n "$ac_ct_RANLIB"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 -+$as_echo "$ac_ct_RANLIB" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_RANLIB" = x; then -+ RANLIB="ranlib-not-found-in-path-error" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ RANLIB=$ac_ct_RANLIB -+ fi -+else -+ RANLIB="$ac_cv_prog_RANLIB" -+fi -+ -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 -+$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } -+ @%:@ Check whether --enable-maintainer-mode was given. -+if test "${enable_maintainer_mode+set}" = set; then : -+ enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval -+else -+ USE_MAINTAINER_MODE=no -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 -+$as_echo "$USE_MAINTAINER_MODE" >&6; } -+ if test $USE_MAINTAINER_MODE = yes; then -+ MAINTAINER_MODE_TRUE= -+ MAINTAINER_MODE_FALSE='#' -+else -+ MAINTAINER_MODE_TRUE='#' -+ MAINTAINER_MODE_FALSE= -+fi -+ -+ MAINT=$MAINTAINER_MODE_TRUE -+ -+ -+ -+ # Set up safe default values for all subsequent AM_CONDITIONAL tests -+ # which are themselves conditionally expanded. -+ ## (Right now, this only matters for enable_wchar_t, but nothing prevents -+ ## other macros from doing the same. This should be automated.) -pme -+ -+ # Check for C library flavor since GNU/Linux platforms use different -+ # configuration directories depending on the C library in use. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+ #include -+ #if __UCLIBC__ -+ _using_uclibc -+ #endif -+ -+_ACEOF -+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | -+ $EGREP "_using_uclibc" >/dev/null 2>&1; then : -+ uclibc=yes -+else -+ uclibc=no -+fi -+rm -f conftest* -+ -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+ #include -+ #if __BIONIC__ -+ _using_bionic -+ #endif -+ -+_ACEOF -+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | -+ $EGREP "_using_bionic" >/dev/null 2>&1; then : -+ bionic=yes -+else -+ bionic=no -+fi -+rm -f conftest* -+ -+ -+ # Find platform-specific directories containing configuration info. -+ # Also possibly modify flags used elsewhere, as needed by the platform. -+ -+ . $glibcxx_srcdir/configure.host -+ { $as_echo "$as_me:${as_lineno-$LINENO}: CPU config directory is $cpu_include_dir" >&5 -+$as_echo "$as_me: CPU config directory is $cpu_include_dir" >&6;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: OS config directory is $os_include_dir" >&5 -+$as_echo "$as_me: OS config directory is $os_include_dir" >&6;} -+ -+ -+ -+# Libtool setup. -+if test "x${with_newlib}" != "xyes" && -+ test "x${with_avrlibc}" != "xyes" && -+ test "x$with_headers" != "xno"; then -+ enable_dlopen=yes -+ -+ -+ -+fi -+case `pwd` in -+ *\ * | *\ *) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 -+$as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; -+esac -+ -+ -+ -+macro_version='2.2.7a' -+macro_revision='1.3134' -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ltmain="$ac_aux_dir/ltmain.sh" -+ -+# Backslashify metacharacters that are still active within -+# double-quoted strings. -+sed_quote_subst='s/\(["`$\\]\)/\\\1/g' -+ -+# Same as above, but do not quote variable references. -+double_quote_subst='s/\(["`\\]\)/\\\1/g' -+ -+# Sed substitution to delay expansion of an escaped shell variable in a -+# double_quote_subst'ed string. -+delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' -+ -+# Sed substitution to delay expansion of an escaped single quote. -+delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' -+ -+# Sed substitution to avoid accidental globbing in evaled expressions -+no_glob_subst='s/\*/\\\*/g' -+ -+ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -+ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO -+ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 -+$as_echo_n "checking how to print strings... " >&6; } -+# Test print first, because it will be a builtin if present. -+if test "X`print -r -- -n 2>/dev/null`" = X-n && \ -+ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then -+ ECHO='print -r --' -+elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then -+ ECHO='printf %s\n' -+else -+ # Use this function as a fallback that always works. -+ func_fallback_echo () -+ { -+ eval 'cat <<_LTECHO_EOF -+$1 -+_LTECHO_EOF' -+ } -+ ECHO='func_fallback_echo' -+fi -+ -+# func_echo_all arg... -+# Invoke $ECHO with all args, space-separated. -+func_echo_all () -+{ -+ $ECHO "" -+} -+ -+case "$ECHO" in -+ printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 -+$as_echo "printf" >&6; } ;; -+ print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 -+$as_echo "print -r" >&6; } ;; -+ *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 -+$as_echo "cat" >&6; } ;; -+esac -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 -+$as_echo_n "checking for a sed that does not truncate output... " >&6; } -+if ${ac_cv_path_SED+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ -+ for ac_i in 1 2 3 4 5 6 7; do -+ ac_script="$ac_script$as_nl$ac_script" -+ done -+ echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed -+ { ac_script=; unset ac_script;} -+ if test -z "$SED"; then -+ ac_path_SED_found=false -+ # Loop through the user's path and test for each of PROGNAME-LIST -+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_prog in sed gsed; do -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" -+ as_fn_executable_p "$ac_path_SED" || continue -+# Check for GNU ac_path_SED and select it if it is found. -+ # Check for GNU $ac_path_SED -+case `"$ac_path_SED" --version 2>&1` in -+*GNU*) -+ ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; -+*) -+ ac_count=0 -+ $as_echo_n 0123456789 >"conftest.in" -+ while : -+ do -+ cat "conftest.in" "conftest.in" >"conftest.tmp" -+ mv "conftest.tmp" "conftest.in" -+ cp "conftest.in" "conftest.nl" -+ $as_echo '' >> "conftest.nl" -+ "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break -+ diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break -+ as_fn_arith $ac_count + 1 && ac_count=$as_val -+ if test $ac_count -gt ${ac_path_SED_max-0}; then -+ # Best one so far, save it but keep looking for a better one -+ ac_cv_path_SED="$ac_path_SED" -+ ac_path_SED_max=$ac_count -+ fi -+ # 10*(2^10) chars as input seems more than enough -+ test $ac_count -gt 10 && break -+ done -+ rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -+esac -+ -+ $ac_path_SED_found && break 3 -+ done -+ done -+ done -+IFS=$as_save_IFS -+ if test -z "$ac_cv_path_SED"; then -+ as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 -+ fi -+else -+ ac_cv_path_SED=$SED -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 -+$as_echo "$ac_cv_path_SED" >&6; } -+ SED="$ac_cv_path_SED" -+ rm -f conftest.sed -+ -+test -z "$SED" && SED=sed -+Xsed="$SED -e 1s/^X//" -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 -+$as_echo_n "checking for fgrep... " >&6; } -+if ${ac_cv_path_FGREP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 -+ then ac_cv_path_FGREP="$GREP -F" -+ else -+ if test -z "$FGREP"; then -+ ac_path_FGREP_found=false -+ # Loop through the user's path and test for each of PROGNAME-LIST -+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_prog in fgrep; do -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" -+ as_fn_executable_p "$ac_path_FGREP" || continue -+# Check for GNU ac_path_FGREP and select it if it is found. -+ # Check for GNU $ac_path_FGREP -+case `"$ac_path_FGREP" --version 2>&1` in -+*GNU*) -+ ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; -+*) -+ ac_count=0 -+ $as_echo_n 0123456789 >"conftest.in" -+ while : -+ do -+ cat "conftest.in" "conftest.in" >"conftest.tmp" -+ mv "conftest.tmp" "conftest.in" -+ cp "conftest.in" "conftest.nl" -+ $as_echo 'FGREP' >> "conftest.nl" -+ "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break -+ diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break -+ as_fn_arith $ac_count + 1 && ac_count=$as_val -+ if test $ac_count -gt ${ac_path_FGREP_max-0}; then -+ # Best one so far, save it but keep looking for a better one -+ ac_cv_path_FGREP="$ac_path_FGREP" -+ ac_path_FGREP_max=$ac_count -+ fi -+ # 10*(2^10) chars as input seems more than enough -+ test $ac_count -gt 10 && break -+ done -+ rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -+esac -+ -+ $ac_path_FGREP_found && break 3 -+ done -+ done -+ done -+IFS=$as_save_IFS -+ if test -z "$ac_cv_path_FGREP"; then -+ as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 -+ fi -+else -+ ac_cv_path_FGREP=$FGREP -+fi -+ -+ fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 -+$as_echo "$ac_cv_path_FGREP" >&6; } -+ FGREP="$ac_cv_path_FGREP" -+ -+ -+test -z "$GREP" && GREP=grep -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+@%:@ Check whether --with-gnu-ld was given. -+if test "${with_gnu_ld+set}" = set; then : -+ withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes -+else -+ with_gnu_ld=no -+fi -+ -+ac_prog=ld -+if test "$GCC" = yes; then -+ # Check if gcc -print-prog-name=ld gives a path. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 -+$as_echo_n "checking for ld used by $CC... " >&6; } -+ case $host in -+ *-*-mingw*) -+ # gcc leaves a trailing carriage return which upsets mingw -+ ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; -+ *) -+ ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; -+ esac -+ case $ac_prog in -+ # Accept absolute paths. -+ [\\/]* | ?:[\\/]*) -+ re_direlt='/[^/][^/]*/\.\./' -+ # Canonicalize the pathname of ld -+ ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` -+ while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do -+ ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` -+ done -+ test -z "$LD" && LD="$ac_prog" -+ ;; -+ "") -+ # If it fails, then pretend we aren't using GCC. -+ ac_prog=ld -+ ;; -+ *) -+ # If it is relative, then search for the first ld in PATH. -+ with_gnu_ld=unknown -+ ;; -+ esac -+elif test "$with_gnu_ld" = yes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 -+$as_echo_n "checking for GNU ld... " >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 -+$as_echo_n "checking for non-GNU ld... " >&6; } -+fi -+if ${lt_cv_path_LD+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -z "$LD"; then -+ lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR -+ for ac_dir in $PATH; do -+ IFS="$lt_save_ifs" -+ test -z "$ac_dir" && ac_dir=. -+ if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then -+ lt_cv_path_LD="$ac_dir/$ac_prog" -+ # Check to see if the program is GNU ld. I'd rather use --version, -+ # but apparently some variants of GNU ld only accept -v. -+ # Break only if it was the GNU/non-GNU ld that we prefer. -+ case `"$lt_cv_path_LD" -v 2>&1 &5 -+$as_echo "$LD" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 -+$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } -+if ${lt_cv_prog_gnu_ld+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ # I'd rather use --version here, but apparently some GNU lds only accept -v. -+case `$LD -v 2>&1 &5 -+$as_echo "$lt_cv_prog_gnu_ld" >&6; } -+with_gnu_ld=$lt_cv_prog_gnu_ld -+ -+ -+ -+ -+ -+ -+ -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 -+$as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } -+if ${lt_cv_path_NM+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$NM"; then -+ # Let the user override the test. -+ lt_cv_path_NM="$NM" -+else -+ lt_nm_to_check="${ac_tool_prefix}nm" -+ if test -n "$ac_tool_prefix" && test "$build" = "$host"; then -+ lt_nm_to_check="$lt_nm_to_check nm" -+ fi -+ for lt_tmp_nm in $lt_nm_to_check; do -+ lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR -+ for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do -+ IFS="$lt_save_ifs" -+ test -z "$ac_dir" && ac_dir=. -+ tmp_nm="$ac_dir/$lt_tmp_nm" -+ if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then -+ # Check to see if the nm accepts a BSD-compat flag. -+ # Adding the `sed 1q' prevents false positives on HP-UX, which says: -+ # nm: unknown option "B" ignored -+ # Tru64's nm complains that /dev/null is an invalid object file -+ case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in -+ */dev/null* | *'Invalid file or object type'*) -+ lt_cv_path_NM="$tmp_nm -B" -+ break -+ ;; -+ *) -+ case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in -+ */dev/null*) -+ lt_cv_path_NM="$tmp_nm -p" -+ break -+ ;; -+ *) -+ lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but -+ continue # so that we can try to find one that supports BSD flags -+ ;; -+ esac -+ ;; -+ esac -+ fi -+ done -+ IFS="$lt_save_ifs" -+ done -+ : ${lt_cv_path_NM=no} -+fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 -+$as_echo "$lt_cv_path_NM" >&6; } -+if test "$lt_cv_path_NM" != "no"; then -+ NM="$lt_cv_path_NM" -+else -+ # Didn't find any BSD compatible name lister, look for dumpbin. -+ if test -n "$DUMPBIN"; then : -+ # Let the user override the test. -+ else -+ if test -n "$ac_tool_prefix"; then -+ for ac_prog in dumpbin "link -dump" -+ do -+ # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -+set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_DUMPBIN+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$DUMPBIN"; then -+ ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+DUMPBIN=$ac_cv_prog_DUMPBIN -+if test -n "$DUMPBIN"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 -+$as_echo "$DUMPBIN" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ test -n "$DUMPBIN" && break -+ done -+fi -+if test -z "$DUMPBIN"; then -+ ac_ct_DUMPBIN=$DUMPBIN -+ for ac_prog in dumpbin "link -dump" -+do -+ # Extract the first word of "$ac_prog", so it can be a program name with args. -+set dummy $ac_prog; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_DUMPBIN"; then -+ ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN -+if test -n "$ac_ct_DUMPBIN"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 -+$as_echo "$ac_ct_DUMPBIN" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ test -n "$ac_ct_DUMPBIN" && break -+done -+ -+ if test "x$ac_ct_DUMPBIN" = x; then -+ DUMPBIN=":" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ DUMPBIN=$ac_ct_DUMPBIN -+ fi -+fi -+ -+ case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in -+ *COFF*) -+ DUMPBIN="$DUMPBIN -symbols" -+ ;; -+ *) -+ DUMPBIN=: -+ ;; -+ esac -+ fi -+ -+ if test "$DUMPBIN" != ":"; then -+ NM="$DUMPBIN" -+ fi -+fi -+test -z "$NM" && NM=nm -+ -+ -+ -+ -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 -+$as_echo_n "checking the name lister ($NM) interface... " >&6; } -+if ${lt_cv_nm_interface+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_nm_interface="BSD nm" -+ echo "int some_variable = 0;" > conftest.$ac_ext -+ (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) -+ (eval "$ac_compile" 2>conftest.err) -+ cat conftest.err >&5 -+ (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) -+ (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) -+ cat conftest.err >&5 -+ (eval echo "\"\$as_me:$LINENO: output\"" >&5) -+ cat conftest.out >&5 -+ if $GREP 'External.*some_variable' conftest.out > /dev/null; then -+ lt_cv_nm_interface="MS dumpbin" -+ fi -+ rm -f conftest* -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 -+$as_echo "$lt_cv_nm_interface" >&6; } -+ -+# find the maximum length of command line arguments -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 -+$as_echo_n "checking the maximum length of command line arguments... " >&6; } -+if ${lt_cv_sys_max_cmd_len+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ i=0 -+ teststring="ABCD" -+ -+ case $build_os in -+ msdosdjgpp*) -+ # On DJGPP, this test can blow up pretty badly due to problems in libc -+ # (any single argument exceeding 2000 bytes causes a buffer overrun -+ # during glob expansion). Even if it were fixed, the result of this -+ # check would be larger than it should be. -+ lt_cv_sys_max_cmd_len=12288; # 12K is about right -+ ;; -+ -+ gnu*) -+ # Under GNU Hurd, this test is not required because there is -+ # no limit to the length of command line arguments. -+ # Libtool will interpret -1 as no limit whatsoever -+ lt_cv_sys_max_cmd_len=-1; -+ ;; -+ -+ cygwin* | mingw* | cegcc*) -+ # On Win9x/ME, this test blows up -- it succeeds, but takes -+ # about 5 minutes as the teststring grows exponentially. -+ # Worse, since 9x/ME are not pre-emptively multitasking, -+ # you end up with a "frozen" computer, even though with patience -+ # the test eventually succeeds (with a max line length of 256k). -+ # Instead, let's just punt: use the minimum linelength reported by -+ # all of the supported platforms: 8192 (on NT/2K/XP). -+ lt_cv_sys_max_cmd_len=8192; -+ ;; -+ -+ mint*) -+ # On MiNT this can take a long time and run out of memory. -+ lt_cv_sys_max_cmd_len=8192; -+ ;; -+ -+ amigaos*) -+ # On AmigaOS with pdksh, this test takes hours, literally. -+ # So we just punt and use a minimum line length of 8192. -+ lt_cv_sys_max_cmd_len=8192; -+ ;; -+ -+ netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) -+ # This has been around since 386BSD, at least. Likely further. -+ if test -x /sbin/sysctl; then -+ lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` -+ elif test -x /usr/sbin/sysctl; then -+ lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` -+ else -+ lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs -+ fi -+ # And add a safety zone -+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` -+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` -+ ;; -+ -+ interix*) -+ # We know the value 262144 and hardcode it with a safety zone (like BSD) -+ lt_cv_sys_max_cmd_len=196608 -+ ;; -+ -+ osf*) -+ # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure -+ # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not -+ # nice to cause kernel panics so lets avoid the loop below. -+ # First set a reasonable default. -+ lt_cv_sys_max_cmd_len=16384 -+ # -+ if test -x /sbin/sysconfig; then -+ case `/sbin/sysconfig -q proc exec_disable_arg_limit` in -+ *1*) lt_cv_sys_max_cmd_len=-1 ;; -+ esac -+ fi -+ ;; -+ sco3.2v5*) -+ lt_cv_sys_max_cmd_len=102400 -+ ;; -+ sysv5* | sco5v6* | sysv4.2uw2*) -+ kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` -+ if test -n "$kargmax"; then -+ lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` -+ else -+ lt_cv_sys_max_cmd_len=32768 -+ fi -+ ;; -+ *) -+ lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` -+ if test -n "$lt_cv_sys_max_cmd_len"; then -+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` -+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` -+ else -+ # Make teststring a little bigger before we do anything with it. -+ # a 1K string should be a reasonable start. -+ for i in 1 2 3 4 5 6 7 8 ; do -+ teststring=$teststring$teststring -+ done -+ SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} -+ # If test is not a shell built-in, we'll probably end up computing a -+ # maximum length that is only half of the actual maximum length, but -+ # we can't tell. -+ while { test "X"`func_fallback_echo "$teststring$teststring" 2>/dev/null` \ -+ = "X$teststring$teststring"; } >/dev/null 2>&1 && -+ test $i != 17 # 1/2 MB should be enough -+ do -+ i=`expr $i + 1` -+ teststring=$teststring$teststring -+ done -+ # Only check the string length outside the loop. -+ lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` -+ teststring= -+ # Add a significant safety factor because C++ compilers can tack on -+ # massive amounts of additional arguments before passing them to the -+ # linker. It appears as though 1/2 is a usable value. -+ lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` -+ fi -+ ;; -+ esac -+ -+fi -+ -+if test -n $lt_cv_sys_max_cmd_len ; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 -+$as_echo "$lt_cv_sys_max_cmd_len" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 -+$as_echo "none" >&6; } -+fi -+max_cmd_len=$lt_cv_sys_max_cmd_len -+ -+ -+ -+ -+ -+ -+: ${CP="cp -f"} -+: ${MV="mv -f"} -+: ${RM="rm -f"} -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 -+$as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } -+# Try some XSI features -+xsi_shell=no -+( _lt_dummy="a/b/c" -+ test "${_lt_dummy##*/},${_lt_dummy%/*},"${_lt_dummy%"$_lt_dummy"}, \ -+ = c,a/b,, \ -+ && eval 'test $(( 1 + 1 )) -eq 2 \ -+ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ -+ && xsi_shell=yes -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 -+$as_echo "$xsi_shell" >&6; } -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 -+$as_echo_n "checking whether the shell understands \"+=\"... " >&6; } -+lt_shell_append=no -+( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ -+ >/dev/null 2>&1 \ -+ && lt_shell_append=yes -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 -+$as_echo "$lt_shell_append" >&6; } -+ -+ -+if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then -+ lt_unset=unset -+else -+ lt_unset=false -+fi -+ -+ -+ -+ -+ -+# test EBCDIC or ASCII -+case `echo X|tr X '\101'` in -+ A) # ASCII based system -+ # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr -+ lt_SP2NL='tr \040 \012' -+ lt_NL2SP='tr \015\012 \040\040' -+ ;; -+ *) # EBCDIC based system -+ lt_SP2NL='tr \100 \n' -+ lt_NL2SP='tr \r\n \100\100' -+ ;; -+esac -+ -+ -+ -+ -+ -+ -+ -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 -+$as_echo_n "checking for $LD option to reload object files... " >&6; } -+if ${lt_cv_ld_reload_flag+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_ld_reload_flag='-r' -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 -+$as_echo "$lt_cv_ld_reload_flag" >&6; } -+reload_flag=$lt_cv_ld_reload_flag -+case $reload_flag in -+"" | " "*) ;; -+*) reload_flag=" $reload_flag" ;; -+esac -+reload_cmds='$LD$reload_flag -o $output$reload_objs' -+case $host_os in -+ darwin*) -+ if test "$GCC" = yes; then -+ reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' -+ else -+ reload_cmds='$LD$reload_flag -o $output$reload_objs' -+ fi -+ ;; -+esac -+ -+ -+ -+ -+ -+ -+ -+ -+ -+if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. -+set dummy ${ac_tool_prefix}objdump; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_OBJDUMP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$OBJDUMP"; then -+ ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+OBJDUMP=$ac_cv_prog_OBJDUMP -+if test -n "$OBJDUMP"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 -+$as_echo "$OBJDUMP" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_OBJDUMP"; then -+ ac_ct_OBJDUMP=$OBJDUMP -+ # Extract the first word of "objdump", so it can be a program name with args. -+set dummy objdump; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_OBJDUMP"; then -+ ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_OBJDUMP="objdump" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP -+if test -n "$ac_ct_OBJDUMP"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 -+$as_echo "$ac_ct_OBJDUMP" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_OBJDUMP" = x; then -+ OBJDUMP="false" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ OBJDUMP=$ac_ct_OBJDUMP -+ fi -+else -+ OBJDUMP="$ac_cv_prog_OBJDUMP" -+fi -+ -+test -z "$OBJDUMP" && OBJDUMP=objdump -+ -+ -+ -+ -+ -+ -+ -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 -+$as_echo_n "checking how to recognize dependent libraries... " >&6; } -+if ${lt_cv_deplibs_check_method+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_file_magic_cmd='$MAGIC_CMD' -+lt_cv_file_magic_test_file= -+lt_cv_deplibs_check_method='unknown' -+# Need to set the preceding variable on all platforms that support -+# interlibrary dependencies. -+# 'none' -- dependencies not supported. -+# `unknown' -- same as none, but documents that we really don't know. -+# 'pass_all' -- all dependencies passed with no checks. -+# 'test_compile' -- check by making test program. -+# 'file_magic [[regex]]' -- check by looking for files in library path -+# which responds to the $file_magic_cmd with a given extended regex. -+# If you have `file' or equivalent on your system and you're not sure -+# whether `pass_all' will *always* work, you probably want this one. -+ -+case $host_os in -+aix[4-9]*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+beos*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+bsdi[45]*) -+ lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' -+ lt_cv_file_magic_cmd='/usr/bin/file -L' -+ lt_cv_file_magic_test_file=/shlib/libc.so -+ ;; -+ -+cygwin*) -+ # func_win32_libid is a shell function defined in ltmain.sh -+ lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' -+ lt_cv_file_magic_cmd='func_win32_libid' -+ ;; -+ -+mingw* | pw32*) -+ # Base MSYS/MinGW do not provide the 'file' command needed by -+ # func_win32_libid shell function, so use a weaker test based on 'objdump', -+ # unless we find 'file', for example because we are cross-compiling. -+ # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. -+ if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then -+ lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' -+ lt_cv_file_magic_cmd='func_win32_libid' -+ else -+ lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' -+ lt_cv_file_magic_cmd='$OBJDUMP -f' -+ fi -+ ;; -+ -+cegcc*) -+ # use the weaker test based on 'objdump'. See mingw*. -+ lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' -+ lt_cv_file_magic_cmd='$OBJDUMP -f' -+ ;; -+ -+darwin* | rhapsody*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+freebsd* | dragonfly*) -+ if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then -+ case $host_cpu in -+ i*86 ) -+ # Not sure whether the presence of OpenBSD here was a mistake. -+ # Let's accept both of them until this is cleared up. -+ lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' -+ lt_cv_file_magic_cmd=/usr/bin/file -+ lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` -+ ;; -+ esac -+ else -+ lt_cv_deplibs_check_method=pass_all -+ fi -+ ;; -+ -+gnu*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+haiku*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+hpux10.20* | hpux11*) -+ lt_cv_file_magic_cmd=/usr/bin/file -+ case $host_cpu in -+ ia64*) -+ lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' -+ lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so -+ ;; -+ hppa*64*) -+ lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' -+ lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl -+ ;; -+ *) -+ lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' -+ lt_cv_file_magic_test_file=/usr/lib/libc.sl -+ ;; -+ esac -+ ;; -+ -+interix[3-9]*) -+ # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here -+ lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' -+ ;; -+ -+irix5* | irix6* | nonstopux*) -+ case $LD in -+ *-32|*"-32 ") libmagic=32-bit;; -+ *-n32|*"-n32 ") libmagic=N32;; -+ *-64|*"-64 ") libmagic=64-bit;; -+ *) libmagic=never-match;; -+ esac -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+# This must be Linux ELF. -+linux* | k*bsd*-gnu | kopensolaris*-gnu | uclinuxfdpiceabi) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+netbsd*) -+ if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then -+ lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' -+ else -+ lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' -+ fi -+ ;; -+ -+newos6*) -+ lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' -+ lt_cv_file_magic_cmd=/usr/bin/file -+ lt_cv_file_magic_test_file=/usr/lib/libnls.so -+ ;; -+ -+*nto* | *qnx*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+openbsd*) -+ if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then -+ lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' -+ else -+ lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' -+ fi -+ ;; -+ -+osf3* | osf4* | osf5*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+rdos*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+solaris*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ -+sysv4 | sysv4.3*) -+ case $host_vendor in -+ motorola) -+ lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' -+ lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` -+ ;; -+ ncr) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ sequent) -+ lt_cv_file_magic_cmd='/bin/file' -+ lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' -+ ;; -+ sni) -+ lt_cv_file_magic_cmd='/bin/file' -+ lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" -+ lt_cv_file_magic_test_file=/lib/libc.so -+ ;; -+ siemens) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ pc) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+ esac -+ ;; -+ -+tpf*) -+ lt_cv_deplibs_check_method=pass_all -+ ;; -+esac -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 -+$as_echo "$lt_cv_deplibs_check_method" >&6; } -+file_magic_cmd=$lt_cv_file_magic_cmd -+deplibs_check_method=$lt_cv_deplibs_check_method -+test -z "$deplibs_check_method" && deplibs_check_method=unknown -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. -+set dummy ${ac_tool_prefix}ar; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_AR+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$AR"; then -+ ac_cv_prog_AR="$AR" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_AR="${ac_tool_prefix}ar" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+AR=$ac_cv_prog_AR -+if test -n "$AR"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 -+$as_echo "$AR" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_AR"; then -+ ac_ct_AR=$AR -+ # Extract the first word of "ar", so it can be a program name with args. -+set dummy ar; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_AR+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_AR"; then -+ ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_AR="ar" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_AR=$ac_cv_prog_ac_ct_AR -+if test -n "$ac_ct_AR"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 -+$as_echo "$ac_ct_AR" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_AR" = x; then -+ AR="false" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ AR=$ac_ct_AR -+ fi -+else -+ AR="$ac_cv_prog_AR" -+fi -+ -+test -z "$AR" && AR=ar -+test -z "$AR_FLAGS" && AR_FLAGS=cru -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. -+set dummy ${ac_tool_prefix}strip; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_STRIP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$STRIP"; then -+ ac_cv_prog_STRIP="$STRIP" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_STRIP="${ac_tool_prefix}strip" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+STRIP=$ac_cv_prog_STRIP -+if test -n "$STRIP"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 -+$as_echo "$STRIP" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_STRIP"; then -+ ac_ct_STRIP=$STRIP -+ # Extract the first word of "strip", so it can be a program name with args. -+set dummy strip; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_STRIP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_STRIP"; then -+ ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_STRIP="strip" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP -+if test -n "$ac_ct_STRIP"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 -+$as_echo "$ac_ct_STRIP" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_STRIP" = x; then -+ STRIP=":" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ STRIP=$ac_ct_STRIP -+ fi -+else -+ STRIP="$ac_cv_prog_STRIP" -+fi -+ -+test -z "$STRIP" && STRIP=: -+ -+ -+ -+ -+ -+ -+if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. -+set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_RANLIB+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$RANLIB"; then -+ ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+RANLIB=$ac_cv_prog_RANLIB -+if test -n "$RANLIB"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 -+$as_echo "$RANLIB" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_RANLIB"; then -+ ac_ct_RANLIB=$RANLIB -+ # Extract the first word of "ranlib", so it can be a program name with args. -+set dummy ranlib; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_RANLIB"; then -+ ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_RANLIB="ranlib" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB -+if test -n "$ac_ct_RANLIB"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 -+$as_echo "$ac_ct_RANLIB" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_RANLIB" = x; then -+ RANLIB=":" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ RANLIB=$ac_ct_RANLIB -+ fi -+else -+ RANLIB="$ac_cv_prog_RANLIB" -+fi -+ -+test -z "$RANLIB" && RANLIB=: -+ -+ -+ -+ -+ -+ -+# Determine commands to create old-style static archives. -+old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' -+old_postinstall_cmds='chmod 644 $oldlib' -+old_postuninstall_cmds= -+ -+if test -n "$RANLIB"; then -+ case $host_os in -+ openbsd*) -+ old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" -+ ;; -+ *) -+ old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" -+ ;; -+ esac -+ old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" -+fi -+ -+case $host_os in -+ darwin*) -+ lock_old_archive_extraction=yes ;; -+ *) -+ lock_old_archive_extraction=no ;; -+esac -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+# If no C compiler was specified, use CC. -+LTCC=${LTCC-"$CC"} -+ -+# If no C compiler flags were specified, use CFLAGS. -+LTCFLAGS=${LTCFLAGS-"$CFLAGS"} -+ -+# Allow CC to be a program name with arguments. -+compiler=$CC -+ -+ -+# Check for command to grab the raw symbol name followed by C symbol from nm. -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 -+$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } -+if ${lt_cv_sys_global_symbol_pipe+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+# These are sane defaults that work on at least a few old systems. -+# [They come from Ultrix. What could be older than Ultrix?!! ;)] -+ -+# Character class describing NM global symbol codes. -+symcode='[BCDEGRST]' -+ -+# Regexp to match symbols that can be accessed directly from C. -+sympat='\([_A-Za-z][_A-Za-z0-9]*\)' -+ -+# Define system-specific variables. -+case $host_os in -+aix*) -+ symcode='[BCDT]' -+ ;; -+cygwin* | mingw* | pw32* | cegcc*) -+ symcode='[ABCDGISTW]' -+ ;; -+hpux*) -+ if test "$host_cpu" = ia64; then -+ symcode='[ABCDEGRST]' -+ fi -+ ;; -+irix* | nonstopux*) -+ symcode='[BCDEGRST]' -+ ;; -+osf*) -+ symcode='[BCDEGQRST]' -+ ;; -+solaris*) -+ symcode='[BDRT]' -+ ;; -+sco3.2v5*) -+ symcode='[DT]' -+ ;; -+sysv4.2uw2*) -+ symcode='[DT]' -+ ;; -+sysv5* | sco5v6* | unixware* | OpenUNIX*) -+ symcode='[ABDT]' -+ ;; -+sysv4) -+ symcode='[DFNSTU]' -+ ;; -+esac -+ -+# If we're using GNU nm, then use its standard symbol codes. -+case `$NM -V 2>&1` in -+*GNU* | *'with BFD'*) -+ symcode='[ABCDGIRSTW]' ;; -+esac -+ -+# Transform an extracted symbol line into a proper C declaration. -+# Some systems (esp. on ia64) link data and code symbols differently, -+# so use this general approach. -+lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" -+ -+# Transform an extracted symbol line into symbol name and symbol address -+lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" -+lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" -+ -+# Handle CRLF in mingw tool chain -+opt_cr= -+case $build_os in -+mingw*) -+ opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp -+ ;; -+esac -+ -+# Try without a prefix underscore, then with it. -+for ac_symprfx in "" "_"; do -+ -+ # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. -+ symxfrm="\\1 $ac_symprfx\\2 \\2" -+ -+ # Write the raw and C identifiers. -+ if test "$lt_cv_nm_interface" = "MS dumpbin"; then -+ # Fake it for dumpbin and say T for any non-static function -+ # and D for any global variable. -+ # Also find C++ and __fastcall symbols from MSVC++, -+ # which start with @ or ?. -+ lt_cv_sys_global_symbol_pipe="$AWK '"\ -+" {last_section=section; section=\$ 3};"\ -+" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ -+" \$ 0!~/External *\|/{next};"\ -+" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ -+" {if(hide[section]) next};"\ -+" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ -+" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ -+" s[1]~/^[@?]/{print s[1], s[1]; next};"\ -+" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ -+" ' prfx=^$ac_symprfx" -+ else -+ lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" -+ fi -+ -+ # Check to see that the pipe works correctly. -+ pipe_works=no -+ -+ rm -f conftest* -+ cat > conftest.$ac_ext <<_LT_EOF -+#ifdef __cplusplus -+extern "C" { -+#endif -+char nm_test_var; -+void nm_test_func(void); -+void nm_test_func(void){} -+#ifdef __cplusplus -+} -+#endif -+int main(){nm_test_var='a';nm_test_func();return(0);} -+_LT_EOF -+ -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ # Now try to grab the symbols. -+ nlist=conftest.nm -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 -+ (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } && test -s "$nlist"; then -+ # Try sorting and uniquifying the output. -+ if sort "$nlist" | uniq > "$nlist"T; then -+ mv -f "$nlist"T "$nlist" -+ else -+ rm -f "$nlist"T -+ fi -+ -+ # Make sure that we snagged all the symbols we need. -+ if $GREP ' nm_test_var$' "$nlist" >/dev/null; then -+ if $GREP ' nm_test_func$' "$nlist" >/dev/null; then -+ cat <<_LT_EOF > conftest.$ac_ext -+#ifdef __cplusplus -+extern "C" { -+#endif -+ -+_LT_EOF -+ # Now generate the symbol file. -+ eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' -+ -+ cat <<_LT_EOF >> conftest.$ac_ext -+ -+/* The mapping between symbol names and symbols. */ -+const struct { -+ const char *name; -+ void *address; -+} -+lt__PROGRAM__LTX_preloaded_symbols[] = -+{ -+ { "@PROGRAM@", (void *) 0 }, -+_LT_EOF -+ $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext -+ cat <<\_LT_EOF >> conftest.$ac_ext -+ {0, (void *) 0} -+}; -+ -+/* This works around a problem in FreeBSD linker */ -+#ifdef FREEBSD_WORKAROUND -+static const void *lt_preloaded_setup() { -+ return lt__PROGRAM__LTX_preloaded_symbols; -+} -+#endif -+ -+#ifdef __cplusplus -+} -+#endif -+_LT_EOF -+ # Now try linking the two files. -+ mv conftest.$ac_objext conftstm.$ac_objext -+ lt_save_LIBS="$LIBS" -+ lt_save_CFLAGS="$CFLAGS" -+ LIBS="conftstm.$ac_objext" -+ CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 -+ (eval $ac_link) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } && test -s conftest${ac_exeext}; then -+ pipe_works=yes -+ fi -+ LIBS="$lt_save_LIBS" -+ CFLAGS="$lt_save_CFLAGS" -+ else -+ echo "cannot find nm_test_func in $nlist" >&5 -+ fi -+ else -+ echo "cannot find nm_test_var in $nlist" >&5 -+ fi -+ else -+ echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 -+ fi -+ else -+ echo "$progname: failed program was:" >&5 -+ cat conftest.$ac_ext >&5 -+ fi -+ rm -rf conftest* conftst* -+ -+ # Do not use the global_symbol_pipe unless it works. -+ if test "$pipe_works" = yes; then -+ break -+ else -+ lt_cv_sys_global_symbol_pipe= -+ fi -+done -+ -+fi -+ -+if test -z "$lt_cv_sys_global_symbol_pipe"; then -+ lt_cv_sys_global_symbol_to_cdecl= -+fi -+if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 -+$as_echo "failed" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 -+$as_echo "ok" >&6; } -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+@%:@ Check whether --enable-libtool-lock was given. -+if test "${enable_libtool_lock+set}" = set; then : -+ enableval=$enable_libtool_lock; -+fi -+ -+test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes -+ -+# Some flags need to be propagated to the compiler or linker for good -+# libtool support. -+case $host in -+ia64-*-hpux*) -+ # Find out which ABI we are using. -+ echo 'int i;' > conftest.$ac_ext -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ case `/usr/bin/file conftest.$ac_objext` in -+ *ELF-32*) -+ HPUX_IA64_MODE="32" -+ ;; -+ *ELF-64*) -+ HPUX_IA64_MODE="64" -+ ;; -+ esac -+ fi -+ rm -rf conftest* -+ ;; -+*-*-irix6*) -+ # Find out which ABI we are using. -+ echo '#line '$LINENO' "configure"' > conftest.$ac_ext -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ if test "$lt_cv_prog_gnu_ld" = yes; then -+ case `/usr/bin/file conftest.$ac_objext` in -+ *32-bit*) -+ LD="${LD-ld} -melf32bsmip" -+ ;; -+ *N32*) -+ LD="${LD-ld} -melf32bmipn32" -+ ;; -+ *64-bit*) -+ LD="${LD-ld} -melf64bmip" -+ ;; -+ esac -+ else -+ case `/usr/bin/file conftest.$ac_objext` in -+ *32-bit*) -+ LD="${LD-ld} -32" -+ ;; -+ *N32*) -+ LD="${LD-ld} -n32" -+ ;; -+ *64-bit*) -+ LD="${LD-ld} -64" -+ ;; -+ esac -+ fi -+ fi -+ rm -rf conftest* -+ ;; -+ -+x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ -+s390*-*linux*|s390*-*tpf*|sparc*-*linux*) -+ # Find out which ABI we are using. -+ echo 'int i;' > conftest.$ac_ext -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ case `/usr/bin/file conftest.o` in -+ *32-bit*) -+ case $host in -+ x86_64-*kfreebsd*-gnu) -+ LD="${LD-ld} -m elf_i386_fbsd" -+ ;; -+ x86_64-*linux*) -+ case `/usr/bin/file conftest.o` in -+ *x86-64*) -+ LD="${LD-ld} -m elf32_x86_64" -+ ;; -+ *) -+ LD="${LD-ld} -m elf_i386" -+ ;; -+ esac -+ ;; -+ powerpc64le-*linux*) -+ LD="${LD-ld} -m elf32lppclinux" -+ ;; -+ powerpc64-*linux*) -+ LD="${LD-ld} -m elf32ppclinux" -+ ;; -+ s390x-*linux*) -+ LD="${LD-ld} -m elf_s390" -+ ;; -+ sparc64-*linux*) -+ LD="${LD-ld} -m elf32_sparc" -+ ;; -+ esac -+ ;; -+ *64-bit*) -+ case $host in -+ x86_64-*kfreebsd*-gnu) -+ LD="${LD-ld} -m elf_x86_64_fbsd" -+ ;; -+ x86_64-*linux*) -+ LD="${LD-ld} -m elf_x86_64" -+ ;; -+ powerpcle-*linux*) -+ LD="${LD-ld} -m elf64lppc" -+ ;; -+ powerpc-*linux*) -+ LD="${LD-ld} -m elf64ppc" -+ ;; -+ s390*-*linux*|s390*-*tpf*) -+ LD="${LD-ld} -m elf64_s390" -+ ;; -+ sparc*-*linux*) -+ LD="${LD-ld} -m elf64_sparc" -+ ;; -+ esac -+ ;; -+ esac -+ fi -+ rm -rf conftest* -+ ;; -+ -+*-*-sco3.2v5*) -+ # On SCO OpenServer 5, we need -belf to get full-featured binaries. -+ SAVE_CFLAGS="$CFLAGS" -+ CFLAGS="$CFLAGS -belf" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 -+$as_echo_n "checking whether the C compiler needs -belf... " >&6; } -+if ${lt_cv_cc_needs_belf+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ lt_cv_cc_needs_belf=yes -+else -+ lt_cv_cc_needs_belf=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 -+$as_echo "$lt_cv_cc_needs_belf" >&6; } -+ if test x"$lt_cv_cc_needs_belf" != x"yes"; then -+ # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf -+ CFLAGS="$SAVE_CFLAGS" -+ fi -+ ;; -+sparc*-*solaris*) -+ # Find out which ABI we are using. -+ echo 'int i;' > conftest.$ac_ext -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ case `/usr/bin/file conftest.o` in -+ *64-bit*) -+ case $lt_cv_prog_gnu_ld in -+ yes*) LD="${LD-ld} -m elf64_sparc" ;; -+ *) -+ if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then -+ LD="${LD-ld} -64" -+ fi -+ ;; -+ esac -+ ;; -+ esac -+ fi -+ rm -rf conftest* -+ ;; -+esac -+ -+need_locks="$enable_libtool_lock" -+ -+ -+ case $host_os in -+ rhapsody* | darwin*) -+ if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. -+set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_DSYMUTIL+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$DSYMUTIL"; then -+ ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+DSYMUTIL=$ac_cv_prog_DSYMUTIL -+if test -n "$DSYMUTIL"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 -+$as_echo "$DSYMUTIL" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_DSYMUTIL"; then -+ ac_ct_DSYMUTIL=$DSYMUTIL -+ # Extract the first word of "dsymutil", so it can be a program name with args. -+set dummy dsymutil; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_DSYMUTIL"; then -+ ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL -+if test -n "$ac_ct_DSYMUTIL"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 -+$as_echo "$ac_ct_DSYMUTIL" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_DSYMUTIL" = x; then -+ DSYMUTIL=":" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ DSYMUTIL=$ac_ct_DSYMUTIL -+ fi -+else -+ DSYMUTIL="$ac_cv_prog_DSYMUTIL" -+fi -+ -+ if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. -+set dummy ${ac_tool_prefix}nmedit; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_NMEDIT+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$NMEDIT"; then -+ ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+NMEDIT=$ac_cv_prog_NMEDIT -+if test -n "$NMEDIT"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 -+$as_echo "$NMEDIT" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_NMEDIT"; then -+ ac_ct_NMEDIT=$NMEDIT -+ # Extract the first word of "nmedit", so it can be a program name with args. -+set dummy nmedit; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_NMEDIT"; then -+ ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_NMEDIT="nmedit" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT -+if test -n "$ac_ct_NMEDIT"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 -+$as_echo "$ac_ct_NMEDIT" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_NMEDIT" = x; then -+ NMEDIT=":" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ NMEDIT=$ac_ct_NMEDIT -+ fi -+else -+ NMEDIT="$ac_cv_prog_NMEDIT" -+fi -+ -+ if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. -+set dummy ${ac_tool_prefix}lipo; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_LIPO+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$LIPO"; then -+ ac_cv_prog_LIPO="$LIPO" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_LIPO="${ac_tool_prefix}lipo" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+LIPO=$ac_cv_prog_LIPO -+if test -n "$LIPO"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 -+$as_echo "$LIPO" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_LIPO"; then -+ ac_ct_LIPO=$LIPO -+ # Extract the first word of "lipo", so it can be a program name with args. -+set dummy lipo; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_LIPO+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_LIPO"; then -+ ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_LIPO="lipo" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO -+if test -n "$ac_ct_LIPO"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 -+$as_echo "$ac_ct_LIPO" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_LIPO" = x; then -+ LIPO=":" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ LIPO=$ac_ct_LIPO -+ fi -+else -+ LIPO="$ac_cv_prog_LIPO" -+fi -+ -+ if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. -+set dummy ${ac_tool_prefix}otool; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_OTOOL+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$OTOOL"; then -+ ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_OTOOL="${ac_tool_prefix}otool" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+OTOOL=$ac_cv_prog_OTOOL -+if test -n "$OTOOL"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 -+$as_echo "$OTOOL" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_OTOOL"; then -+ ac_ct_OTOOL=$OTOOL -+ # Extract the first word of "otool", so it can be a program name with args. -+set dummy otool; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_OTOOL"; then -+ ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_OTOOL="otool" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL -+if test -n "$ac_ct_OTOOL"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 -+$as_echo "$ac_ct_OTOOL" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_OTOOL" = x; then -+ OTOOL=":" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ OTOOL=$ac_ct_OTOOL -+ fi -+else -+ OTOOL="$ac_cv_prog_OTOOL" -+fi -+ -+ if test -n "$ac_tool_prefix"; then -+ # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. -+set dummy ${ac_tool_prefix}otool64; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_OTOOL64+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$OTOOL64"; then -+ ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+OTOOL64=$ac_cv_prog_OTOOL64 -+if test -n "$OTOOL64"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 -+$as_echo "$OTOOL64" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+fi -+if test -z "$ac_cv_prog_OTOOL64"; then -+ ac_ct_OTOOL64=$OTOOL64 -+ # Extract the first word of "otool64", so it can be a program name with args. -+set dummy otool64; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$ac_ct_OTOOL64"; then -+ ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_ac_ct_OTOOL64="otool64" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 -+if test -n "$ac_ct_OTOOL64"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 -+$as_echo "$ac_ct_OTOOL64" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ if test "x$ac_ct_OTOOL64" = x; then -+ OTOOL64=":" -+ else -+ case $cross_compiling:$ac_tool_warned in -+yes:) -+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -+ac_tool_warned=yes ;; -+esac -+ OTOOL64=$ac_ct_OTOOL64 -+ fi -+else -+ OTOOL64="$ac_cv_prog_OTOOL64" -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 -+$as_echo_n "checking for -single_module linker flag... " >&6; } -+if ${lt_cv_apple_cc_single_mod+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_apple_cc_single_mod=no -+ if test -z "${LT_MULTI_MODULE}"; then -+ # By default we will add the -single_module flag. You can override -+ # by either setting the environment variable LT_MULTI_MODULE -+ # non-empty at configure time, or by adding -multi_module to the -+ # link flags. -+ rm -rf libconftest.dylib* -+ echo "int foo(void){return 1;}" > conftest.c -+ echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -+-dynamiclib -Wl,-single_module conftest.c" >&5 -+ $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -+ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err -+ _lt_result=$? -+ if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then -+ lt_cv_apple_cc_single_mod=yes -+ else -+ cat conftest.err >&5 -+ fi -+ rm -rf libconftest.dylib* -+ rm -f conftest.* -+ fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 -+$as_echo "$lt_cv_apple_cc_single_mod" >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 -+$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } -+if ${lt_cv_ld_exported_symbols_list+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_ld_exported_symbols_list=no -+ save_LDFLAGS=$LDFLAGS -+ echo "_main" > conftest.sym -+ LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ lt_cv_ld_exported_symbols_list=yes -+else -+ lt_cv_ld_exported_symbols_list=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ LDFLAGS="$save_LDFLAGS" -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 -+$as_echo "$lt_cv_ld_exported_symbols_list" >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 -+$as_echo_n "checking for -force_load linker flag... " >&6; } -+if ${lt_cv_ld_force_load+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_ld_force_load=no -+ cat > conftest.c << _LT_EOF -+int forced_loaded() { return 2;} -+_LT_EOF -+ echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 -+ $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 -+ echo "$AR cru libconftest.a conftest.o" >&5 -+ $AR cru libconftest.a conftest.o 2>&5 -+ cat > conftest.c << _LT_EOF -+int main() { return 0;} -+_LT_EOF -+ echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 -+ $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err -+ _lt_result=$? -+ if test -f conftest && test ! -s conftest.err && test $_lt_result = 0 && $GREP forced_load conftest 2>&1 >/dev/null; then -+ lt_cv_ld_force_load=yes -+ else -+ cat conftest.err >&5 -+ fi -+ rm -f conftest.err libconftest.a conftest conftest.c -+ rm -rf conftest.dSYM -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 -+$as_echo "$lt_cv_ld_force_load" >&6; } -+ # Allow for Darwin 4-7 (macOS 10.0-10.3) although these are not expect to -+ # build without first building modern cctools / linker. -+ case $host_cpu-$host_os in -+ *-rhapsody* | *-darwin1.[012]) -+ _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; -+ *-darwin1.*) -+ _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; -+ *-darwin*) -+ # darwin 5.x (macOS 10.1) onwards we only need to adjust when the -+ # deployment target is forced to an earlier version. -+ case ${MACOSX_DEPLOYMENT_TARGET-UNSET},$host in -+ UNSET,*-darwin[89]*|UNSET,*-darwin[12][0123456789]*) -+ ;; -+ 10.[012][,.]*) -+ _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' -+ ;; -+ *) -+ ;; -+ esac -+ ;; -+ esac -+ if test "$lt_cv_apple_cc_single_mod" = "yes"; then -+ _lt_dar_single_mod='$single_module' -+ fi -+ if test "$lt_cv_ld_exported_symbols_list" = "yes"; then -+ _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' -+ else -+ _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' -+ fi -+ if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then -+ _lt_dsymutil='~$DSYMUTIL $lib || :' -+ else -+ _lt_dsymutil= -+ fi -+ ;; -+ esac -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 -+$as_echo_n "checking for ANSI C header files... " >&6; } -+if ${ac_cv_header_stdc+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+#include -+#include -+#include -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_header_stdc=yes -+else -+ ac_cv_header_stdc=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+if test $ac_cv_header_stdc = yes; then -+ # SunOS 4.x string.h does not declare mem*, contrary to ANSI. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ -+_ACEOF -+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | -+ $EGREP "memchr" >/dev/null 2>&1; then : -+ -+else -+ ac_cv_header_stdc=no -+fi -+rm -f conftest* -+ -+fi -+ -+if test $ac_cv_header_stdc = yes; then -+ # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ -+_ACEOF -+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | -+ $EGREP "free" >/dev/null 2>&1; then : -+ -+else -+ ac_cv_header_stdc=no -+fi -+rm -f conftest* -+ -+fi -+ -+if test $ac_cv_header_stdc = yes; then -+ # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. -+ if test "$cross_compiling" = yes; then : -+ : -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+#include -+#if ((' ' & 0x0FF) == 0x020) -+# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') -+# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) -+#else -+# define ISLOWER(c) \ -+ (('a' <= (c) && (c) <= 'i') \ -+ || ('j' <= (c) && (c) <= 'r') \ -+ || ('s' <= (c) && (c) <= 'z')) -+# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) -+#endif -+ -+#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) -+int -+main () -+{ -+ int i; -+ for (i = 0; i < 256; i++) -+ if (XOR (islower (i), ISLOWER (i)) -+ || toupper (i) != TOUPPER (i)) -+ return 2; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_run "$LINENO"; then : -+ -+else -+ ac_cv_header_stdc=no -+fi -+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ -+ conftest.$ac_objext conftest.beam conftest.$ac_ext -+fi -+ -+fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 -+$as_echo "$ac_cv_header_stdc" >&6; } -+if test $ac_cv_header_stdc = yes; then -+ -+$as_echo "@%:@define STDC_HEADERS 1" >>confdefs.h -+ -+fi -+ -+# On IRIX 5.3, sys/types and inttypes.h are conflicting. -+for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ -+ inttypes.h stdint.h unistd.h -+do : -+ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -+ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default -+" -+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ -+for ac_header in dlfcn.h -+do : -+ ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default -+" -+if test "x$ac_cv_header_dlfcn_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_DLFCN_H 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ -+ -+ -+ -+ -+# Set options -+ -+ -+ -+ -+ enable_win32_dll=no -+ -+ -+ @%:@ Check whether --enable-shared was given. -+if test "${enable_shared+set}" = set; then : -+ enableval=$enable_shared; p=${PACKAGE-default} -+ case $enableval in -+ yes) enable_shared=yes ;; -+ no) enable_shared=no ;; -+ *) -+ enable_shared=no -+ # Look at the argument we got. We use all the common list separators. -+ lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," -+ for pkg in $enableval; do -+ IFS="$lt_save_ifs" -+ if test "X$pkg" = "X$p"; then -+ enable_shared=yes -+ fi -+ done -+ IFS="$lt_save_ifs" -+ ;; -+ esac -+else -+ enable_shared=yes -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ @%:@ Check whether --enable-static was given. -+if test "${enable_static+set}" = set; then : -+ enableval=$enable_static; p=${PACKAGE-default} -+ case $enableval in -+ yes) enable_static=yes ;; -+ no) enable_static=no ;; -+ *) -+ enable_static=no -+ # Look at the argument we got. We use all the common list separators. -+ lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," -+ for pkg in $enableval; do -+ IFS="$lt_save_ifs" -+ if test "X$pkg" = "X$p"; then -+ enable_static=yes -+ fi -+ done -+ IFS="$lt_save_ifs" -+ ;; -+ esac -+else -+ enable_static=yes -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+@%:@ Check whether --with-pic was given. -+if test "${with_pic+set}" = set; then : -+ withval=$with_pic; pic_mode="$withval" -+else -+ pic_mode=default -+fi -+ -+ -+test -z "$pic_mode" && pic_mode=default -+ -+ -+ -+ -+ -+ -+ -+ @%:@ Check whether --enable-fast-install was given. -+if test "${enable_fast_install+set}" = set; then : -+ enableval=$enable_fast_install; p=${PACKAGE-default} -+ case $enableval in -+ yes) enable_fast_install=yes ;; -+ no) enable_fast_install=no ;; -+ *) -+ enable_fast_install=no -+ # Look at the argument we got. We use all the common list separators. -+ lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," -+ for pkg in $enableval; do -+ IFS="$lt_save_ifs" -+ if test "X$pkg" = "X$p"; then -+ enable_fast_install=yes -+ fi -+ done -+ IFS="$lt_save_ifs" -+ ;; -+ esac -+else -+ enable_fast_install=yes -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+# This can be used to rebuild libtool when needed -+LIBTOOL_DEPS="$ltmain" -+ -+# Always use our own libtool. -+LIBTOOL='$(SHELL) $(top_builddir)/libtool' -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+test -z "$LN_S" && LN_S="ln -s" -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+if test -n "${ZSH_VERSION+set}" ; then -+ setopt NO_GLOB_SUBST -+fi -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 -+$as_echo_n "checking for objdir... " >&6; } -+if ${lt_cv_objdir+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ rm -f .libs 2>/dev/null -+mkdir .libs 2>/dev/null -+if test -d .libs; then -+ lt_cv_objdir=.libs -+else -+ # MS-DOS does not allow filenames that begin with a dot. -+ lt_cv_objdir=_libs -+fi -+rmdir .libs 2>/dev/null -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 -+$as_echo "$lt_cv_objdir" >&6; } -+objdir=$lt_cv_objdir -+ -+ -+ -+ -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define LT_OBJDIR "$lt_cv_objdir/" -+_ACEOF -+ -+ -+ -+ -+case $host_os in -+aix3*) -+ # AIX sometimes has problems with the GCC collect2 program. For some -+ # reason, if we set the COLLECT_NAMES environment variable, the problems -+ # vanish in a puff of smoke. -+ if test "X${COLLECT_NAMES+set}" != Xset; then -+ COLLECT_NAMES= -+ export COLLECT_NAMES -+ fi -+ ;; -+esac -+ -+# Global variables: -+ofile=libtool -+can_build_shared=yes -+ -+# All known linkers require a `.a' archive for static linking (except MSVC, -+# which needs '.lib'). -+libext=a -+ -+with_gnu_ld="$lt_cv_prog_gnu_ld" -+ -+old_CC="$CC" -+old_CFLAGS="$CFLAGS" -+ -+# Set sane defaults for various variables -+test -z "$CC" && CC=cc -+test -z "$LTCC" && LTCC=$CC -+test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS -+test -z "$LD" && LD=ld -+test -z "$ac_objext" && ac_objext=o -+ -+for cc_temp in $compiler""; do -+ case $cc_temp in -+ compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; -+ distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; -+ \-*) ;; -+ *) break;; -+ esac -+done -+cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` -+ -+ -+# Only perform the check for file, if the check method requires it -+test -z "$MAGIC_CMD" && MAGIC_CMD=file -+case $deplibs_check_method in -+file_magic*) -+ if test "$file_magic_cmd" = '$MAGIC_CMD'; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 -+$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } -+if ${lt_cv_path_MAGIC_CMD+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ case $MAGIC_CMD in -+[\\/*] | ?:[\\/]*) -+ lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. -+ ;; -+*) -+ lt_save_MAGIC_CMD="$MAGIC_CMD" -+ lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR -+ ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" -+ for ac_dir in $ac_dummy; do -+ IFS="$lt_save_ifs" -+ test -z "$ac_dir" && ac_dir=. -+ if test -f $ac_dir/${ac_tool_prefix}file; then -+ lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" -+ if test -n "$file_magic_test_file"; then -+ case $deplibs_check_method in -+ "file_magic "*) -+ file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` -+ MAGIC_CMD="$lt_cv_path_MAGIC_CMD" -+ if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | -+ $EGREP "$file_magic_regex" > /dev/null; then -+ : -+ else -+ cat <<_LT_EOF 1>&2 -+ -+*** Warning: the command libtool uses to detect shared libraries, -+*** $file_magic_cmd, produces output that libtool cannot recognize. -+*** The result is that libtool may fail to recognize shared libraries -+*** as such. This will affect the creation of libtool libraries that -+*** depend on shared libraries, but programs linked with such libtool -+*** libraries will work regardless of this problem. Nevertheless, you -+*** may want to report the problem to your system manager and/or to -+*** bug-libtool@gnu.org -+ -+_LT_EOF -+ fi ;; -+ esac -+ fi -+ break -+ fi -+ done -+ IFS="$lt_save_ifs" -+ MAGIC_CMD="$lt_save_MAGIC_CMD" -+ ;; -+esac -+fi -+ -+MAGIC_CMD="$lt_cv_path_MAGIC_CMD" -+if test -n "$MAGIC_CMD"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 -+$as_echo "$MAGIC_CMD" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ -+ -+ -+if test -z "$lt_cv_path_MAGIC_CMD"; then -+ if test -n "$ac_tool_prefix"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 -+$as_echo_n "checking for file... " >&6; } -+if ${lt_cv_path_MAGIC_CMD+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ case $MAGIC_CMD in -+[\\/*] | ?:[\\/]*) -+ lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. -+ ;; -+*) -+ lt_save_MAGIC_CMD="$MAGIC_CMD" -+ lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR -+ ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" -+ for ac_dir in $ac_dummy; do -+ IFS="$lt_save_ifs" -+ test -z "$ac_dir" && ac_dir=. -+ if test -f $ac_dir/file; then -+ lt_cv_path_MAGIC_CMD="$ac_dir/file" -+ if test -n "$file_magic_test_file"; then -+ case $deplibs_check_method in -+ "file_magic "*) -+ file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` -+ MAGIC_CMD="$lt_cv_path_MAGIC_CMD" -+ if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | -+ $EGREP "$file_magic_regex" > /dev/null; then -+ : -+ else -+ cat <<_LT_EOF 1>&2 -+ -+*** Warning: the command libtool uses to detect shared libraries, -+*** $file_magic_cmd, produces output that libtool cannot recognize. -+*** The result is that libtool may fail to recognize shared libraries -+*** as such. This will affect the creation of libtool libraries that -+*** depend on shared libraries, but programs linked with such libtool -+*** libraries will work regardless of this problem. Nevertheless, you -+*** may want to report the problem to your system manager and/or to -+*** bug-libtool@gnu.org -+ -+_LT_EOF -+ fi ;; -+ esac -+ fi -+ break -+ fi -+ done -+ IFS="$lt_save_ifs" -+ MAGIC_CMD="$lt_save_MAGIC_CMD" -+ ;; -+esac -+fi -+ -+MAGIC_CMD="$lt_cv_path_MAGIC_CMD" -+if test -n "$MAGIC_CMD"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 -+$as_echo "$MAGIC_CMD" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ else -+ MAGIC_CMD=: -+ fi -+fi -+ -+ fi -+ ;; -+esac -+ -+# Use C for the default configuration in the libtool script -+ -+lt_save_CC="$CC" -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+# Source file extension for C test sources. -+ac_ext=c -+ -+# Object file extension for compiled C test sources. -+objext=o -+objext=$objext -+ -+# Code to be used in simple compile tests -+lt_simple_compile_test_code="int some_variable = 0;" -+ -+# Code to be used in simple link tests -+lt_simple_link_test_code='int main(){return(0);}' -+ -+ -+ -+ -+ -+ -+ -+# If no C compiler was specified, use CC. -+LTCC=${LTCC-"$CC"} -+ -+# If no C compiler flags were specified, use CFLAGS. -+LTCFLAGS=${LTCFLAGS-"$CFLAGS"} -+ -+# Allow CC to be a program name with arguments. -+compiler=$CC -+ -+# Save the default compiler, since it gets overwritten when the other -+# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. -+compiler_DEFAULT=$CC -+ -+# save warnings/boilerplate of simple test code -+ac_outfile=conftest.$ac_objext -+echo "$lt_simple_compile_test_code" >conftest.$ac_ext -+eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -+_lt_compiler_boilerplate=`cat conftest.err` -+$RM conftest* -+ -+ac_outfile=conftest.$ac_objext -+echo "$lt_simple_link_test_code" >conftest.$ac_ext -+eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -+_lt_linker_boilerplate=`cat conftest.err` -+$RM -r conftest* -+ -+ -+## CAVEAT EMPTOR: -+## There is no encapsulation within the following macros, do not change -+## the running order or otherwise move them around unless you know exactly -+## what you are doing... -+if test -n "$compiler"; then -+ -+lt_prog_compiler_no_builtin_flag= -+ -+if test "$GCC" = yes; then -+ case $cc_basename in -+ nvcc*) -+ lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; -+ *) -+ lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; -+ esac -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 -+$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } -+if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler_rtti_exceptions=no -+ ac_outfile=conftest.$ac_objext -+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext -+ lt_compiler_flag="-fno-rtti -fno-exceptions" -+ # Insert the option either (1) after the last *FLAGS variable, or -+ # (2) before a word containing "conftest.", or (3) at the end. -+ # Note that $ac_compile itself does not contain backslashes and begins -+ # with a dollar sign (not a hyphen), so the echo should work correctly. -+ # The option is referenced via a variable to avoid confusing sed. -+ lt_compile=`echo "$ac_compile" | $SED \ -+ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -+ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -+ -e 's:$: $lt_compiler_flag:'` -+ (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) -+ (eval "$lt_compile" 2>conftest.err) -+ ac_status=$? -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ if (exit $ac_status) && test -s "$ac_outfile"; then -+ # The compiler can only warn and ignore the option if not recognized -+ # So say no if there are warnings other than the usual output. -+ $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp -+ $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 -+ if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler_rtti_exceptions=yes -+ fi -+ fi -+ $RM conftest* -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 -+$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } -+ -+if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then -+ lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" -+else -+ : -+fi -+ -+fi -+ -+ -+ -+ -+ -+ -+ lt_prog_compiler_wl= -+lt_prog_compiler_pic= -+lt_prog_compiler_static= -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 -+$as_echo_n "checking for $compiler option to produce PIC... " >&6; } -+ -+ if test "$GCC" = yes; then -+ lt_prog_compiler_wl='-Wl,' -+ lt_prog_compiler_static='-static' -+ -+ case $host_os in -+ aix*) -+ # All AIX code is PIC. -+ if test "$host_cpu" = ia64; then -+ # AIX 5 now supports IA64 processor -+ lt_prog_compiler_static='-Bstatic' -+ fi -+ lt_prog_compiler_pic='-fPIC' -+ ;; -+ -+ amigaos*) -+ case $host_cpu in -+ powerpc) -+ # see comment about AmigaOS4 .so support -+ lt_prog_compiler_pic='-fPIC' -+ ;; -+ m68k) -+ # FIXME: we need at least 68020 code to build shared libraries, but -+ # adding the `-m68020' flag to GCC prevents building anything better, -+ # like `-m68040'. -+ lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' -+ ;; -+ esac -+ ;; -+ -+ beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) -+ # PIC is the default for these OSes. -+ ;; -+ -+ mingw* | cygwin* | pw32* | os2* | cegcc*) -+ # This hack is so that the source file can tell whether it is being -+ # built for inclusion in a dll (and should export symbols for example). -+ # Although the cygwin gcc ignores -fPIC, still need this for old-style -+ # (--disable-auto-import) libraries -+ lt_prog_compiler_pic='-DDLL_EXPORT' -+ ;; -+ -+ darwin* | rhapsody*) -+ # PIC is the default on this platform -+ # Common symbols not allowed in MH_DYLIB files -+ lt_prog_compiler_pic='-fno-common' -+ ;; -+ -+ haiku*) -+ # PIC is the default for Haiku. -+ # The "-static" flag exists, but is broken. -+ lt_prog_compiler_static= -+ ;; -+ -+ hpux*) -+ # PIC is the default for 64-bit PA HP-UX, but not for 32-bit -+ # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag -+ # sets the default TLS model and affects inlining. -+ case $host_cpu in -+ hppa*64*) -+ # +Z the default -+ ;; -+ *) -+ lt_prog_compiler_pic='-fPIC' -+ ;; -+ esac -+ ;; -+ -+ interix[3-9]*) -+ # Interix 3.x gcc -fpic/-fPIC options generate broken code. -+ # Instead, we relocate shared libraries at runtime. -+ ;; -+ -+ msdosdjgpp*) -+ # Just because we use GCC doesn't mean we suddenly get shared libraries -+ # on systems that don't support them. -+ lt_prog_compiler_can_build_shared=no -+ enable_shared=no -+ ;; -+ -+ *nto* | *qnx*) -+ # QNX uses GNU C++, but need to define -shared option too, otherwise -+ # it will coredump. -+ lt_prog_compiler_pic='-fPIC -shared' -+ ;; -+ -+ sysv4*MP*) -+ if test -d /usr/nec; then -+ lt_prog_compiler_pic=-Kconform_pic -+ fi -+ ;; -+ -+ *) -+ lt_prog_compiler_pic='-fPIC' -+ ;; -+ esac -+ -+ case $cc_basename in -+ nvcc*) # Cuda Compiler Driver 2.2 -+ lt_prog_compiler_wl='-Xlinker ' -+ lt_prog_compiler_pic='-Xcompiler -fPIC' -+ ;; -+ esac -+ else -+ # PORTME Check for flag to pass linker flags through the system compiler. -+ case $host_os in -+ aix*) -+ lt_prog_compiler_wl='-Wl,' -+ if test "$host_cpu" = ia64; then -+ # AIX 5 now supports IA64 processor -+ lt_prog_compiler_static='-Bstatic' -+ else -+ lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' -+ fi -+ ;; -+ -+ mingw* | cygwin* | pw32* | os2* | cegcc*) -+ # This hack is so that the source file can tell whether it is being -+ # built for inclusion in a dll (and should export symbols for example). -+ lt_prog_compiler_pic='-DDLL_EXPORT' -+ ;; -+ -+ hpux9* | hpux10* | hpux11*) -+ lt_prog_compiler_wl='-Wl,' -+ # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but -+ # not for PA HP-UX. -+ case $host_cpu in -+ hppa*64*|ia64*) -+ # +Z the default -+ ;; -+ *) -+ lt_prog_compiler_pic='+Z' -+ ;; -+ esac -+ # Is there a better lt_prog_compiler_static that works with the bundled CC? -+ lt_prog_compiler_static='${wl}-a ${wl}archive' -+ ;; -+ -+ irix5* | irix6* | nonstopux*) -+ lt_prog_compiler_wl='-Wl,' -+ # PIC (with -KPIC) is the default. -+ lt_prog_compiler_static='-non_shared' -+ ;; -+ -+ linux* | k*bsd*-gnu | kopensolaris*-gnu) -+ case $cc_basename in -+ # old Intel for x86_64 which still supported -KPIC. -+ ecc*) -+ lt_prog_compiler_wl='-Wl,' -+ lt_prog_compiler_pic='-KPIC' -+ lt_prog_compiler_static='-static' -+ ;; -+ # icc used to be incompatible with GCC. -+ # ICC 10 doesn't accept -KPIC any more. -+ icc* | ifort*) -+ lt_prog_compiler_wl='-Wl,' -+ lt_prog_compiler_pic='-fPIC' -+ lt_prog_compiler_static='-static' -+ ;; -+ # Lahey Fortran 8.1. -+ lf95*) -+ lt_prog_compiler_wl='-Wl,' -+ lt_prog_compiler_pic='--shared' -+ lt_prog_compiler_static='--static' -+ ;; -+ pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) -+ # Portland Group compilers (*not* the Pentium gcc compiler, -+ # which looks to be a dead project) -+ lt_prog_compiler_wl='-Wl,' -+ lt_prog_compiler_pic='-fpic' -+ lt_prog_compiler_static='-Bstatic' -+ ;; -+ ccc*) -+ lt_prog_compiler_wl='-Wl,' -+ # All Alpha code is PIC. -+ lt_prog_compiler_static='-non_shared' -+ ;; -+ xl* | bgxl* | bgf* | mpixl*) -+ # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene -+ lt_prog_compiler_wl='-Wl,' -+ lt_prog_compiler_pic='-qpic' -+ lt_prog_compiler_static='-qstaticlink' -+ ;; -+ *) -+ case `$CC -V 2>&1 | sed 5q` in -+ *Sun\ F* | *Sun*Fortran*) -+ # Sun Fortran 8.3 passes all unrecognized flags to the linker -+ lt_prog_compiler_pic='-KPIC' -+ lt_prog_compiler_static='-Bstatic' -+ lt_prog_compiler_wl='' -+ ;; -+ *Sun\ C*) -+ # Sun C 5.9 -+ lt_prog_compiler_pic='-KPIC' -+ lt_prog_compiler_static='-Bstatic' -+ lt_prog_compiler_wl='-Wl,' -+ ;; -+ esac -+ ;; -+ esac -+ ;; -+ -+ newsos6) -+ lt_prog_compiler_pic='-KPIC' -+ lt_prog_compiler_static='-Bstatic' -+ ;; -+ -+ *nto* | *qnx*) -+ # QNX uses GNU C++, but need to define -shared option too, otherwise -+ # it will coredump. -+ lt_prog_compiler_pic='-fPIC -shared' -+ ;; -+ -+ osf3* | osf4* | osf5*) -+ lt_prog_compiler_wl='-Wl,' -+ # All OSF/1 code is PIC. -+ lt_prog_compiler_static='-non_shared' -+ ;; -+ -+ rdos*) -+ lt_prog_compiler_static='-non_shared' -+ ;; -+ -+ solaris*) -+ lt_prog_compiler_pic='-KPIC' -+ lt_prog_compiler_static='-Bstatic' -+ case $cc_basename in -+ f77* | f90* | f95*) -+ lt_prog_compiler_wl='-Qoption ld ';; -+ *) -+ lt_prog_compiler_wl='-Wl,';; -+ esac -+ ;; -+ -+ sunos4*) -+ lt_prog_compiler_wl='-Qoption ld ' -+ lt_prog_compiler_pic='-PIC' -+ lt_prog_compiler_static='-Bstatic' -+ ;; -+ -+ sysv4 | sysv4.2uw2* | sysv4.3*) -+ lt_prog_compiler_wl='-Wl,' -+ lt_prog_compiler_pic='-KPIC' -+ lt_prog_compiler_static='-Bstatic' -+ ;; -+ -+ sysv4*MP*) -+ if test -d /usr/nec ;then -+ lt_prog_compiler_pic='-Kconform_pic' -+ lt_prog_compiler_static='-Bstatic' -+ fi -+ ;; -+ -+ sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) -+ lt_prog_compiler_wl='-Wl,' -+ lt_prog_compiler_pic='-KPIC' -+ lt_prog_compiler_static='-Bstatic' -+ ;; -+ -+ unicos*) -+ lt_prog_compiler_wl='-Wl,' -+ lt_prog_compiler_can_build_shared=no -+ ;; -+ -+ uts4*) -+ lt_prog_compiler_pic='-pic' -+ lt_prog_compiler_static='-Bstatic' -+ ;; -+ -+ *) -+ lt_prog_compiler_can_build_shared=no -+ ;; -+ esac -+ fi -+ -+case $host_os in -+ # For platforms which do not support PIC, -DPIC is meaningless: -+ *djgpp*) -+ lt_prog_compiler_pic= -+ ;; -+ *) -+ lt_prog_compiler_pic="$lt_prog_compiler_pic@&t@ -DPIC" -+ ;; -+esac -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic" >&5 -+$as_echo "$lt_prog_compiler_pic" >&6; } -+ -+ -+ -+ -+ -+ -+# -+# Check to make sure the PIC flag actually works. -+# -+if test -n "$lt_prog_compiler_pic"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 -+$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } -+if ${lt_cv_prog_compiler_pic_works+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler_pic_works=no -+ ac_outfile=conftest.$ac_objext -+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext -+ lt_compiler_flag="$lt_prog_compiler_pic@&t@ -DPIC" -+ # Insert the option either (1) after the last *FLAGS variable, or -+ # (2) before a word containing "conftest.", or (3) at the end. -+ # Note that $ac_compile itself does not contain backslashes and begins -+ # with a dollar sign (not a hyphen), so the echo should work correctly. -+ # The option is referenced via a variable to avoid confusing sed. -+ lt_compile=`echo "$ac_compile" | $SED \ -+ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -+ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -+ -e 's:$: $lt_compiler_flag:'` -+ (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) -+ (eval "$lt_compile" 2>conftest.err) -+ ac_status=$? -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ if (exit $ac_status) && test -s "$ac_outfile"; then -+ # The compiler can only warn and ignore the option if not recognized -+ # So say no if there are warnings other than the usual output. -+ $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp -+ $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 -+ if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler_pic_works=yes -+ fi -+ fi -+ $RM conftest* -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 -+$as_echo "$lt_cv_prog_compiler_pic_works" >&6; } -+ -+if test x"$lt_cv_prog_compiler_pic_works" = xyes; then -+ case $lt_prog_compiler_pic in -+ "" | " "*) ;; -+ *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; -+ esac -+else -+ lt_prog_compiler_pic= -+ lt_prog_compiler_can_build_shared=no -+fi -+ -+fi -+ -+ -+ -+ -+ -+ -+# -+# Check to make sure the static flag actually works. -+# -+wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 -+$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } -+if ${lt_cv_prog_compiler_static_works+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler_static_works=no -+ save_LDFLAGS="$LDFLAGS" -+ LDFLAGS="$LDFLAGS $lt_tmp_static_flag" -+ echo "$lt_simple_link_test_code" > conftest.$ac_ext -+ if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then -+ # The linker can only warn and ignore the option if not recognized -+ # So say no if there are warnings -+ if test -s conftest.err; then -+ # Append any errors to the config.log. -+ cat conftest.err 1>&5 -+ $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp -+ $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 -+ if diff conftest.exp conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler_static_works=yes -+ fi -+ else -+ lt_cv_prog_compiler_static_works=yes -+ fi -+ fi -+ $RM -r conftest* -+ LDFLAGS="$save_LDFLAGS" -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 -+$as_echo "$lt_cv_prog_compiler_static_works" >&6; } -+ -+if test x"$lt_cv_prog_compiler_static_works" = xyes; then -+ : -+else -+ lt_prog_compiler_static= -+fi -+ -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -+$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -+if ${lt_cv_prog_compiler_c_o+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler_c_o=no -+ $RM -r conftest 2>/dev/null -+ mkdir conftest -+ cd conftest -+ mkdir out -+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext -+ -+ lt_compiler_flag="-o out/conftest2.$ac_objext" -+ # Insert the option either (1) after the last *FLAGS variable, or -+ # (2) before a word containing "conftest.", or (3) at the end. -+ # Note that $ac_compile itself does not contain backslashes and begins -+ # with a dollar sign (not a hyphen), so the echo should work correctly. -+ lt_compile=`echo "$ac_compile" | $SED \ -+ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -+ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -+ -e 's:$: $lt_compiler_flag:'` -+ (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) -+ (eval "$lt_compile" 2>out/conftest.err) -+ ac_status=$? -+ cat out/conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ if (exit $ac_status) && test -s out/conftest2.$ac_objext -+ then -+ # The compiler can only warn and ignore the option if not recognized -+ # So say no if there are warnings -+ $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp -+ $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 -+ if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler_c_o=yes -+ fi -+ fi -+ chmod u+w . 2>&5 -+ $RM conftest* -+ # SGI C++ compiler will create directory out/ii_files/ for -+ # template instantiation -+ test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files -+ $RM out/* && rmdir out -+ cd .. -+ $RM -r conftest -+ $RM conftest* -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 -+$as_echo "$lt_cv_prog_compiler_c_o" >&6; } -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -+$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -+if ${lt_cv_prog_compiler_c_o+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler_c_o=no -+ $RM -r conftest 2>/dev/null -+ mkdir conftest -+ cd conftest -+ mkdir out -+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext -+ -+ lt_compiler_flag="-o out/conftest2.$ac_objext" -+ # Insert the option either (1) after the last *FLAGS variable, or -+ # (2) before a word containing "conftest.", or (3) at the end. -+ # Note that $ac_compile itself does not contain backslashes and begins -+ # with a dollar sign (not a hyphen), so the echo should work correctly. -+ lt_compile=`echo "$ac_compile" | $SED \ -+ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -+ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -+ -e 's:$: $lt_compiler_flag:'` -+ (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) -+ (eval "$lt_compile" 2>out/conftest.err) -+ ac_status=$? -+ cat out/conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ if (exit $ac_status) && test -s out/conftest2.$ac_objext -+ then -+ # The compiler can only warn and ignore the option if not recognized -+ # So say no if there are warnings -+ $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp -+ $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 -+ if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler_c_o=yes -+ fi -+ fi -+ chmod u+w . 2>&5 -+ $RM conftest* -+ # SGI C++ compiler will create directory out/ii_files/ for -+ # template instantiation -+ test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files -+ $RM out/* && rmdir out -+ cd .. -+ $RM -r conftest -+ $RM conftest* -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 -+$as_echo "$lt_cv_prog_compiler_c_o" >&6; } -+ -+ -+ -+ -+hard_links="nottested" -+if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then -+ # do not overwrite the value of need_locks provided by the user -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 -+$as_echo_n "checking if we can lock with hard links... " >&6; } -+ hard_links=yes -+ $RM conftest* -+ ln conftest.a conftest.b 2>/dev/null && hard_links=no -+ touch conftest.a -+ ln conftest.a conftest.b 2>&5 || hard_links=no -+ ln conftest.a conftest.b 2>/dev/null && hard_links=no -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 -+$as_echo "$hard_links" >&6; } -+ if test "$hard_links" = no; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 -+$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} -+ need_locks=warn -+ fi -+else -+ need_locks=no -+fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -+$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } -+ -+ runpath_var= -+ allow_undefined_flag= -+ always_export_symbols=no -+ archive_cmds= -+ archive_expsym_cmds= -+ compiler_needs_object=no -+ enable_shared_with_static_runtimes=no -+ export_dynamic_flag_spec= -+ export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' -+ hardcode_automatic=no -+ hardcode_direct=no -+ hardcode_direct_absolute=no -+ hardcode_libdir_flag_spec= -+ hardcode_libdir_flag_spec_ld= -+ hardcode_libdir_separator= -+ hardcode_minus_L=no -+ hardcode_shlibpath_var=unsupported -+ inherit_rpath=no -+ link_all_deplibs=unknown -+ module_cmds= -+ module_expsym_cmds= -+ old_archive_from_new_cmds= -+ old_archive_from_expsyms_cmds= -+ thread_safe_flag_spec= -+ whole_archive_flag_spec= -+ # include_expsyms should be a list of space-separated symbols to be *always* -+ # included in the symbol list -+ include_expsyms= -+ # exclude_expsyms can be an extended regexp of symbols to exclude -+ # it will be wrapped by ` (' and `)$', so one must not match beginning or -+ # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', -+ # as well as any symbol that contains `d'. -+ exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' -+ # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out -+ # platforms (ab)use it in PIC code, but their linkers get confused if -+ # the symbol is explicitly referenced. Since portable code cannot -+ # rely on this symbol name, it's probably fine to never include it in -+ # preloaded symbol tables. -+ # Exclude shared library initialization/finalization symbols. -+ extract_expsyms_cmds= -+ -+ case $host_os in -+ cygwin* | mingw* | pw32* | cegcc*) -+ # FIXME: the MSVC++ port hasn't been tested in a loooong time -+ # When not using gcc, we currently assume that we are using -+ # Microsoft Visual C++. -+ if test "$GCC" != yes; then -+ with_gnu_ld=no -+ fi -+ ;; -+ interix*) -+ # we just hope/assume this is gcc and not c89 (= MSVC++) -+ with_gnu_ld=yes -+ ;; -+ openbsd*) -+ with_gnu_ld=no -+ ;; -+ esac -+ -+ ld_shlibs=yes -+ -+ # On some targets, GNU ld is compatible enough with the native linker -+ # that we're better off using the native interface for both. -+ lt_use_gnu_ld_interface=no -+ if test "$with_gnu_ld" = yes; then -+ case $host_os in -+ aix*) -+ # The AIX port of GNU ld has always aspired to compatibility -+ # with the native linker. However, as the warning in the GNU ld -+ # block says, versions before 2.19.5* couldn't really create working -+ # shared libraries, regardless of the interface used. -+ case `$LD -v 2>&1` in -+ *\ \(GNU\ Binutils\)\ 2.19.5*) ;; -+ *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; -+ *\ \(GNU\ Binutils\)\ [3-9]*) ;; -+ *) -+ lt_use_gnu_ld_interface=yes -+ ;; -+ esac -+ ;; -+ *) -+ lt_use_gnu_ld_interface=yes -+ ;; -+ esac -+ fi -+ -+ if test "$lt_use_gnu_ld_interface" = yes; then -+ # If archive_cmds runs LD, not CC, wlarc should be empty -+ wlarc='${wl}' -+ -+ # Set some defaults for GNU ld with shared library support. These -+ # are reset later if shared libraries are not supported. Putting them -+ # here allows them to be overridden if necessary. -+ runpath_var=LD_RUN_PATH -+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' -+ export_dynamic_flag_spec='${wl}--export-dynamic' -+ # ancient GNU ld didn't support --whole-archive et. al. -+ if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then -+ whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' -+ else -+ whole_archive_flag_spec= -+ fi -+ supports_anon_versioning=no -+ case `$LD -v 2>&1` in -+ *GNU\ gold*) supports_anon_versioning=yes ;; -+ *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 -+ *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... -+ *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... -+ *\ 2.11.*) ;; # other 2.11 versions -+ *) supports_anon_versioning=yes ;; -+ esac -+ -+ # See if GNU ld supports shared libraries. -+ case $host_os in -+ aix[3-9]*) -+ # On AIX/PPC, the GNU linker is very broken -+ if test "$host_cpu" != ia64; then -+ ld_shlibs=no -+ cat <<_LT_EOF 1>&2 -+ -+*** Warning: the GNU linker, at least up to release 2.19, is reported -+*** to be unable to reliably create shared libraries on AIX. -+*** Therefore, libtool is disabling shared libraries support. If you -+*** really care for shared libraries, you may want to install binutils -+*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. -+*** You will then need to restart the configuration process. -+ -+_LT_EOF -+ fi -+ ;; -+ -+ amigaos*) -+ case $host_cpu in -+ powerpc) -+ # see comment about AmigaOS4 .so support -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds='' -+ ;; -+ m68k) -+ archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' -+ hardcode_libdir_flag_spec='-L$libdir' -+ hardcode_minus_L=yes -+ ;; -+ esac -+ ;; -+ -+ beos*) -+ if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then -+ allow_undefined_flag=unsupported -+ # Joseph Beckenbach says some releases of gcc -+ # support --undefined. This deserves some investigation. FIXME -+ archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ else -+ ld_shlibs=no -+ fi -+ ;; -+ -+ cygwin* | mingw* | pw32* | cegcc*) -+ # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, -+ # as there is no search path for DLLs. -+ hardcode_libdir_flag_spec='-L$libdir' -+ export_dynamic_flag_spec='${wl}--export-all-symbols' -+ allow_undefined_flag=unsupported -+ always_export_symbols=no -+ enable_shared_with_static_runtimes=yes -+ export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' -+ -+ if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' -+ # If the export-symbols file already is a .def file (1st line -+ # is EXPORTS), use it as is; otherwise, prepend... -+ archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then -+ cp $export_symbols $output_objdir/$soname.def; -+ else -+ echo EXPORTS > $output_objdir/$soname.def; -+ cat $export_symbols >> $output_objdir/$soname.def; -+ fi~ -+ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' -+ else -+ ld_shlibs=no -+ fi -+ ;; -+ -+ haiku*) -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ link_all_deplibs=yes -+ ;; -+ -+ interix[3-9]*) -+ hardcode_direct=no -+ hardcode_shlibpath_var=no -+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir' -+ export_dynamic_flag_spec='${wl}-E' -+ # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. -+ # Instead, shared libraries are loaded at an image base (0x10000000 by -+ # default) and relocated if they conflict, which is a slow very memory -+ # consuming and fragmenting process. To avoid this, we pick a random, -+ # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link -+ # time. Moving up from 0x10000000 also allows more sbrk(2) space. -+ archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' -+ archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' -+ ;; -+ -+ gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu | uclinuxfdpiceabi) -+ tmp_diet=no -+ if test "$host_os" = linux-dietlibc; then -+ case $cc_basename in -+ diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) -+ esac -+ fi -+ if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ -+ && test "$tmp_diet" = no -+ then -+ tmp_addflag=' $pic_flag' -+ tmp_sharedflag='-shared' -+ case $cc_basename,$host_cpu in -+ pgcc*) # Portland Group C compiler -+ whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' -+ tmp_addflag=' $pic_flag' -+ ;; -+ pgf77* | pgf90* | pgf95* | pgfortran*) -+ # Portland Group f77 and f90 compilers -+ whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' -+ tmp_addflag=' $pic_flag -Mnomain' ;; -+ ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 -+ tmp_addflag=' -i_dynamic' ;; -+ efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 -+ tmp_addflag=' -i_dynamic -nofor_main' ;; -+ ifc* | ifort*) # Intel Fortran compiler -+ tmp_addflag=' -nofor_main' ;; -+ lf95*) # Lahey Fortran 8.1 -+ whole_archive_flag_spec= -+ tmp_sharedflag='--shared' ;; -+ xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) -+ tmp_sharedflag='-qmkshrobj' -+ tmp_addflag= ;; -+ nvcc*) # Cuda Compiler Driver 2.2 -+ whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' -+ compiler_needs_object=yes -+ ;; -+ esac -+ case `$CC -V 2>&1 | sed 5q` in -+ *Sun\ C*) # Sun C 5.9 -+ whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' -+ compiler_needs_object=yes -+ tmp_sharedflag='-G' ;; -+ *Sun\ F*) # Sun Fortran 8.3 -+ tmp_sharedflag='-G' ;; -+ esac -+ archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ -+ if test "x$supports_anon_versioning" = xyes; then -+ archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ -+ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ -+ echo "local: *; };" >> $output_objdir/$libname.ver~ -+ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' -+ fi -+ -+ case $cc_basename in -+ xlf* | bgf* | bgxlf* | mpixlf*) -+ # IBM XL Fortran 10.1 on PPC cannot create shared libs itself -+ whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' -+ hardcode_libdir_flag_spec= -+ hardcode_libdir_flag_spec_ld='-rpath $libdir' -+ archive_cmds='$LD -shared $libobjs $deplibs $compiler_flags -soname $soname -o $lib' -+ if test "x$supports_anon_versioning" = xyes; then -+ archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ -+ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ -+ echo "local: *; };" >> $output_objdir/$libname.ver~ -+ $LD -shared $libobjs $deplibs $compiler_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' -+ fi -+ ;; -+ esac -+ else -+ ld_shlibs=no -+ fi -+ ;; -+ -+ netbsd*) -+ if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then -+ archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' -+ wlarc= -+ else -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' -+ fi -+ ;; -+ -+ solaris*) -+ if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then -+ ld_shlibs=no -+ cat <<_LT_EOF 1>&2 -+ -+*** Warning: The releases 2.8.* of the GNU linker cannot reliably -+*** create shared libraries on Solaris systems. Therefore, libtool -+*** is disabling shared libraries support. We urge you to upgrade GNU -+*** binutils to release 2.9.1 or newer. Another option is to modify -+*** your PATH or compiler configuration so that the native linker is -+*** used, and then restart. -+ -+_LT_EOF -+ elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' -+ else -+ ld_shlibs=no -+ fi -+ ;; -+ -+ sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) -+ case `$LD -v 2>&1` in -+ *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) -+ ld_shlibs=no -+ cat <<_LT_EOF 1>&2 -+ -+*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not -+*** reliably create shared libraries on SCO systems. Therefore, libtool -+*** is disabling shared libraries support. We urge you to upgrade GNU -+*** binutils to release 2.16.91.0.3 or newer. Another option is to modify -+*** your PATH or compiler configuration so that the native linker is -+*** used, and then restart. -+ -+_LT_EOF -+ ;; -+ *) -+ # For security reasons, it is highly recommended that you always -+ # use absolute paths for naming shared libraries, and exclude the -+ # DT_RUNPATH tag from executables and libraries. But doing so -+ # requires that you compile everything twice, which is a pain. -+ if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then -+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' -+ else -+ ld_shlibs=no -+ fi -+ ;; -+ esac -+ ;; -+ -+ sunos4*) -+ archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' -+ wlarc= -+ hardcode_direct=yes -+ hardcode_shlibpath_var=no -+ ;; -+ -+ *) -+ if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' -+ else -+ ld_shlibs=no -+ fi -+ ;; -+ esac -+ -+ if test "$ld_shlibs" = no; then -+ runpath_var= -+ hardcode_libdir_flag_spec= -+ export_dynamic_flag_spec= -+ whole_archive_flag_spec= -+ fi -+ else -+ # PORTME fill in a description of your system's linker (not GNU ld) -+ case $host_os in -+ aix3*) -+ allow_undefined_flag=unsupported -+ always_export_symbols=yes -+ archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' -+ # Note: this linker hardcodes the directories in LIBPATH if there -+ # are no directories specified by -L. -+ hardcode_minus_L=yes -+ if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then -+ # Neither direct hardcoding nor static linking is supported with a -+ # broken collect2. -+ hardcode_direct=unsupported -+ fi -+ ;; -+ -+ aix[4-9]*) -+ if test "$host_cpu" = ia64; then -+ # On IA64, the linker does run time linking by default, so we don't -+ # have to do anything special. -+ aix_use_runtimelinking=no -+ exp_sym_flag='-Bexport' -+ no_entry_flag="" -+ else -+ # If we're using GNU nm, then we don't want the "-C" option. -+ # -C means demangle to AIX nm, but means don't demangle with GNU nm -+ # Also, AIX nm treats weak defined symbols like other global -+ # defined symbols, whereas GNU nm marks them as "W". -+ if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then -+ export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' -+ else -+ export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' -+ fi -+ aix_use_runtimelinking=no -+ -+ # Test if we are trying to use run time linking or normal -+ # AIX style linking. If -brtl is somewhere in LDFLAGS, we -+ # need to do runtime linking. -+ case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) -+ for ld_flag in $LDFLAGS; do -+ if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then -+ aix_use_runtimelinking=yes -+ break -+ fi -+ done -+ ;; -+ esac -+ -+ exp_sym_flag='-bexport' -+ no_entry_flag='-bnoentry' -+ fi -+ -+ # When large executables or shared objects are built, AIX ld can -+ # have problems creating the table of contents. If linking a library -+ # or program results in "error TOC overflow" add -mminimal-toc to -+ # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not -+ # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. -+ -+ archive_cmds='' -+ hardcode_direct=yes -+ hardcode_direct_absolute=yes -+ hardcode_libdir_separator=':' -+ link_all_deplibs=yes -+ file_list_spec='${wl}-f,' -+ -+ if test "$GCC" = yes; then -+ case $host_os in aix4.[012]|aix4.[012].*) -+ # We only want to do this on AIX 4.2 and lower, the check -+ # below for broken collect2 doesn't work under 4.3+ -+ collect2name=`${CC} -print-prog-name=collect2` -+ if test -f "$collect2name" && -+ strings "$collect2name" | $GREP resolve_lib_name >/dev/null -+ then -+ # We have reworked collect2 -+ : -+ else -+ # We have old collect2 -+ hardcode_direct=unsupported -+ # It fails to find uninstalled libraries when the uninstalled -+ # path is not listed in the libpath. Setting hardcode_minus_L -+ # to unsupported forces relinking -+ hardcode_minus_L=yes -+ hardcode_libdir_flag_spec='-L$libdir' -+ hardcode_libdir_separator= -+ fi -+ ;; -+ esac -+ shared_flag='-shared' -+ if test "$aix_use_runtimelinking" = yes; then -+ shared_flag="$shared_flag "'${wl}-G' -+ fi -+ else -+ # not using gcc -+ if test "$host_cpu" = ia64; then -+ # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release -+ # chokes on -Wl,-G. The following line is correct: -+ shared_flag='-G' -+ else -+ if test "$aix_use_runtimelinking" = yes; then -+ shared_flag='${wl}-G' -+ else -+ shared_flag='${wl}-bM:SRE' -+ fi -+ fi -+ fi -+ -+ export_dynamic_flag_spec='${wl}-bexpall' -+ # It seems that -bexpall does not export symbols beginning with -+ # underscore (_), so it is better to generate a list of symbols to export. -+ always_export_symbols=yes -+ if test "$aix_use_runtimelinking" = yes; then -+ # Warning - without using the other runtime loading flags (-brtl), -+ # -berok will link without error, but may produce a broken library. -+ allow_undefined_flag='-berok' -+ # Determine the default libpath from the value encoded in an -+ # empty executable. -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ -+lt_aix_libpath_sed=' -+ /Import File Strings/,/^$/ { -+ /^0/ { -+ s/^0 *\(.*\)$/\1/ -+ p -+ } -+ }' -+aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -+# Check for a 64-bit object if we didn't find anything. -+if test -z "$aix_libpath"; then -+ aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -+fi -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi -+ -+ hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" -+ archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" -+ else -+ if test "$host_cpu" = ia64; then -+ hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' -+ allow_undefined_flag="-z nodefs" -+ archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" -+ else -+ # Determine the default libpath from the value encoded in an -+ # empty executable. -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ -+lt_aix_libpath_sed=' -+ /Import File Strings/,/^$/ { -+ /^0/ { -+ s/^0 *\(.*\)$/\1/ -+ p -+ } -+ }' -+aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -+# Check for a 64-bit object if we didn't find anything. -+if test -z "$aix_libpath"; then -+ aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -+fi -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi -+ -+ hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" -+ # Warning - without using the other run time loading flags, -+ # -berok will link without error, but may produce a broken library. -+ no_undefined_flag=' ${wl}-bernotok' -+ allow_undefined_flag=' ${wl}-berok' -+ if test "$with_gnu_ld" = yes; then -+ # We only use this code for GNU lds that support --whole-archive. -+ whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' -+ else -+ # Exported symbols can be pulled into shared objects from archives -+ whole_archive_flag_spec='$convenience' -+ fi -+ archive_cmds_need_lc=yes -+ # This is similar to how AIX traditionally builds its shared libraries. -+ archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' -+ fi -+ fi -+ ;; -+ -+ amigaos*) -+ case $host_cpu in -+ powerpc) -+ # see comment about AmigaOS4 .so support -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds='' -+ ;; -+ m68k) -+ archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' -+ hardcode_libdir_flag_spec='-L$libdir' -+ hardcode_minus_L=yes -+ ;; -+ esac -+ ;; -+ -+ bsdi[45]*) -+ export_dynamic_flag_spec=-rdynamic -+ ;; -+ -+ cygwin* | mingw* | pw32* | cegcc*) -+ # When not using gcc, we currently assume that we are using -+ # Microsoft Visual C++. -+ # hardcode_libdir_flag_spec is actually meaningless, as there is -+ # no search path for DLLs. -+ hardcode_libdir_flag_spec=' ' -+ allow_undefined_flag=unsupported -+ # Tell ltmain to make .lib files, not .a files. -+ libext=lib -+ # Tell ltmain to make .dll files, not .so files. -+ shrext_cmds=".dll" -+ # FIXME: Setting linknames here is a bad hack. -+ archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' -+ # The linker will automatically build a .lib file if we build a DLL. -+ old_archive_from_new_cmds='true' -+ # FIXME: Should let the user specify the lib program. -+ old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' -+ fix_srcfile_path='`cygpath -w "$srcfile"`' -+ enable_shared_with_static_runtimes=yes -+ ;; -+ -+ darwin* | rhapsody*) -+ -+ -+ archive_cmds_need_lc=no -+ hardcode_direct=no -+ hardcode_automatic=yes -+ hardcode_shlibpath_var=unsupported -+ if test "$lt_cv_ld_force_load" = "yes"; then -+ whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' -+ else -+ whole_archive_flag_spec='' -+ fi -+ link_all_deplibs=yes -+ allow_undefined_flag="$_lt_dar_allow_undefined" -+ case $cc_basename in -+ ifort*) _lt_dar_can_shared=yes ;; -+ *) _lt_dar_can_shared=$GCC ;; -+ esac -+ if test "$_lt_dar_can_shared" = "yes"; then -+ output_verbose_link_cmd=func_echo_all -+ archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" -+ module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" -+ archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" -+ module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" -+ -+ else -+ ld_shlibs=no -+ fi -+ -+ ;; -+ -+ dgux*) -+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' -+ hardcode_libdir_flag_spec='-L$libdir' -+ hardcode_shlibpath_var=no -+ ;; -+ -+ # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor -+ # support. Future versions do this automatically, but an explicit c++rt0.o -+ # does not break anything, and helps significantly (at the cost of a little -+ # extra space). -+ freebsd2.2*) -+ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' -+ hardcode_libdir_flag_spec='-R$libdir' -+ hardcode_direct=yes -+ hardcode_shlibpath_var=no -+ ;; -+ -+ # Unfortunately, older versions of FreeBSD 2 do not have this feature. -+ freebsd2.*) -+ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' -+ hardcode_direct=yes -+ hardcode_minus_L=yes -+ hardcode_shlibpath_var=no -+ ;; -+ -+ # FreeBSD 3 and greater uses gcc -shared to do shared libraries. -+ freebsd* | dragonfly*) -+ archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' -+ hardcode_libdir_flag_spec='-R$libdir' -+ hardcode_direct=yes -+ hardcode_shlibpath_var=no -+ ;; -+ -+ hpux9*) -+ if test "$GCC" = yes; then -+ archive_cmds='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' -+ else -+ archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' -+ fi -+ hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' -+ hardcode_libdir_separator=: -+ hardcode_direct=yes -+ -+ # hardcode_minus_L: Not really in the search PATH, -+ # but as the default location of the library. -+ hardcode_minus_L=yes -+ export_dynamic_flag_spec='${wl}-E' -+ ;; -+ -+ hpux10*) -+ if test "$GCC" = yes && test "$with_gnu_ld" = no; then -+ archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' -+ else -+ archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' -+ fi -+ if test "$with_gnu_ld" = no; then -+ hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' -+ hardcode_libdir_flag_spec_ld='+b $libdir' -+ hardcode_libdir_separator=: -+ hardcode_direct=yes -+ hardcode_direct_absolute=yes -+ export_dynamic_flag_spec='${wl}-E' -+ # hardcode_minus_L: Not really in the search PATH, -+ # but as the default location of the library. -+ hardcode_minus_L=yes -+ fi -+ ;; -+ -+ hpux11*) -+ if test "$GCC" = yes && test "$with_gnu_ld" = no; then -+ case $host_cpu in -+ hppa*64*) -+ archive_cmds='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' -+ ;; -+ ia64*) -+ archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' -+ ;; -+ *) -+ archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' -+ ;; -+ esac -+ else -+ case $host_cpu in -+ hppa*64*) -+ archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' -+ ;; -+ ia64*) -+ archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' -+ ;; -+ *) -+ -+ # Older versions of the 11.00 compiler do not understand -b yet -+ # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 -+$as_echo_n "checking if $CC understands -b... " >&6; } -+if ${lt_cv_prog_compiler__b+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler__b=no -+ save_LDFLAGS="$LDFLAGS" -+ LDFLAGS="$LDFLAGS -b" -+ echo "$lt_simple_link_test_code" > conftest.$ac_ext -+ if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then -+ # The linker can only warn and ignore the option if not recognized -+ # So say no if there are warnings -+ if test -s conftest.err; then -+ # Append any errors to the config.log. -+ cat conftest.err 1>&5 -+ $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp -+ $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 -+ if diff conftest.exp conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler__b=yes -+ fi -+ else -+ lt_cv_prog_compiler__b=yes -+ fi -+ fi -+ $RM -r conftest* -+ LDFLAGS="$save_LDFLAGS" -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 -+$as_echo "$lt_cv_prog_compiler__b" >&6; } -+ -+if test x"$lt_cv_prog_compiler__b" = xyes; then -+ archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' -+else -+ archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' -+fi -+ -+ ;; -+ esac -+ fi -+ if test "$with_gnu_ld" = no; then -+ hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' -+ hardcode_libdir_separator=: -+ -+ case $host_cpu in -+ hppa*64*|ia64*) -+ hardcode_direct=no -+ hardcode_shlibpath_var=no -+ ;; -+ *) -+ hardcode_direct=yes -+ hardcode_direct_absolute=yes -+ export_dynamic_flag_spec='${wl}-E' -+ -+ # hardcode_minus_L: Not really in the search PATH, -+ # but as the default location of the library. -+ hardcode_minus_L=yes -+ ;; -+ esac -+ fi -+ ;; -+ -+ irix5* | irix6* | nonstopux*) -+ if test "$GCC" = yes; then -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' -+ # Try to use the -exported_symbol ld option, if it does not -+ # work, assume that -exports_file does not work either and -+ # implicitly export all symbols. -+ save_LDFLAGS="$LDFLAGS" -+ LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+int foo(void) {} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' -+ -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ LDFLAGS="$save_LDFLAGS" -+ else -+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' -+ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' -+ fi -+ archive_cmds_need_lc='no' -+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' -+ hardcode_libdir_separator=: -+ inherit_rpath=yes -+ link_all_deplibs=yes -+ ;; -+ -+ netbsd*) -+ if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then -+ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out -+ else -+ archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF -+ fi -+ hardcode_libdir_flag_spec='-R$libdir' -+ hardcode_direct=yes -+ hardcode_shlibpath_var=no -+ ;; -+ -+ newsos6) -+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' -+ hardcode_direct=yes -+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' -+ hardcode_libdir_separator=: -+ hardcode_shlibpath_var=no -+ ;; -+ -+ *nto* | *qnx*) -+ ;; -+ -+ openbsd*) -+ if test -f /usr/libexec/ld.so; then -+ hardcode_direct=yes -+ hardcode_shlibpath_var=no -+ hardcode_direct_absolute=yes -+ if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then -+ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' -+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir' -+ export_dynamic_flag_spec='${wl}-E' -+ else -+ case $host_os in -+ openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) -+ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' -+ hardcode_libdir_flag_spec='-R$libdir' -+ ;; -+ *) -+ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' -+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir' -+ ;; -+ esac -+ fi -+ else -+ ld_shlibs=no -+ fi -+ ;; -+ -+ os2*) -+ hardcode_libdir_flag_spec='-L$libdir' -+ hardcode_minus_L=yes -+ allow_undefined_flag=unsupported -+ archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' -+ old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' -+ ;; -+ -+ osf3*) -+ if test "$GCC" = yes; then -+ allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' -+ archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' -+ else -+ allow_undefined_flag=' -expect_unresolved \*' -+ archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' -+ fi -+ archive_cmds_need_lc='no' -+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' -+ hardcode_libdir_separator=: -+ ;; -+ -+ osf4* | osf5*) # as osf3* with the addition of -msym flag -+ if test "$GCC" = yes; then -+ allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' -+ archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' -+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' -+ else -+ allow_undefined_flag=' -expect_unresolved \*' -+ archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' -+ archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ -+ $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' -+ -+ # Both c and cxx compiler support -rpath directly -+ hardcode_libdir_flag_spec='-rpath $libdir' -+ fi -+ archive_cmds_need_lc='no' -+ hardcode_libdir_separator=: -+ ;; -+ -+ solaris*) -+ no_undefined_flag=' -z defs' -+ if test "$GCC" = yes; then -+ wlarc='${wl}' -+ archive_cmds='$CC -shared ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ -+ $CC -shared ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' -+ else -+ case `$CC -V 2>&1` in -+ *"Compilers 5.0"*) -+ wlarc='' -+ archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' -+ archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ -+ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' -+ ;; -+ *) -+ wlarc='${wl}' -+ archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ -+ $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' -+ ;; -+ esac -+ fi -+ hardcode_libdir_flag_spec='-R$libdir' -+ hardcode_shlibpath_var=no -+ case $host_os in -+ solaris2.[0-5] | solaris2.[0-5].*) ;; -+ *) -+ # The compiler driver will combine and reorder linker options, -+ # but understands `-z linker_flag'. GCC discards it without `$wl', -+ # but is careful enough not to reorder. -+ # Supported since Solaris 2.6 (maybe 2.5.1?) -+ if test "$GCC" = yes; then -+ whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' -+ else -+ whole_archive_flag_spec='-z allextract$convenience -z defaultextract' -+ fi -+ ;; -+ esac -+ link_all_deplibs=yes -+ ;; -+ -+ sunos4*) -+ if test "x$host_vendor" = xsequent; then -+ # Use $CC to link under sequent, because it throws in some extra .o -+ # files that make .init and .fini sections work. -+ archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' -+ else -+ archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' -+ fi -+ hardcode_libdir_flag_spec='-L$libdir' -+ hardcode_direct=yes -+ hardcode_minus_L=yes -+ hardcode_shlibpath_var=no -+ ;; -+ -+ sysv4) -+ case $host_vendor in -+ sni) -+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' -+ hardcode_direct=yes # is this really true??? -+ ;; -+ siemens) -+ ## LD is ld it makes a PLAMLIB -+ ## CC just makes a GrossModule. -+ archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' -+ reload_cmds='$CC -r -o $output$reload_objs' -+ hardcode_direct=no -+ ;; -+ motorola) -+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' -+ hardcode_direct=no #Motorola manual says yes, but my tests say they lie -+ ;; -+ esac -+ runpath_var='LD_RUN_PATH' -+ hardcode_shlibpath_var=no -+ ;; -+ -+ sysv4.3*) -+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' -+ hardcode_shlibpath_var=no -+ export_dynamic_flag_spec='-Bexport' -+ ;; -+ -+ sysv4*MP*) -+ if test -d /usr/nec; then -+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' -+ hardcode_shlibpath_var=no -+ runpath_var=LD_RUN_PATH -+ hardcode_runpath_var=yes -+ ld_shlibs=yes -+ fi -+ ;; -+ -+ sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) -+ no_undefined_flag='${wl}-z,text' -+ archive_cmds_need_lc=no -+ hardcode_shlibpath_var=no -+ runpath_var='LD_RUN_PATH' -+ -+ if test "$GCC" = yes; then -+ archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ else -+ archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ fi -+ ;; -+ -+ sysv5* | sco3.2v5* | sco5v6*) -+ # Note: We can NOT use -z defs as we might desire, because we do not -+ # link with -lc, and that would cause any symbols used from libc to -+ # always be unresolved, which means just about no library would -+ # ever link correctly. If we're not using GNU ld we use -z text -+ # though, which does catch some bad symbols but isn't as heavy-handed -+ # as -z defs. -+ no_undefined_flag='${wl}-z,text' -+ allow_undefined_flag='${wl}-z,nodefs' -+ archive_cmds_need_lc=no -+ hardcode_shlibpath_var=no -+ hardcode_libdir_flag_spec='${wl}-R,$libdir' -+ hardcode_libdir_separator=':' -+ link_all_deplibs=yes -+ export_dynamic_flag_spec='${wl}-Bexport' -+ runpath_var='LD_RUN_PATH' -+ -+ if test "$GCC" = yes; then -+ archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ else -+ archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ fi -+ ;; -+ -+ uts4*) -+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' -+ hardcode_libdir_flag_spec='-L$libdir' -+ hardcode_shlibpath_var=no -+ ;; -+ -+ *) -+ ld_shlibs=no -+ ;; -+ esac -+ -+ if test x$host_vendor = xsni; then -+ case $host in -+ sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) -+ export_dynamic_flag_spec='${wl}-Blargedynsym' -+ ;; -+ esac -+ fi -+ fi -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 -+$as_echo "$ld_shlibs" >&6; } -+test "$ld_shlibs" = no && can_build_shared=no -+ -+with_gnu_ld=$with_gnu_ld -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+# -+# Do we need to explicitly link libc? -+# -+case "x$archive_cmds_need_lc" in -+x|xyes) -+ # Assume -lc should be added -+ archive_cmds_need_lc=yes -+ -+ if test "$enable_shared" = yes && test "$GCC" = yes; then -+ case $archive_cmds in -+ *'~'*) -+ # FIXME: we may have to deal with multi-command sequences. -+ ;; -+ '$CC '*) -+ # Test whether the compiler implicitly links with -lc since on some -+ # systems, -lgcc has to come before -lc. If gcc already passes -lc -+ # to ld, don't add -lc before -lgcc. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 -+$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } -+if ${lt_cv_archive_cmds_need_lc+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ $RM conftest* -+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext -+ -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } 2>conftest.err; then -+ soname=conftest -+ lib=conftest -+ libobjs=conftest.$ac_objext -+ deplibs= -+ wl=$lt_prog_compiler_wl -+ pic_flag=$lt_prog_compiler_pic -+ compiler_flags=-v -+ linker_flags=-v -+ verstring= -+ output_objdir=. -+ libname=conftest -+ lt_save_allow_undefined_flag=$allow_undefined_flag -+ allow_undefined_flag= -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 -+ (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } -+ then -+ lt_cv_archive_cmds_need_lc=no -+ else -+ lt_cv_archive_cmds_need_lc=yes -+ fi -+ allow_undefined_flag=$lt_save_allow_undefined_flag -+ else -+ cat conftest.err 1>&5 -+ fi -+ $RM conftest* -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 -+$as_echo "$lt_cv_archive_cmds_need_lc" >&6; } -+ archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc -+ ;; -+ esac -+ fi -+ ;; -+esac -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 -+$as_echo_n "checking dynamic linker characteristics... " >&6; } -+ -+if test "$GCC" = yes; then -+ case $host_os in -+ darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; -+ *) lt_awk_arg="/^libraries:/" ;; -+ esac -+ case $host_os in -+ mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;; -+ *) lt_sed_strip_eq="s,=/,/,g" ;; -+ esac -+ lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` -+ case $lt_search_path_spec in -+ *\;*) -+ # if the path contains ";" then we assume it to be the separator -+ # otherwise default to the standard path separator (i.e. ":") - it is -+ # assumed that no part of a normal pathname contains ";" but that should -+ # okay in the real world where ";" in dirpaths is itself problematic. -+ lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` -+ ;; -+ *) -+ lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` -+ ;; -+ esac -+ # Ok, now we have the path, separated by spaces, we can step through it -+ # and add multilib dir if necessary. -+ lt_tmp_lt_search_path_spec= -+ lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` -+ for lt_sys_path in $lt_search_path_spec; do -+ if test -d "$lt_sys_path/$lt_multi_os_dir"; then -+ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" -+ else -+ test -d "$lt_sys_path" && \ -+ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" -+ fi -+ done -+ lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' -+BEGIN {RS=" "; FS="/|\n";} { -+ lt_foo=""; -+ lt_count=0; -+ for (lt_i = NF; lt_i > 0; lt_i--) { -+ if ($lt_i != "" && $lt_i != ".") { -+ if ($lt_i == "..") { -+ lt_count++; -+ } else { -+ if (lt_count == 0) { -+ lt_foo="/" $lt_i lt_foo; -+ } else { -+ lt_count--; -+ } -+ } -+ } -+ } -+ if (lt_foo != "") { lt_freq[lt_foo]++; } -+ if (lt_freq[lt_foo] == 1) { print lt_foo; } -+}'` -+ # AWK program above erroneously prepends '/' to C:/dos/paths -+ # for these hosts. -+ case $host_os in -+ mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ -+ $SED 's,/\([A-Za-z]:\),\1,g'` ;; -+ esac -+ sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` -+else -+ sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" -+fi -+library_names_spec= -+libname_spec='lib$name' -+soname_spec= -+shrext_cmds=".so" -+postinstall_cmds= -+postuninstall_cmds= -+finish_cmds= -+finish_eval= -+shlibpath_var= -+shlibpath_overrides_runpath=unknown -+version_type=none -+dynamic_linker="$host_os ld.so" -+sys_lib_dlsearch_path_spec="/lib /usr/lib" -+need_lib_prefix=unknown -+hardcode_into_libs=no -+ -+# when you set need_version to no, make sure it does not cause -set_version -+# flags to be left without arguments -+need_version=unknown -+ -+case $host_os in -+aix3*) -+ version_type=linux -+ library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' -+ shlibpath_var=LIBPATH -+ -+ # AIX 3 has no versioning support, so we append a major version to the name. -+ soname_spec='${libname}${release}${shared_ext}$major' -+ ;; -+ -+aix[4-9]*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ hardcode_into_libs=yes -+ if test "$host_cpu" = ia64; then -+ # AIX 5 supports IA64 -+ library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' -+ shlibpath_var=LD_LIBRARY_PATH -+ else -+ # With GCC up to 2.95.x, collect2 would create an import file -+ # for dependence libraries. The import file would start with -+ # the line `#! .'. This would cause the generated library to -+ # depend on `.', always an invalid library. This was fixed in -+ # development snapshots of GCC prior to 3.0. -+ case $host_os in -+ aix4 | aix4.[01] | aix4.[01].*) -+ if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' -+ echo ' yes ' -+ echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then -+ : -+ else -+ can_build_shared=no -+ fi -+ ;; -+ esac -+ # AIX (on Power*) has no versioning support, so currently we can not hardcode correct -+ # soname into executable. Probably we can add versioning support to -+ # collect2, so additional links can be useful in future. -+ if test "$aix_use_runtimelinking" = yes; then -+ # If using run time linking (on AIX 4.2 or later) use lib.so -+ # instead of lib.a to let people know that these are not -+ # typical AIX shared libraries. -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ else -+ # We preserve .a as extension for shared libraries through AIX4.2 -+ # and later when we are not doing run time linking. -+ library_names_spec='${libname}${release}.a $libname.a' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ fi -+ shlibpath_var=LIBPATH -+ fi -+ ;; -+ -+amigaos*) -+ case $host_cpu in -+ powerpc) -+ # Since July 2007 AmigaOS4 officially supports .so libraries. -+ # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ ;; -+ m68k) -+ library_names_spec='$libname.ixlibrary $libname.a' -+ # Create ${libname}_ixlibrary.a entries in /sys/libs. -+ finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' -+ ;; -+ esac -+ ;; -+ -+beos*) -+ library_names_spec='${libname}${shared_ext}' -+ dynamic_linker="$host_os ld.so" -+ shlibpath_var=LIBRARY_PATH -+ ;; -+ -+bsdi[45]*) -+ version_type=linux -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" -+ sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" -+ # the default ld.so.conf also contains /usr/contrib/lib and -+ # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow -+ # libtool to hard-code these into programs -+ ;; -+ -+cygwin* | mingw* | pw32* | cegcc*) -+ version_type=windows -+ shrext_cmds=".dll" -+ need_version=no -+ need_lib_prefix=no -+ -+ case $GCC,$host_os in -+ yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*) -+ library_names_spec='$libname.dll.a' -+ # DLL is installed to $(libdir)/../bin by postinstall_cmds -+ postinstall_cmds='base_file=`basename \${file}`~ -+ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ -+ dldir=$destdir/`dirname \$dlpath`~ -+ test -d \$dldir || mkdir -p \$dldir~ -+ $install_prog $dir/$dlname \$dldir/$dlname~ -+ chmod a+x \$dldir/$dlname~ -+ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then -+ eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; -+ fi' -+ postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ -+ dlpath=$dir/\$dldll~ -+ $RM \$dlpath' -+ shlibpath_overrides_runpath=yes -+ -+ case $host_os in -+ cygwin*) -+ # Cygwin DLLs use 'cyg' prefix rather than 'lib' -+ soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' -+ -+ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" -+ ;; -+ mingw* | cegcc*) -+ # MinGW DLLs use traditional 'lib' prefix -+ soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' -+ ;; -+ pw32*) -+ # pw32 DLLs use 'pw' prefix rather than 'lib' -+ library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' -+ ;; -+ esac -+ ;; -+ -+ *) -+ library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' -+ ;; -+ esac -+ dynamic_linker='Win32 ld.exe' -+ # FIXME: first we should search . and the directory the executable is in -+ shlibpath_var=PATH -+ ;; -+ -+darwin* | rhapsody*) -+ dynamic_linker="$host_os dyld" -+ version_type=darwin -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' -+ soname_spec='${libname}${release}${major}$shared_ext' -+ shlibpath_overrides_runpath=yes -+ shlibpath_var=DYLD_LIBRARY_PATH -+ shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' -+ -+ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" -+ sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' -+ ;; -+ -+dgux*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ ;; -+ -+freebsd* | dragonfly*) -+ # DragonFly does not have aout. When/if they implement a new -+ # versioning mechanism, adjust this. -+ if test -x /usr/bin/objformat; then -+ objformat=`/usr/bin/objformat` -+ else -+ case $host_os in -+ freebsd[23].*) objformat=aout ;; -+ *) objformat=elf ;; -+ esac -+ fi -+ version_type=freebsd-$objformat -+ case $version_type in -+ freebsd-elf*) -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' -+ need_version=no -+ need_lib_prefix=no -+ ;; -+ freebsd-*) -+ library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' -+ need_version=yes -+ ;; -+ esac -+ shlibpath_var=LD_LIBRARY_PATH -+ case $host_os in -+ freebsd2.*) -+ shlibpath_overrides_runpath=yes -+ ;; -+ freebsd3.[01]* | freebsdelf3.[01]*) -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ ;; -+ freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ -+ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) -+ shlibpath_overrides_runpath=no -+ hardcode_into_libs=yes -+ ;; -+ *) # from 4.6 on, and DragonFly -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ ;; -+ esac -+ ;; -+ -+haiku*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ dynamic_linker="$host_os runtime_loader" -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/beos/system/lib' -+ hardcode_into_libs=yes -+ ;; -+ -+hpux9* | hpux10* | hpux11*) -+ # Give a soname corresponding to the major version so that dld.sl refuses to -+ # link against other versions. -+ version_type=sunos -+ need_lib_prefix=no -+ need_version=no -+ case $host_cpu in -+ ia64*) -+ shrext_cmds='.so' -+ hardcode_into_libs=yes -+ dynamic_linker="$host_os dld.so" -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ if test "X$HPUX_IA64_MODE" = X32; then -+ sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" -+ else -+ sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" -+ fi -+ sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec -+ ;; -+ hppa*64*) -+ shrext_cmds='.sl' -+ hardcode_into_libs=yes -+ dynamic_linker="$host_os dld.sl" -+ shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH -+ shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" -+ sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec -+ ;; -+ *) -+ shrext_cmds='.sl' -+ dynamic_linker="$host_os dld.sl" -+ shlibpath_var=SHLIB_PATH -+ shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ ;; -+ esac -+ # HP-UX runs *really* slowly unless shared libraries are mode 555, ... -+ postinstall_cmds='chmod 555 $lib' -+ # or fails outright, so override atomically: -+ install_override_mode=555 -+ ;; -+ -+interix[3-9]*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=no -+ hardcode_into_libs=yes -+ ;; -+ -+irix5* | irix6* | nonstopux*) -+ case $host_os in -+ nonstopux*) version_type=nonstopux ;; -+ *) -+ if test "$lt_cv_prog_gnu_ld" = yes; then -+ version_type=linux -+ else -+ version_type=irix -+ fi ;; -+ esac -+ need_lib_prefix=no -+ need_version=no -+ soname_spec='${libname}${release}${shared_ext}$major' -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' -+ case $host_os in -+ irix5* | nonstopux*) -+ libsuff= shlibsuff= -+ ;; -+ *) -+ case $LD in # libtool.m4 will add one of these switches to LD -+ *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") -+ libsuff= shlibsuff= libmagic=32-bit;; -+ *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") -+ libsuff=32 shlibsuff=N32 libmagic=N32;; -+ *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") -+ libsuff=64 shlibsuff=64 libmagic=64-bit;; -+ *) libsuff= shlibsuff= libmagic=never-match;; -+ esac -+ ;; -+ esac -+ shlibpath_var=LD_LIBRARY${shlibsuff}_PATH -+ shlibpath_overrides_runpath=no -+ sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" -+ sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" -+ hardcode_into_libs=yes -+ ;; -+ -+# No shared lib support for Linux oldld, aout, or coff. -+linux*oldld* | linux*aout* | linux*coff*) -+ dynamic_linker=no -+ ;; -+ -+# This must be Linux ELF. -+ -+# uclinux* changes (here and below) have been submitted to the libtool -+# project, but have not yet been accepted: they are GCC-local changes -+# for the time being. (See -+# https://lists.gnu.org/archive/html/libtool-patches/2018-05/msg00000.html) -+linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu* | uclinuxfdpiceabi) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=no -+ -+ # Some binutils ld are patched to set DT_RUNPATH -+ if ${lt_cv_shlibpath_overrides_runpath+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_shlibpath_overrides_runpath=no -+ save_LDFLAGS=$LDFLAGS -+ save_libdir=$libdir -+ eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ -+ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : -+ lt_cv_shlibpath_overrides_runpath=yes -+fi -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ LDFLAGS=$save_LDFLAGS -+ libdir=$save_libdir -+ -+fi -+ -+ shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath -+ -+ # This implies no fast_install, which is unacceptable. -+ # Some rework will be needed to allow for fast_install -+ # before this can be enabled. -+ hardcode_into_libs=yes -+ -+ # Append ld.so.conf contents to the search path -+ if test -f /etc/ld.so.conf; then -+ lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` -+ sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" -+ fi -+ -+ # We used to test for /lib/ld.so.1 and disable shared libraries on -+ # powerpc, because MkLinux only supported shared libraries with the -+ # GNU dynamic linker. Since this was broken with cross compilers, -+ # most powerpc-linux boxes support dynamic linking these days and -+ # people can always --disable-shared, the test was removed, and we -+ # assume the GNU/Linux dynamic linker is in use. -+ dynamic_linker='GNU/Linux ld.so' -+ ;; -+ -+netbsd*) -+ version_type=sunos -+ need_lib_prefix=no -+ need_version=no -+ if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' -+ dynamic_linker='NetBSD (a.out) ld.so' -+ else -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ dynamic_linker='NetBSD ld.elf_so' -+ fi -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ ;; -+ -+newsos6) -+ version_type=linux -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ ;; -+ -+*nto* | *qnx*) -+ version_type=qnx -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=no -+ hardcode_into_libs=yes -+ dynamic_linker='ldqnx.so' -+ ;; -+ -+openbsd*) -+ version_type=sunos -+ sys_lib_dlsearch_path_spec="/usr/lib" -+ need_lib_prefix=no -+ # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. -+ case $host_os in -+ openbsd3.3 | openbsd3.3.*) need_version=yes ;; -+ *) need_version=no ;; -+ esac -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then -+ case $host_os in -+ openbsd2.[89] | openbsd2.[89].*) -+ shlibpath_overrides_runpath=no -+ ;; -+ *) -+ shlibpath_overrides_runpath=yes -+ ;; -+ esac -+ else -+ shlibpath_overrides_runpath=yes -+ fi -+ ;; -+ -+os2*) -+ libname_spec='$name' -+ shrext_cmds=".dll" -+ need_lib_prefix=no -+ library_names_spec='$libname${shared_ext} $libname.a' -+ dynamic_linker='OS/2 ld.exe' -+ shlibpath_var=LIBPATH -+ ;; -+ -+osf3* | osf4* | osf5*) -+ version_type=osf -+ need_lib_prefix=no -+ need_version=no -+ soname_spec='${libname}${release}${shared_ext}$major' -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ shlibpath_var=LD_LIBRARY_PATH -+ sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" -+ sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" -+ ;; -+ -+rdos*) -+ dynamic_linker=no -+ ;; -+ -+solaris*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ # ldd complains unless libraries are executable -+ postinstall_cmds='chmod +x $lib' -+ ;; -+ -+sunos4*) -+ version_type=sunos -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' -+ finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ if test "$with_gnu_ld" = yes; then -+ need_lib_prefix=no -+ fi -+ need_version=yes -+ ;; -+ -+sysv4 | sysv4.3*) -+ version_type=linux -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ case $host_vendor in -+ sni) -+ shlibpath_overrides_runpath=no -+ need_lib_prefix=no -+ runpath_var=LD_RUN_PATH -+ ;; -+ siemens) -+ need_lib_prefix=no -+ ;; -+ motorola) -+ need_lib_prefix=no -+ need_version=no -+ shlibpath_overrides_runpath=no -+ sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' -+ ;; -+ esac -+ ;; -+ -+sysv4*MP*) -+ if test -d /usr/nec ;then -+ version_type=linux -+ library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' -+ soname_spec='$libname${shared_ext}.$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ fi -+ ;; -+ -+sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) -+ version_type=freebsd-elf -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ if test "$with_gnu_ld" = yes; then -+ sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' -+ else -+ sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' -+ case $host_os in -+ sco3.2v5*) -+ sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" -+ ;; -+ esac -+ fi -+ sys_lib_dlsearch_path_spec='/usr/lib' -+ ;; -+ -+tpf*) -+ # TPF is a cross-target only. Preferred cross-host = GNU/Linux. -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=no -+ hardcode_into_libs=yes -+ ;; -+ -+uts4*) -+ version_type=linux -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ ;; -+ -+*) -+ dynamic_linker=no -+ ;; -+esac -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 -+$as_echo "$dynamic_linker" >&6; } -+test "$dynamic_linker" = no && can_build_shared=no -+ -+variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -+if test "$GCC" = yes; then -+ variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -+fi -+ -+if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then -+ sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" -+fi -+if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then -+ sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 -+$as_echo_n "checking how to hardcode library paths into programs... " >&6; } -+hardcode_action= -+if test -n "$hardcode_libdir_flag_spec" || -+ test -n "$runpath_var" || -+ test "X$hardcode_automatic" = "Xyes" ; then -+ -+ # We can hardcode non-existent directories. -+ if test "$hardcode_direct" != no && -+ # If the only mechanism to avoid hardcoding is shlibpath_var, we -+ # have to relink, otherwise we might link with an installed library -+ # when we should be linking with a yet-to-be-installed one -+ ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && -+ test "$hardcode_minus_L" != no; then -+ # Linking always hardcodes the temporary library directory. -+ hardcode_action=relink -+ else -+ # We can link without hardcoding, and we can hardcode nonexisting dirs. -+ hardcode_action=immediate -+ fi -+else -+ # We cannot hardcode anything, or else we can only hardcode existing -+ # directories. -+ hardcode_action=unsupported -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 -+$as_echo "$hardcode_action" >&6; } -+ -+if test "$hardcode_action" = relink || -+ test "$inherit_rpath" = yes; then -+ # Fast installation is not supported -+ enable_fast_install=no -+elif test "$shlibpath_overrides_runpath" = yes || -+ test "$enable_shared" = no; then -+ # Fast installation is not necessary -+ enable_fast_install=needless -+fi -+ -+ -+ -+ -+ -+ -+ if test "x$enable_dlopen" != xyes; then -+ enable_dlopen=unknown -+ enable_dlopen_self=unknown -+ enable_dlopen_self_static=unknown -+else -+ lt_cv_dlopen=no -+ lt_cv_dlopen_libs= -+ -+ case $host_os in -+ beos*) -+ lt_cv_dlopen="load_add_on" -+ lt_cv_dlopen_libs= -+ lt_cv_dlopen_self=yes -+ ;; -+ -+ mingw* | pw32* | cegcc*) -+ lt_cv_dlopen="LoadLibrary" -+ lt_cv_dlopen_libs= -+ ;; -+ -+ cygwin*) -+ lt_cv_dlopen="dlopen" -+ lt_cv_dlopen_libs= -+ ;; -+ -+ darwin*) -+ # if libdl is installed we need to link against it -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 -+$as_echo_n "checking for dlopen in -ldl... " >&6; } -+if ${ac_cv_lib_dl_dlopen+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-ldl $LIBS" -+if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char dlopen (); -+int -+main () -+{ -+return dlopen (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_dl_dlopen=yes -+else -+ ac_cv_lib_dl_dlopen=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 -+$as_echo "$ac_cv_lib_dl_dlopen" >&6; } -+if test "x$ac_cv_lib_dl_dlopen" = xyes; then : -+ lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" -+else -+ -+ lt_cv_dlopen="dyld" -+ lt_cv_dlopen_libs= -+ lt_cv_dlopen_self=yes -+ -+fi -+ -+ ;; -+ -+ *) -+ ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" -+if test "x$ac_cv_func_shl_load" = xyes; then : -+ lt_cv_dlopen="shl_load" -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 -+$as_echo_n "checking for shl_load in -ldld... " >&6; } -+if ${ac_cv_lib_dld_shl_load+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-ldld $LIBS" -+if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char shl_load (); -+int -+main () -+{ -+return shl_load (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_dld_shl_load=yes -+else -+ ac_cv_lib_dld_shl_load=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 -+$as_echo "$ac_cv_lib_dld_shl_load" >&6; } -+if test "x$ac_cv_lib_dld_shl_load" = xyes; then : -+ lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" -+else -+ ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" -+if test "x$ac_cv_func_dlopen" = xyes; then : -+ lt_cv_dlopen="dlopen" -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 -+$as_echo_n "checking for dlopen in -ldl... " >&6; } -+if ${ac_cv_lib_dl_dlopen+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-ldl $LIBS" -+if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char dlopen (); -+int -+main () -+{ -+return dlopen (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_dl_dlopen=yes -+else -+ ac_cv_lib_dl_dlopen=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 -+$as_echo "$ac_cv_lib_dl_dlopen" >&6; } -+if test "x$ac_cv_lib_dl_dlopen" = xyes; then : -+ lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 -+$as_echo_n "checking for dlopen in -lsvld... " >&6; } -+if ${ac_cv_lib_svld_dlopen+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lsvld $LIBS" -+if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char dlopen (); -+int -+main () -+{ -+return dlopen (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_svld_dlopen=yes -+else -+ ac_cv_lib_svld_dlopen=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 -+$as_echo "$ac_cv_lib_svld_dlopen" >&6; } -+if test "x$ac_cv_lib_svld_dlopen" = xyes; then : -+ lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 -+$as_echo_n "checking for dld_link in -ldld... " >&6; } -+if ${ac_cv_lib_dld_dld_link+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-ldld $LIBS" -+if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char dld_link (); -+int -+main () -+{ -+return dld_link (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_dld_dld_link=yes -+else -+ ac_cv_lib_dld_dld_link=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 -+$as_echo "$ac_cv_lib_dld_dld_link" >&6; } -+if test "x$ac_cv_lib_dld_dld_link" = xyes; then : -+ lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" -+fi -+ -+ -+fi -+ -+ -+fi -+ -+ -+fi -+ -+ -+fi -+ -+ -+fi -+ -+ ;; -+ esac -+ -+ if test "x$lt_cv_dlopen" != xno; then -+ enable_dlopen=yes -+ else -+ enable_dlopen=no -+ fi -+ -+ case $lt_cv_dlopen in -+ dlopen) -+ save_CPPFLAGS="$CPPFLAGS" -+ test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" -+ -+ save_LDFLAGS="$LDFLAGS" -+ wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" -+ -+ save_LIBS="$LIBS" -+ LIBS="$lt_cv_dlopen_libs $LIBS" -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 -+$as_echo_n "checking whether a program can dlopen itself... " >&6; } -+if ${lt_cv_dlopen_self+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test "$cross_compiling" = yes; then : -+ lt_cv_dlopen_self=cross -+else -+ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 -+ lt_status=$lt_dlunknown -+ cat > conftest.$ac_ext <<_LT_EOF -+#line __oline__ "configure" -+#include "confdefs.h" -+ -+#if HAVE_DLFCN_H -+#include -+#endif -+ -+#include -+ -+#ifdef RTLD_GLOBAL -+# define LT_DLGLOBAL RTLD_GLOBAL -+#else -+# ifdef DL_GLOBAL -+# define LT_DLGLOBAL DL_GLOBAL -+# else -+# define LT_DLGLOBAL 0 -+# endif -+#endif -+ -+/* We may have to define LT_DLLAZY_OR_NOW in the command line if we -+ find out it does not work in some platform. */ -+#ifndef LT_DLLAZY_OR_NOW -+# ifdef RTLD_LAZY -+# define LT_DLLAZY_OR_NOW RTLD_LAZY -+# else -+# ifdef DL_LAZY -+# define LT_DLLAZY_OR_NOW DL_LAZY -+# else -+# ifdef RTLD_NOW -+# define LT_DLLAZY_OR_NOW RTLD_NOW -+# else -+# ifdef DL_NOW -+# define LT_DLLAZY_OR_NOW DL_NOW -+# else -+# define LT_DLLAZY_OR_NOW 0 -+# endif -+# endif -+# endif -+# endif -+#endif -+ -+/* When -fvisbility=hidden is used, assume the code has been annotated -+ correspondingly for the symbols needed. */ -+#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) -+void fnord () __attribute__((visibility("default"))); -+#endif -+ -+void fnord () { int i=42; } -+int main () -+{ -+ void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); -+ int status = $lt_dlunknown; -+ -+ if (self) -+ { -+ if (dlsym (self,"fnord")) status = $lt_dlno_uscore; -+ else -+ { -+ if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; -+ else puts (dlerror ()); -+ } -+ /* dlclose (self); */ -+ } -+ else -+ puts (dlerror ()); -+ -+ return status; -+} -+_LT_EOF -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 -+ (eval $ac_link) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then -+ (./conftest; exit; ) >&5 2>/dev/null -+ lt_status=$? -+ case x$lt_status in -+ x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; -+ x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; -+ x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; -+ esac -+ else : -+ # compilation failed -+ lt_cv_dlopen_self=no -+ fi -+fi -+rm -fr conftest* -+ -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 -+$as_echo "$lt_cv_dlopen_self" >&6; } -+ -+ if test "x$lt_cv_dlopen_self" = xyes; then -+ wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 -+$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } -+if ${lt_cv_dlopen_self_static+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test "$cross_compiling" = yes; then : -+ lt_cv_dlopen_self_static=cross -+else -+ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 -+ lt_status=$lt_dlunknown -+ cat > conftest.$ac_ext <<_LT_EOF -+#line __oline__ "configure" -+#include "confdefs.h" -+ -+#if HAVE_DLFCN_H -+#include -+#endif -+ -+#include -+ -+#ifdef RTLD_GLOBAL -+# define LT_DLGLOBAL RTLD_GLOBAL -+#else -+# ifdef DL_GLOBAL -+# define LT_DLGLOBAL DL_GLOBAL -+# else -+# define LT_DLGLOBAL 0 -+# endif -+#endif -+ -+/* We may have to define LT_DLLAZY_OR_NOW in the command line if we -+ find out it does not work in some platform. */ -+#ifndef LT_DLLAZY_OR_NOW -+# ifdef RTLD_LAZY -+# define LT_DLLAZY_OR_NOW RTLD_LAZY -+# else -+# ifdef DL_LAZY -+# define LT_DLLAZY_OR_NOW DL_LAZY -+# else -+# ifdef RTLD_NOW -+# define LT_DLLAZY_OR_NOW RTLD_NOW -+# else -+# ifdef DL_NOW -+# define LT_DLLAZY_OR_NOW DL_NOW -+# else -+# define LT_DLLAZY_OR_NOW 0 -+# endif -+# endif -+# endif -+# endif -+#endif -+ -+/* When -fvisbility=hidden is used, assume the code has been annotated -+ correspondingly for the symbols needed. */ -+#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) -+void fnord () __attribute__((visibility("default"))); -+#endif -+ -+void fnord () { int i=42; } -+int main () -+{ -+ void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); -+ int status = $lt_dlunknown; -+ -+ if (self) -+ { -+ if (dlsym (self,"fnord")) status = $lt_dlno_uscore; -+ else -+ { -+ if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; -+ else puts (dlerror ()); -+ } -+ /* dlclose (self); */ -+ } -+ else -+ puts (dlerror ()); -+ -+ return status; -+} -+_LT_EOF -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 -+ (eval $ac_link) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then -+ (./conftest; exit; ) >&5 2>/dev/null -+ lt_status=$? -+ case x$lt_status in -+ x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; -+ x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; -+ x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; -+ esac -+ else : -+ # compilation failed -+ lt_cv_dlopen_self_static=no -+ fi -+fi -+rm -fr conftest* -+ -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 -+$as_echo "$lt_cv_dlopen_self_static" >&6; } -+ fi -+ -+ CPPFLAGS="$save_CPPFLAGS" -+ LDFLAGS="$save_LDFLAGS" -+ LIBS="$save_LIBS" -+ ;; -+ esac -+ -+ case $lt_cv_dlopen_self in -+ yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; -+ *) enable_dlopen_self=unknown ;; -+ esac -+ -+ case $lt_cv_dlopen_self_static in -+ yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; -+ *) enable_dlopen_self_static=unknown ;; -+ esac -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+striplib= -+old_striplib= -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 -+$as_echo_n "checking whether stripping libraries is possible... " >&6; } -+if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then -+ test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" -+ test -z "$striplib" && striplib="$STRIP --strip-unneeded" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -+$as_echo "yes" >&6; } -+else -+# FIXME - insert some real tests, host_os isn't really good enough -+ case $host_os in -+ darwin*) -+ if test -n "$STRIP" ; then -+ striplib="$STRIP -x" -+ old_striplib="$STRIP -S" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -+$as_echo "yes" >&6; } -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+ fi -+ ;; -+ *) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+ ;; -+ esac -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ # Report which library types will actually be built -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 -+$as_echo_n "checking if libtool supports shared libraries... " >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 -+$as_echo "$can_build_shared" >&6; } -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 -+$as_echo_n "checking whether to build shared libraries... " >&6; } -+ test "$can_build_shared" = "no" && enable_shared=no -+ -+ # On AIX, shared libraries and static libraries use the same namespace, and -+ # are all built from PIC. -+ case $host_os in -+ aix3*) -+ test "$enable_shared" = yes && enable_static=no -+ if test -n "$RANLIB"; then -+ archive_cmds="$archive_cmds~\$RANLIB \$lib" -+ postinstall_cmds='$RANLIB $lib' -+ fi -+ ;; -+ -+ aix[4-9]*) -+ if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then -+ test "$enable_shared" = yes && enable_static=no -+ fi -+ ;; -+ esac -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 -+$as_echo "$enable_shared" >&6; } -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 -+$as_echo_n "checking whether to build static libraries... " >&6; } -+ # Make sure either enable_shared or enable_static is yes. -+ test "$enable_shared" = yes || enable_static=yes -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 -+$as_echo "$enable_static" >&6; } -+ -+ -+ -+ -+fi -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+CC="$lt_save_CC" -+ -+ if test -n "$CXX" && ( test "X$CXX" != "Xno" && -+ ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || -+ (test "X$CXX" != "Xg++"))) ; then -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 -+$as_echo_n "checking how to run the C++ preprocessor... " >&6; } -+if test -z "$CXXCPP"; then -+ if ${ac_cv_prog_CXXCPP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ # Double quotes because CXXCPP needs to be expanded -+ for CXXCPP in "$CXX -E" "/lib/cpp" -+ do -+ ac_preproc_ok=false -+for ac_cxx_preproc_warn_flag in '' yes -+do -+ # Use a header file that comes with gcc, so configuring glibc -+ # with a fresh cross-compiler works. -+ # Prefer to if __STDC__ is defined, since -+ # exists even on freestanding compilers. -+ # On the NeXT, cc -E runs the code through the compiler's parser, -+ # not just through cpp. "Syntax error" is here to catch this case. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@ifdef __STDC__ -+@%:@ include -+@%:@else -+@%:@ include -+@%:@endif -+ Syntax error -+_ACEOF -+if ac_fn_cxx_try_cpp "$LINENO"; then : -+ -+else -+ # Broken: fails on valid input. -+continue -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+ -+ # OK, works on sane cases. Now check whether nonexistent headers -+ # can be detected and how. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@include -+_ACEOF -+if ac_fn_cxx_try_cpp "$LINENO"; then : -+ # Broken: success on invalid input. -+continue -+else -+ # Passes both tests. -+ac_preproc_ok=: -+break -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+ -+done -+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -+rm -f conftest.i conftest.err conftest.$ac_ext -+if $ac_preproc_ok; then : -+ break -+fi -+ -+ done -+ ac_cv_prog_CXXCPP=$CXXCPP -+ -+fi -+ CXXCPP=$ac_cv_prog_CXXCPP -+else -+ ac_cv_prog_CXXCPP=$CXXCPP -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 -+$as_echo "$CXXCPP" >&6; } -+ac_preproc_ok=false -+for ac_cxx_preproc_warn_flag in '' yes -+do -+ # Use a header file that comes with gcc, so configuring glibc -+ # with a fresh cross-compiler works. -+ # Prefer to if __STDC__ is defined, since -+ # exists even on freestanding compilers. -+ # On the NeXT, cc -E runs the code through the compiler's parser, -+ # not just through cpp. "Syntax error" is here to catch this case. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@ifdef __STDC__ -+@%:@ include -+@%:@else -+@%:@ include -+@%:@endif -+ Syntax error -+_ACEOF -+if ac_fn_cxx_try_cpp "$LINENO"; then : -+ -+else -+ # Broken: fails on valid input. -+continue -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+ -+ # OK, works on sane cases. Now check whether nonexistent headers -+ # can be detected and how. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+@%:@include -+_ACEOF -+if ac_fn_cxx_try_cpp "$LINENO"; then : -+ # Broken: success on invalid input. -+continue -+else -+ # Passes both tests. -+ac_preproc_ok=: -+break -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+ -+done -+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -+rm -f conftest.i conftest.err conftest.$ac_ext -+if $ac_preproc_ok; then : -+ -+else -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check -+See \`config.log' for more details" "$LINENO" 5; } -+fi -+ -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+else -+ _lt_caught_CXX_error=yes -+fi -+ -+ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+archive_cmds_need_lc_CXX=no -+allow_undefined_flag_CXX= -+always_export_symbols_CXX=no -+archive_expsym_cmds_CXX= -+compiler_needs_object_CXX=no -+export_dynamic_flag_spec_CXX= -+hardcode_direct_CXX=no -+hardcode_direct_absolute_CXX=no -+hardcode_libdir_flag_spec_CXX= -+hardcode_libdir_flag_spec_ld_CXX= -+hardcode_libdir_separator_CXX= -+hardcode_minus_L_CXX=no -+hardcode_shlibpath_var_CXX=unsupported -+hardcode_automatic_CXX=no -+inherit_rpath_CXX=no -+module_cmds_CXX= -+module_expsym_cmds_CXX= -+link_all_deplibs_CXX=unknown -+old_archive_cmds_CXX=$old_archive_cmds -+reload_flag_CXX=$reload_flag -+reload_cmds_CXX=$reload_cmds -+no_undefined_flag_CXX= -+whole_archive_flag_spec_CXX= -+enable_shared_with_static_runtimes_CXX=no -+ -+# Source file extension for C++ test sources. -+ac_ext=cpp -+ -+# Object file extension for compiled C++ test sources. -+objext=o -+objext_CXX=$objext -+ -+# No sense in running all these tests if we already determined that -+# the CXX compiler isn't working. Some variables (like enable_shared) -+# are currently assumed to apply to all compilers on this platform, -+# and will be corrupted by setting them based on a non-working compiler. -+if test "$_lt_caught_CXX_error" != yes; then -+ # Code to be used in simple compile tests -+ lt_simple_compile_test_code="int some_variable = 0;" -+ -+ # Code to be used in simple link tests -+ lt_simple_link_test_code='int main(int, char *[]) { return(0); }' -+ -+ # ltmain only uses $CC for tagged configurations so make sure $CC is set. -+ -+ -+ -+ -+ -+ -+# If no C compiler was specified, use CC. -+LTCC=${LTCC-"$CC"} -+ -+# If no C compiler flags were specified, use CFLAGS. -+LTCFLAGS=${LTCFLAGS-"$CFLAGS"} -+ -+# Allow CC to be a program name with arguments. -+compiler=$CC -+ -+ -+ # save warnings/boilerplate of simple test code -+ ac_outfile=conftest.$ac_objext -+echo "$lt_simple_compile_test_code" >conftest.$ac_ext -+eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -+_lt_compiler_boilerplate=`cat conftest.err` -+$RM conftest* -+ -+ ac_outfile=conftest.$ac_objext -+echo "$lt_simple_link_test_code" >conftest.$ac_ext -+eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -+_lt_linker_boilerplate=`cat conftest.err` -+$RM -r conftest* -+ -+ -+ # Allow CC to be a program name with arguments. -+ lt_save_CC=$CC -+ lt_save_LD=$LD -+ lt_save_GCC=$GCC -+ GCC=$GXX -+ lt_save_with_gnu_ld=$with_gnu_ld -+ lt_save_path_LD=$lt_cv_path_LD -+ if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then -+ lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx -+ else -+ $as_unset lt_cv_prog_gnu_ld -+ fi -+ if test -n "${lt_cv_path_LDCXX+set}"; then -+ lt_cv_path_LD=$lt_cv_path_LDCXX -+ else -+ $as_unset lt_cv_path_LD -+ fi -+ test -z "${LDCXX+set}" || LD=$LDCXX -+ CC=${CXX-"c++"} -+ compiler=$CC -+ compiler_CXX=$CC -+ for cc_temp in $compiler""; do -+ case $cc_temp in -+ compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; -+ distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; -+ \-*) ;; -+ *) break;; -+ esac -+done -+cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` -+ -+ -+ if test -n "$compiler"; then -+ # We don't want -fno-exception when compiling C++ code, so set the -+ # no_builtin_flag separately -+ if test "$GXX" = yes; then -+ lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' -+ else -+ lt_prog_compiler_no_builtin_flag_CXX= -+ fi -+ -+ if test "$GXX" = yes; then -+ # Set up default GNU C++ configuration -+ -+ -+ -+@%:@ Check whether --with-gnu-ld was given. -+if test "${with_gnu_ld+set}" = set; then : -+ withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes -+else -+ with_gnu_ld=no -+fi -+ -+ac_prog=ld -+if test "$GCC" = yes; then -+ # Check if gcc -print-prog-name=ld gives a path. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 -+$as_echo_n "checking for ld used by $CC... " >&6; } -+ case $host in -+ *-*-mingw*) -+ # gcc leaves a trailing carriage return which upsets mingw -+ ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; -+ *) -+ ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; -+ esac -+ case $ac_prog in -+ # Accept absolute paths. -+ [\\/]* | ?:[\\/]*) -+ re_direlt='/[^/][^/]*/\.\./' -+ # Canonicalize the pathname of ld -+ ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` -+ while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do -+ ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` -+ done -+ test -z "$LD" && LD="$ac_prog" -+ ;; -+ "") -+ # If it fails, then pretend we aren't using GCC. -+ ac_prog=ld -+ ;; -+ *) -+ # If it is relative, then search for the first ld in PATH. -+ with_gnu_ld=unknown -+ ;; -+ esac -+elif test "$with_gnu_ld" = yes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 -+$as_echo_n "checking for GNU ld... " >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 -+$as_echo_n "checking for non-GNU ld... " >&6; } -+fi -+if ${lt_cv_path_LD+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -z "$LD"; then -+ lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR -+ for ac_dir in $PATH; do -+ IFS="$lt_save_ifs" -+ test -z "$ac_dir" && ac_dir=. -+ if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then -+ lt_cv_path_LD="$ac_dir/$ac_prog" -+ # Check to see if the program is GNU ld. I'd rather use --version, -+ # but apparently some variants of GNU ld only accept -v. -+ # Break only if it was the GNU/non-GNU ld that we prefer. -+ case `"$lt_cv_path_LD" -v 2>&1 &5 -+$as_echo "$LD" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 -+$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } -+if ${lt_cv_prog_gnu_ld+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ # I'd rather use --version here, but apparently some GNU lds only accept -v. -+case `$LD -v 2>&1 &5 -+$as_echo "$lt_cv_prog_gnu_ld" >&6; } -+with_gnu_ld=$lt_cv_prog_gnu_ld -+ -+ -+ -+ -+ -+ -+ -+ # Check if GNU C++ uses GNU ld as the underlying linker, since the -+ # archiving commands below assume that GNU ld is being used. -+ if test "$with_gnu_ld" = yes; then -+ archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' -+ -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' -+ export_dynamic_flag_spec_CXX='${wl}--export-dynamic' -+ -+ # If archive_cmds runs LD, not CC, wlarc should be empty -+ # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to -+ # investigate it a little bit more. (MM) -+ wlarc='${wl}' -+ -+ # ancient GNU ld didn't support --whole-archive et. al. -+ if eval "`$CC -print-prog-name=ld` --help 2>&1" | -+ $GREP 'no-whole-archive' > /dev/null; then -+ whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' -+ else -+ whole_archive_flag_spec_CXX= -+ fi -+ else -+ with_gnu_ld=no -+ wlarc= -+ -+ # A generic and very simple default shared library creation -+ # command for GNU C++ for the case where it uses the native -+ # linker, instead of GNU ld. If possible, this setting should -+ # overridden to take advantage of the native linker features on -+ # the platform it is being used on. -+ archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' -+ fi -+ -+ # Commands to make compiler produce verbose output that lists -+ # what "hidden" libraries, object files and flags are used when -+ # linking a shared library. -+ output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' -+ -+ else -+ GXX=no -+ with_gnu_ld=no -+ wlarc= -+ fi -+ -+ # PORTME: fill in a description of your system's C++ link characteristics -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -+$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } -+ ld_shlibs_CXX=yes -+ case $host_os in -+ aix3*) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ aix[4-9]*) -+ if test "$host_cpu" = ia64; then -+ # On IA64, the linker does run time linking by default, so we don't -+ # have to do anything special. -+ aix_use_runtimelinking=no -+ exp_sym_flag='-Bexport' -+ no_entry_flag="" -+ else -+ aix_use_runtimelinking=no -+ -+ # Test if we are trying to use run time linking or normal -+ # AIX style linking. If -brtl is somewhere in LDFLAGS, we -+ # need to do runtime linking. -+ case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) -+ for ld_flag in $LDFLAGS; do -+ case $ld_flag in -+ *-brtl*) -+ aix_use_runtimelinking=yes -+ break -+ ;; -+ esac -+ done -+ ;; -+ esac -+ -+ exp_sym_flag='-bexport' -+ no_entry_flag='-bnoentry' -+ fi -+ -+ # When large executables or shared objects are built, AIX ld can -+ # have problems creating the table of contents. If linking a library -+ # or program results in "error TOC overflow" add -mminimal-toc to -+ # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not -+ # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. -+ -+ archive_cmds_CXX='' -+ hardcode_direct_CXX=yes -+ hardcode_direct_absolute_CXX=yes -+ hardcode_libdir_separator_CXX=':' -+ link_all_deplibs_CXX=yes -+ file_list_spec_CXX='${wl}-f,' -+ -+ if test "$GXX" = yes; then -+ case $host_os in aix4.[012]|aix4.[012].*) -+ # We only want to do this on AIX 4.2 and lower, the check -+ # below for broken collect2 doesn't work under 4.3+ -+ collect2name=`${CC} -print-prog-name=collect2` -+ if test -f "$collect2name" && -+ strings "$collect2name" | $GREP resolve_lib_name >/dev/null -+ then -+ # We have reworked collect2 -+ : -+ else -+ # We have old collect2 -+ hardcode_direct_CXX=unsupported -+ # It fails to find uninstalled libraries when the uninstalled -+ # path is not listed in the libpath. Setting hardcode_minus_L -+ # to unsupported forces relinking -+ hardcode_minus_L_CXX=yes -+ hardcode_libdir_flag_spec_CXX='-L$libdir' -+ hardcode_libdir_separator_CXX= -+ fi -+ esac -+ shared_flag='-shared' -+ if test "$aix_use_runtimelinking" = yes; then -+ shared_flag="$shared_flag "'${wl}-G' -+ fi -+ else -+ # not using gcc -+ if test "$host_cpu" = ia64; then -+ # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release -+ # chokes on -Wl,-G. The following line is correct: -+ shared_flag='-G' -+ else -+ if test "$aix_use_runtimelinking" = yes; then -+ shared_flag='${wl}-G' -+ else -+ shared_flag='${wl}-bM:SRE' -+ fi -+ fi -+ fi -+ -+ export_dynamic_flag_spec_CXX='${wl}-bexpall' -+ # It seems that -bexpall does not export symbols beginning with -+ # underscore (_), so it is better to generate a list of symbols to -+ # export. -+ always_export_symbols_CXX=yes -+ if test "$aix_use_runtimelinking" = yes; then -+ # Warning - without using the other runtime loading flags (-brtl), -+ # -berok will link without error, but may produce a broken library. -+ allow_undefined_flag_CXX='-berok' -+ # Determine the default libpath from the value encoded in an empty -+ # executable. -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ -+lt_aix_libpath_sed=' -+ /Import File Strings/,/^$/ { -+ /^0/ { -+ s/^0 *\(.*\)$/\1/ -+ p -+ } -+ }' -+aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -+# Check for a 64-bit object if we didn't find anything. -+if test -z "$aix_libpath"; then -+ aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -+fi -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi -+ -+ hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" -+ -+ archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" -+ else -+ if test "$host_cpu" = ia64; then -+ hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' -+ allow_undefined_flag_CXX="-z nodefs" -+ archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" -+ else -+ # Determine the default libpath from the value encoded in an -+ # empty executable. -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ -+lt_aix_libpath_sed=' -+ /Import File Strings/,/^$/ { -+ /^0/ { -+ s/^0 *\(.*\)$/\1/ -+ p -+ } -+ }' -+aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -+# Check for a 64-bit object if we didn't find anything. -+if test -z "$aix_libpath"; then -+ aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -+fi -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi -+ -+ hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" -+ # Warning - without using the other run time loading flags, -+ # -berok will link without error, but may produce a broken library. -+ no_undefined_flag_CXX=' ${wl}-bernotok' -+ allow_undefined_flag_CXX=' ${wl}-berok' -+ if test "$with_gnu_ld" = yes; then -+ # We only use this code for GNU lds that support --whole-archive. -+ whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' -+ else -+ # Exported symbols can be pulled into shared objects from archives -+ whole_archive_flag_spec_CXX='$convenience' -+ fi -+ archive_cmds_need_lc_CXX=yes -+ # This is similar to how AIX traditionally builds its shared -+ # libraries. -+ archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' -+ fi -+ fi -+ ;; -+ -+ beos*) -+ if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then -+ allow_undefined_flag_CXX=unsupported -+ # Joseph Beckenbach says some releases of gcc -+ # support --undefined. This deserves some investigation. FIXME -+ archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ else -+ ld_shlibs_CXX=no -+ fi -+ ;; -+ -+ chorus*) -+ case $cc_basename in -+ *) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ esac -+ ;; -+ -+ cygwin* | mingw* | pw32* | cegcc*) -+ # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, -+ # as there is no search path for DLLs. -+ hardcode_libdir_flag_spec_CXX='-L$libdir' -+ export_dynamic_flag_spec_CXX='${wl}--export-all-symbols' -+ allow_undefined_flag_CXX=unsupported -+ always_export_symbols_CXX=no -+ enable_shared_with_static_runtimes_CXX=yes -+ -+ if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then -+ archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' -+ # If the export-symbols file already is a .def file (1st line -+ # is EXPORTS), use it as is; otherwise, prepend... -+ archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then -+ cp $export_symbols $output_objdir/$soname.def; -+ else -+ echo EXPORTS > $output_objdir/$soname.def; -+ cat $export_symbols >> $output_objdir/$soname.def; -+ fi~ -+ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' -+ else -+ ld_shlibs_CXX=no -+ fi -+ ;; -+ darwin* | rhapsody*) -+ -+ -+ archive_cmds_need_lc_CXX=no -+ hardcode_direct_CXX=no -+ hardcode_automatic_CXX=yes -+ hardcode_shlibpath_var_CXX=unsupported -+ if test "$lt_cv_ld_force_load" = "yes"; then -+ whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' -+ else -+ whole_archive_flag_spec_CXX='' -+ fi -+ link_all_deplibs_CXX=yes -+ allow_undefined_flag_CXX="$_lt_dar_allow_undefined" -+ case $cc_basename in -+ ifort*) _lt_dar_can_shared=yes ;; -+ *) _lt_dar_can_shared=$GCC ;; -+ esac -+ if test "$_lt_dar_can_shared" = "yes"; then -+ output_verbose_link_cmd=func_echo_all -+ archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" -+ module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" -+ archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" -+ module_expsym_cmds_CXX="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" -+ if test "$lt_cv_apple_cc_single_mod" != "yes"; then -+ archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" -+ archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" -+ fi -+ -+ else -+ ld_shlibs_CXX=no -+ fi -+ -+ ;; -+ -+ dgux*) -+ case $cc_basename in -+ ec++*) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ ghcx*) -+ # Green Hills C++ Compiler -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ *) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ esac -+ ;; -+ -+ freebsd2.*) -+ # C++ shared libraries reported to be fairly broken before -+ # switch to ELF -+ ld_shlibs_CXX=no -+ ;; -+ -+ freebsd-elf*) -+ archive_cmds_need_lc_CXX=no -+ ;; -+ -+ freebsd* | dragonfly*) -+ # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF -+ # conventions -+ ld_shlibs_CXX=yes -+ ;; -+ -+ gnu*) -+ ;; -+ -+ haiku*) -+ archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ link_all_deplibs_CXX=yes -+ ;; -+ -+ hpux9*) -+ hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' -+ hardcode_libdir_separator_CXX=: -+ export_dynamic_flag_spec_CXX='${wl}-E' -+ hardcode_direct_CXX=yes -+ hardcode_minus_L_CXX=yes # Not in the search PATH, -+ # but as the default -+ # location of the library. -+ -+ case $cc_basename in -+ CC*) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ aCC*) -+ archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' -+ # Commands to make compiler produce verbose output that lists -+ # what "hidden" libraries, object files and flags are used when -+ # linking a shared library. -+ # -+ # There doesn't appear to be a way to prevent this compiler from -+ # explicitly linking system object files so we need to strip them -+ # from the output so that they don't get included in the library -+ # dependencies. -+ output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' -+ ;; -+ *) -+ if test "$GXX" = yes; then -+ archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' -+ else -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ fi -+ ;; -+ esac -+ ;; -+ -+ hpux10*|hpux11*) -+ if test $with_gnu_ld = no; then -+ hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' -+ hardcode_libdir_separator_CXX=: -+ -+ case $host_cpu in -+ hppa*64*|ia64*) -+ ;; -+ *) -+ export_dynamic_flag_spec_CXX='${wl}-E' -+ ;; -+ esac -+ fi -+ case $host_cpu in -+ hppa*64*|ia64*) -+ hardcode_direct_CXX=no -+ hardcode_shlibpath_var_CXX=no -+ ;; -+ *) -+ hardcode_direct_CXX=yes -+ hardcode_direct_absolute_CXX=yes -+ hardcode_minus_L_CXX=yes # Not in the search PATH, -+ # but as the default -+ # location of the library. -+ ;; -+ esac -+ -+ case $cc_basename in -+ CC*) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ aCC*) -+ case $host_cpu in -+ hppa*64*) -+ archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' -+ ;; -+ ia64*) -+ archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' -+ ;; -+ *) -+ archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' -+ ;; -+ esac -+ # Commands to make compiler produce verbose output that lists -+ # what "hidden" libraries, object files and flags are used when -+ # linking a shared library. -+ # -+ # There doesn't appear to be a way to prevent this compiler from -+ # explicitly linking system object files so we need to strip them -+ # from the output so that they don't get included in the library -+ # dependencies. -+ output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' -+ ;; -+ *) -+ if test "$GXX" = yes; then -+ if test $with_gnu_ld = no; then -+ case $host_cpu in -+ hppa*64*) -+ archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' -+ ;; -+ ia64*) -+ archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' -+ ;; -+ *) -+ archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' -+ ;; -+ esac -+ fi -+ else -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ fi -+ ;; -+ esac -+ ;; -+ -+ interix[3-9]*) -+ hardcode_direct_CXX=no -+ hardcode_shlibpath_var_CXX=no -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' -+ export_dynamic_flag_spec_CXX='${wl}-E' -+ # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. -+ # Instead, shared libraries are loaded at an image base (0x10000000 by -+ # default) and relocated if they conflict, which is a slow very memory -+ # consuming and fragmenting process. To avoid this, we pick a random, -+ # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link -+ # time. Moving up from 0x10000000 also allows more sbrk(2) space. -+ archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' -+ archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' -+ ;; -+ irix5* | irix6*) -+ case $cc_basename in -+ CC*) -+ # SGI C++ -+ archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' -+ -+ # Archives containing C++ object files must be created using -+ # "CC -ar", where "CC" is the IRIX C++ compiler. This is -+ # necessary to make sure instantiated templates are included -+ # in the archive. -+ old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' -+ ;; -+ *) -+ if test "$GXX" = yes; then -+ if test "$with_gnu_ld" = no; then -+ archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' -+ else -+ archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' -+ fi -+ fi -+ link_all_deplibs_CXX=yes -+ ;; -+ esac -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' -+ hardcode_libdir_separator_CXX=: -+ inherit_rpath_CXX=yes -+ ;; -+ -+ linux* | k*bsd*-gnu | kopensolaris*-gnu) -+ case $cc_basename in -+ KCC*) -+ # Kuck and Associates, Inc. (KAI) C++ Compiler -+ -+ # KCC will only create a shared library if the output file -+ # ends with ".so" (or ".sl" for HP-UX), so rename the library -+ # to its proper name (with version) after linking. -+ archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' -+ archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' -+ # Commands to make compiler produce verbose output that lists -+ # what "hidden" libraries, object files and flags are used when -+ # linking a shared library. -+ # -+ # There doesn't appear to be a way to prevent this compiler from -+ # explicitly linking system object files so we need to strip them -+ # from the output so that they don't get included in the library -+ # dependencies. -+ output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' -+ -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' -+ export_dynamic_flag_spec_CXX='${wl}--export-dynamic' -+ -+ # Archives containing C++ object files must be created using -+ # "CC -Bstatic", where "CC" is the KAI C++ compiler. -+ old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' -+ ;; -+ icpc* | ecpc* ) -+ # Intel C++ -+ with_gnu_ld=yes -+ # version 8.0 and above of icpc choke on multiply defined symbols -+ # if we add $predep_objects and $postdep_objects, however 7.1 and -+ # earlier do not add the objects themselves. -+ case `$CC -V 2>&1` in -+ *"Version 7."*) -+ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' -+ ;; -+ *) # Version 8.0 or newer -+ tmp_idyn= -+ case $host_cpu in -+ ia64*) tmp_idyn=' -i_dynamic';; -+ esac -+ archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' -+ ;; -+ esac -+ archive_cmds_need_lc_CXX=no -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' -+ export_dynamic_flag_spec_CXX='${wl}--export-dynamic' -+ whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' -+ ;; -+ pgCC* | pgcpp*) -+ # Portland Group C++ compiler -+ case `$CC -V` in -+ *pgCC\ [1-5].* | *pgcpp\ [1-5].*) -+ prelink_cmds_CXX='tpldir=Template.dir~ -+ rm -rf $tpldir~ -+ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ -+ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' -+ old_archive_cmds_CXX='tpldir=Template.dir~ -+ rm -rf $tpldir~ -+ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ -+ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ -+ $RANLIB $oldlib' -+ archive_cmds_CXX='tpldir=Template.dir~ -+ rm -rf $tpldir~ -+ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ -+ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' -+ archive_expsym_cmds_CXX='tpldir=Template.dir~ -+ rm -rf $tpldir~ -+ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ -+ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' -+ ;; -+ *) # Version 6 and above use weak symbols -+ archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' -+ archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' -+ ;; -+ esac -+ -+ hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' -+ export_dynamic_flag_spec_CXX='${wl}--export-dynamic' -+ whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' -+ ;; -+ cxx*) -+ # Compaq C++ -+ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' -+ -+ runpath_var=LD_RUN_PATH -+ hardcode_libdir_flag_spec_CXX='-rpath $libdir' -+ hardcode_libdir_separator_CXX=: -+ -+ # Commands to make compiler produce verbose output that lists -+ # what "hidden" libraries, object files and flags are used when -+ # linking a shared library. -+ # -+ # There doesn't appear to be a way to prevent this compiler from -+ # explicitly linking system object files so we need to strip them -+ # from the output so that they don't get included in the library -+ # dependencies. -+ output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' -+ ;; -+ xl* | mpixl* | bgxl*) -+ # IBM XL 8.0 on PPC, with GNU ld -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' -+ export_dynamic_flag_spec_CXX='${wl}--export-dynamic' -+ archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' -+ if test "x$supports_anon_versioning" = xyes; then -+ archive_expsym_cmds_CXX='echo "{ global:" > $output_objdir/$libname.ver~ -+ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ -+ echo "local: *; };" >> $output_objdir/$libname.ver~ -+ $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' -+ fi -+ ;; -+ *) -+ case `$CC -V 2>&1 | sed 5q` in -+ *Sun\ C*) -+ # Sun C++ 5.9 -+ no_undefined_flag_CXX=' -zdefs' -+ archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' -+ archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' -+ hardcode_libdir_flag_spec_CXX='-R$libdir' -+ whole_archive_flag_spec_CXX='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' -+ compiler_needs_object_CXX=yes -+ -+ # Not sure whether something based on -+ # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 -+ # would be better. -+ output_verbose_link_cmd='func_echo_all' -+ -+ # Archives containing C++ object files must be created using -+ # "CC -xar", where "CC" is the Sun C++ compiler. This is -+ # necessary to make sure instantiated templates are included -+ # in the archive. -+ old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' -+ ;; -+ esac -+ ;; -+ esac -+ ;; -+ -+ lynxos*) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ -+ m88k*) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ -+ mvs*) -+ case $cc_basename in -+ cxx*) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ *) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ esac -+ ;; -+ -+ netbsd*) -+ if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then -+ archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' -+ wlarc= -+ hardcode_libdir_flag_spec_CXX='-R$libdir' -+ hardcode_direct_CXX=yes -+ hardcode_shlibpath_var_CXX=no -+ fi -+ # Workaround some broken pre-1.5 toolchains -+ output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' -+ ;; -+ -+ *nto* | *qnx*) -+ ld_shlibs_CXX=yes -+ ;; -+ -+ openbsd2*) -+ # C++ shared libraries are fairly broken -+ ld_shlibs_CXX=no -+ ;; -+ -+ openbsd*) -+ if test -f /usr/libexec/ld.so; then -+ hardcode_direct_CXX=yes -+ hardcode_shlibpath_var_CXX=no -+ hardcode_direct_absolute_CXX=yes -+ archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' -+ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then -+ archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' -+ export_dynamic_flag_spec_CXX='${wl}-E' -+ whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' -+ fi -+ output_verbose_link_cmd=func_echo_all -+ else -+ ld_shlibs_CXX=no -+ fi -+ ;; -+ -+ osf3* | osf4* | osf5*) -+ case $cc_basename in -+ KCC*) -+ # Kuck and Associates, Inc. (KAI) C++ Compiler -+ -+ # KCC will only create a shared library if the output file -+ # ends with ".so" (or ".sl" for HP-UX), so rename the library -+ # to its proper name (with version) after linking. -+ archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' -+ -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' -+ hardcode_libdir_separator_CXX=: -+ -+ # Archives containing C++ object files must be created using -+ # the KAI C++ compiler. -+ case $host in -+ osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; -+ *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; -+ esac -+ ;; -+ RCC*) -+ # Rational C++ 2.4.1 -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ cxx*) -+ case $host in -+ osf3*) -+ allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' -+ archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' -+ ;; -+ *) -+ allow_undefined_flag_CXX=' -expect_unresolved \*' -+ archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' -+ archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ -+ echo "-hidden">> $lib.exp~ -+ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ -+ $RM $lib.exp' -+ hardcode_libdir_flag_spec_CXX='-rpath $libdir' -+ ;; -+ esac -+ -+ hardcode_libdir_separator_CXX=: -+ -+ # Commands to make compiler produce verbose output that lists -+ # what "hidden" libraries, object files and flags are used when -+ # linking a shared library. -+ # -+ # There doesn't appear to be a way to prevent this compiler from -+ # explicitly linking system object files so we need to strip them -+ # from the output so that they don't get included in the library -+ # dependencies. -+ output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' -+ ;; -+ *) -+ if test "$GXX" = yes && test "$with_gnu_ld" = no; then -+ allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' -+ case $host in -+ osf3*) -+ archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' -+ ;; -+ *) -+ archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' -+ ;; -+ esac -+ -+ hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' -+ hardcode_libdir_separator_CXX=: -+ -+ # Commands to make compiler produce verbose output that lists -+ # what "hidden" libraries, object files and flags are used when -+ # linking a shared library. -+ output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' -+ -+ else -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ fi -+ ;; -+ esac -+ ;; -+ -+ psos*) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ -+ sunos4*) -+ case $cc_basename in -+ CC*) -+ # Sun C++ 4.x -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ lcc*) -+ # Lucid -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ *) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ esac -+ ;; -+ -+ solaris*) -+ case $cc_basename in -+ CC*) -+ # Sun C++ 4.2, 5.x and Centerline C++ -+ archive_cmds_need_lc_CXX=yes -+ no_undefined_flag_CXX=' -zdefs' -+ archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' -+ archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ -+ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' -+ -+ hardcode_libdir_flag_spec_CXX='-R$libdir' -+ hardcode_shlibpath_var_CXX=no -+ case $host_os in -+ solaris2.[0-5] | solaris2.[0-5].*) ;; -+ *) -+ # The compiler driver will combine and reorder linker options, -+ # but understands `-z linker_flag'. -+ # Supported since Solaris 2.6 (maybe 2.5.1?) -+ whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' -+ ;; -+ esac -+ link_all_deplibs_CXX=yes -+ -+ output_verbose_link_cmd='func_echo_all' -+ -+ # Archives containing C++ object files must be created using -+ # "CC -xar", where "CC" is the Sun C++ compiler. This is -+ # necessary to make sure instantiated templates are included -+ # in the archive. -+ old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' -+ ;; -+ gcx*) -+ # Green Hills C++ Compiler -+ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' -+ -+ # The C++ compiler must be used to create the archive. -+ old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' -+ ;; -+ *) -+ # GNU C++ compiler with Solaris linker -+ if test "$GXX" = yes && test "$with_gnu_ld" = no; then -+ no_undefined_flag_CXX=' ${wl}-z ${wl}defs' -+ if $CC --version | $GREP -v '^2\.7' > /dev/null; then -+ archive_cmds_CXX='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' -+ archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ -+ $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' -+ -+ # Commands to make compiler produce verbose output that lists -+ # what "hidden" libraries, object files and flags are used when -+ # linking a shared library. -+ output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' -+ else -+ # g++ 2.7 appears to require `-G' NOT `-shared' on this -+ # platform. -+ archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' -+ archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ -+ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' -+ -+ # Commands to make compiler produce verbose output that lists -+ # what "hidden" libraries, object files and flags are used when -+ # linking a shared library. -+ output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' -+ fi -+ -+ hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' -+ case $host_os in -+ solaris2.[0-5] | solaris2.[0-5].*) ;; -+ *) -+ whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' -+ ;; -+ esac -+ fi -+ ;; -+ esac -+ ;; -+ -+ sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) -+ no_undefined_flag_CXX='${wl}-z,text' -+ archive_cmds_need_lc_CXX=no -+ hardcode_shlibpath_var_CXX=no -+ runpath_var='LD_RUN_PATH' -+ -+ case $cc_basename in -+ CC*) -+ archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ ;; -+ *) -+ archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ ;; -+ esac -+ ;; -+ -+ sysv5* | sco3.2v5* | sco5v6*) -+ # Note: We can NOT use -z defs as we might desire, because we do not -+ # link with -lc, and that would cause any symbols used from libc to -+ # always be unresolved, which means just about no library would -+ # ever link correctly. If we're not using GNU ld we use -z text -+ # though, which does catch some bad symbols but isn't as heavy-handed -+ # as -z defs. -+ no_undefined_flag_CXX='${wl}-z,text' -+ allow_undefined_flag_CXX='${wl}-z,nodefs' -+ archive_cmds_need_lc_CXX=no -+ hardcode_shlibpath_var_CXX=no -+ hardcode_libdir_flag_spec_CXX='${wl}-R,$libdir' -+ hardcode_libdir_separator_CXX=':' -+ link_all_deplibs_CXX=yes -+ export_dynamic_flag_spec_CXX='${wl}-Bexport' -+ runpath_var='LD_RUN_PATH' -+ -+ case $cc_basename in -+ CC*) -+ archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ old_archive_cmds_CXX='$CC -Tprelink_objects $oldobjs~ -+ '"$old_archive_cmds_CXX" -+ reload_cmds_CXX='$CC -Tprelink_objects $reload_objs~ -+ '"$reload_cmds_CXX" -+ ;; -+ *) -+ archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' -+ ;; -+ esac -+ ;; -+ -+ tandem*) -+ case $cc_basename in -+ NCC*) -+ # NonStop-UX NCC 3.20 -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ *) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ esac -+ ;; -+ -+ vxworks*) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ -+ *) -+ # FIXME: insert proper C++ library support -+ ld_shlibs_CXX=no -+ ;; -+ esac -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 -+$as_echo "$ld_shlibs_CXX" >&6; } -+ test "$ld_shlibs_CXX" = no && can_build_shared=no -+ -+ GCC_CXX="$GXX" -+ LD_CXX="$LD" -+ -+ ## CAVEAT EMPTOR: -+ ## There is no encapsulation within the following macros, do not change -+ ## the running order or otherwise move them around unless you know exactly -+ ## what you are doing... -+ # Dependencies to place before and after the object being linked: -+predep_objects_CXX= -+postdep_objects_CXX= -+predeps_CXX= -+postdeps_CXX= -+compiler_lib_search_path_CXX= -+ -+cat > conftest.$ac_ext <<_LT_EOF -+class Foo -+{ -+public: -+ Foo (void) { a = 0; } -+private: -+ int a; -+}; -+_LT_EOF -+ -+if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ # Parse the compiler output and extract the necessary -+ # objects, libraries and library flags. -+ -+ # Sentinel used to keep track of whether or not we are before -+ # the conftest object file. -+ pre_test_object_deps_done=no -+ -+ for p in `eval "$output_verbose_link_cmd"`; do -+ case $p in -+ -+ -L* | -R* | -l*) -+ # Some compilers place space between "-{L,R}" and the path. -+ # Remove the space. -+ if test $p = "-L" || -+ test $p = "-R"; then -+ prev=$p -+ continue -+ else -+ prev= -+ fi -+ -+ if test "$pre_test_object_deps_done" = no; then -+ case $p in -+ -L* | -R*) -+ # Internal compiler library paths should come after those -+ # provided the user. The postdeps already come after the -+ # user supplied libs so there is no need to process them. -+ if test -z "$compiler_lib_search_path_CXX"; then -+ compiler_lib_search_path_CXX="${prev}${p}" -+ else -+ compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" -+ fi -+ ;; -+ # The "-l" case would never come before the object being -+ # linked, so don't bother handling this case. -+ esac -+ else -+ if test -z "$postdeps_CXX"; then -+ postdeps_CXX="${prev}${p}" -+ else -+ postdeps_CXX="${postdeps_CXX} ${prev}${p}" -+ fi -+ fi -+ ;; -+ -+ *.$objext) -+ # This assumes that the test object file only shows up -+ # once in the compiler output. -+ if test "$p" = "conftest.$objext"; then -+ pre_test_object_deps_done=yes -+ continue -+ fi -+ -+ if test "$pre_test_object_deps_done" = no; then -+ if test -z "$predep_objects_CXX"; then -+ predep_objects_CXX="$p" -+ else -+ predep_objects_CXX="$predep_objects_CXX $p" -+ fi -+ else -+ if test -z "$postdep_objects_CXX"; then -+ postdep_objects_CXX="$p" -+ else -+ postdep_objects_CXX="$postdep_objects_CXX $p" -+ fi -+ fi -+ ;; -+ -+ *) ;; # Ignore the rest. -+ -+ esac -+ done -+ -+ # Clean up. -+ rm -f a.out a.exe -+else -+ echo "libtool.m4: error: problem compiling CXX test program" -+fi -+ -+$RM -f confest.$objext -+ -+# PORTME: override above test on systems where it is broken -+case $host_os in -+interix[3-9]*) -+ # Interix 3.5 installs completely hosed .la files for C++, so rather than -+ # hack all around it, let's just trust "g++" to DTRT. -+ predep_objects_CXX= -+ postdep_objects_CXX= -+ postdeps_CXX= -+ ;; -+ -+linux*) -+ case `$CC -V 2>&1 | sed 5q` in -+ *Sun\ C*) -+ # Sun C++ 5.9 -+ -+ # The more standards-conforming stlport4 library is -+ # incompatible with the Cstd library. Avoid specifying -+ # it if it's in CXXFLAGS. Ignore libCrun as -+ # -library=stlport4 depends on it. -+ case " $CXX $CXXFLAGS " in -+ *" -library=stlport4 "*) -+ solaris_use_stlport4=yes -+ ;; -+ esac -+ -+ if test "$solaris_use_stlport4" != yes; then -+ postdeps_CXX='-library=Cstd -library=Crun' -+ fi -+ ;; -+ esac -+ ;; -+ -+solaris*) -+ case $cc_basename in -+ CC*) -+ # The more standards-conforming stlport4 library is -+ # incompatible with the Cstd library. Avoid specifying -+ # it if it's in CXXFLAGS. Ignore libCrun as -+ # -library=stlport4 depends on it. -+ case " $CXX $CXXFLAGS " in -+ *" -library=stlport4 "*) -+ solaris_use_stlport4=yes -+ ;; -+ esac -+ -+ # Adding this requires a known-good setup of shared libraries for -+ # Sun compiler versions before 5.6, else PIC objects from an old -+ # archive will be linked into the output, leading to subtle bugs. -+ if test "$solaris_use_stlport4" != yes; then -+ postdeps_CXX='-library=Cstd -library=Crun' -+ fi -+ ;; -+ esac -+ ;; -+esac -+ -+ -+case " $postdeps_CXX " in -+*" -lc "*) archive_cmds_need_lc_CXX=no ;; -+esac -+ compiler_lib_search_dirs_CXX= -+if test -n "${compiler_lib_search_path_CXX}"; then -+ compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ lt_prog_compiler_wl_CXX= -+lt_prog_compiler_pic_CXX= -+lt_prog_compiler_static_CXX= -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 -+$as_echo_n "checking for $compiler option to produce PIC... " >&6; } -+ -+ # C++ specific cases for pic, static, wl, etc. -+ if test "$GXX" = yes; then -+ lt_prog_compiler_wl_CXX='-Wl,' -+ lt_prog_compiler_static_CXX='-static' -+ -+ case $host_os in -+ aix*) -+ # All AIX code is PIC. -+ if test "$host_cpu" = ia64; then -+ # AIX 5 now supports IA64 processor -+ lt_prog_compiler_static_CXX='-Bstatic' -+ fi -+ lt_prog_compiler_pic_CXX='-fPIC' -+ ;; -+ -+ amigaos*) -+ case $host_cpu in -+ powerpc) -+ # see comment about AmigaOS4 .so support -+ lt_prog_compiler_pic_CXX='-fPIC' -+ ;; -+ m68k) -+ # FIXME: we need at least 68020 code to build shared libraries, but -+ # adding the `-m68020' flag to GCC prevents building anything better, -+ # like `-m68040'. -+ lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' -+ ;; -+ esac -+ ;; -+ -+ beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) -+ # PIC is the default for these OSes. -+ ;; -+ mingw* | cygwin* | os2* | pw32* | cegcc*) -+ # This hack is so that the source file can tell whether it is being -+ # built for inclusion in a dll (and should export symbols for example). -+ # Although the cygwin gcc ignores -fPIC, still need this for old-style -+ # (--disable-auto-import) libraries -+ lt_prog_compiler_pic_CXX='-DDLL_EXPORT' -+ ;; -+ darwin* | rhapsody*) -+ # PIC is the default on this platform -+ # Common symbols not allowed in MH_DYLIB files -+ lt_prog_compiler_pic_CXX='-fno-common' -+ ;; -+ *djgpp*) -+ # DJGPP does not support shared libraries at all -+ lt_prog_compiler_pic_CXX= -+ ;; -+ haiku*) -+ # PIC is the default for Haiku. -+ # The "-static" flag exists, but is broken. -+ lt_prog_compiler_static_CXX= -+ ;; -+ interix[3-9]*) -+ # Interix 3.x gcc -fpic/-fPIC options generate broken code. -+ # Instead, we relocate shared libraries at runtime. -+ ;; -+ sysv4*MP*) -+ if test -d /usr/nec; then -+ lt_prog_compiler_pic_CXX=-Kconform_pic -+ fi -+ ;; -+ hpux*) -+ # PIC is the default for 64-bit PA HP-UX, but not for 32-bit -+ # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag -+ # sets the default TLS model and affects inlining. -+ case $host_cpu in -+ hppa*64*) -+ ;; -+ *) -+ lt_prog_compiler_pic_CXX='-fPIC' -+ ;; -+ esac -+ ;; -+ *qnx* | *nto*) -+ # QNX uses GNU C++, but need to define -shared option too, otherwise -+ # it will coredump. -+ lt_prog_compiler_pic_CXX='-fPIC -shared' -+ ;; -+ *) -+ lt_prog_compiler_pic_CXX='-fPIC' -+ ;; -+ esac -+ else -+ case $host_os in -+ aix[4-9]*) -+ # All AIX code is PIC. -+ if test "$host_cpu" = ia64; then -+ # AIX 5 now supports IA64 processor -+ lt_prog_compiler_static_CXX='-Bstatic' -+ else -+ lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' -+ fi -+ ;; -+ chorus*) -+ case $cc_basename in -+ cxch68*) -+ # Green Hills C++ Compiler -+ # _LT_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" -+ ;; -+ esac -+ ;; -+ dgux*) -+ case $cc_basename in -+ ec++*) -+ lt_prog_compiler_pic_CXX='-KPIC' -+ ;; -+ ghcx*) -+ # Green Hills C++ Compiler -+ lt_prog_compiler_pic_CXX='-pic' -+ ;; -+ *) -+ ;; -+ esac -+ ;; -+ freebsd* | dragonfly*) -+ # FreeBSD uses GNU C++ -+ ;; -+ hpux9* | hpux10* | hpux11*) -+ case $cc_basename in -+ CC*) -+ lt_prog_compiler_wl_CXX='-Wl,' -+ lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' -+ if test "$host_cpu" != ia64; then -+ lt_prog_compiler_pic_CXX='+Z' -+ fi -+ ;; -+ aCC*) -+ lt_prog_compiler_wl_CXX='-Wl,' -+ lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' -+ case $host_cpu in -+ hppa*64*|ia64*) -+ # +Z the default -+ ;; -+ *) -+ lt_prog_compiler_pic_CXX='+Z' -+ ;; -+ esac -+ ;; -+ *) -+ ;; -+ esac -+ ;; -+ interix*) -+ # This is c89, which is MS Visual C++ (no shared libs) -+ # Anyone wants to do a port? -+ ;; -+ irix5* | irix6* | nonstopux*) -+ case $cc_basename in -+ CC*) -+ lt_prog_compiler_wl_CXX='-Wl,' -+ lt_prog_compiler_static_CXX='-non_shared' -+ # CC pic flag -KPIC is the default. -+ ;; -+ *) -+ ;; -+ esac -+ ;; -+ linux* | k*bsd*-gnu | kopensolaris*-gnu) -+ case $cc_basename in -+ KCC*) -+ # KAI C++ Compiler -+ lt_prog_compiler_wl_CXX='--backend -Wl,' -+ lt_prog_compiler_pic_CXX='-fPIC' -+ ;; -+ ecpc* ) -+ # old Intel C++ for x86_64 which still supported -KPIC. -+ lt_prog_compiler_wl_CXX='-Wl,' -+ lt_prog_compiler_pic_CXX='-KPIC' -+ lt_prog_compiler_static_CXX='-static' -+ ;; -+ icpc* ) -+ # Intel C++, used to be incompatible with GCC. -+ # ICC 10 doesn't accept -KPIC any more. -+ lt_prog_compiler_wl_CXX='-Wl,' -+ lt_prog_compiler_pic_CXX='-fPIC' -+ lt_prog_compiler_static_CXX='-static' -+ ;; -+ pgCC* | pgcpp*) -+ # Portland Group C++ compiler -+ lt_prog_compiler_wl_CXX='-Wl,' -+ lt_prog_compiler_pic_CXX='-fpic' -+ lt_prog_compiler_static_CXX='-Bstatic' -+ ;; -+ cxx*) -+ # Compaq C++ -+ # Make sure the PIC flag is empty. It appears that all Alpha -+ # Linux and Compaq Tru64 Unix objects are PIC. -+ lt_prog_compiler_pic_CXX= -+ lt_prog_compiler_static_CXX='-non_shared' -+ ;; -+ xlc* | xlC* | bgxl[cC]* | mpixl[cC]*) -+ # IBM XL 8.0, 9.0 on PPC and BlueGene -+ lt_prog_compiler_wl_CXX='-Wl,' -+ lt_prog_compiler_pic_CXX='-qpic' -+ lt_prog_compiler_static_CXX='-qstaticlink' -+ ;; -+ *) -+ case `$CC -V 2>&1 | sed 5q` in -+ *Sun\ C*) -+ # Sun C++ 5.9 -+ lt_prog_compiler_pic_CXX='-KPIC' -+ lt_prog_compiler_static_CXX='-Bstatic' -+ lt_prog_compiler_wl_CXX='-Qoption ld ' -+ ;; -+ esac -+ ;; -+ esac -+ ;; -+ lynxos*) -+ ;; -+ m88k*) -+ ;; -+ mvs*) -+ case $cc_basename in -+ cxx*) -+ lt_prog_compiler_pic_CXX='-W c,exportall' -+ ;; -+ *) -+ ;; -+ esac -+ ;; -+ netbsd*) -+ ;; -+ *qnx* | *nto*) -+ # QNX uses GNU C++, but need to define -shared option too, otherwise -+ # it will coredump. -+ lt_prog_compiler_pic_CXX='-fPIC -shared' -+ ;; -+ osf3* | osf4* | osf5*) -+ case $cc_basename in -+ KCC*) -+ lt_prog_compiler_wl_CXX='--backend -Wl,' -+ ;; -+ RCC*) -+ # Rational C++ 2.4.1 -+ lt_prog_compiler_pic_CXX='-pic' -+ ;; -+ cxx*) -+ # Digital/Compaq C++ -+ lt_prog_compiler_wl_CXX='-Wl,' -+ # Make sure the PIC flag is empty. It appears that all Alpha -+ # Linux and Compaq Tru64 Unix objects are PIC. -+ lt_prog_compiler_pic_CXX= -+ lt_prog_compiler_static_CXX='-non_shared' -+ ;; -+ *) -+ ;; -+ esac -+ ;; -+ psos*) -+ ;; -+ solaris*) -+ case $cc_basename in -+ CC*) -+ # Sun C++ 4.2, 5.x and Centerline C++ -+ lt_prog_compiler_pic_CXX='-KPIC' -+ lt_prog_compiler_static_CXX='-Bstatic' -+ lt_prog_compiler_wl_CXX='-Qoption ld ' -+ ;; -+ gcx*) -+ # Green Hills C++ Compiler -+ lt_prog_compiler_pic_CXX='-PIC' -+ ;; -+ *) -+ ;; -+ esac -+ ;; -+ sunos4*) -+ case $cc_basename in -+ CC*) -+ # Sun C++ 4.x -+ lt_prog_compiler_pic_CXX='-pic' -+ lt_prog_compiler_static_CXX='-Bstatic' -+ ;; -+ lcc*) -+ # Lucid -+ lt_prog_compiler_pic_CXX='-pic' -+ ;; -+ *) -+ ;; -+ esac -+ ;; -+ sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) -+ case $cc_basename in -+ CC*) -+ lt_prog_compiler_wl_CXX='-Wl,' -+ lt_prog_compiler_pic_CXX='-KPIC' -+ lt_prog_compiler_static_CXX='-Bstatic' -+ ;; -+ esac -+ ;; -+ tandem*) -+ case $cc_basename in -+ NCC*) -+ # NonStop-UX NCC 3.20 -+ lt_prog_compiler_pic_CXX='-KPIC' -+ ;; -+ *) -+ ;; -+ esac -+ ;; -+ vxworks*) -+ ;; -+ *) -+ lt_prog_compiler_can_build_shared_CXX=no -+ ;; -+ esac -+ fi -+ -+case $host_os in -+ # For platforms which do not support PIC, -DPIC is meaningless: -+ *djgpp*) -+ lt_prog_compiler_pic_CXX= -+ ;; -+ *) -+ lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX@&t@ -DPIC" -+ ;; -+esac -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic_CXX" >&5 -+$as_echo "$lt_prog_compiler_pic_CXX" >&6; } -+ -+ -+ -+# -+# Check to make sure the PIC flag actually works. -+# -+if test -n "$lt_prog_compiler_pic_CXX"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 -+$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } -+if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler_pic_works_CXX=no -+ ac_outfile=conftest.$ac_objext -+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext -+ lt_compiler_flag="$lt_prog_compiler_pic_CXX@&t@ -DPIC" -+ # Insert the option either (1) after the last *FLAGS variable, or -+ # (2) before a word containing "conftest.", or (3) at the end. -+ # Note that $ac_compile itself does not contain backslashes and begins -+ # with a dollar sign (not a hyphen), so the echo should work correctly. -+ # The option is referenced via a variable to avoid confusing sed. -+ lt_compile=`echo "$ac_compile" | $SED \ -+ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -+ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -+ -e 's:$: $lt_compiler_flag:'` -+ (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) -+ (eval "$lt_compile" 2>conftest.err) -+ ac_status=$? -+ cat conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ if (exit $ac_status) && test -s "$ac_outfile"; then -+ # The compiler can only warn and ignore the option if not recognized -+ # So say no if there are warnings other than the usual output. -+ $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp -+ $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 -+ if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler_pic_works_CXX=yes -+ fi -+ fi -+ $RM conftest* -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 -+$as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } -+ -+if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then -+ case $lt_prog_compiler_pic_CXX in -+ "" | " "*) ;; -+ *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; -+ esac -+else -+ lt_prog_compiler_pic_CXX= -+ lt_prog_compiler_can_build_shared_CXX=no -+fi -+ -+fi -+ -+ -+ -+# -+# Check to make sure the static flag actually works. -+# -+wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 -+$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } -+if ${lt_cv_prog_compiler_static_works_CXX+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler_static_works_CXX=no -+ save_LDFLAGS="$LDFLAGS" -+ LDFLAGS="$LDFLAGS $lt_tmp_static_flag" -+ echo "$lt_simple_link_test_code" > conftest.$ac_ext -+ if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then -+ # The linker can only warn and ignore the option if not recognized -+ # So say no if there are warnings -+ if test -s conftest.err; then -+ # Append any errors to the config.log. -+ cat conftest.err 1>&5 -+ $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp -+ $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 -+ if diff conftest.exp conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler_static_works_CXX=yes -+ fi -+ else -+ lt_cv_prog_compiler_static_works_CXX=yes -+ fi -+ fi -+ $RM -r conftest* -+ LDFLAGS="$save_LDFLAGS" -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 -+$as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } -+ -+if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then -+ : -+else -+ lt_prog_compiler_static_CXX= -+fi -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -+$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -+if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler_c_o_CXX=no -+ $RM -r conftest 2>/dev/null -+ mkdir conftest -+ cd conftest -+ mkdir out -+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext -+ -+ lt_compiler_flag="-o out/conftest2.$ac_objext" -+ # Insert the option either (1) after the last *FLAGS variable, or -+ # (2) before a word containing "conftest.", or (3) at the end. -+ # Note that $ac_compile itself does not contain backslashes and begins -+ # with a dollar sign (not a hyphen), so the echo should work correctly. -+ lt_compile=`echo "$ac_compile" | $SED \ -+ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -+ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -+ -e 's:$: $lt_compiler_flag:'` -+ (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) -+ (eval "$lt_compile" 2>out/conftest.err) -+ ac_status=$? -+ cat out/conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ if (exit $ac_status) && test -s out/conftest2.$ac_objext -+ then -+ # The compiler can only warn and ignore the option if not recognized -+ # So say no if there are warnings -+ $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp -+ $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 -+ if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler_c_o_CXX=yes -+ fi -+ fi -+ chmod u+w . 2>&5 -+ $RM conftest* -+ # SGI C++ compiler will create directory out/ii_files/ for -+ # template instantiation -+ test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files -+ $RM out/* && rmdir out -+ cd .. -+ $RM -r conftest -+ $RM conftest* -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 -+$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -+$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -+if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_prog_compiler_c_o_CXX=no -+ $RM -r conftest 2>/dev/null -+ mkdir conftest -+ cd conftest -+ mkdir out -+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext -+ -+ lt_compiler_flag="-o out/conftest2.$ac_objext" -+ # Insert the option either (1) after the last *FLAGS variable, or -+ # (2) before a word containing "conftest.", or (3) at the end. -+ # Note that $ac_compile itself does not contain backslashes and begins -+ # with a dollar sign (not a hyphen), so the echo should work correctly. -+ lt_compile=`echo "$ac_compile" | $SED \ -+ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -+ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -+ -e 's:$: $lt_compiler_flag:'` -+ (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) -+ (eval "$lt_compile" 2>out/conftest.err) -+ ac_status=$? -+ cat out/conftest.err >&5 -+ echo "$as_me:$LINENO: \$? = $ac_status" >&5 -+ if (exit $ac_status) && test -s out/conftest2.$ac_objext -+ then -+ # The compiler can only warn and ignore the option if not recognized -+ # So say no if there are warnings -+ $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp -+ $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 -+ if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then -+ lt_cv_prog_compiler_c_o_CXX=yes -+ fi -+ fi -+ chmod u+w . 2>&5 -+ $RM conftest* -+ # SGI C++ compiler will create directory out/ii_files/ for -+ # template instantiation -+ test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files -+ $RM out/* && rmdir out -+ cd .. -+ $RM -r conftest -+ $RM conftest* -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 -+$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } -+ -+ -+ -+ -+hard_links="nottested" -+if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then -+ # do not overwrite the value of need_locks provided by the user -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 -+$as_echo_n "checking if we can lock with hard links... " >&6; } -+ hard_links=yes -+ $RM conftest* -+ ln conftest.a conftest.b 2>/dev/null && hard_links=no -+ touch conftest.a -+ ln conftest.a conftest.b 2>&5 || hard_links=no -+ ln conftest.a conftest.b 2>/dev/null && hard_links=no -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 -+$as_echo "$hard_links" >&6; } -+ if test "$hard_links" = no; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 -+$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} -+ need_locks=warn -+ fi -+else -+ need_locks=no -+fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -+$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } -+ -+ export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' -+ case $host_os in -+ aix[4-9]*) -+ # If we're using GNU nm, then we don't want the "-C" option. -+ # -C means demangle to AIX nm, but means don't demangle with GNU nm -+ # Also, AIX nm treats weak defined symbols like other global defined -+ # symbols, whereas GNU nm marks them as "W". -+ if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then -+ export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' -+ else -+ export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' -+ fi -+ ;; -+ pw32*) -+ export_symbols_cmds_CXX="$ltdll_cmds" -+ ;; -+ cygwin* | mingw* | cegcc*) -+ export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;/^.*[ ]__nm__/s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' -+ ;; -+ *) -+ export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' -+ ;; -+ esac -+ exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 -+$as_echo "$ld_shlibs_CXX" >&6; } -+test "$ld_shlibs_CXX" = no && can_build_shared=no -+ -+with_gnu_ld_CXX=$with_gnu_ld -+ -+ -+ -+ -+ -+ -+# -+# Do we need to explicitly link libc? -+# -+case "x$archive_cmds_need_lc_CXX" in -+x|xyes) -+ # Assume -lc should be added -+ archive_cmds_need_lc_CXX=yes -+ -+ if test "$enable_shared" = yes && test "$GCC" = yes; then -+ case $archive_cmds_CXX in -+ *'~'*) -+ # FIXME: we may have to deal with multi-command sequences. -+ ;; -+ '$CC '*) -+ # Test whether the compiler implicitly links with -lc since on some -+ # systems, -lgcc has to come before -lc. If gcc already passes -lc -+ # to ld, don't add -lc before -lgcc. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 -+$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } -+if ${lt_cv_archive_cmds_need_lc_CXX+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ $RM conftest* -+ echo "$lt_simple_compile_test_code" > conftest.$ac_ext -+ -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } 2>conftest.err; then -+ soname=conftest -+ lib=conftest -+ libobjs=conftest.$ac_objext -+ deplibs= -+ wl=$lt_prog_compiler_wl_CXX -+ pic_flag=$lt_prog_compiler_pic_CXX -+ compiler_flags=-v -+ linker_flags=-v -+ verstring= -+ output_objdir=. -+ libname=conftest -+ lt_save_allow_undefined_flag=$allow_undefined_flag_CXX -+ allow_undefined_flag_CXX= -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 -+ (eval $archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; } -+ then -+ lt_cv_archive_cmds_need_lc_CXX=no -+ else -+ lt_cv_archive_cmds_need_lc_CXX=yes -+ fi -+ allow_undefined_flag_CXX=$lt_save_allow_undefined_flag -+ else -+ cat conftest.err 1>&5 -+ fi -+ $RM conftest* -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc_CXX" >&5 -+$as_echo "$lt_cv_archive_cmds_need_lc_CXX" >&6; } -+ archive_cmds_need_lc_CXX=$lt_cv_archive_cmds_need_lc_CXX -+ ;; -+ esac -+ fi -+ ;; -+esac -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 -+$as_echo_n "checking dynamic linker characteristics... " >&6; } -+ -+library_names_spec= -+libname_spec='lib$name' -+soname_spec= -+shrext_cmds=".so" -+postinstall_cmds= -+postuninstall_cmds= -+finish_cmds= -+finish_eval= -+shlibpath_var= -+shlibpath_overrides_runpath=unknown -+version_type=none -+dynamic_linker="$host_os ld.so" -+sys_lib_dlsearch_path_spec="/lib /usr/lib" -+need_lib_prefix=unknown -+hardcode_into_libs=no -+ -+# when you set need_version to no, make sure it does not cause -set_version -+# flags to be left without arguments -+need_version=unknown -+ -+case $host_os in -+aix3*) -+ version_type=linux -+ library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' -+ shlibpath_var=LIBPATH -+ -+ # AIX 3 has no versioning support, so we append a major version to the name. -+ soname_spec='${libname}${release}${shared_ext}$major' -+ ;; -+ -+aix[4-9]*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ hardcode_into_libs=yes -+ if test "$host_cpu" = ia64; then -+ # AIX 5 supports IA64 -+ library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' -+ shlibpath_var=LD_LIBRARY_PATH -+ else -+ # With GCC up to 2.95.x, collect2 would create an import file -+ # for dependence libraries. The import file would start with -+ # the line `#! .'. This would cause the generated library to -+ # depend on `.', always an invalid library. This was fixed in -+ # development snapshots of GCC prior to 3.0. -+ case $host_os in -+ aix4 | aix4.[01] | aix4.[01].*) -+ if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' -+ echo ' yes ' -+ echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then -+ : -+ else -+ can_build_shared=no -+ fi -+ ;; -+ esac -+ # AIX (on Power*) has no versioning support, so currently we can not hardcode correct -+ # soname into executable. Probably we can add versioning support to -+ # collect2, so additional links can be useful in future. -+ if test "$aix_use_runtimelinking" = yes; then -+ # If using run time linking (on AIX 4.2 or later) use lib.so -+ # instead of lib.a to let people know that these are not -+ # typical AIX shared libraries. -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ else -+ # We preserve .a as extension for shared libraries through AIX4.2 -+ # and later when we are not doing run time linking. -+ library_names_spec='${libname}${release}.a $libname.a' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ fi -+ shlibpath_var=LIBPATH -+ fi -+ ;; -+ -+amigaos*) -+ case $host_cpu in -+ powerpc) -+ # Since July 2007 AmigaOS4 officially supports .so libraries. -+ # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ ;; -+ m68k) -+ library_names_spec='$libname.ixlibrary $libname.a' -+ # Create ${libname}_ixlibrary.a entries in /sys/libs. -+ finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' -+ ;; -+ esac -+ ;; -+ -+beos*) -+ library_names_spec='${libname}${shared_ext}' -+ dynamic_linker="$host_os ld.so" -+ shlibpath_var=LIBRARY_PATH -+ ;; -+ -+bsdi[45]*) -+ version_type=linux -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" -+ sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" -+ # the default ld.so.conf also contains /usr/contrib/lib and -+ # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow -+ # libtool to hard-code these into programs -+ ;; -+ -+cygwin* | mingw* | pw32* | cegcc*) -+ version_type=windows -+ shrext_cmds=".dll" -+ need_version=no -+ need_lib_prefix=no -+ -+ case $GCC,$host_os in -+ yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*) -+ library_names_spec='$libname.dll.a' -+ # DLL is installed to $(libdir)/../bin by postinstall_cmds -+ postinstall_cmds='base_file=`basename \${file}`~ -+ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ -+ dldir=$destdir/`dirname \$dlpath`~ -+ test -d \$dldir || mkdir -p \$dldir~ -+ $install_prog $dir/$dlname \$dldir/$dlname~ -+ chmod a+x \$dldir/$dlname~ -+ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then -+ eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; -+ fi' -+ postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ -+ dlpath=$dir/\$dldll~ -+ $RM \$dlpath' -+ shlibpath_overrides_runpath=yes -+ -+ case $host_os in -+ cygwin*) -+ # Cygwin DLLs use 'cyg' prefix rather than 'lib' -+ soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' -+ -+ ;; -+ mingw* | cegcc*) -+ # MinGW DLLs use traditional 'lib' prefix -+ soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' -+ ;; -+ pw32*) -+ # pw32 DLLs use 'pw' prefix rather than 'lib' -+ library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' -+ ;; -+ esac -+ ;; -+ -+ *) -+ library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' -+ ;; -+ esac -+ dynamic_linker='Win32 ld.exe' -+ # FIXME: first we should search . and the directory the executable is in -+ shlibpath_var=PATH -+ ;; -+ -+darwin* | rhapsody*) -+ dynamic_linker="$host_os dyld" -+ version_type=darwin -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' -+ soname_spec='${libname}${release}${major}$shared_ext' -+ shlibpath_overrides_runpath=yes -+ shlibpath_var=DYLD_LIBRARY_PATH -+ shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' -+ -+ sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' -+ ;; -+ -+dgux*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ ;; -+ -+freebsd* | dragonfly*) -+ # DragonFly does not have aout. When/if they implement a new -+ # versioning mechanism, adjust this. -+ if test -x /usr/bin/objformat; then -+ objformat=`/usr/bin/objformat` -+ else -+ case $host_os in -+ freebsd[23].*) objformat=aout ;; -+ *) objformat=elf ;; -+ esac -+ fi -+ version_type=freebsd-$objformat -+ case $version_type in -+ freebsd-elf*) -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' -+ need_version=no -+ need_lib_prefix=no -+ ;; -+ freebsd-*) -+ library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' -+ need_version=yes -+ ;; -+ esac -+ shlibpath_var=LD_LIBRARY_PATH -+ case $host_os in -+ freebsd2.*) -+ shlibpath_overrides_runpath=yes -+ ;; -+ freebsd3.[01]* | freebsdelf3.[01]*) -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ ;; -+ freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ -+ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) -+ shlibpath_overrides_runpath=no -+ hardcode_into_libs=yes -+ ;; -+ *) # from 4.6 on, and DragonFly -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ ;; -+ esac -+ ;; -+ -+haiku*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ dynamic_linker="$host_os runtime_loader" -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/beos/system/lib' -+ hardcode_into_libs=yes -+ ;; -+ -+hpux9* | hpux10* | hpux11*) -+ # Give a soname corresponding to the major version so that dld.sl refuses to -+ # link against other versions. -+ version_type=sunos -+ need_lib_prefix=no -+ need_version=no -+ case $host_cpu in -+ ia64*) -+ shrext_cmds='.so' -+ hardcode_into_libs=yes -+ dynamic_linker="$host_os dld.so" -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ if test "X$HPUX_IA64_MODE" = X32; then -+ sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" -+ else -+ sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" -+ fi -+ sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec -+ ;; -+ hppa*64*) -+ shrext_cmds='.sl' -+ hardcode_into_libs=yes -+ dynamic_linker="$host_os dld.sl" -+ shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH -+ shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" -+ sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec -+ ;; -+ *) -+ shrext_cmds='.sl' -+ dynamic_linker="$host_os dld.sl" -+ shlibpath_var=SHLIB_PATH -+ shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ ;; -+ esac -+ # HP-UX runs *really* slowly unless shared libraries are mode 555, ... -+ postinstall_cmds='chmod 555 $lib' -+ # or fails outright, so override atomically: -+ install_override_mode=555 -+ ;; -+ -+interix[3-9]*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=no -+ hardcode_into_libs=yes -+ ;; -+ -+irix5* | irix6* | nonstopux*) -+ case $host_os in -+ nonstopux*) version_type=nonstopux ;; -+ *) -+ if test "$lt_cv_prog_gnu_ld" = yes; then -+ version_type=linux -+ else -+ version_type=irix -+ fi ;; -+ esac -+ need_lib_prefix=no -+ need_version=no -+ soname_spec='${libname}${release}${shared_ext}$major' -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' -+ case $host_os in -+ irix5* | nonstopux*) -+ libsuff= shlibsuff= -+ ;; -+ *) -+ case $LD in # libtool.m4 will add one of these switches to LD -+ *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") -+ libsuff= shlibsuff= libmagic=32-bit;; -+ *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") -+ libsuff=32 shlibsuff=N32 libmagic=N32;; -+ *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") -+ libsuff=64 shlibsuff=64 libmagic=64-bit;; -+ *) libsuff= shlibsuff= libmagic=never-match;; -+ esac -+ ;; -+ esac -+ shlibpath_var=LD_LIBRARY${shlibsuff}_PATH -+ shlibpath_overrides_runpath=no -+ sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" -+ sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" -+ hardcode_into_libs=yes -+ ;; -+ -+# No shared lib support for Linux oldld, aout, or coff. -+linux*oldld* | linux*aout* | linux*coff*) -+ dynamic_linker=no -+ ;; -+ -+# This must be Linux ELF. -+ -+# uclinux* changes (here and below) have been submitted to the libtool -+# project, but have not yet been accepted: they are GCC-local changes -+# for the time being. (See -+# https://lists.gnu.org/archive/html/libtool-patches/2018-05/msg00000.html) -+linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu* | uclinuxfdpiceabi) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=no -+ -+ # Some binutils ld are patched to set DT_RUNPATH -+ if ${lt_cv_shlibpath_overrides_runpath+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ lt_cv_shlibpath_overrides_runpath=no -+ save_LDFLAGS=$LDFLAGS -+ save_libdir=$libdir -+ eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_CXX\"; \ -+ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\"" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : -+ lt_cv_shlibpath_overrides_runpath=yes -+fi -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ LDFLAGS=$save_LDFLAGS -+ libdir=$save_libdir -+ -+fi -+ -+ shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath -+ -+ # This implies no fast_install, which is unacceptable. -+ # Some rework will be needed to allow for fast_install -+ # before this can be enabled. -+ hardcode_into_libs=yes -+ -+ # Append ld.so.conf contents to the search path -+ if test -f /etc/ld.so.conf; then -+ lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` -+ sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" -+ fi -+ -+ # We used to test for /lib/ld.so.1 and disable shared libraries on -+ # powerpc, because MkLinux only supported shared libraries with the -+ # GNU dynamic linker. Since this was broken with cross compilers, -+ # most powerpc-linux boxes support dynamic linking these days and -+ # people can always --disable-shared, the test was removed, and we -+ # assume the GNU/Linux dynamic linker is in use. -+ dynamic_linker='GNU/Linux ld.so' -+ ;; -+ -+netbsd*) -+ version_type=sunos -+ need_lib_prefix=no -+ need_version=no -+ if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' -+ dynamic_linker='NetBSD (a.out) ld.so' -+ else -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ dynamic_linker='NetBSD ld.elf_so' -+ fi -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ ;; -+ -+newsos6) -+ version_type=linux -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ ;; -+ -+*nto* | *qnx*) -+ version_type=qnx -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=no -+ hardcode_into_libs=yes -+ dynamic_linker='ldqnx.so' -+ ;; -+ -+openbsd*) -+ version_type=sunos -+ sys_lib_dlsearch_path_spec="/usr/lib" -+ need_lib_prefix=no -+ # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. -+ case $host_os in -+ openbsd3.3 | openbsd3.3.*) need_version=yes ;; -+ *) need_version=no ;; -+ esac -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then -+ case $host_os in -+ openbsd2.[89] | openbsd2.[89].*) -+ shlibpath_overrides_runpath=no -+ ;; -+ *) -+ shlibpath_overrides_runpath=yes -+ ;; -+ esac -+ else -+ shlibpath_overrides_runpath=yes -+ fi -+ ;; -+ -+os2*) -+ libname_spec='$name' -+ shrext_cmds=".dll" -+ need_lib_prefix=no -+ library_names_spec='$libname${shared_ext} $libname.a' -+ dynamic_linker='OS/2 ld.exe' -+ shlibpath_var=LIBPATH -+ ;; -+ -+osf3* | osf4* | osf5*) -+ version_type=osf -+ need_lib_prefix=no -+ need_version=no -+ soname_spec='${libname}${release}${shared_ext}$major' -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ shlibpath_var=LD_LIBRARY_PATH -+ sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" -+ sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" -+ ;; -+ -+rdos*) -+ dynamic_linker=no -+ ;; -+ -+solaris*) -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ # ldd complains unless libraries are executable -+ postinstall_cmds='chmod +x $lib' -+ ;; -+ -+sunos4*) -+ version_type=sunos -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' -+ finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ if test "$with_gnu_ld" = yes; then -+ need_lib_prefix=no -+ fi -+ need_version=yes -+ ;; -+ -+sysv4 | sysv4.3*) -+ version_type=linux -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ case $host_vendor in -+ sni) -+ shlibpath_overrides_runpath=no -+ need_lib_prefix=no -+ runpath_var=LD_RUN_PATH -+ ;; -+ siemens) -+ need_lib_prefix=no -+ ;; -+ motorola) -+ need_lib_prefix=no -+ need_version=no -+ shlibpath_overrides_runpath=no -+ sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' -+ ;; -+ esac -+ ;; -+ -+sysv4*MP*) -+ if test -d /usr/nec ;then -+ version_type=linux -+ library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' -+ soname_spec='$libname${shared_ext}.$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ fi -+ ;; -+ -+sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) -+ version_type=freebsd-elf -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=yes -+ hardcode_into_libs=yes -+ if test "$with_gnu_ld" = yes; then -+ sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' -+ else -+ sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' -+ case $host_os in -+ sco3.2v5*) -+ sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" -+ ;; -+ esac -+ fi -+ sys_lib_dlsearch_path_spec='/usr/lib' -+ ;; -+ -+tpf*) -+ # TPF is a cross-target only. Preferred cross-host = GNU/Linux. -+ version_type=linux -+ need_lib_prefix=no -+ need_version=no -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ shlibpath_var=LD_LIBRARY_PATH -+ shlibpath_overrides_runpath=no -+ hardcode_into_libs=yes -+ ;; -+ -+uts4*) -+ version_type=linux -+ library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' -+ soname_spec='${libname}${release}${shared_ext}$major' -+ shlibpath_var=LD_LIBRARY_PATH -+ ;; -+ -+*) -+ dynamic_linker=no -+ ;; -+esac -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 -+$as_echo "$dynamic_linker" >&6; } -+test "$dynamic_linker" = no && can_build_shared=no -+ -+variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -+if test "$GCC" = yes; then -+ variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -+fi -+ -+if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then -+ sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" -+fi -+if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then -+ sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 -+$as_echo_n "checking how to hardcode library paths into programs... " >&6; } -+hardcode_action_CXX= -+if test -n "$hardcode_libdir_flag_spec_CXX" || -+ test -n "$runpath_var_CXX" || -+ test "X$hardcode_automatic_CXX" = "Xyes" ; then -+ -+ # We can hardcode non-existent directories. -+ if test "$hardcode_direct_CXX" != no && -+ # If the only mechanism to avoid hardcoding is shlibpath_var, we -+ # have to relink, otherwise we might link with an installed library -+ # when we should be linking with a yet-to-be-installed one -+ ## test "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" != no && -+ test "$hardcode_minus_L_CXX" != no; then -+ # Linking always hardcodes the temporary library directory. -+ hardcode_action_CXX=relink -+ else -+ # We can link without hardcoding, and we can hardcode nonexisting dirs. -+ hardcode_action_CXX=immediate -+ fi -+else -+ # We cannot hardcode anything, or else we can only hardcode existing -+ # directories. -+ hardcode_action_CXX=unsupported -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 -+$as_echo "$hardcode_action_CXX" >&6; } -+ -+if test "$hardcode_action_CXX" = relink || -+ test "$inherit_rpath_CXX" = yes; then -+ # Fast installation is not supported -+ enable_fast_install=no -+elif test "$shlibpath_overrides_runpath" = yes || -+ test "$enable_shared" = no; then -+ # Fast installation is not necessary -+ enable_fast_install=needless -+fi -+ -+ -+ -+ -+ -+ -+ -+ fi # test -n "$compiler" -+ -+ CC=$lt_save_CC -+ LDCXX=$LD -+ LD=$lt_save_LD -+ GCC=$lt_save_GCC -+ with_gnu_ld=$lt_save_with_gnu_ld -+ lt_cv_path_LDCXX=$lt_cv_path_LD -+ lt_cv_path_LD=$lt_save_path_LD -+ lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld -+ lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld -+fi # test "$_lt_caught_CXX_error" != yes -+ -+ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ ac_config_commands="$ac_config_commands libtool" -+ -+ -+ -+ -+# Only expand once: -+ -+ -+ -+ -+ -+case $host in -+ *-cygwin* | *-mingw*) -+ # 'host' will be top-level target in the case of a target lib, -+ # we must compare to with_cross_host to decide if this is a native -+ # or cross-compiler and select where to install dlls appropriately. -+ if test -n "$with_cross_host" && -+ test x"$with_cross_host" != x"no"; then -+ lt_host_flags='-no-undefined -bindir "$(toolexeclibdir)"'; -+ else -+ lt_host_flags='-no-undefined -bindir "$(bindir)"'; -+ fi -+ ;; -+ *) -+ lt_host_flags= -+ ;; -+esac -+ -+ -+ -+ -+ -+ -+if test "$enable_vtable_verify" = yes; then -+ predep_objects_CXX="${predep_objects_CXX} ${glibcxx_builddir}/../libgcc/vtv_start.o" -+ postdep_objects_CXX="${postdep_objects_CXX} ${glibcxx_builddir}/../libgcc/vtv_end.o" -+fi -+ -+ -+# libtool variables for C++ shared and position-independent compiles. -+# -+# Use glibcxx_lt_pic_flag to designate the automake variable -+# used to encapsulate the default libtool approach to creating objects -+# with position-independent code. Default: -prefer-pic. -+# -+# Use glibcxx_compiler_shared_flag to designate a compile-time flags for -+# creating shared objects. Default: -D_GLIBCXX_SHARED. -+# -+# Use glibcxx_compiler_pic_flag to designate a compile-time flags for -+# creating position-independent objects. This varies with the target -+# hardware and operating system, but is often: -DPIC -fPIC. -+if test "$enable_shared" = yes; then -+ glibcxx_lt_pic_flag="-prefer-pic" -+ glibcxx_compiler_pic_flag="$lt_prog_compiler_pic_CXX" -+ glibcxx_compiler_shared_flag="-D_GLIBCXX_SHARED" -+ -+else -+ glibcxx_lt_pic_flag= -+ glibcxx_compiler_pic_flag= -+ glibcxx_compiler_shared_flag= -+fi -+ -+ -+ -+ -+# Override the libtool's pic_flag and pic_mode. -+# Do this step after AM_PROG_LIBTOOL, but before AC_OUTPUT. -+# NB: this impacts --with-pic and --without-pic. -+lt_prog_compiler_pic_CXX="$glibcxx_compiler_pic_flag $glibcxx_compiler_shared_flag" -+pic_mode='default' -+ -+# Eliminate -lstdc++ addition to postdeps for cross compiles. -+postdeps_CXX=`echo " $postdeps_CXX " | sed 's, -lstdc++ ,,g'` -+ -+# Possibly disable most of the library. -+## TODO: Consider skipping unncessary tests altogether in this case, rather -+## than just ignoring the results. Faster /and/ more correct, win win. -+ -+ @%:@ Check whether --enable-hosted-libstdcxx was given. -+if test "${enable_hosted_libstdcxx+set}" = set; then : -+ enableval=$enable_hosted_libstdcxx; -+else -+ case "$host" in -+ arm*-*-symbianelf*) -+ enable_hosted_libstdcxx=no -+ ;; -+ *) -+ enable_hosted_libstdcxx=yes -+ ;; -+ esac -+fi -+ -+ freestanding_flags= -+ if test "$enable_hosted_libstdcxx" = no; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: Only freestanding libraries will be built" >&5 -+$as_echo "$as_me: Only freestanding libraries will be built" >&6;} -+ is_hosted=no -+ hosted_define=0 -+ enable_abi_check=no -+ enable_libstdcxx_pch=no -+ if test "x$with_headers" = xno; then -+ freestanding_flags="-ffreestanding" -+ fi -+ else -+ is_hosted=yes -+ hosted_define=1 -+ fi -+ -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define _GLIBCXX_HOSTED $hosted_define -+_ACEOF -+ -+ FREESTANDING_FLAGS="$freestanding_flags" -+ -+ -+ -+# Enable descriptive messages to standard output on termination. -+ -+ @%:@ Check whether --enable-libstdcxx-verbose was given. -+if test "${enable_libstdcxx_verbose+set}" = set; then : -+ enableval=$enable_libstdcxx_verbose; -+else -+ enable_libstdcxx_verbose=yes -+fi -+ -+ if test x"$enable_libstdcxx_verbose" = xyes; then -+ verbose_define=1 -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: verbose termination messages are disabled" >&5 -+$as_echo "$as_me: verbose termination messages are disabled" >&6;} -+ verbose_define=0 -+ fi -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define _GLIBCXX_VERBOSE $verbose_define -+_ACEOF -+ -+ -+ -+# Enable compiler support that doesn't require linking. -+ -+ @%:@ Check whether --enable-libstdcxx-pch was given. -+if test "${enable_libstdcxx_pch+set}" = set; then : -+ enableval=$enable_libstdcxx_pch; -+ case "$enableval" in -+ yes|no) ;; -+ *) as_fn_error $? "Argument to enable/disable libstdcxx-pch must be yes or no" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_libstdcxx_pch=$is_hosted -+fi -+ -+ -+ if test $enable_libstdcxx_pch = yes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for compiler with PCH support" >&5 -+$as_echo_n "checking for compiler with PCH support... " >&6; } -+if ${glibcxx_cv_prog_CXX_pch+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -Werror -Winvalid-pch -Wno-deprecated" -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ echo '#include ' > conftest.h -+ if $CXX $CXXFLAGS $CPPFLAGS -x c++-header conftest.h \ -+ -o conftest.h.gch 1>&5 2>&1 && -+ echo '#error "pch failed"' > conftest.h && -+ echo '#include "conftest.h"' > conftest.cc && -+ $CXX -c $CXXFLAGS $CPPFLAGS conftest.cc 1>&5 2>&1 ; -+ then -+ glibcxx_cv_prog_CXX_pch=yes -+ else -+ glibcxx_cv_prog_CXX_pch=no -+ fi -+ rm -f conftest* -+ CXXFLAGS=$ac_save_CXXFLAGS -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_prog_CXX_pch" >&5 -+$as_echo "$glibcxx_cv_prog_CXX_pch" >&6; } -+ enable_libstdcxx_pch=$glibcxx_cv_prog_CXX_pch -+ fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for enabled PCH" >&5 -+$as_echo_n "checking for enabled PCH... " >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_libstdcxx_pch" >&5 -+$as_echo "$enable_libstdcxx_pch" >&6; } -+ -+ -+ if test $enable_libstdcxx_pch = yes; then -+ glibcxx_PCHFLAGS="-include bits/stdc++.h" -+ else -+ glibcxx_PCHFLAGS="" -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for thread model used by GCC" >&5 -+$as_echo_n "checking for thread model used by GCC... " >&6; } -+ target_thread_file=`$CXX -v 2>&1 | sed -n 's/^Thread model: //p'` -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $target_thread_file" >&5 -+$as_echo "$target_thread_file" >&6; } -+ -+case $target_thread_file in -+ aix) thread_header=config/rs6000/gthr-aix.h ;; -+ dce) thread_header=config/pa/gthr-dce.h ;; -+ gcn) thread_header=config/gcn/gthr-gcn.h ;; -+ lynx) thread_header=config/gthr-lynx.h ;; -+ mipssde) thread_header=config/mips/gthr-mipssde.h ;; -+ posix) thread_header=gthr-posix.h ;; -+ rtems) thread_header=config/gthr-rtems.h ;; -+ single) thread_header=gthr-single.h ;; -+ tpf) thread_header=config/s390/gthr-tpf.h ;; -+ vxworks) thread_header=config/gthr-vxworks.h ;; -+ win32) thread_header=config/i386/gthr-win32.h ;; -+esac -+ -+ -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ old_CXXFLAGS="$CXXFLAGS" -+ -+ # Do link tests if possible, instead asm tests, limited to some platforms -+ # see discussion in PR target/40134, PR libstdc++/40133 and the thread -+ # starting at http://gcc.gnu.org/ml/gcc-patches/2009-07/msg00322.html -+ atomic_builtins_link_tests=no -+ if test x$gcc_no_link != xyes; then -+ # Can do link tests. Limit to some tested platforms -+ case "$host" in -+ *-*-linux* | *-*-uclinux* | *-*-kfreebsd*-gnu | *-*-gnu*) -+ atomic_builtins_link_tests=yes -+ ;; -+ esac -+ fi -+ -+ if test x$atomic_builtins_link_tests = xyes; then -+ -+ # Do link tests. -+ -+ CXXFLAGS="$CXXFLAGS -fno-exceptions" -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atomic builtins for bool" >&5 -+$as_echo_n "checking for atomic builtins for bool... " >&6; } -+if ${glibcxx_cv_atomic_bool+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+typedef bool atomic_type; -+ atomic_type c1; -+ atomic_type c2; -+ atomic_type c3(0); -+ // N.B. __atomic_fetch_add is not supported for bool. -+ __atomic_compare_exchange_n(&c1, &c2, c3, true, __ATOMIC_ACQ_REL, -+ __ATOMIC_RELAXED); -+ __atomic_test_and_set(&c1, __ATOMIC_RELAXED); -+ __atomic_load_n(&c1, __ATOMIC_RELAXED); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_atomic_bool=yes -+else -+ glibcxx_cv_atomic_bool=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_atomic_bool" >&5 -+$as_echo "$glibcxx_cv_atomic_bool" >&6; } -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atomic builtins for short" >&5 -+$as_echo_n "checking for atomic builtins for short... " >&6; } -+if ${glibcxx_cv_atomic_short+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+typedef short atomic_type; -+ atomic_type c1; -+ atomic_type c2; -+ atomic_type c3(0); -+ __atomic_fetch_add(&c1, c2, __ATOMIC_RELAXED); -+ __atomic_compare_exchange_n(&c1, &c2, c3, true, __ATOMIC_ACQ_REL, -+ __ATOMIC_RELAXED); -+ __atomic_test_and_set(&c1, __ATOMIC_RELAXED); -+ __atomic_load_n(&c1, __ATOMIC_RELAXED); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_atomic_short=yes -+else -+ glibcxx_cv_atomic_short=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_atomic_short" >&5 -+$as_echo "$glibcxx_cv_atomic_short" >&6; } -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atomic builtins for int" >&5 -+$as_echo_n "checking for atomic builtins for int... " >&6; } -+if ${glibcxx_cv_atomic_int+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+typedef int atomic_type; -+ atomic_type c1; -+ atomic_type c2; -+ atomic_type c3(0); -+ __atomic_fetch_add(&c1, c2, __ATOMIC_RELAXED); -+ __atomic_compare_exchange_n(&c1, &c2, c3, true, __ATOMIC_ACQ_REL, -+ __ATOMIC_RELAXED); -+ __atomic_test_and_set(&c1, __ATOMIC_RELAXED); -+ __atomic_load_n(&c1, __ATOMIC_RELAXED); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_atomic_int=yes -+else -+ glibcxx_cv_atomic_int=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_atomic_int" >&5 -+$as_echo "$glibcxx_cv_atomic_int" >&6; } -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atomic builtins for long long" >&5 -+$as_echo_n "checking for atomic builtins for long long... " >&6; } -+if ${glibcxx_cv_atomic_long_long+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+typedef long long atomic_type; -+ atomic_type c1; -+ atomic_type c2; -+ atomic_type c3(0); -+ __atomic_fetch_add(&c1, c2, __ATOMIC_RELAXED); -+ __atomic_compare_exchange_n(&c1, &c2, c3, true, __ATOMIC_ACQ_REL, -+ __ATOMIC_RELAXED); -+ __atomic_test_and_set(&c1, __ATOMIC_RELAXED); -+ __atomic_load_n(&c1, __ATOMIC_RELAXED); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_atomic_long_long=yes -+else -+ glibcxx_cv_atomic_long_long=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_atomic_long_long" >&5 -+$as_echo "$glibcxx_cv_atomic_long_long" >&6; } -+ -+ else -+ -+ # Do asm tests. -+ -+ # Compile unoptimized. -+ CXXFLAGS='-O0 -S' -+ -+ # Fake what AC_TRY_COMPILE does. -+ -+ cat > conftest.$ac_ext << EOF -+#line __oline__ "configure" -+int main() -+{ -+ typedef bool atomic_type; -+ atomic_type c1; -+ atomic_type c2; -+ atomic_type c3(0); -+ // N.B. __atomic_fetch_add is not supported for bool. -+ __atomic_compare_exchange_n(&c1, &c2, c3, true, __ATOMIC_ACQ_REL, -+ __ATOMIC_RELAXED); -+ __atomic_test_and_set(&c1, __ATOMIC_RELAXED); -+ __atomic_load_n(&c1, __ATOMIC_RELAXED); -+ -+ return 0; -+} -+EOF -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atomic builtins for bool" >&5 -+$as_echo_n "checking for atomic builtins for bool... " >&6; } -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ if grep __atomic_ conftest.s >/dev/null 2>&1 ; then -+ glibcxx_cv_atomic_bool=no -+ else -+ glibcxx_cv_atomic_bool=yes -+ fi -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_atomic_bool" >&5 -+$as_echo "$glibcxx_cv_atomic_bool" >&6; } -+ rm -f conftest* -+ -+ cat > conftest.$ac_ext << EOF -+#line __oline__ "configure" -+int main() -+{ -+ typedef short atomic_type; -+ atomic_type c1; -+ atomic_type c2; -+ atomic_type c3(0); -+ __atomic_fetch_add(&c1, c2, __ATOMIC_RELAXED); -+ __atomic_compare_exchange_n(&c1, &c2, c3, true, __ATOMIC_ACQ_REL, -+ __ATOMIC_RELAXED); -+ __atomic_test_and_set(&c1, __ATOMIC_RELAXED); -+ __atomic_load_n(&c1, __ATOMIC_RELAXED); -+ -+ return 0; -+} -+EOF -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atomic builtins for short" >&5 -+$as_echo_n "checking for atomic builtins for short... " >&6; } -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ if grep __atomic_ conftest.s >/dev/null 2>&1 ; then -+ glibcxx_cv_atomic_short=no -+ else -+ glibcxx_cv_atomic_short=yes -+ fi -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_atomic_short" >&5 -+$as_echo "$glibcxx_cv_atomic_short" >&6; } -+ rm -f conftest* -+ -+ cat > conftest.$ac_ext << EOF -+#line __oline__ "configure" -+int main() -+{ -+ // NB: _Atomic_word not necessarily int. -+ typedef int atomic_type; -+ atomic_type c1; -+ atomic_type c2; -+ atomic_type c3(0); -+ __atomic_fetch_add(&c1, c2, __ATOMIC_RELAXED); -+ __atomic_compare_exchange_n(&c1, &c2, c3, true, __ATOMIC_ACQ_REL, -+ __ATOMIC_RELAXED); -+ __atomic_test_and_set(&c1, __ATOMIC_RELAXED); -+ __atomic_load_n(&c1, __ATOMIC_RELAXED); -+ -+ return 0; -+} -+EOF -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atomic builtins for int" >&5 -+$as_echo_n "checking for atomic builtins for int... " >&6; } -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ if grep __atomic_ conftest.s >/dev/null 2>&1 ; then -+ glibcxx_cv_atomic_int=no -+ else -+ glibcxx_cv_atomic_int=yes -+ fi -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_atomic_int" >&5 -+$as_echo "$glibcxx_cv_atomic_int" >&6; } -+ rm -f conftest* -+ -+ cat > conftest.$ac_ext << EOF -+#line __oline__ "configure" -+int main() -+{ -+ typedef long long atomic_type; -+ atomic_type c1; -+ atomic_type c2; -+ atomic_type c3(0); -+ __atomic_fetch_add(&c1, c2, __ATOMIC_RELAXED); -+ __atomic_compare_exchange_n(&c1, &c2, c3, true, __ATOMIC_ACQ_REL, -+ __ATOMIC_RELAXED); -+ __atomic_test_and_set(&c1, __ATOMIC_RELAXED); -+ __atomic_load_n(&c1, __ATOMIC_RELAXED); -+ -+ return 0; -+} -+EOF -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atomic builtins for long long" >&5 -+$as_echo_n "checking for atomic builtins for long long... " >&6; } -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ if grep __atomic_ conftest.s >/dev/null 2>&1 ; then -+ glibcxx_cv_atomic_long_long=no -+ else -+ glibcxx_cv_atomic_long_long=yes -+ fi -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_atomic_long_long" >&5 -+$as_echo "$glibcxx_cv_atomic_long_long" >&6; } -+ rm -f conftest* -+ -+ fi -+ -+ CXXFLAGS="$old_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ # Set atomicity_dir to builtins if all but the long long test above passes, -+ # or if the builtins were already chosen (e.g. by configure.host). -+ if { test "$glibcxx_cv_atomic_bool" = yes \ -+ && test "$glibcxx_cv_atomic_short" = yes \ -+ && test "$glibcxx_cv_atomic_int" = yes; } \ -+ || test "$atomicity_dir" = "cpu/generic/atomicity_builtins"; then -+ -+$as_echo "@%:@define _GLIBCXX_ATOMIC_BUILTINS 1" >>confdefs.h -+ -+ atomicity_dir=cpu/generic/atomicity_builtins -+ fi -+ -+ # If still generic, set to mutex. -+ if test $atomicity_dir = "cpu/generic" ; then -+ atomicity_dir=cpu/generic/atomicity_mutex -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: No native atomic operations are provided for this platform." >&5 -+$as_echo "$as_me: WARNING: No native atomic operations are provided for this platform." >&2;} -+ if test "x$target_thread_file" = xsingle; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: They cannot be faked when thread support is disabled." >&5 -+$as_echo "$as_me: WARNING: They cannot be faked when thread support is disabled." >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Thread-safety of certain classes is not guaranteed." >&5 -+$as_echo "$as_me: WARNING: Thread-safety of certain classes is not guaranteed." >&2;} -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: They will be faked using a mutex." >&5 -+$as_echo "$as_me: WARNING: They will be faked using a mutex." >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Performance of certain classes will degrade as a result." >&5 -+$as_echo "$as_me: WARNING: Performance of certain classes will degrade as a result." >&2;} -+ fi -+ fi -+ -+ -+ -+ -+ -+@%:@ Check whether --with-libstdcxx-lock-policy was given. -+if test "${with_libstdcxx_lock_policy+set}" = set; then : -+ withval=$with_libstdcxx_lock_policy; libstdcxx_atomic_lock_policy=$withval -+else -+ libstdcxx_atomic_lock_policy=auto -+fi -+ -+ -+ case "$libstdcxx_atomic_lock_policy" in -+ atomic|mutex|auto) ;; -+ *) as_fn_error $? "Invalid argument for --with-libstdcxx-lock-policy" "$LINENO" 5 ;; -+ esac -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for lock policy for shared_ptr reference counts" >&5 -+$as_echo_n "checking for lock policy for shared_ptr reference counts... " >&6; } -+ -+ if test x"$libstdcxx_atomic_lock_policy" = x"auto"; then -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+ #if defined __riscv -+ # error "Defaulting to mutex-based locks for ABI compatibility" -+ #endif -+ #if ! defined __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 -+ # error "No 2-byte compare-and-swap" -+ #elif ! defined __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 -+ # error "No 4-byte compare-and-swap" -+ #endif -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ libstdcxx_atomic_lock_policy=atomic -+else -+ libstdcxx_atomic_lock_policy=mutex -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ fi -+ -+ if test x"$libstdcxx_atomic_lock_policy" = x"atomic"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: atomic" >&5 -+$as_echo "atomic" >&6; } -+ -+$as_echo "@%:@define HAVE_ATOMIC_LOCK_POLICY 1" >>confdefs.h -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: mutex" >&5 -+$as_echo "mutex" >&6; } -+ fi -+ -+ -+ -+ -+ # Fake what AC_TRY_COMPILE does, without linking as this is -+ # unnecessary for this test. -+ -+ cat > conftest.$ac_ext << EOF -+#line __oline__ "configure" -+int main() -+{ -+ _Decimal32 d1; -+ _Decimal64 d2; -+ _Decimal128 d3; -+ return 0; -+} -+EOF -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO/IEC TR 24733 " >&5 -+$as_echo_n "checking for ISO/IEC TR 24733 ... " >&6; } -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_DECIMAL_FLOAT 1" >>confdefs.h -+ -+ enable_dfp=yes -+ else -+ enable_dfp=no -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_dfp" >&5 -+$as_echo "$enable_dfp" >&6; } -+ rm -f conftest* -+ -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ -+ # Fake what AC_TRY_COMPILE does, without linking as this is -+ # unnecessary for this test. -+ -+ cat > conftest.$ac_ext << EOF -+#line __oline__ "configure" -+template -+ struct same -+ { typedef T2 type; }; -+ -+template -+ struct same; -+ -+int main() -+{ -+ typename same::type f1; -+ typename same::type f2; -+} -+EOF -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __float128" >&5 -+$as_echo_n "checking for __float128... " >&6; } -+ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 -+ (eval $ac_compile) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; then -+ enable_float128=yes -+ else -+ enable_float128=no -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_float128" >&5 -+$as_echo "$enable_float128" >&6; } -+ -+ rm -f conftest* -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+if test "$enable_float128" = yes; then -+ port_specific_symbol_files="$port_specific_symbol_files \$(top_srcdir)/config/abi/pre/float128.ver" -+fi -+ -+# Checks for compiler support that doesn't require linking. -+ -+ # All these tests are for C++; save the language and the compiler flags. -+ # The CXXFLAGS thing is suspicious, but based on similar bits previously -+ # found in GLIBCXX_CONFIGURE. -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ -+ # Check for -ffunction-sections -fdata-sections -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for g++ that supports -ffunction-sections -fdata-sections" >&5 -+$as_echo_n "checking for g++ that supports -ffunction-sections -fdata-sections... " >&6; } -+ CXXFLAGS='-g -Werror -ffunction-sections -fdata-sections' -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+int foo; void bar() { }; -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_fdsections=yes -+else -+ ac_fdsections=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ if test "$ac_test_CXXFLAGS" = set; then -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ else -+ # this is the suspicious part -+ CXXFLAGS='' -+ fi -+ if test x"$ac_fdsections" = x"yes"; then -+ SECTION_FLAGS='-ffunction-sections -fdata-sections' -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_fdsections" >&5 -+$as_echo "$ac_fdsections" >&6; } -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ -+# Enable all the variable C++ runtime options that don't require linking. -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for underlying I/O to use" >&5 -+$as_echo_n "checking for underlying I/O to use... " >&6; } -+ @%:@ Check whether --enable-cstdio was given. -+if test "${enable_cstdio+set}" = set; then : -+ enableval=$enable_cstdio; -+ case "$enableval" in -+ stdio|stdio_posix|stdio_pure) ;; -+ *) as_fn_error $? "Unknown argument to enable/disable cstdio" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_cstdio=stdio -+fi -+ -+ -+ -+ # The only available I/O model is based on stdio, via basic_file_stdio. -+ # The default "stdio" is actually "stdio + POSIX" because it uses fdopen(3) -+ # to get a file descriptor and then uses read(3) and write(3) with it. -+ # The "stdio_pure" model doesn't use fdopen and only uses FILE* for I/O. -+ case ${enable_cstdio} in -+ stdio*) -+ CSTDIO_H=config/io/c_io_stdio.h -+ BASIC_FILE_H=config/io/basic_file_stdio.h -+ BASIC_FILE_CC=config/io/basic_file_stdio.cc -+ -+ if test "x$enable_cstdio" = "xstdio_pure" ; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: stdio (without POSIX read/write)" >&5 -+$as_echo "stdio (without POSIX read/write)" >&6; } -+ -+$as_echo "@%:@define _GLIBCXX_USE_STDIO_PURE 1" >>confdefs.h -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: stdio (with POSIX read/write)" >&5 -+$as_echo "stdio (with POSIX read/write)" >&6; } -+ fi -+ ;; -+ esac -+ -+ -+ -+ -+ -+ -+ @%:@ Check whether --enable-clocale was given. -+if test "${enable_clocale+set}" = set; then : -+ enableval=$enable_clocale; -+ case "$enableval" in -+ generic|gnu|ieee_1003.1-2001|newlib|yes|no|auto) ;; -+ *) as_fn_error $? "Unknown argument to enable/disable clocale" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_clocale=auto -+fi -+ -+ -+ -+ # Deal with gettext issues. Default to not using it (=no) until we detect -+ # support for it later. Let the user turn it off via --e/d, but let that -+ # default to on for easier handling. -+ USE_NLS=no -+ @%:@ Check whether --enable-nls was given. -+if test "${enable_nls+set}" = set; then : -+ enableval=$enable_nls; -+else -+ enable_nls=yes -+fi -+ -+ -+ # Either a known package, or "auto" -+ if test $enable_clocale = no || test $enable_clocale = yes; then -+ enable_clocale=auto -+ fi -+ enable_clocale_flag=$enable_clocale -+ -+ # Probe for locale model to use if none specified. -+ # Default to "generic". -+ if test $enable_clocale_flag = auto; then -+ case ${target_os} in -+ linux* | gnu* | kfreebsd*-gnu | knetbsd*-gnu) -+ enable_clocale_flag=gnu -+ ;; -+ darwin*) -+ enable_clocale_flag=darwin -+ ;; -+ vxworks*) -+ enable_clocale_flag=vxworks -+ ;; -+ dragonfly* | freebsd*) -+ enable_clocale_flag=dragonfly -+ ;; -+ openbsd*) -+ enable_clocale_flag=newlib -+ ;; -+ *) -+ if test x"$with_newlib" = x"yes"; then -+ enable_clocale_flag=newlib -+ else -+ enable_clocale_flag=generic -+ fi -+ ;; -+ esac -+ fi -+ -+ # Sanity check model, and test for special functionality. -+ if test $enable_clocale_flag = gnu; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+ #include -+ #if (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)) && !defined(__UCLIBC__) -+ _GLIBCXX_ok -+ #endif -+ -+_ACEOF -+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | -+ $EGREP "_GLIBCXX_ok" >/dev/null 2>&1; then : -+ enable_clocale_flag=gnu -+else -+ enable_clocale_flag=generic -+fi -+rm -f conftest* -+ -+ -+ # Set it to scream when it hurts. -+ ac_save_CFLAGS="$CFLAGS" -+ CFLAGS="-Wimplicit-function-declaration -Werror" -+ -+ # Use strxfrm_l if available. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#define _GNU_SOURCE 1 -+ #include -+ #include -+int -+main () -+{ -+char s[128]; __locale_t loc; strxfrm_l(s, "C", 5, loc); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ -+$as_echo "@%:@define HAVE_STRXFRM_L 1" >>confdefs.h -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+ # Use strerror_l if available. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#define _GNU_SOURCE 1 -+ #include -+ #include -+int -+main () -+{ -+__locale_t loc; strerror_l(5, loc); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ -+$as_echo "@%:@define HAVE_STRERROR_L 1" >>confdefs.h -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+ CFLAGS="$ac_save_CFLAGS" -+ fi -+ -+ # Perhaps use strerror_r if available, and strerror_l isn't. -+ ac_save_CFLAGS="$CFLAGS" -+ CFLAGS="-Wimplicit-function-declaration -Werror" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#define _GNU_SOURCE 1 -+ #include -+ #include -+int -+main () -+{ -+char s[128]; strerror_r(5, s, 128); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ -+$as_echo "@%:@define HAVE_STRERROR_R 1" >>confdefs.h -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ CFLAGS="$ac_save_CFLAGS" -+ -+ # Set configure bits for specified locale package -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C locale to use" >&5 -+$as_echo_n "checking for C locale to use... " >&6; } -+ case ${enable_clocale_flag} in -+ generic) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: generic" >&5 -+$as_echo "generic" >&6; } -+ -+ CLOCALE_H=config/locale/generic/c_locale.h -+ CLOCALE_CC=config/locale/generic/c_locale.cc -+ CCODECVT_CC=config/locale/generic/codecvt_members.cc -+ CCOLLATE_CC=config/locale/generic/collate_members.cc -+ CCTYPE_CC=config/locale/generic/ctype_members.cc -+ CMESSAGES_H=config/locale/generic/messages_members.h -+ CMESSAGES_CC=config/locale/generic/messages_members.cc -+ CMONEY_CC=config/locale/generic/monetary_members.cc -+ CNUMERIC_CC=config/locale/generic/numeric_members.cc -+ CTIME_H=config/locale/generic/time_members.h -+ CTIME_CC=config/locale/generic/time_members.cc -+ CLOCALE_INTERNAL_H=config/locale/generic/c++locale_internal.h -+ ;; -+ darwin) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: darwin" >&5 -+$as_echo "darwin" >&6; } -+ -+ CLOCALE_H=config/locale/generic/c_locale.h -+ CLOCALE_CC=config/locale/generic/c_locale.cc -+ CCODECVT_CC=config/locale/generic/codecvt_members.cc -+ CCOLLATE_CC=config/locale/generic/collate_members.cc -+ CCTYPE_CC=config/locale/darwin/ctype_members.cc -+ CMESSAGES_H=config/locale/generic/messages_members.h -+ CMESSAGES_CC=config/locale/generic/messages_members.cc -+ CMONEY_CC=config/locale/generic/monetary_members.cc -+ CNUMERIC_CC=config/locale/generic/numeric_members.cc -+ CTIME_H=config/locale/generic/time_members.h -+ CTIME_CC=config/locale/generic/time_members.cc -+ CLOCALE_INTERNAL_H=config/locale/generic/c++locale_internal.h -+ ;; -+ vxworks) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: vxworks" >&5 -+$as_echo "vxworks" >&6; } -+ -+ CLOCALE_H=config/locale/generic/c_locale.h -+ CLOCALE_CC=config/locale/generic/c_locale.cc -+ CCODECVT_CC=config/locale/generic/codecvt_members.cc -+ CCOLLATE_CC=config/locale/generic/collate_members.cc -+ CCTYPE_CC=config/locale/vxworks/ctype_members.cc -+ CMESSAGES_H=config/locale/generic/messages_members.h -+ CMESSAGES_CC=config/locale/generic/messages_members.cc -+ CMONEY_CC=config/locale/generic/monetary_members.cc -+ CNUMERIC_CC=config/locale/generic/numeric_members.cc -+ CTIME_H=config/locale/generic/time_members.h -+ CTIME_CC=config/locale/generic/time_members.cc -+ CLOCALE_INTERNAL_H=config/locale/generic/c++locale_internal.h -+ ;; -+ dragonfly) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: dragonfly or freebsd" >&5 -+$as_echo "dragonfly or freebsd" >&6; } -+ -+ CLOCALE_H=config/locale/dragonfly/c_locale.h -+ CLOCALE_CC=config/locale/dragonfly/c_locale.cc -+ CCODECVT_CC=config/locale/dragonfly/codecvt_members.cc -+ CCOLLATE_CC=config/locale/dragonfly/collate_members.cc -+ CCTYPE_CC=config/locale/dragonfly/ctype_members.cc -+ CMESSAGES_H=config/locale/generic/messages_members.h -+ CMESSAGES_CC=config/locale/generic/messages_members.cc -+ CMONEY_CC=config/locale/dragonfly/monetary_members.cc -+ CNUMERIC_CC=config/locale/dragonfly/numeric_members.cc -+ CTIME_H=config/locale/dragonfly/time_members.h -+ CTIME_CC=config/locale/dragonfly/time_members.cc -+ CLOCALE_INTERNAL_H=config/locale/generic/c++locale_internal.h -+ ;; -+ -+ gnu) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: gnu" >&5 -+$as_echo "gnu" >&6; } -+ -+ # Declare intention to use gettext, and add support for specific -+ # languages. -+ # For some reason, ALL_LINGUAS has to be before AM-GNU-GETTEXT -+ ALL_LINGUAS="de fr" -+ -+ # Don't call AM-GNU-GETTEXT here. Instead, assume glibc. -+ # Extract the first word of "msgfmt", so it can be a program name with args. -+set dummy msgfmt; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_check_msgfmt+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$check_msgfmt"; then -+ ac_cv_prog_check_msgfmt="$check_msgfmt" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_check_msgfmt="yes" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+ test -z "$ac_cv_prog_check_msgfmt" && ac_cv_prog_check_msgfmt="no" -+fi -+fi -+check_msgfmt=$ac_cv_prog_check_msgfmt -+if test -n "$check_msgfmt"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $check_msgfmt" >&5 -+$as_echo "$check_msgfmt" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ if test x"$check_msgfmt" = x"yes" && test x"$enable_nls" = x"yes"; then -+ USE_NLS=yes -+ fi -+ # Export the build objects. -+ for ling in $ALL_LINGUAS; do \ -+ glibcxx_MOFILES="$glibcxx_MOFILES $ling.mo"; \ -+ glibcxx_POFILES="$glibcxx_POFILES $ling.po"; \ -+ done -+ -+ -+ -+ CLOCALE_H=config/locale/gnu/c_locale.h -+ CLOCALE_CC=config/locale/gnu/c_locale.cc -+ CCODECVT_CC=config/locale/gnu/codecvt_members.cc -+ CCOLLATE_CC=config/locale/gnu/collate_members.cc -+ CCTYPE_CC=config/locale/gnu/ctype_members.cc -+ CMESSAGES_H=config/locale/gnu/messages_members.h -+ CMESSAGES_CC=config/locale/gnu/messages_members.cc -+ CMONEY_CC=config/locale/gnu/monetary_members.cc -+ CNUMERIC_CC=config/locale/gnu/numeric_members.cc -+ CTIME_H=config/locale/gnu/time_members.h -+ CTIME_CC=config/locale/gnu/time_members.cc -+ CLOCALE_INTERNAL_H=config/locale/gnu/c++locale_internal.h -+ ;; -+ ieee_1003.1-2001) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: IEEE 1003.1" >&5 -+$as_echo "IEEE 1003.1" >&6; } -+ -+ CLOCALE_H=config/locale/ieee_1003.1-2001/c_locale.h -+ CLOCALE_CC=config/locale/ieee_1003.1-2001/c_locale.cc -+ CCODECVT_CC=config/locale/generic/codecvt_members.cc -+ CCOLLATE_CC=config/locale/generic/collate_members.cc -+ CCTYPE_CC=config/locale/generic/ctype_members.cc -+ CMESSAGES_H=config/locale/ieee_1003.1-2001/messages_members.h -+ CMESSAGES_CC=config/locale/ieee_1003.1-2001/messages_members.cc -+ CMONEY_CC=config/locale/generic/monetary_members.cc -+ CNUMERIC_CC=config/locale/generic/numeric_members.cc -+ CTIME_H=config/locale/generic/time_members.h -+ CTIME_CC=config/locale/generic/time_members.cc -+ CLOCALE_INTERNAL_H=config/locale/generic/c++locale_internal.h -+ ;; -+ newlib) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: newlib" >&5 -+$as_echo "newlib" >&6; } -+ -+ CLOCALE_H=config/locale/generic/c_locale.h -+ CLOCALE_CC=config/locale/generic/c_locale.cc -+ CCODECVT_CC=config/locale/generic/codecvt_members.cc -+ CCOLLATE_CC=config/locale/generic/collate_members.cc -+ CCTYPE_CC=config/locale/newlib/ctype_members.cc -+ CMESSAGES_H=config/locale/generic/messages_members.h -+ CMESSAGES_CC=config/locale/generic/messages_members.cc -+ CMONEY_CC=config/locale/generic/monetary_members.cc -+ CNUMERIC_CC=config/locale/generic/numeric_members.cc -+ CTIME_H=config/locale/generic/time_members.h -+ CTIME_CC=config/locale/generic/time_members.cc -+ CLOCALE_INTERNAL_H=config/locale/generic/c++locale_internal.h -+ ;; -+ esac -+ -+ # This is where the testsuite looks for locale catalogs, using the -+ # -DLOCALEDIR define during testsuite compilation. -+ glibcxx_localedir=${glibcxx_builddir}/po/share/locale -+ -+ -+ # A standalone libintl (e.g., GNU libintl) may be in use. -+ if test $USE_NLS = yes; then -+ for ac_header in libintl.h -+do : -+ ac_fn_c_check_header_mongrel "$LINENO" "libintl.h" "ac_cv_header_libintl_h" "$ac_includes_default" -+if test "x$ac_cv_header_libintl_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LIBINTL_H 1 -+_ACEOF -+ -+else -+ USE_NLS=no -+fi -+ -+done -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing gettext" >&5 -+$as_echo_n "checking for library containing gettext... " >&6; } -+if ${ac_cv_search_gettext+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_func_search_save_LIBS=$LIBS -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char gettext (); -+int -+main () -+{ -+return gettext (); -+ ; -+ return 0; -+} -+_ACEOF -+for ac_lib in '' intl; do -+ if test -z "$ac_lib"; then -+ ac_res="none required" -+ else -+ ac_res=-l$ac_lib -+ LIBS="-l$ac_lib $ac_func_search_save_LIBS" -+ fi -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_search_gettext=$ac_res -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext -+ if ${ac_cv_search_gettext+:} false; then : -+ break -+fi -+done -+if ${ac_cv_search_gettext+:} false; then : -+ -+else -+ ac_cv_search_gettext=no -+fi -+rm conftest.$ac_ext -+LIBS=$ac_func_search_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_gettext" >&5 -+$as_echo "$ac_cv_search_gettext" >&6; } -+ac_res=$ac_cv_search_gettext -+if test "$ac_res" != no; then : -+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" -+ -+else -+ USE_NLS=no -+fi -+ -+ fi -+ if test $USE_NLS = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_NLS 1" >>confdefs.h -+ -+ fi -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for std::allocator base class" >&5 -+$as_echo_n "checking for std::allocator base class... " >&6; } -+ @%:@ Check whether --enable-libstdcxx-allocator was given. -+if test "${enable_libstdcxx_allocator+set}" = set; then : -+ enableval=$enable_libstdcxx_allocator; -+ case "$enableval" in -+ new|malloc|yes|no|auto) ;; -+ *) as_fn_error $? "Unknown argument to enable/disable libstdcxx-allocator" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_libstdcxx_allocator=auto -+fi -+ -+ -+ -+ # If they didn't use this option switch, or if they specified --enable -+ # with no specific model, we'll have to look for one. If they -+ # specified --disable (???), do likewise. -+ if test $enable_libstdcxx_allocator = no || -+ test $enable_libstdcxx_allocator = yes; -+ then -+ enable_libstdcxx_allocator=auto -+ fi -+ -+ # Either a known package, or "auto". Auto implies the default choice -+ # for a particular platform. -+ enable_libstdcxx_allocator_flag=$enable_libstdcxx_allocator -+ -+ # Probe for host-specific support if no specific model is specified. -+ # Default to "new". -+ if test $enable_libstdcxx_allocator_flag = auto; then -+ case ${target_os} in -+ linux* | gnu* | kfreebsd*-gnu | knetbsd*-gnu) -+ enable_libstdcxx_allocator_flag=new -+ ;; -+ *) -+ enable_libstdcxx_allocator_flag=new -+ ;; -+ esac -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_libstdcxx_allocator_flag" >&5 -+$as_echo "$enable_libstdcxx_allocator_flag" >&6; } -+ -+ -+ # Set configure bits for specified locale package -+ case ${enable_libstdcxx_allocator_flag} in -+ malloc) -+ ALLOCATOR_H=config/allocator/malloc_allocator_base.h -+ ALLOCATOR_NAME=__gnu_cxx::malloc_allocator -+ ;; -+ new) -+ ALLOCATOR_H=config/allocator/new_allocator_base.h -+ ALLOCATOR_NAME=__gnu_cxx::new_allocator -+ ;; -+ esac -+ -+ -+ -+ -+ -+ -+ @%:@ Check whether --enable-cheaders-obsolete was given. -+if test "${enable_cheaders_obsolete+set}" = set; then : -+ enableval=$enable_cheaders_obsolete; -+ case "$enableval" in -+ yes|no) ;; -+ *) as_fn_error $? "Argument to enable/disable cheaders-obsolete must be yes or no" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_cheaders_obsolete=no -+fi -+ -+ -+ @%:@ Check whether --enable-cheaders was given. -+if test "${enable_cheaders+set}" = set; then : -+ enableval=$enable_cheaders; -+ case "$enableval" in -+ c|c_global|c_std) ;; -+ *) as_fn_error $? "Unknown argument to enable/disable cheaders" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_cheaders=$c_model -+fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: \"C\" header strategy set to $enable_cheaders" >&5 -+$as_echo "$as_me: \"C\" header strategy set to $enable_cheaders" >&6;} -+ if test $enable_cheaders = c_std ; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: the --enable-cheaders=c_std configuration is obsolete, c_global should be used instead" >&5 -+$as_echo "$as_me: WARNING: the --enable-cheaders=c_std configuration is obsolete, c_global should be used instead" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: if you are unable to use c_global please report a bug or inform libstdc++@gcc.gnu.org" >&5 -+$as_echo "$as_me: WARNING: if you are unable to use c_global please report a bug or inform libstdc++@gcc.gnu.org" >&2;} -+ if test $enable_cheaders_obsolete != yes ; then -+ as_fn_error $? "use --enable-cheaders-obsolete to use c_std \"C\" headers" "$LINENO" 5 -+ fi -+ fi -+ -+ C_INCLUDE_DIR='${glibcxx_srcdir}/include/'$enable_cheaders -+ -+ # Allow overrides to configure.host here. -+ if test $enable_cheaders = c_global; then -+ c_compatibility=yes -+ fi -+ -+ -+ -+ -+ -+ -+ -+ @%:@ Check whether --enable-long-long was given. -+if test "${enable_long_long+set}" = set; then : -+ enableval=$enable_long_long; -+ case "$enableval" in -+ yes|no) ;; -+ *) as_fn_error $? "Argument to enable/disable long-long must be yes or no" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_long_long=yes -+fi -+ -+ -+ if test $enable_long_long = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_LONG_LONG 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for enabled long long specializations" >&5 -+$as_echo_n "checking for enabled long long specializations... " >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_long_long" >&5 -+$as_echo "$enable_long_long" >&6; } -+ -+ -+ @%:@ Check whether --enable-wchar_t was given. -+if test "${enable_wchar_t+set}" = set; then : -+ enableval=$enable_wchar_t; -+ case "$enableval" in -+ yes|no) ;; -+ *) as_fn_error $? "Argument to enable/disable wchar_t must be yes or no" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_wchar_t=yes -+fi -+ -+ -+ -+ # Test wchar.h for mbstate_t, which is needed for char_traits and fpos. -+ for ac_header in wchar.h -+do : -+ ac_fn_c_check_header_mongrel "$LINENO" "wchar.h" "ac_cv_header_wchar_h" "$ac_includes_default" -+if test "x$ac_cv_header_wchar_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_WCHAR_H 1 -+_ACEOF -+ ac_has_wchar_h=yes -+else -+ ac_has_wchar_h=no -+fi -+ -+done -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mbstate_t" >&5 -+$as_echo_n "checking for mbstate_t... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+mbstate_t teststate; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ have_mbstate_t=yes -+else -+ have_mbstate_t=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_mbstate_t" >&5 -+$as_echo "$have_mbstate_t" >&6; } -+ if test x"$have_mbstate_t" = xyes; then -+ -+$as_echo "@%:@define HAVE_MBSTATE_T 1" >>confdefs.h -+ -+ fi -+ -+ # Test it always, for use in GLIBCXX_ENABLE_C99, together with -+ # ac_has_wchar_h. -+ for ac_header in wctype.h -+do : -+ ac_fn_c_check_header_mongrel "$LINENO" "wctype.h" "ac_cv_header_wctype_h" "$ac_includes_default" -+if test "x$ac_cv_header_wctype_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_WCTYPE_H 1 -+_ACEOF -+ ac_has_wctype_h=yes -+else -+ ac_has_wctype_h=no -+fi -+ -+done -+ -+ -+ if test x"$enable_wchar_t" = x"yes"; then -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ -+ if test x"$ac_has_wchar_h" = xyes && -+ test x"$ac_has_wctype_h" = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ wint_t i; -+ long l = WEOF; -+ long j = WCHAR_MIN; -+ long k = WCHAR_MAX; -+ namespace test -+ { -+ using ::btowc; -+ using ::fgetwc; -+ using ::fgetws; -+ using ::fputwc; -+ using ::fputws; -+ using ::fwide; -+ using ::fwprintf; -+ using ::fwscanf; -+ using ::getwc; -+ using ::getwchar; -+ using ::mbrlen; -+ using ::mbrtowc; -+ using ::mbsinit; -+ using ::mbsrtowcs; -+ using ::putwc; -+ using ::putwchar; -+ using ::swprintf; -+ using ::swscanf; -+ using ::ungetwc; -+ using ::vfwprintf; -+ using ::vswprintf; -+ using ::vwprintf; -+ using ::wcrtomb; -+ using ::wcscat; -+ using ::wcschr; -+ using ::wcscmp; -+ using ::wcscoll; -+ using ::wcscpy; -+ using ::wcscspn; -+ using ::wcsftime; -+ using ::wcslen; -+ using ::wcsncat; -+ using ::wcsncmp; -+ using ::wcsncpy; -+ using ::wcspbrk; -+ using ::wcsrchr; -+ using ::wcsrtombs; -+ using ::wcsspn; -+ using ::wcsstr; -+ using ::wcstod; -+ using ::wcstok; -+ using ::wcstol; -+ using ::wcstoul; -+ using ::wcsxfrm; -+ using ::wctob; -+ using ::wmemchr; -+ using ::wmemcmp; -+ using ::wmemcpy; -+ using ::wmemmove; -+ using ::wmemset; -+ using ::wprintf; -+ using ::wscanf; -+ } -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ -+else -+ enable_wchar_t=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ else -+ enable_wchar_t=no -+ fi -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ fi -+ -+ if test x"$enable_wchar_t" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_WCHAR_T 1" >>confdefs.h -+ -+ fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for enabled wchar_t specializations" >&5 -+$as_echo_n "checking for enabled wchar_t specializations... " >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_wchar_t" >&5 -+$as_echo "$enable_wchar_t" >&6; } -+ -+ -+ -+ @%:@ Check whether --enable-c99 was given. -+if test "${enable_c99+set}" = set; then : -+ enableval=$enable_c99; -+ case "$enableval" in -+ yes|no) ;; -+ *) as_fn_error $? "Argument to enable/disable c99 must be yes or no" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_c99=yes -+fi -+ -+ -+ -+ if test x"$enable_c99" = x"yes"; then -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ -+ # Use -std=c++98 (instead of -std=gnu++98) because leaving __STRICT_ANSI__ -+ # undefined may cause fake C99 facilities, like pre-standard snprintf, -+ # to be spuriously enabled. -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -std=c++98" -+ ac_save_LIBS="$LIBS" -+ ac_save_gcc_no_link="$gcc_no_link" -+ -+ if test x$gcc_no_link != xyes; then -+ # Use -fno-exceptions to that the C driver can link these tests without -+ # hitting undefined references to personality routines. -+ CXXFLAGS="$CXXFLAGS -fno-exceptions" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5 -+$as_echo_n "checking for sin in -lm... " >&6; } -+if ${ac_cv_lib_m_sin+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lm $LIBS" -+if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char sin (); -+int -+main () -+{ -+return sin (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ ac_cv_lib_m_sin=yes -+else -+ ac_cv_lib_m_sin=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5 -+$as_echo "$ac_cv_lib_m_sin" >&6; } -+if test "x$ac_cv_lib_m_sin" = xyes; then : -+ LIBS="$LIBS -lm" -+else -+ -+ # Use the default compile-only tests in GCC_TRY_COMPILE_OR_LINK -+ gcc_no_link=yes -+ -+fi -+ -+ fi -+ -+ # Check for the existence of functions used if C99 is enabled. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in for C++98" >&5 -+$as_echo_n "checking for ISO C99 support in for C++98... " >&6; } -+if ${glibcxx_cv_c99_math_cxx98+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ volatile double d1, d2; -+ volatile int i; -+int -+main () -+{ -+i = fpclassify(d1); -+ i = isfinite(d1); -+ i = isinf(d1); -+ i = isnan(d1); -+ i = isnormal(d1); -+ i = signbit(d1); -+ i = isgreater(d1, d2); -+ i = isgreaterequal(d1, d2); -+ i = isless(d1, d2); -+ i = islessequal(d1, d2); -+ i = islessgreater(d1, d2); -+ i = islessgreater(d1, d2); -+ i = isunordered(d1, d2); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_c99_math_cxx98=yes -+else -+ glibcxx_cv_c99_math_cxx98=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ volatile double d1, d2; -+ volatile int i; -+int -+main () -+{ -+i = fpclassify(d1); -+ i = isfinite(d1); -+ i = isinf(d1); -+ i = isnan(d1); -+ i = isnormal(d1); -+ i = signbit(d1); -+ i = isgreater(d1, d2); -+ i = isgreaterequal(d1, d2); -+ i = isless(d1, d2); -+ i = islessequal(d1, d2); -+ i = islessgreater(d1, d2); -+ i = islessgreater(d1, d2); -+ i = isunordered(d1, d2); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_c99_math_cxx98=yes -+else -+ glibcxx_cv_c99_math_cxx98=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_c99_math_cxx98" >&5 -+$as_echo "$glibcxx_cv_c99_math_cxx98" >&6; } -+ if test x"$glibcxx_cv_c99_math_cxx98" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX98_USE_C99_MATH 1" >>confdefs.h -+ -+ fi -+ -+ # Check for the existence of complex math functions. -+ # This is necessary even though libstdc++ uses the builtin versions -+ # of these functions, because if the builtin cannot be used, a reference -+ # to the library function is emitted. -+ for ac_header in tgmath.h -+do : -+ ac_fn_cxx_check_header_mongrel "$LINENO" "tgmath.h" "ac_cv_header_tgmath_h" "$ac_includes_default" -+if test "x$ac_cv_header_tgmath_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_TGMATH_H 1 -+_ACEOF -+ ac_has_tgmath_h=yes -+else -+ ac_has_tgmath_h=no -+fi -+ -+done -+ -+ for ac_header in complex.h -+do : -+ ac_fn_cxx_check_header_mongrel "$LINENO" "complex.h" "ac_cv_header_complex_h" "$ac_includes_default" -+if test "x$ac_cv_header_complex_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_COMPLEX_H 1 -+_ACEOF -+ ac_has_complex_h=yes -+else -+ ac_has_complex_h=no -+fi -+ -+done -+ -+ if test x"$ac_has_complex_h" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in for C++98" >&5 -+$as_echo_n "checking for ISO C99 support in for C++98... " >&6; } -+if ${glibcxx_cv_c99_complex_cxx98+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ typedef __complex__ float float_type; -+ typedef __complex__ double double_type; -+ typedef __complex__ long double ld_type; -+ volatile float_type tmpf; -+ volatile double_type tmpd; -+ volatile ld_type tmpld; -+ volatile float f; -+ volatile double d; -+ volatile long double ld; -+int -+main () -+{ -+f = cabsf(tmpf); -+ f = cargf(tmpf); -+ tmpf = ccosf(tmpf); -+ tmpf = ccoshf(tmpf); -+ tmpf = cexpf(tmpf); -+ tmpf = clogf(tmpf); -+ tmpf = csinf(tmpf); -+ tmpf = csinhf(tmpf); -+ tmpf = csqrtf(tmpf); -+ tmpf = ctanf(tmpf); -+ tmpf = ctanhf(tmpf); -+ tmpf = cpowf(tmpf, tmpf); -+ tmpf = cprojf(tmpf); -+ d = cabs(tmpd); -+ d = carg(tmpd); -+ tmpd = ccos(tmpd); -+ tmpd = ccosh(tmpd); -+ tmpd = cexp(tmpd); -+ tmpd = clog(tmpd); -+ tmpd = csin(tmpd); -+ tmpd = csinh(tmpd); -+ tmpd = csqrt(tmpd); -+ tmpd = ctan(tmpd); -+ tmpd = ctanh(tmpd); -+ tmpd = cpow(tmpd, tmpd); -+ tmpd = cproj(tmpd); -+ ld = cabsl(tmpld); -+ ld = cargl(tmpld); -+ tmpld = ccosl(tmpld); -+ tmpld = ccoshl(tmpld); -+ tmpld = cexpl(tmpld); -+ tmpld = clogl(tmpld); -+ tmpld = csinl(tmpld); -+ tmpld = csinhl(tmpld); -+ tmpld = csqrtl(tmpld); -+ tmpld = ctanl(tmpld); -+ tmpld = ctanhl(tmpld); -+ tmpld = cpowl(tmpld, tmpld); -+ tmpld = cprojl(tmpld); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_c99_complex_cxx98=yes -+else -+ glibcxx_cv_c99_complex_cxx98=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ typedef __complex__ float float_type; -+ typedef __complex__ double double_type; -+ typedef __complex__ long double ld_type; -+ volatile float_type tmpf; -+ volatile double_type tmpd; -+ volatile ld_type tmpld; -+ volatile float f; -+ volatile double d; -+ volatile long double ld; -+int -+main () -+{ -+f = cabsf(tmpf); -+ f = cargf(tmpf); -+ tmpf = ccosf(tmpf); -+ tmpf = ccoshf(tmpf); -+ tmpf = cexpf(tmpf); -+ tmpf = clogf(tmpf); -+ tmpf = csinf(tmpf); -+ tmpf = csinhf(tmpf); -+ tmpf = csqrtf(tmpf); -+ tmpf = ctanf(tmpf); -+ tmpf = ctanhf(tmpf); -+ tmpf = cpowf(tmpf, tmpf); -+ tmpf = cprojf(tmpf); -+ d = cabs(tmpd); -+ d = carg(tmpd); -+ tmpd = ccos(tmpd); -+ tmpd = ccosh(tmpd); -+ tmpd = cexp(tmpd); -+ tmpd = clog(tmpd); -+ tmpd = csin(tmpd); -+ tmpd = csinh(tmpd); -+ tmpd = csqrt(tmpd); -+ tmpd = ctan(tmpd); -+ tmpd = ctanh(tmpd); -+ tmpd = cpow(tmpd, tmpd); -+ tmpd = cproj(tmpd); -+ ld = cabsl(tmpld); -+ ld = cargl(tmpld); -+ tmpld = ccosl(tmpld); -+ tmpld = ccoshl(tmpld); -+ tmpld = cexpl(tmpld); -+ tmpld = clogl(tmpld); -+ tmpld = csinl(tmpld); -+ tmpld = csinhl(tmpld); -+ tmpld = csqrtl(tmpld); -+ tmpld = ctanl(tmpld); -+ tmpld = ctanhl(tmpld); -+ tmpld = cpowl(tmpld, tmpld); -+ tmpld = cprojl(tmpld); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_c99_complex_cxx98=yes -+else -+ glibcxx_cv_c99_complex_cxx98=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_c99_complex_cxx98" >&5 -+$as_echo "$glibcxx_cv_c99_complex_cxx98" >&6; } -+ fi -+ if test x"$glibcxx_cv_c99_complex_cxx98" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX98_USE_C99_COMPLEX 1" >>confdefs.h -+ -+ fi -+ -+ # Check for the existence in of vscanf, et. al. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in for C++98" >&5 -+$as_echo_n "checking for ISO C99 support in for C++98... " >&6; } -+if ${glibcxx_cv_c99_stdio_cxx98+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ void foo(char* fmt, ...) -+ { -+ va_list args; va_start(args, fmt); -+ vfscanf(stderr, "%i", args); -+ vscanf("%i", args); -+ vsnprintf(fmt, 0, "%i", args); -+ vsscanf(fmt, "%i", args); -+ snprintf(fmt, 0, "%i"); -+ } -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_c99_stdio_cxx98=yes -+else -+ glibcxx_cv_c99_stdio_cxx98=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ void foo(char* fmt, ...) -+ { -+ va_list args; va_start(args, fmt); -+ vfscanf(stderr, "%i", args); -+ vscanf("%i", args); -+ vsnprintf(fmt, 0, "%i", args); -+ vsscanf(fmt, "%i", args); -+ snprintf(fmt, 0, "%i"); -+ } -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_c99_stdio_cxx98=yes -+else -+ glibcxx_cv_c99_stdio_cxx98=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_c99_stdio_cxx98" >&5 -+$as_echo "$glibcxx_cv_c99_stdio_cxx98" >&6; } -+ if test x"$glibcxx_cv_c99_stdio_cxx98" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX98_USE_C99_STDIO 1" >>confdefs.h -+ -+ fi -+ -+ # Check for the existence in of lldiv_t, et. al. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in for C++98" >&5 -+$as_echo_n "checking for ISO C99 support in for C++98... " >&6; } -+if ${glibcxx_cv_c99_stdlib_cxx98+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ volatile float f; -+ volatile long double ld; -+ volatile unsigned long long ll; -+ lldiv_t mydivt; -+int -+main () -+{ -+char* tmp; -+ f = strtof("gnu", &tmp); -+ ld = strtold("gnu", &tmp); -+ ll = strtoll("gnu", &tmp, 10); -+ ll = strtoull("gnu", &tmp, 10); -+ ll = llabs(10); -+ mydivt = lldiv(10,1); -+ ll = mydivt.quot; -+ ll = mydivt.rem; -+ ll = atoll("10"); -+ _Exit(0); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_c99_stdlib_cxx98=yes -+else -+ glibcxx_cv_c99_stdlib_cxx98=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ volatile float f; -+ volatile long double ld; -+ volatile unsigned long long ll; -+ lldiv_t mydivt; -+int -+main () -+{ -+char* tmp; -+ f = strtof("gnu", &tmp); -+ ld = strtold("gnu", &tmp); -+ ll = strtoll("gnu", &tmp, 10); -+ ll = strtoull("gnu", &tmp, 10); -+ ll = llabs(10); -+ mydivt = lldiv(10,1); -+ ll = mydivt.quot; -+ ll = mydivt.rem; -+ ll = atoll("10"); -+ _Exit(0); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_c99_stdlib_cxx98=yes -+else -+ glibcxx_cv_c99_stdlib_cxx98=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_c99_stdlib_cxx98" >&5 -+$as_echo "$glibcxx_cv_c99_stdlib_cxx98" >&6; } -+ if test x"$glibcxx_cv_c99_stdlib_cxx98" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX98_USE_C99_STDLIB 1" >>confdefs.h -+ -+ fi -+ -+ # Check for the existence in of wcstold, etc. -+ if test x"$ac_has_wchar_h" = xyes && -+ test x"$ac_has_wctype_h" = xyes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in for C++98" >&5 -+$as_echo_n "checking for ISO C99 support in for C++98... " >&6; } -+if ${glibcxx_cv_c99_wchar_cxx98+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ namespace test -+ { -+ using ::wcstold; -+ using ::wcstoll; -+ using ::wcstoull; -+ } -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_c99_wchar_cxx98=yes -+else -+ glibcxx_cv_c99_wchar_cxx98=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_c99_wchar_cxx98" >&5 -+$as_echo "$glibcxx_cv_c99_wchar_cxx98" >&6; } -+ -+ # Checks for wide character functions that may not be present. -+ # Injection of these is wrapped with guard macros. -+ # NB: only put functions here, instead of immediately above, if -+ # absolutely necessary. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ namespace test { using ::vfwscanf; } -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ -+$as_echo "@%:@define HAVE_VFWSCANF 1" >>confdefs.h -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ namespace test { using ::vswscanf; } -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ -+$as_echo "@%:@define HAVE_VSWSCANF 1" >>confdefs.h -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ namespace test { using ::vwscanf; } -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ -+$as_echo "@%:@define HAVE_VWSCANF 1" >>confdefs.h -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ namespace test { using ::wcstof; } -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ -+$as_echo "@%:@define HAVE_WCSTOF 1" >>confdefs.h -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+wint_t t; int i = iswblank(t); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ -+$as_echo "@%:@define HAVE_ISWBLANK 1" >>confdefs.h -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+ if test x"$glibcxx_cv_c99_wchar_cxx98" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX98_USE_C99_WCHAR 1" >>confdefs.h -+ -+ fi -+ fi -+ -+ # Option parsed, now set things appropriately. -+ if test x"$glibcxx_cv_c99_math_cxx98" = x"no" || -+ test x"$glibcxx_cv_c99_complex_cxx98" = x"no" || -+ test x"$glibcxx_cv_c99_stdio_cxx98" = x"no" || -+ test x"$glibcxx_cv_c99_stdlib_cxx98" = x"no" || -+ test x"$glibcxx_cv_c99_wchar_cxx98" = x"no"; then -+ enable_c99=no; -+ else -+ -+$as_echo "@%:@define _GLIBCXX_USE_C99 1" >>confdefs.h -+ -+ fi -+ -+ gcc_no_link="$ac_save_gcc_no_link" -+ LIBS="$ac_save_LIBS" -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ -+ # Use -std=c++11 and test again for C99 library feature in C++11 mode. -+ # For the reasons given above we use -std=c++11 not -std=gnu++11. -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -std=c++11" -+ ac_save_LIBS="$LIBS" -+ ac_save_gcc_no_link="$gcc_no_link" -+ -+ if test x$gcc_no_link != xyes; then -+ # Use -fno-exceptions to that the C driver can link these tests without -+ # hitting undefined references to personality routines. -+ CXXFLAGS="$CXXFLAGS -fno-exceptions" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5 -+$as_echo_n "checking for sin in -lm... " >&6; } -+if ${ac_cv_lib_m_sin+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lm $LIBS" -+if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char sin (); -+int -+main () -+{ -+return sin (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ ac_cv_lib_m_sin=yes -+else -+ ac_cv_lib_m_sin=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5 -+$as_echo "$ac_cv_lib_m_sin" >&6; } -+if test "x$ac_cv_lib_m_sin" = xyes; then : -+ LIBS="$LIBS -lm" -+else -+ -+ # Use the default compile-only tests in GCC_TRY_COMPILE_OR_LINK -+ gcc_no_link=yes -+ -+fi -+ -+ fi -+ -+ # Check for the existence of functions used if C99 is enabled. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in for C++11" >&5 -+$as_echo_n "checking for ISO C99 support in for C++11... " >&6; } -+if ${glibcxx_cv_c99_math_cxx11+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ volatile double d1, d2; -+ volatile int i; -+int -+main () -+{ -+i = fpclassify(d1); -+ i = isfinite(d1); -+ i = isinf(d1); -+ i = isnan(d1); -+ i = isnormal(d1); -+ i = signbit(d1); -+ i = isgreater(d1, d2); -+ i = isgreaterequal(d1, d2); -+ i = isless(d1, d2); -+ i = islessequal(d1, d2); -+ i = islessgreater(d1, d2); -+ i = islessgreater(d1, d2); -+ i = isunordered(d1, d2); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_c99_math_cxx11=yes -+else -+ glibcxx_cv_c99_math_cxx11=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ volatile double d1, d2; -+ volatile int i; -+int -+main () -+{ -+i = fpclassify(d1); -+ i = isfinite(d1); -+ i = isinf(d1); -+ i = isnan(d1); -+ i = isnormal(d1); -+ i = signbit(d1); -+ i = isgreater(d1, d2); -+ i = isgreaterequal(d1, d2); -+ i = isless(d1, d2); -+ i = islessequal(d1, d2); -+ i = islessgreater(d1, d2); -+ i = islessgreater(d1, d2); -+ i = isunordered(d1, d2); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_c99_math_cxx11=yes -+else -+ glibcxx_cv_c99_math_cxx11=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_c99_math_cxx11" >&5 -+$as_echo "$glibcxx_cv_c99_math_cxx11" >&6; } -+ if test x"$glibcxx_cv_c99_math_cxx11" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX11_USE_C99_MATH 1" >>confdefs.h -+ -+ fi -+ -+ # Check for the existence of complex math functions. -+ # This is necessary even though libstdc++ uses the builtin versions -+ # of these functions, because if the builtin cannot be used, a reference -+ # to the library function is emitted. -+ for ac_header in tgmath.h -+do : -+ ac_fn_cxx_check_header_mongrel "$LINENO" "tgmath.h" "ac_cv_header_tgmath_h" "$ac_includes_default" -+if test "x$ac_cv_header_tgmath_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_TGMATH_H 1 -+_ACEOF -+ ac_has_tgmath_h=yes -+else -+ ac_has_tgmath_h=no -+fi -+ -+done -+ -+ for ac_header in complex.h -+do : -+ ac_fn_cxx_check_header_mongrel "$LINENO" "complex.h" "ac_cv_header_complex_h" "$ac_includes_default" -+if test "x$ac_cv_header_complex_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_COMPLEX_H 1 -+_ACEOF -+ ac_has_complex_h=yes -+else -+ ac_has_complex_h=no -+fi -+ -+done -+ -+ if test x"$ac_has_complex_h" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in for C++11" >&5 -+$as_echo_n "checking for ISO C99 support in for C++11... " >&6; } -+if ${glibcxx_cv_c99_complex_cxx11+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ typedef __complex__ float float_type; -+ typedef __complex__ double double_type; -+ typedef __complex__ long double ld_type; -+ volatile float_type tmpf; -+ volatile double_type tmpd; -+ volatile ld_type tmpld; -+ volatile float f; -+ volatile double d; -+ volatile long double ld; -+int -+main () -+{ -+f = cabsf(tmpf); -+ f = cargf(tmpf); -+ tmpf = ccosf(tmpf); -+ tmpf = ccoshf(tmpf); -+ tmpf = cexpf(tmpf); -+ tmpf = clogf(tmpf); -+ tmpf = csinf(tmpf); -+ tmpf = csinhf(tmpf); -+ tmpf = csqrtf(tmpf); -+ tmpf = ctanf(tmpf); -+ tmpf = ctanhf(tmpf); -+ tmpf = cpowf(tmpf, tmpf); -+ tmpf = cprojf(tmpf); -+ d = cabs(tmpd); -+ d = carg(tmpd); -+ tmpd = ccos(tmpd); -+ tmpd = ccosh(tmpd); -+ tmpd = cexp(tmpd); -+ tmpd = clog(tmpd); -+ tmpd = csin(tmpd); -+ tmpd = csinh(tmpd); -+ tmpd = csqrt(tmpd); -+ tmpd = ctan(tmpd); -+ tmpd = ctanh(tmpd); -+ tmpd = cpow(tmpd, tmpd); -+ tmpd = cproj(tmpd); -+ ld = cabsl(tmpld); -+ ld = cargl(tmpld); -+ tmpld = ccosl(tmpld); -+ tmpld = ccoshl(tmpld); -+ tmpld = cexpl(tmpld); -+ tmpld = clogl(tmpld); -+ tmpld = csinl(tmpld); -+ tmpld = csinhl(tmpld); -+ tmpld = csqrtl(tmpld); -+ tmpld = ctanl(tmpld); -+ tmpld = ctanhl(tmpld); -+ tmpld = cpowl(tmpld, tmpld); -+ tmpld = cprojl(tmpld); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_c99_complex_cxx11=yes -+else -+ glibcxx_cv_c99_complex_cxx11=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ typedef __complex__ float float_type; -+ typedef __complex__ double double_type; -+ typedef __complex__ long double ld_type; -+ volatile float_type tmpf; -+ volatile double_type tmpd; -+ volatile ld_type tmpld; -+ volatile float f; -+ volatile double d; -+ volatile long double ld; -+int -+main () -+{ -+f = cabsf(tmpf); -+ f = cargf(tmpf); -+ tmpf = ccosf(tmpf); -+ tmpf = ccoshf(tmpf); -+ tmpf = cexpf(tmpf); -+ tmpf = clogf(tmpf); -+ tmpf = csinf(tmpf); -+ tmpf = csinhf(tmpf); -+ tmpf = csqrtf(tmpf); -+ tmpf = ctanf(tmpf); -+ tmpf = ctanhf(tmpf); -+ tmpf = cpowf(tmpf, tmpf); -+ tmpf = cprojf(tmpf); -+ d = cabs(tmpd); -+ d = carg(tmpd); -+ tmpd = ccos(tmpd); -+ tmpd = ccosh(tmpd); -+ tmpd = cexp(tmpd); -+ tmpd = clog(tmpd); -+ tmpd = csin(tmpd); -+ tmpd = csinh(tmpd); -+ tmpd = csqrt(tmpd); -+ tmpd = ctan(tmpd); -+ tmpd = ctanh(tmpd); -+ tmpd = cpow(tmpd, tmpd); -+ tmpd = cproj(tmpd); -+ ld = cabsl(tmpld); -+ ld = cargl(tmpld); -+ tmpld = ccosl(tmpld); -+ tmpld = ccoshl(tmpld); -+ tmpld = cexpl(tmpld); -+ tmpld = clogl(tmpld); -+ tmpld = csinl(tmpld); -+ tmpld = csinhl(tmpld); -+ tmpld = csqrtl(tmpld); -+ tmpld = ctanl(tmpld); -+ tmpld = ctanhl(tmpld); -+ tmpld = cpowl(tmpld, tmpld); -+ tmpld = cprojl(tmpld); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_c99_complex_cxx11=yes -+else -+ glibcxx_cv_c99_complex_cxx11=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_c99_complex_cxx11" >&5 -+$as_echo "$glibcxx_cv_c99_complex_cxx11" >&6; } -+ fi -+ if test x"$glibcxx_cv_c99_complex_cxx11" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX11_USE_C99_COMPLEX 1" >>confdefs.h -+ -+ fi -+ -+ # Check for the existence in of vscanf, et. al. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in for C++11" >&5 -+$as_echo_n "checking for ISO C99 support in for C++11... " >&6; } -+if ${glibcxx_cv_c99_stdio_cxx11+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ void foo(char* fmt, ...) -+ { -+ va_list args; va_start(args, fmt); -+ vfscanf(stderr, "%i", args); -+ vscanf("%i", args); -+ vsnprintf(fmt, 0, "%i", args); -+ vsscanf(fmt, "%i", args); -+ snprintf(fmt, 0, "%i"); -+ } -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_c99_stdio_cxx11=yes -+else -+ glibcxx_cv_c99_stdio_cxx11=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ void foo(char* fmt, ...) -+ { -+ va_list args; va_start(args, fmt); -+ vfscanf(stderr, "%i", args); -+ vscanf("%i", args); -+ vsnprintf(fmt, 0, "%i", args); -+ vsscanf(fmt, "%i", args); -+ snprintf(fmt, 0, "%i"); -+ } -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_c99_stdio_cxx11=yes -+else -+ glibcxx_cv_c99_stdio_cxx11=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_c99_stdio_cxx11" >&5 -+$as_echo "$glibcxx_cv_c99_stdio_cxx11" >&6; } -+ if test x"$glibcxx_cv_c99_stdio_cxx11" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX11_USE_C99_STDIO 1" >>confdefs.h -+ -+ fi -+ -+ # Check for the existence in of lldiv_t, et. al. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in for C++11" >&5 -+$as_echo_n "checking for ISO C99 support in for C++11... " >&6; } -+if ${glibcxx_cv_c99_stdlib_cxx11+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ volatile float f; -+ volatile long double ld; -+ volatile unsigned long long ll; -+ lldiv_t mydivt; -+int -+main () -+{ -+char* tmp; -+ f = strtof("gnu", &tmp); -+ ld = strtold("gnu", &tmp); -+ ll = strtoll("gnu", &tmp, 10); -+ ll = strtoull("gnu", &tmp, 10); -+ ll = llabs(10); -+ mydivt = lldiv(10,1); -+ ll = mydivt.quot; -+ ll = mydivt.rem; -+ ll = atoll("10"); -+ _Exit(0); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_c99_stdlib_cxx11=yes -+else -+ glibcxx_cv_c99_stdlib_cxx11=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ volatile float f; -+ volatile long double ld; -+ volatile unsigned long long ll; -+ lldiv_t mydivt; -+int -+main () -+{ -+char* tmp; -+ f = strtof("gnu", &tmp); -+ ld = strtold("gnu", &tmp); -+ ll = strtoll("gnu", &tmp, 10); -+ ll = strtoull("gnu", &tmp, 10); -+ ll = llabs(10); -+ mydivt = lldiv(10,1); -+ ll = mydivt.quot; -+ ll = mydivt.rem; -+ ll = atoll("10"); -+ _Exit(0); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_c99_stdlib_cxx11=yes -+else -+ glibcxx_cv_c99_stdlib_cxx11=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_c99_stdlib_cxx11" >&5 -+$as_echo "$glibcxx_cv_c99_stdlib_cxx11" >&6; } -+ if test x"$glibcxx_cv_c99_stdlib_cxx11" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX11_USE_C99_STDLIB 1" >>confdefs.h -+ -+ fi -+ -+ # Check for the existence in of wcstold, etc. -+ if test x"$ac_has_wchar_h" = xyes && -+ test x"$ac_has_wctype_h" = xyes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support in for C++11" >&5 -+$as_echo_n "checking for ISO C99 support in for C++11... " >&6; } -+if ${glibcxx_cv_c99_wchar_cxx11+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ namespace test -+ { -+ using ::wcstold; -+ using ::wcstoll; -+ using ::wcstoull; -+ } -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_c99_wchar_cxx11=yes -+else -+ glibcxx_cv_c99_wchar_cxx11=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_c99_wchar_cxx11" >&5 -+$as_echo "$glibcxx_cv_c99_wchar_cxx11" >&6; } -+ -+ # Checks for wide character functions that may not be present. -+ # Injection of these is wrapped with guard macros. -+ # NB: only put functions here, instead of immediately above, if -+ # absolutely necessary. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ namespace test { using ::vfwscanf; } -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ -+$as_echo "@%:@define HAVE_VFWSCANF 1" >>confdefs.h -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ namespace test { using ::vswscanf; } -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ -+$as_echo "@%:@define HAVE_VSWSCANF 1" >>confdefs.h -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ namespace test { using ::vwscanf; } -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ -+$as_echo "@%:@define HAVE_VWSCANF 1" >>confdefs.h -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ namespace test { using ::wcstof; } -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ -+$as_echo "@%:@define HAVE_WCSTOF 1" >>confdefs.h -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+wint_t t; int i = iswblank(t); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ -+$as_echo "@%:@define HAVE_ISWBLANK 1" >>confdefs.h -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+ if test x"$glibcxx_cv_c99_wchar_cxx11" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX11_USE_C99_WCHAR 1" >>confdefs.h -+ -+ fi -+ fi -+ -+ gcc_no_link="$ac_save_gcc_no_link" -+ LIBS="$ac_save_LIBS" -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fully enabled ISO C99 support" >&5 -+$as_echo_n "checking for fully enabled ISO C99 support... " >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_c99" >&5 -+$as_echo "$enable_c99" >&6; } -+ -+ -+ @%:@ Check whether --enable-concept-checks was given. -+if test "${enable_concept_checks+set}" = set; then : -+ enableval=$enable_concept_checks; -+ case "$enableval" in -+ yes|no) ;; -+ *) as_fn_error $? "Argument to enable/disable concept-checks must be yes or no" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_concept_checks=no -+fi -+ -+ -+ if test $enable_concept_checks = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_CONCEPT_CHECKS 1" >>confdefs.h -+ -+ fi -+ -+ -+ @%:@ Check whether --enable-libstdcxx-debug-flags was given. -+if test "${enable_libstdcxx_debug_flags+set}" = set; then : -+ enableval=$enable_libstdcxx_debug_flags; case "x$enable_libstdcxx_debug_flags" in -+ xno | x) enable_libstdcxx_debug_flags= ;; -+ x-*) ;; -+ *) as_fn_error $? "--enable-libstdcxx-debug-flags needs compiler flags as arguments" "$LINENO" 5 ;; -+ esac -+else -+ enable_libstdcxx_debug_flags="-g3 -O0 -D_GLIBCXX_ASSERTIONS" -+fi -+ -+ -+ -+ # Option parsed, now set things appropriately -+ DEBUG_FLAGS="$enable_libstdcxx_debug_flags" -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: Debug build flags set to $DEBUG_FLAGS" >&5 -+$as_echo "$as_me: Debug build flags set to $DEBUG_FLAGS" >&6;} -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for additional debug build" >&5 -+$as_echo_n "checking for additional debug build... " >&6; } -+ skip_debug_build= -+ @%:@ Check whether --enable-libstdcxx-debug was given. -+if test "${enable_libstdcxx_debug+set}" = set; then : -+ enableval=$enable_libstdcxx_debug; -+ case "$enableval" in -+ yes|no) ;; -+ *) as_fn_error $? "Argument to enable/disable libstdcxx-debug must be yes or no" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_libstdcxx_debug=no -+fi -+ -+ -+ if test x$enable_libstdcxx_debug = xyes; then -+ if test -f $toplevel_builddir/../stage_final \ -+ && test -f $toplevel_builddir/../stage_current; then -+ stage_final=`cat $toplevel_builddir/../stage_final` -+ stage_current=`cat $toplevel_builddir/../stage_current` -+ if test x$stage_current != x$stage_final ; then -+ skip_debug_build=" (skipped for bootstrap stage $stage_current)" -+ enable_libstdcxx_debug=no -+ fi -+ fi -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_libstdcxx_debug$skip_debug_build" >&5 -+$as_echo "$enable_libstdcxx_debug$skip_debug_build" >&6; } -+ -+ -+ -+ -+ enable_parallel=no; -+ -+ # See if configured libgomp/omp.h exists. (libgomp may be in -+ # noconfigdirs but not explicitly disabled.) -+ if echo " ${TARGET_CONFIGDIRS} " | grep " libgomp " > /dev/null 2>&1 ; then -+ enable_parallel=yes; -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: target-libgomp not built" >&5 -+$as_echo "$as_me: target-libgomp not built" >&6;} -+ fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for parallel mode support" >&5 -+$as_echo_n "checking for parallel mode support... " >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_parallel" >&5 -+$as_echo "$enable_parallel" >&6; } -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for extra compiler flags for building" >&5 -+$as_echo_n "checking for extra compiler flags for building... " >&6; } -+ @%:@ Check whether --enable-cxx-flags was given. -+if test "${enable_cxx_flags+set}" = set; then : -+ enableval=$enable_cxx_flags; case "x$enable_cxx_flags" in -+ xno | x) enable_cxx_flags= ;; -+ x-*) ;; -+ *) as_fn_error $? "--enable-cxx-flags needs compiler flags as arguments" "$LINENO" 5 ;; -+ esac -+else -+ enable_cxx_flags= -+fi -+ -+ -+ -+ # Run through flags (either default or command-line) and set anything -+ # extra (e.g., #defines) that must accompany particular g++ options. -+ if test -n "$enable_cxx_flags"; then -+ for f in $enable_cxx_flags; do -+ case "$f" in -+ -fhonor-std) ;; -+ -*) ;; -+ *) # and we're trying to pass /what/ exactly? -+ as_fn_error $? "compiler flags start with a -" "$LINENO" 5 ;; -+ esac -+ done -+ fi -+ -+ EXTRA_CXX_FLAGS="$enable_cxx_flags" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $EXTRA_CXX_FLAGS" >&5 -+$as_echo "$EXTRA_CXX_FLAGS" >&6; } -+ -+ -+ -+ @%:@ Check whether --enable-fully-dynamic-string was given. -+if test "${enable_fully_dynamic_string+set}" = set; then : -+ enableval=$enable_fully_dynamic_string; -+ case "$enableval" in -+ yes|no) ;; -+ *) as_fn_error $? "Unknown argument to enable/disable fully-dynamic-string" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_fully_dynamic_string=no -+fi -+ -+ -+ if test $enable_fully_dynamic_string = yes; then -+ enable_fully_dynamic_string_def=1 -+ else -+ enable_fully_dynamic_string_def=0 -+ fi -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define _GLIBCXX_FULLY_DYNAMIC_STRING ${enable_fully_dynamic_string_def} -+_ACEOF -+ -+ -+ -+ -+ @%:@ Check whether --enable-extern-template was given. -+if test "${enable_extern_template+set}" = set; then : -+ enableval=$enable_extern_template; -+ case "$enableval" in -+ yes|no) ;; -+ *) as_fn_error $? "Argument to enable/disable extern-template must be yes or no" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_extern_template=yes -+fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for extern template support" >&5 -+$as_echo_n "checking for extern template support... " >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_extern_template" >&5 -+$as_echo "$enable_extern_template" >&6; } -+ -+ -+ -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for custom python install directory" >&5 -+$as_echo_n "checking for custom python install directory... " >&6; } -+ -+@%:@ Check whether --with-python-dir was given. -+if test "${with_python_dir+set}" = set; then : -+ withval=$with_python_dir; with_python_dir=$withval -+else -+ with_python_dir="no" -+fi -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_python_dir}" >&5 -+$as_echo "${with_python_dir}" >&6; } -+ -+# Needed for installing Python modules during make install. -+python_mod_dir="${with_python_dir}" -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -Werror" >&5 -+$as_echo_n "checking for -Werror... " >&6; } -+ @%:@ Check whether --enable-werror was given. -+if test "${enable_werror+set}" = set; then : -+ enableval=$enable_werror; -+ case "$enableval" in -+ yes|no) ;; -+ *) as_fn_error $? "Argument to enable/disable werror must be yes or no" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_werror=no -+fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_werror" >&5 -+$as_echo "$enable_werror" >&6; } -+ -+ -+ -+ -+ @%:@ Check whether --enable-vtable-verify was given. -+if test "${enable_vtable_verify+set}" = set; then : -+ enableval=$enable_vtable_verify; -+ case "$enableval" in -+ yes|no) ;; -+ *) as_fn_error $? "Argument to enable/disable vtable-verify must be yes or no" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_vtable_verify=no -+fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for vtable verify support" >&5 -+$as_echo_n "checking for vtable verify support... " >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_vtable_verify" >&5 -+$as_echo "$enable_vtable_verify" >&6; } -+ -+ vtv_cygmin=no -+ if test $enable_vtable_verify = yes; then -+ case ${target_os} in -+ cygwin*|mingw32*) -+ VTV_CXXFLAGS="-fvtable-verify=std -Wl,-lvtv,-u_vtable_map_vars_start,-u_vtable_map_vars_end" -+ VTV_CXXLINKFLAGS="-L${toplevel_builddir}/libvtv/.libs -Wl,--rpath -Wl,${toplevel_builddir}/libvtv/.libs" -+ vtv_cygmin=yes -+ ;; -+ darwin*) -+ VTV_CXXFLAGS="-fvtable-verify=std -Wl,-u,_vtable_map_vars_start -Wl,-u,_vtable_map_vars_end" -+ VTV_CXXLINKFLAGS="-L${toplevel_builddir}/libvtv/.libs -Wl,-rpath,${toplevel_builddir}/libvtv/.libs" -+ ;; -+ solaris2*) -+ VTV_CXXFLAGS="-fvtable-verify=std -Wl,-u_vtable_map_vars_start,-u_vtable_map_vars_end" -+ VTV_CXXLINKFLAGS="-L${toplevel_builddir}/libvtv/.libs -Wl,-R -Wl,${toplevel_builddir}/libvtv/.libs" -+ ;; -+ *) -+ VTV_CXXFLAGS="-fvtable-verify=std -Wl,-u_vtable_map_vars_start,-u_vtable_map_vars_end" -+ VTV_CXXLINKFLAGS="-L${toplevel_builddir}/libvtv/.libs -Wl,--rpath -Wl,${toplevel_builddir}/libvtv/.libs" -+ ;; -+ esac -+ VTV_PCH_CXXFLAGS="-fvtable-verify=std" -+ else -+ VTV_CXXFLAGS= -+ VTV_PCH_CXXFLAGS= -+ VTV_CXXLINKFLAGS= -+ fi -+ -+ -+ -+ -+ if test x$vtv_cygmin = xyes; then -+ VTV_CYGMIN_TRUE= -+ VTV_CYGMIN_FALSE='#' -+else -+ VTV_CYGMIN_TRUE='#' -+ VTV_CYGMIN_FALSE= -+fi -+ -+ -+ -+ -+# Checks for operating systems support that doesn't require linking. -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ # Use C++11 because a conforming won't define gets for C++14, -+ # and we don't need a declaration for C++14 anyway. -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -std=gnu++11" -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gets declaration" >&5 -+$as_echo_n "checking for gets declaration... " >&6; } -+if ${glibcxx_cv_gets+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ namespace test -+ { -+ using ::gets; -+ } -+ -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_gets=yes -+else -+ glibcxx_cv_gets=no -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_gets" >&5 -+$as_echo "$glibcxx_cv_gets" >&6; } -+ -+ if test $glibcxx_cv_gets = yes; then -+ -+$as_echo "@%:@define HAVE_GETS 1" >>confdefs.h -+ -+ fi -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -std=c++11" -+ -+ case "$host" in -+ *-*-solaris2.*) -+ # Solaris 12 Build 86, Solaris 11.3 SRU 3.6, and Solaris 10 Patch -+ # 11996[67]-02 introduced the C++11 floating point overloads. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++11 floating point overloads" >&5 -+$as_echo_n "checking for C++11 floating point overloads... " >&6; } -+if ${glibcxx_cv_math11_fp_overload+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #undef isfinite -+ namespace std { -+ inline bool isfinite(float __x) -+ { return __builtin_isfinite(__x); } -+ } -+ -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_math11_fp_overload=no -+else -+ glibcxx_cv_math11_fp_overload=yes -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_math11_fp_overload" >&5 -+$as_echo "$glibcxx_cv_math11_fp_overload" >&6; } -+ -+ # autoheader cannot handle indented templates. -+ -+ -+ if test $glibcxx_cv_math11_fp_overload = yes; then -+ $as_echo "@%:@define __CORRECT_ISO_CPP11_MATH_H_PROTO_FP 1" >>confdefs.h -+ -+ fi -+ -+ # Solaris 12 Build 90, Solaris 11.3 SRU 5.6, and Solaris 10 Patch -+ # 11996[67]-02 introduced the C++11 integral type overloads. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++11 integral type overloads" >&5 -+$as_echo_n "checking for C++11 integral type overloads... " >&6; } -+if ${glibcxx_cv_math11_int_overload+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ namespace std { -+ template -+ struct __is_integer; -+ template<> -+ struct __is_integer -+ { -+ enum { __value = 1 }; -+ }; -+ } -+ namespace __gnu_cxx { -+ template -+ struct __enable_if; -+ template -+ struct __enable_if -+ { typedef _Tp __type; }; -+ } -+ namespace std { -+ template -+ constexpr typename __gnu_cxx::__enable_if -+ <__is_integer<_Tp>::__value, double>::__type -+ log2(_Tp __x) -+ { return __builtin_log2(__x); } -+ } -+ int -+ main (void) -+ { -+ int i = 1000; -+ return std::log2(i); -+ } -+ -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_math11_int_overload=no -+else -+ glibcxx_cv_math11_int_overload=yes -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_math11_int_overload" >&5 -+$as_echo "$glibcxx_cv_math11_int_overload" >&6; } -+ -+ # autoheader cannot handle indented templates. -+ -+ -+ if test $glibcxx_cv_math11_int_overload = yes; then -+ $as_echo "@%:@define __CORRECT_ISO_CPP11_MATH_H_PROTO_INT 1" >>confdefs.h -+ -+ fi -+ ;; -+ *) -+ # If defines the obsolete isinf(double) and isnan(double) -+ # functions (instead of or as well as the C99 generic macros) then we -+ # can't define std::isinf(double) and std::isnan(double) in -+ # and must use the ones from instead. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for obsolete isinf function in " >&5 -+$as_echo_n "checking for obsolete isinf function in ... " >&6; } -+if ${glibcxx_cv_obsolete_isinf+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#define _GLIBCXX_INCLUDE_NEXT_C_HEADERS -+ #include -+ #undef isinf -+ namespace std { -+ using ::isinf; -+ bool isinf(float); -+ bool isinf(long double); -+ } -+ using std::isinf; -+ bool b = isinf(0.0); -+ -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_obsolete_isinf=yes -+else -+ glibcxx_cv_obsolete_isinf=no -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_obsolete_isinf" >&5 -+$as_echo "$glibcxx_cv_obsolete_isinf" >&6; } -+ if test $glibcxx_cv_obsolete_isinf = yes; then -+ -+$as_echo "@%:@define HAVE_OBSOLETE_ISINF 1" >>confdefs.h -+ -+ fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for obsolete isnan function in " >&5 -+$as_echo_n "checking for obsolete isnan function in ... " >&6; } -+if ${glibcxx_cv_obsolete_isnan+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#define _GLIBCXX_INCLUDE_NEXT_C_HEADERS -+ #include -+ #undef isnan -+ namespace std { -+ using ::isnan; -+ bool isnan(float); -+ bool isnan(long double); -+ } -+ using std::isnan; -+ bool b = isnan(0.0); -+ -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_obsolete_isnan=yes -+else -+ glibcxx_cv_obsolete_isnan=no -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_obsolete_isnan" >&5 -+$as_echo "$glibcxx_cv_obsolete_isnan" >&6; } -+ if test $glibcxx_cv_obsolete_isnan = yes; then -+ -+$as_echo "@%:@define HAVE_OBSOLETE_ISNAN 1" >>confdefs.h -+ -+ fi -+ ;; -+ esac -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ -+ # Test uchar.h. -+ for ac_header in uchar.h -+do : -+ ac_fn_c_check_header_mongrel "$LINENO" "uchar.h" "ac_cv_header_uchar_h" "$ac_includes_default" -+if test "x$ac_cv_header_uchar_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_UCHAR_H 1 -+_ACEOF -+ ac_has_uchar_h=yes -+else -+ ac_has_uchar_h=no -+fi -+ -+done -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -std=c++11" -+ -+ if test x"$ac_has_uchar_h" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C11 support for " >&5 -+$as_echo_n "checking for ISO C11 support for ... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef __STDC_UTF_16__ -+ long i = __STDC_UTF_16__; -+ #endif -+ #ifdef __STDC_UTF_32__ -+ long j = __STDC_UTF_32__; -+ #endif -+ namespace test -+ { -+ using ::c16rtomb; -+ using ::c32rtomb; -+ using ::mbrtoc16; -+ using ::mbrtoc32; -+ } -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_c11_uchar_cxx11=yes -+else -+ ac_c11_uchar_cxx11=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_c11_uchar_cxx11" >&5 -+$as_echo "$ac_c11_uchar_cxx11" >&6; } -+ else -+ ac_c11_uchar_cxx11=no -+ fi -+ if test x"$ac_c11_uchar_cxx11" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_C11_UCHAR_CXX11 1" >>confdefs.h -+ -+ fi -+ -+ CXXFLAGS="$CXXFLAGS -fchar8_t" -+ if test x"$ac_has_uchar_h" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for c8rtomb and mbrtoc8 in with -fchar8_t" >&5 -+$as_echo_n "checking for c8rtomb and mbrtoc8 in with -fchar8_t... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ namespace test -+ { -+ using ::c8rtomb; -+ using ::mbrtoc8; -+ } -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_uchar_c8rtomb_mbrtoc8_fchar8_t=yes -+else -+ ac_uchar_c8rtomb_mbrtoc8_fchar8_t=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ else -+ ac_uchar_c8rtomb_mbrtoc8_fchar8_t=no -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_uchar_c8rtomb_mbrtoc8_fchar8_t" >&5 -+$as_echo "$ac_uchar_c8rtomb_mbrtoc8_fchar8_t" >&6; } -+ if test x"$ac_uchar_c8rtomb_mbrtoc8_fchar8_t" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_UCHAR_C8RTOMB_MBRTOC8_FCHAR8_T 1" >>confdefs.h -+ -+ fi -+ -+ CXXFLAGS="$CXXFLAGS -std=c++20" -+ if test x"$ac_has_uchar_h" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for c8rtomb and mbrtoc8 in with -std=c++20" >&5 -+$as_echo_n "checking for c8rtomb and mbrtoc8 in with -std=c++20... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ namespace test -+ { -+ using ::c8rtomb; -+ using ::mbrtoc8; -+ } -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_uchar_c8rtomb_mbrtoc8_cxx20=yes -+else -+ ac_uchar_c8rtomb_mbrtoc8_cxx20=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ else -+ ac_uchar_c8rtomb_mbrtoc8_cxx20=no -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_uchar_c8rtomb_mbrtoc8_cxx20" >&5 -+$as_echo "$ac_uchar_c8rtomb_mbrtoc8_cxx20" >&6; } -+ if test x"$ac_uchar_c8rtomb_mbrtoc8_cxx20" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_UCHAR_C8RTOMB_MBRTOC8_CXX20 1" >>confdefs.h -+ -+ fi -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+# For LFS support. -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -fno-exceptions" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LFS support" >&5 -+$as_echo_n "checking for LFS support... " >&6; } -+if ${glibcxx_cv_LFS+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ #include -+ -+int -+main () -+{ -+FILE* fp; -+ fopen64("t", "w"); -+ fseeko64(fp, 0, SEEK_CUR); -+ ftello64(fp); -+ lseek64(1, 0, SEEK_CUR); -+ struct stat64 buf; -+ fstat64(1, &buf); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_LFS=yes -+else -+ glibcxx_cv_LFS=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ #include -+ -+int -+main () -+{ -+FILE* fp; -+ fopen64("t", "w"); -+ fseeko64(fp, 0, SEEK_CUR); -+ ftello64(fp); -+ lseek64(1, 0, SEEK_CUR); -+ struct stat64 buf; -+ fstat64(1, &buf); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_LFS=yes -+else -+ glibcxx_cv_LFS=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_LFS" >&5 -+$as_echo "$glibcxx_cv_LFS" >&6; } -+ if test $glibcxx_cv_LFS = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_LFS 1" >>confdefs.h -+ -+ fi -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+# For showmanyc_helper(). -+for ac_header in sys/ioctl.h sys/filio.h -+do : -+ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -+ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -fno-exceptions" -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for poll" >&5 -+$as_echo_n "checking for poll... " >&6; } -+if ${glibcxx_cv_POLL+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+struct pollfd pfd[1]; -+ pfd[0].events = POLLIN; -+ poll(pfd, 1, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_POLL=yes -+else -+ glibcxx_cv_POLL=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+struct pollfd pfd[1]; -+ pfd[0].events = POLLIN; -+ poll(pfd, 1, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_POLL=yes -+else -+ glibcxx_cv_POLL=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_POLL" >&5 -+$as_echo "$glibcxx_cv_POLL" >&6; } -+ if test $glibcxx_cv_POLL = yes; then -+ -+$as_echo "@%:@define HAVE_POLL 1" >>confdefs.h -+ -+ fi -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -fno-exceptions" -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for S_ISREG or S_IFREG" >&5 -+$as_echo_n "checking for S_ISREG or S_IFREG... " >&6; } -+ if ${glibcxx_cv_S_ISREG+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+struct stat buffer; -+ fstat(0, &buffer); -+ S_ISREG(buffer.st_mode); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_S_ISREG=yes -+else -+ glibcxx_cv_S_ISREG=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+struct stat buffer; -+ fstat(0, &buffer); -+ S_ISREG(buffer.st_mode); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_S_ISREG=yes -+else -+ glibcxx_cv_S_ISREG=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+ -+ if ${glibcxx_cv_S_IFREG+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+struct stat buffer; -+ fstat(0, &buffer); -+ S_IFREG & buffer.st_mode; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_S_IFREG=yes -+else -+ glibcxx_cv_S_IFREG=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+struct stat buffer; -+ fstat(0, &buffer); -+ S_IFREG & buffer.st_mode; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_S_IFREG=yes -+else -+ glibcxx_cv_S_IFREG=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+ -+ res=no -+ if test $glibcxx_cv_S_ISREG = yes; then -+ -+$as_echo "@%:@define HAVE_S_ISREG 1" >>confdefs.h -+ -+ res=S_ISREG -+ elif test $glibcxx_cv_S_IFREG = yes; then -+ -+$as_echo "@%:@define HAVE_S_IFREG 1" >>confdefs.h -+ -+ res=S_IFREG -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $res" >&5 -+$as_echo "$res" >&6; } -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+# For xsputn_2(). -+for ac_header in sys/uio.h -+do : -+ ac_fn_c_check_header_mongrel "$LINENO" "sys/uio.h" "ac_cv_header_sys_uio_h" "$ac_includes_default" -+if test "x$ac_cv_header_sys_uio_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SYS_UIO_H 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -fno-exceptions" -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for writev" >&5 -+$as_echo_n "checking for writev... " >&6; } -+if ${glibcxx_cv_WRITEV+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+struct iovec iov[2]; -+ writev(0, iov, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_WRITEV=yes -+else -+ glibcxx_cv_WRITEV=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+struct iovec iov[2]; -+ writev(0, iov, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_WRITEV=yes -+else -+ glibcxx_cv_WRITEV=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_WRITEV" >&5 -+$as_echo "$glibcxx_cv_WRITEV" >&6; } -+ if test $glibcxx_cv_WRITEV = yes; then -+ -+$as_echo "@%:@define HAVE_WRITEV 1" >>confdefs.h -+ -+ fi -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+# Check for fenv.h and complex.h before GLIBCXX_CHECK_C99_TR1 -+# so that the check is done with the C compiler (not C++). -+# Checking with C++ can break a canadian cross build if either -+# file does not exist in C but does in C++. -+for ac_header in fenv.h complex.h -+do : -+ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -+ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ -+# For C99 support to TR1. -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ -+ # Use -std=c++98 because the default (-std=gnu++98) leaves __STRICT_ANSI__ -+ # undefined and fake C99 facilities may be spuriously enabled. -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -std=c++98" -+ -+ # Check for the existence of complex math functions used -+ # by tr1/complex. -+ for ac_header in complex.h -+do : -+ ac_fn_cxx_check_header_mongrel "$LINENO" "complex.h" "ac_cv_header_complex_h" "$ac_includes_default" -+if test "x$ac_cv_header_complex_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_COMPLEX_H 1 -+_ACEOF -+ ac_has_complex_h=yes -+else -+ ac_has_complex_h=no -+fi -+ -+done -+ -+ ac_c99_complex_tr1=no; -+ if test x"$ac_has_complex_h" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support to TR1 in " >&5 -+$as_echo_n "checking for ISO C99 support to TR1 in ... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+typedef __complex__ float float_type; float_type tmpf; -+ cacosf(tmpf); -+ casinf(tmpf); -+ catanf(tmpf); -+ cacoshf(tmpf); -+ casinhf(tmpf); -+ catanhf(tmpf); -+ typedef __complex__ double double_type; double_type tmpd; -+ cacos(tmpd); -+ casin(tmpd); -+ catan(tmpd); -+ cacosh(tmpd); -+ casinh(tmpd); -+ catanh(tmpd); -+ typedef __complex__ long double ld_type; ld_type tmpld; -+ cacosl(tmpld); -+ casinl(tmpld); -+ catanl(tmpld); -+ cacoshl(tmpld); -+ casinhl(tmpld); -+ catanhl(tmpld); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_c99_complex_tr1=yes -+else -+ ac_c99_complex_tr1=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_c99_complex_tr1" >&5 -+$as_echo "$ac_c99_complex_tr1" >&6; } -+ if test x"$ac_c99_complex_tr1" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_C99_COMPLEX_TR1 1" >>confdefs.h -+ -+ fi -+ -+ # Check for the existence of functions. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support to TR1 in " >&5 -+$as_echo_n "checking for ISO C99 support to TR1 in ... " >&6; } -+if ${glibcxx_cv_c99_ctype_tr1+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+int ch; -+ int ret; -+ ret = isblank(ch); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_c99_ctype_tr1=yes -+else -+ glibcxx_cv_c99_ctype_tr1=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_c99_ctype_tr1" >&5 -+$as_echo "$glibcxx_cv_c99_ctype_tr1" >&6; } -+ if test x"$glibcxx_cv_c99_ctype_tr1" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_C99_CTYPE_TR1 1" >>confdefs.h -+ -+ fi -+ -+ # Check for the existence of functions. -+ for ac_header in fenv.h -+do : -+ ac_fn_cxx_check_header_mongrel "$LINENO" "fenv.h" "ac_cv_header_fenv_h" "$ac_includes_default" -+if test "x$ac_cv_header_fenv_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FENV_H 1 -+_ACEOF -+ ac_has_fenv_h=yes -+else -+ ac_has_fenv_h=no -+fi -+ -+done -+ -+ ac_c99_fenv_tr1=no; -+ if test x"$ac_has_fenv_h" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support to TR1 in " >&5 -+$as_echo_n "checking for ISO C99 support to TR1 in ... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+int except, mode; -+ fexcept_t* pflag; -+ fenv_t* penv; -+ int ret; -+ ret = feclearexcept(except); -+ ret = fegetexceptflag(pflag, except); -+ ret = feraiseexcept(except); -+ ret = fesetexceptflag(pflag, except); -+ ret = fetestexcept(except); -+ ret = fegetround(); -+ ret = fesetround(mode); -+ ret = fegetenv(penv); -+ ret = feholdexcept(penv); -+ ret = fesetenv(penv); -+ ret = feupdateenv(penv); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_c99_fenv_tr1=yes -+else -+ ac_c99_fenv_tr1=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_c99_fenv_tr1" >&5 -+$as_echo "$ac_c99_fenv_tr1" >&6; } -+ fi -+ if test x"$ac_c99_fenv_tr1" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_C99_FENV_TR1 1" >>confdefs.h -+ -+ fi -+ -+ # Check for the existence of types. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support to TR1 in " >&5 -+$as_echo_n "checking for ISO C99 support to TR1 in ... " >&6; } -+if ${glibcxx_cv_c99_stdint_tr1+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#define __STDC_LIMIT_MACROS -+ #define __STDC_CONSTANT_MACROS -+ #include -+int -+main () -+{ -+typedef int8_t my_int8_t; -+ my_int8_t i8 = INT8_MIN; -+ i8 = INT8_MAX; -+ typedef int16_t my_int16_t; -+ my_int16_t i16 = INT16_MIN; -+ i16 = INT16_MAX; -+ typedef int32_t my_int32_t; -+ my_int32_t i32 = INT32_MIN; -+ i32 = INT32_MAX; -+ typedef int64_t my_int64_t; -+ my_int64_t i64 = INT64_MIN; -+ i64 = INT64_MAX; -+ typedef int_fast8_t my_int_fast8_t; -+ my_int_fast8_t if8 = INT_FAST8_MIN; -+ if8 = INT_FAST8_MAX; -+ typedef int_fast16_t my_int_fast16_t; -+ my_int_fast16_t if16 = INT_FAST16_MIN; -+ if16 = INT_FAST16_MAX; -+ typedef int_fast32_t my_int_fast32_t; -+ my_int_fast32_t if32 = INT_FAST32_MIN; -+ if32 = INT_FAST32_MAX; -+ typedef int_fast64_t my_int_fast64_t; -+ my_int_fast64_t if64 = INT_FAST64_MIN; -+ if64 = INT_FAST64_MAX; -+ typedef int_least8_t my_int_least8_t; -+ my_int_least8_t il8 = INT_LEAST8_MIN; -+ il8 = INT_LEAST8_MAX; -+ typedef int_least16_t my_int_least16_t; -+ my_int_least16_t il16 = INT_LEAST16_MIN; -+ il16 = INT_LEAST16_MAX; -+ typedef int_least32_t my_int_least32_t; -+ my_int_least32_t il32 = INT_LEAST32_MIN; -+ il32 = INT_LEAST32_MAX; -+ typedef int_least64_t my_int_least64_t; -+ my_int_least64_t il64 = INT_LEAST64_MIN; -+ il64 = INT_LEAST64_MAX; -+ typedef intmax_t my_intmax_t; -+ my_intmax_t im = INTMAX_MAX; -+ im = INTMAX_MIN; -+ typedef intptr_t my_intptr_t; -+ my_intptr_t ip = INTPTR_MAX; -+ ip = INTPTR_MIN; -+ typedef uint8_t my_uint8_t; -+ my_uint8_t ui8 = UINT8_MAX; -+ ui8 = UINT8_MAX; -+ typedef uint16_t my_uint16_t; -+ my_uint16_t ui16 = UINT16_MAX; -+ ui16 = UINT16_MAX; -+ typedef uint32_t my_uint32_t; -+ my_uint32_t ui32 = UINT32_MAX; -+ ui32 = UINT32_MAX; -+ typedef uint64_t my_uint64_t; -+ my_uint64_t ui64 = UINT64_MAX; -+ ui64 = UINT64_MAX; -+ typedef uint_fast8_t my_uint_fast8_t; -+ my_uint_fast8_t uif8 = UINT_FAST8_MAX; -+ uif8 = UINT_FAST8_MAX; -+ typedef uint_fast16_t my_uint_fast16_t; -+ my_uint_fast16_t uif16 = UINT_FAST16_MAX; -+ uif16 = UINT_FAST16_MAX; -+ typedef uint_fast32_t my_uint_fast32_t; -+ my_uint_fast32_t uif32 = UINT_FAST32_MAX; -+ uif32 = UINT_FAST32_MAX; -+ typedef uint_fast64_t my_uint_fast64_t; -+ my_uint_fast64_t uif64 = UINT_FAST64_MAX; -+ uif64 = UINT_FAST64_MAX; -+ typedef uint_least8_t my_uint_least8_t; -+ my_uint_least8_t uil8 = UINT_LEAST8_MAX; -+ uil8 = UINT_LEAST8_MAX; -+ typedef uint_least16_t my_uint_least16_t; -+ my_uint_least16_t uil16 = UINT_LEAST16_MAX; -+ uil16 = UINT_LEAST16_MAX; -+ typedef uint_least32_t my_uint_least32_t; -+ my_uint_least32_t uil32 = UINT_LEAST32_MAX; -+ uil32 = UINT_LEAST32_MAX; -+ typedef uint_least64_t my_uint_least64_t; -+ my_uint_least64_t uil64 = UINT_LEAST64_MAX; -+ uil64 = UINT_LEAST64_MAX; -+ typedef uintmax_t my_uintmax_t; -+ my_uintmax_t uim = UINTMAX_MAX; -+ uim = UINTMAX_MAX; -+ typedef uintptr_t my_uintptr_t; -+ my_uintptr_t uip = UINTPTR_MAX; -+ uip = UINTPTR_MAX; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_c99_stdint_tr1=yes -+else -+ glibcxx_cv_c99_stdint_tr1=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_c99_stdint_tr1" >&5 -+$as_echo "$glibcxx_cv_c99_stdint_tr1" >&6; } -+ if test x"$glibcxx_cv_c99_stdint_tr1" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_C99_STDINT_TR1 1" >>confdefs.h -+ -+ fi -+ -+ # Check for the existence of functions. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support to TR1 in " >&5 -+$as_echo_n "checking for ISO C99 support to TR1 in ... " >&6; } -+if ${glibcxx_cv_c99_math_tr1+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+typedef double_t my_double_t; -+ typedef float_t my_float_t; -+ acosh(0.0); -+ acoshf(0.0f); -+ acoshl(0.0l); -+ asinh(0.0); -+ asinhf(0.0f); -+ asinhl(0.0l); -+ atanh(0.0); -+ atanhf(0.0f); -+ atanhl(0.0l); -+ cbrt(0.0); -+ cbrtf(0.0f); -+ cbrtl(0.0l); -+ copysign(0.0, 0.0); -+ copysignf(0.0f, 0.0f); -+ copysignl(0.0l, 0.0l); -+ erf(0.0); -+ erff(0.0f); -+ erfl(0.0l); -+ erfc(0.0); -+ erfcf(0.0f); -+ erfcl(0.0l); -+ exp2(0.0); -+ exp2f(0.0f); -+ exp2l(0.0l); -+ expm1(0.0); -+ expm1f(0.0f); -+ expm1l(0.0l); -+ fdim(0.0, 0.0); -+ fdimf(0.0f, 0.0f); -+ fdiml(0.0l, 0.0l); -+ fma(0.0, 0.0, 0.0); -+ fmaf(0.0f, 0.0f, 0.0f); -+ fmal(0.0l, 0.0l, 0.0l); -+ fmax(0.0, 0.0); -+ fmaxf(0.0f, 0.0f); -+ fmaxl(0.0l, 0.0l); -+ fmin(0.0, 0.0); -+ fminf(0.0f, 0.0f); -+ fminl(0.0l, 0.0l); -+ hypot(0.0, 0.0); -+ hypotf(0.0f, 0.0f); -+ hypotl(0.0l, 0.0l); -+ ilogb(0.0); -+ ilogbf(0.0f); -+ ilogbl(0.0l); -+ lgamma(0.0); -+ lgammaf(0.0f); -+ lgammal(0.0l); -+ #ifndef __APPLE__ /* see below */ -+ llrint(0.0); -+ llrintf(0.0f); -+ llrintl(0.0l); -+ llround(0.0); -+ llroundf(0.0f); -+ llroundl(0.0l); -+ #endif -+ log1p(0.0); -+ log1pf(0.0f); -+ log1pl(0.0l); -+ log2(0.0); -+ log2f(0.0f); -+ log2l(0.0l); -+ logb(0.0); -+ logbf(0.0f); -+ logbl(0.0l); -+ lrint(0.0); -+ lrintf(0.0f); -+ lrintl(0.0l); -+ lround(0.0); -+ lroundf(0.0f); -+ lroundl(0.0l); -+ nan(0); -+ nanf(0); -+ nanl(0); -+ nearbyint(0.0); -+ nearbyintf(0.0f); -+ nearbyintl(0.0l); -+ nextafter(0.0, 0.0); -+ nextafterf(0.0f, 0.0f); -+ nextafterl(0.0l, 0.0l); -+ nexttoward(0.0, 0.0); -+ nexttowardf(0.0f, 0.0f); -+ nexttowardl(0.0l, 0.0l); -+ remainder(0.0, 0.0); -+ remainderf(0.0f, 0.0f); -+ remainderl(0.0l, 0.0l); -+ remquo(0.0, 0.0, 0); -+ remquof(0.0f, 0.0f, 0); -+ remquol(0.0l, 0.0l, 0); -+ rint(0.0); -+ rintf(0.0f); -+ rintl(0.0l); -+ round(0.0); -+ roundf(0.0f); -+ roundl(0.0l); -+ scalbln(0.0, 0l); -+ scalblnf(0.0f, 0l); -+ scalblnl(0.0l, 0l); -+ scalbn(0.0, 0); -+ scalbnf(0.0f, 0); -+ scalbnl(0.0l, 0); -+ tgamma(0.0); -+ tgammaf(0.0f); -+ tgammal(0.0l); -+ trunc(0.0); -+ truncf(0.0f); -+ truncl(0.0l); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_c99_math_tr1=yes -+else -+ glibcxx_cv_c99_math_tr1=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_c99_math_tr1" >&5 -+$as_echo "$glibcxx_cv_c99_math_tr1" >&6; } -+ if test x"$glibcxx_cv_c99_math_tr1" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_C99_MATH_TR1 1" >>confdefs.h -+ -+ -+ case "${target_os}" in -+ darwin*) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 rounding functions in " >&5 -+$as_echo_n "checking for ISO C99 rounding functions in ... " >&6; } -+if ${glibcxx_cv_c99_math_llround+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+llrint(0.0); -+ llrintf(0.0f); -+ llrintl(0.0l); -+ llround(0.0); -+ llroundf(0.0f); -+ llroundl(0.0l); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_c99_math_llround=yes -+else -+ glibcxx_cv_c99_math_llround=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_c99_math_llround" >&5 -+$as_echo "$glibcxx_cv_c99_math_llround" >&6; } -+ ;; -+ esac -+ if test x"$glibcxx_cv_c99_math_llround" = x"no"; then -+ -+$as_echo "@%:@define _GLIBCXX_NO_C99_ROUNDING_FUNCS 1" >>confdefs.h -+ -+ fi -+ fi -+ -+ # Check for the existence of functions (NB: doesn't make -+ # sense if the glibcxx_cv_c99_stdint_tr1 check fails, per C99, 7.8/1). -+ ac_c99_inttypes_tr1=no; -+ if test x"$glibcxx_cv_c99_stdint_tr1" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ISO C99 support to TR1 in " >&5 -+$as_echo_n "checking for ISO C99 support to TR1 in ... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+intmax_t i, numer, denom, base; -+ const char* s; -+ char** endptr; -+ intmax_t ret = imaxabs(i); -+ imaxdiv_t dret = imaxdiv(numer, denom); -+ ret = strtoimax(s, endptr, base); -+ uintmax_t uret = strtoumax(s, endptr, base); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_c99_inttypes_tr1=yes -+else -+ ac_c99_inttypes_tr1=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_c99_inttypes_tr1" >&5 -+$as_echo "$ac_c99_inttypes_tr1" >&6; } -+ fi -+ if test x"$ac_c99_inttypes_tr1" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_C99_INTTYPES_TR1 1" >>confdefs.h -+ -+ fi -+ -+ # Check for the existence of wchar_t functions (NB: doesn't -+ # make sense if the glibcxx_cv_c99_stdint_tr1 check fails, per C99, 7.8/1). -+ ac_c99_inttypes_wchar_t_tr1=no; -+ if test x"$glibcxx_cv_c99_stdint_tr1" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wchar_t ISO C99 support to TR1 in " >&5 -+$as_echo_n "checking for wchar_t ISO C99 support to TR1 in ... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+intmax_t base; -+ const wchar_t* s; -+ wchar_t** endptr; -+ intmax_t ret = wcstoimax(s, endptr, base); -+ uintmax_t uret = wcstoumax(s, endptr, base); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_c99_inttypes_wchar_t_tr1=yes -+else -+ ac_c99_inttypes_wchar_t_tr1=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_c99_inttypes_wchar_t_tr1" >&5 -+$as_echo "$ac_c99_inttypes_wchar_t_tr1" >&6; } -+ fi -+ if test x"$ac_c99_inttypes_wchar_t_tr1" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1" >>confdefs.h -+ -+ fi -+ -+ # Check for the existence of the header. -+ for ac_header in stdbool.h -+do : -+ ac_fn_cxx_check_header_mongrel "$LINENO" "stdbool.h" "ac_cv_header_stdbool_h" "$ac_includes_default" -+if test "x$ac_cv_header_stdbool_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STDBOOL_H 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ -+ # Check for the existence of the header. -+ for ac_header in stdalign.h -+do : -+ ac_fn_cxx_check_header_mongrel "$LINENO" "stdalign.h" "ac_cv_header_stdalign_h" "$ac_includes_default" -+if test "x$ac_cv_header_stdalign_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STDALIGN_H 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+# For the EOF, SEEK_CUR, and SEEK_END integer constants. -+ -+ -+if test "$is_hosted" = yes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the value of EOF" >&5 -+$as_echo_n "checking for the value of EOF... " >&6; } -+if ${glibcxx_cv_stdio_eof+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if ac_fn_c_compute_int "$LINENO" "EOF" "glibcxx_cv_stdio_eof" "#include "; then : -+ -+else -+ as_fn_error $? "computing EOF failed" "$LINENO" 5 -+fi -+ -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_stdio_eof" >&5 -+$as_echo "$glibcxx_cv_stdio_eof" >&6; } -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define _GLIBCXX_STDIO_EOF $glibcxx_cv_stdio_eof -+_ACEOF -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the value of SEEK_CUR" >&5 -+$as_echo_n "checking for the value of SEEK_CUR... " >&6; } -+if ${glibcxx_cv_stdio_seek_cur+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if ac_fn_c_compute_int "$LINENO" "SEEK_CUR" "glibcxx_cv_stdio_seek_cur" "#include "; then : -+ -+else -+ as_fn_error $? "computing SEEK_CUR failed" "$LINENO" 5 -+fi -+ -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_stdio_seek_cur" >&5 -+$as_echo "$glibcxx_cv_stdio_seek_cur" >&6; } -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define _GLIBCXX_STDIO_SEEK_CUR $glibcxx_cv_stdio_seek_cur -+_ACEOF -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the value of SEEK_END" >&5 -+$as_echo_n "checking for the value of SEEK_END... " >&6; } -+if ${glibcxx_cv_stdio_seek_end+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if ac_fn_c_compute_int "$LINENO" "SEEK_END" "glibcxx_cv_stdio_seek_end" "#include "; then : -+ -+else -+ as_fn_error $? "computing SEEK_END failed" "$LINENO" 5 -+fi -+ -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_stdio_seek_end" >&5 -+$as_echo "$glibcxx_cv_stdio_seek_end" >&6; } -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define _GLIBCXX_STDIO_SEEK_END $glibcxx_cv_stdio_seek_end -+_ACEOF -+ -+fi -+ -+ -+# For gettimeofday support. -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gettimeofday" >&5 -+$as_echo_n "checking for gettimeofday... " >&6; } -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -fno-exceptions" -+ -+ ac_has_gettimeofday=no; -+ for ac_header in sys/time.h -+do : -+ ac_fn_cxx_check_header_mongrel "$LINENO" "sys/time.h" "ac_cv_header_sys_time_h" "$ac_includes_default" -+if test "x$ac_cv_header_sys_time_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SYS_TIME_H 1 -+_ACEOF -+ ac_has_sys_time_h=yes -+else -+ ac_has_sys_time_h=no -+fi -+ -+done -+ -+ if test x"$ac_has_sys_time_h" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gettimeofday" >&5 -+$as_echo_n "checking for gettimeofday... " >&6; } -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+timeval tv; gettimeofday(&tv, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_has_gettimeofday=yes -+else -+ ac_has_gettimeofday=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+timeval tv; gettimeofday(&tv, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ ac_has_gettimeofday=yes -+else -+ ac_has_gettimeofday=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_has_gettimeofday" >&5 -+$as_echo "$ac_has_gettimeofday" >&6; } -+ fi -+ -+ if test x"$ac_has_gettimeofday" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_GETTIMEOFDAY 1" >>confdefs.h -+ -+ fi -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+# For clock_gettime, nanosleep and sched_yield support. -+ -+ -+ @%:@ Check whether --enable-libstdcxx-time was given. -+if test "${enable_libstdcxx_time+set}" = set; then : -+ enableval=$enable_libstdcxx_time; -+ case "$enableval" in -+ yes|no|rt) ;; -+ *) as_fn_error $? "Unknown argument to enable/disable libstdcxx-time" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_libstdcxx_time=auto -+fi -+ -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -fno-exceptions" -+ ac_save_LIBS="$LIBS" -+ -+ ac_has_clock_monotonic=no -+ ac_has_clock_realtime=no -+ ac_has_nanosleep=no -+ ac_has_sched_yield=no -+ -+ if test x"$enable_libstdcxx_time" = x"auto"; then -+ -+ case "${target_os}" in -+ cygwin*) -+ ac_has_nanosleep=yes -+ ;; -+ darwin*) -+ ac_has_nanosleep=yes -+ ac_has_sched_yield=yes -+ ;; -+ # VxWorks has nanosleep as soon as the kernel is configured with -+ # INCLUDE_POSIX_TIMERS, which is normally/most-often the case. -+ vxworks*) -+ ac_has_nanosleep=yes -+ ;; -+ gnu* | linux* | kfreebsd*-gnu | knetbsd*-gnu) -+ # Don't use link test for freestanding library, in case gcc_no_link=yes -+ if test x"$is_hosted" = xyes; then -+ # Versions of glibc before 2.17 needed -lrt for clock_gettime. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing clock_gettime" >&5 -+$as_echo_n "checking for library containing clock_gettime... " >&6; } -+if ${ac_cv_search_clock_gettime+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_func_search_save_LIBS=$LIBS -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char clock_gettime (); -+int -+main () -+{ -+return clock_gettime (); -+ ; -+ return 0; -+} -+_ACEOF -+for ac_lib in '' rt; do -+ if test -z "$ac_lib"; then -+ ac_res="none required" -+ else -+ ac_res=-l$ac_lib -+ LIBS="-l$ac_lib $ac_func_search_save_LIBS" -+ fi -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+if ac_fn_cxx_try_link "$LINENO"; then : -+ ac_cv_search_clock_gettime=$ac_res -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext -+ if ${ac_cv_search_clock_gettime+:} false; then : -+ break -+fi -+done -+if ${ac_cv_search_clock_gettime+:} false; then : -+ -+else -+ ac_cv_search_clock_gettime=no -+fi -+rm conftest.$ac_ext -+LIBS=$ac_func_search_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_clock_gettime" >&5 -+$as_echo "$ac_cv_search_clock_gettime" >&6; } -+ac_res=$ac_cv_search_clock_gettime -+if test "$ac_res" != no; then : -+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" -+ -+fi -+ -+ if test x"$ac_cv_search_clock_gettime" = x"none required"; then -+ ac_has_clock_monotonic=yes -+ ac_has_clock_realtime=yes -+ fi -+ fi -+ ac_has_nanosleep=yes -+ ac_has_sched_yield=yes -+ ;; -+ freebsd*|netbsd*|dragonfly*|rtems*) -+ ac_has_clock_monotonic=yes -+ ac_has_clock_realtime=yes -+ ac_has_nanosleep=yes -+ ac_has_sched_yield=yes -+ ;; -+ openbsd*) -+ ac_has_clock_monotonic=yes -+ ac_has_clock_realtime=yes -+ ac_has_nanosleep=yes -+ ;; -+ solaris*) -+ ac_has_clock_monotonic=yes -+ ac_has_clock_realtime=yes -+ ac_has_nanosleep=yes -+ ac_has_sched_yield=yes -+ ;; -+ uclinux*) -+ ac_has_nanosleep=yes -+ ac_has_sched_yield=yes -+ esac -+ -+ elif test x"$enable_libstdcxx_time" != x"no"; then -+ -+ if test x"$enable_libstdcxx_time" = x"rt"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing clock_gettime" >&5 -+$as_echo_n "checking for library containing clock_gettime... " >&6; } -+if ${ac_cv_search_clock_gettime+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_func_search_save_LIBS=$LIBS -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char clock_gettime (); -+int -+main () -+{ -+return clock_gettime (); -+ ; -+ return 0; -+} -+_ACEOF -+for ac_lib in '' rt; do -+ if test -z "$ac_lib"; then -+ ac_res="none required" -+ else -+ ac_res=-l$ac_lib -+ LIBS="-l$ac_lib $ac_func_search_save_LIBS" -+ fi -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+if ac_fn_cxx_try_link "$LINENO"; then : -+ ac_cv_search_clock_gettime=$ac_res -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext -+ if ${ac_cv_search_clock_gettime+:} false; then : -+ break -+fi -+done -+if ${ac_cv_search_clock_gettime+:} false; then : -+ -+else -+ ac_cv_search_clock_gettime=no -+fi -+rm conftest.$ac_ext -+LIBS=$ac_func_search_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_clock_gettime" >&5 -+$as_echo "$ac_cv_search_clock_gettime" >&6; } -+ac_res=$ac_cv_search_clock_gettime -+if test "$ac_res" != no; then : -+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing nanosleep" >&5 -+$as_echo_n "checking for library containing nanosleep... " >&6; } -+if ${ac_cv_search_nanosleep+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_func_search_save_LIBS=$LIBS -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char nanosleep (); -+int -+main () -+{ -+return nanosleep (); -+ ; -+ return 0; -+} -+_ACEOF -+for ac_lib in '' rt; do -+ if test -z "$ac_lib"; then -+ ac_res="none required" -+ else -+ ac_res=-l$ac_lib -+ LIBS="-l$ac_lib $ac_func_search_save_LIBS" -+ fi -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+if ac_fn_cxx_try_link "$LINENO"; then : -+ ac_cv_search_nanosleep=$ac_res -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext -+ if ${ac_cv_search_nanosleep+:} false; then : -+ break -+fi -+done -+if ${ac_cv_search_nanosleep+:} false; then : -+ -+else -+ ac_cv_search_nanosleep=no -+fi -+rm conftest.$ac_ext -+LIBS=$ac_func_search_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_nanosleep" >&5 -+$as_echo "$ac_cv_search_nanosleep" >&6; } -+ac_res=$ac_cv_search_nanosleep -+if test "$ac_res" != no; then : -+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" -+ -+fi -+ -+ else -+ ac_fn_cxx_check_func "$LINENO" "clock_gettime" "ac_cv_func_clock_gettime" -+if test "x$ac_cv_func_clock_gettime" = xyes; then : -+ -+fi -+ -+ ac_fn_cxx_check_func "$LINENO" "nanosleep" "ac_cv_func_nanosleep" -+if test "x$ac_cv_func_nanosleep" = xyes; then : -+ -+fi -+ -+ fi -+ -+ case "$ac_cv_search_clock_gettime" in -+ -l*) GLIBCXX_LIBS=$ac_cv_search_clock_gettime -+ ;; -+ esac -+ case "$ac_cv_search_nanosleep" in -+ -l*) GLIBCXX_LIBS="$GLIBCXX_LIBS $ac_cv_search_nanosleep" -+ ;; -+ esac -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing sched_yield" >&5 -+$as_echo_n "checking for library containing sched_yield... " >&6; } -+if ${ac_cv_search_sched_yield+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_func_search_save_LIBS=$LIBS -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char sched_yield (); -+int -+main () -+{ -+return sched_yield (); -+ ; -+ return 0; -+} -+_ACEOF -+for ac_lib in '' rt; do -+ if test -z "$ac_lib"; then -+ ac_res="none required" -+ else -+ ac_res=-l$ac_lib -+ LIBS="-l$ac_lib $ac_func_search_save_LIBS" -+ fi -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+if ac_fn_cxx_try_link "$LINENO"; then : -+ ac_cv_search_sched_yield=$ac_res -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext -+ if ${ac_cv_search_sched_yield+:} false; then : -+ break -+fi -+done -+if ${ac_cv_search_sched_yield+:} false; then : -+ -+else -+ ac_cv_search_sched_yield=no -+fi -+rm conftest.$ac_ext -+LIBS=$ac_func_search_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_sched_yield" >&5 -+$as_echo "$ac_cv_search_sched_yield" >&6; } -+ac_res=$ac_cv_search_sched_yield -+if test "$ac_res" != no; then : -+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" -+ -+fi -+ -+ -+ case "$ac_cv_search_sched_yield" in -+ -lrt*) -+ if test x"$enable_libstdcxx_time" = x"rt"; then -+ GLIBCXX_LIBS="$GLIBCXX_LIBS $ac_cv_search_sched_yield" -+ ac_has_sched_yield=yes -+ fi -+ ;; -+ *) -+ ac_has_sched_yield=yes -+ ;; -+ esac -+ -+ for ac_header in unistd.h -+do : -+ ac_fn_cxx_check_header_mongrel "$LINENO" "unistd.h" "ac_cv_header_unistd_h" "$ac_includes_default" -+if test "x$ac_cv_header_unistd_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_UNISTD_H 1 -+_ACEOF -+ ac_has_unistd_h=yes -+else -+ ac_has_unistd_h=no -+fi -+ -+done -+ -+ -+ if test x"$ac_has_unistd_h" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for monotonic clock" >&5 -+$as_echo_n "checking for monotonic clock... " >&6; } -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ -+int -+main () -+{ -+#if _POSIX_TIMERS > 0 && defined(_POSIX_MONOTONIC_CLOCK) -+ timespec tp; -+ #endif -+ clock_gettime(CLOCK_MONOTONIC, &tp); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ ac_has_clock_monotonic=yes -+else -+ ac_has_clock_monotonic=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_has_clock_monotonic" >&5 -+$as_echo "$ac_has_clock_monotonic" >&6; } -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for realtime clock" >&5 -+$as_echo_n "checking for realtime clock... " >&6; } -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ -+int -+main () -+{ -+#if _POSIX_TIMERS > 0 -+ timespec tp; -+ #endif -+ clock_gettime(CLOCK_REALTIME, &tp); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ ac_has_clock_realtime=yes -+else -+ ac_has_clock_realtime=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_has_clock_realtime" >&5 -+$as_echo "$ac_has_clock_realtime" >&6; } -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for nanosleep" >&5 -+$as_echo_n "checking for nanosleep... " >&6; } -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ -+int -+main () -+{ -+#if _POSIX_TIMERS > 0 -+ timespec tp; -+ #endif -+ nanosleep(&tp, 0); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ ac_has_nanosleep=yes -+else -+ ac_has_nanosleep=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_has_nanosleep" >&5 -+$as_echo "$ac_has_nanosleep" >&6; } -+ fi -+ fi -+ -+ if test x"$ac_has_clock_monotonic" != x"yes"; then -+ case ${target_os} in -+ linux* | uclinux*) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for clock_gettime syscall" >&5 -+$as_echo_n "checking for clock_gettime syscall... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ #include -+ -+int -+main () -+{ -+#if _POSIX_TIMERS > 0 && defined(_POSIX_MONOTONIC_CLOCK) -+ timespec tp; -+ #endif -+ syscall(SYS_clock_gettime, CLOCK_MONOTONIC, &tp); -+ syscall(SYS_clock_gettime, CLOCK_REALTIME, &tp); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_has_clock_gettime_syscall=yes -+else -+ ac_has_clock_gettime_syscall=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_has_clock_gettime_syscall" >&5 -+$as_echo "$ac_has_clock_gettime_syscall" >&6; } -+ if test x"$ac_has_clock_gettime_syscall" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_CLOCK_GETTIME_SYSCALL 1" >>confdefs.h -+ -+ ac_has_clock_monotonic=yes -+ ac_has_clock_realtime=yes -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct timespec that matches syscall" >&5 -+$as_echo_n "checking for struct timespec that matches syscall... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ -+int -+main () -+{ -+#ifdef SYS_clock_gettime64 -+ #if SYS_clock_gettime64 != SYS_clock_gettime -+ // We need to use SYS_clock_gettime and libc appears to -+ // also know about the SYS_clock_gettime64 syscall. -+ // Check that userspace doesn't use time64 version of timespec. -+ static_assert(sizeof(timespec::tv_sec) == sizeof(long), -+ "struct timespec must be compatible with SYS_clock_gettime"); -+ #endif -+ #endif -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_timespec_matches_syscall=yes -+else -+ ac_timespec_matches_syscall=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_timespec_matches_syscall" >&5 -+$as_echo "$ac_timespec_matches_syscall" >&6; } -+ if test x"$ac_timespec_matches_syscall" = no; then -+ as_fn_error $? "struct timespec is not compatible with SYS_clock_gettime, please report a bug to http://gcc.gnu.org/bugzilla" "$LINENO" 5 -+ fi -+ fi;; -+ esac -+ fi -+ -+ if test x"$ac_has_clock_monotonic" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_CLOCK_MONOTONIC 1" >>confdefs.h -+ -+ fi -+ -+ if test x"$ac_has_clock_realtime" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_CLOCK_REALTIME 1" >>confdefs.h -+ -+ fi -+ -+ if test x"$ac_has_sched_yield" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_SCHED_YIELD 1" >>confdefs.h -+ -+ fi -+ -+ if test x"$ac_has_nanosleep" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_NANOSLEEP 1" >>confdefs.h -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sleep" >&5 -+$as_echo_n "checking for sleep... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+sleep(1) -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_has_sleep=yes -+else -+ ac_has_sleep=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ if test x"$ac_has_sleep" = x"yes"; then -+ -+$as_echo "@%:@define HAVE_SLEEP 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_has_sleep" >&5 -+$as_echo "$ac_has_sleep" >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for usleep" >&5 -+$as_echo_n "checking for usleep... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+sleep(1); -+ usleep(100); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_has_usleep=yes -+else -+ ac_has_usleep=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ if test x"$ac_has_usleep" = x"yes"; then -+ -+$as_echo "@%:@define HAVE_USLEEP 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_has_usleep" >&5 -+$as_echo "$ac_has_usleep" >&6; } -+ fi -+ -+ if test x"$ac_has_nanosleep$ac_has_sleep" = x"nono"; then -+ ac_no_sleep=yes -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Sleep" >&5 -+$as_echo_n "checking for Sleep... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+Sleep(1) -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_has_win32_sleep=yes -+else -+ ac_has_win32_sleep=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ if test x"$ac_has_win32_sleep" = x"yes"; then -+ -+$as_echo "@%:@define HAVE_WIN32_SLEEP 1" >>confdefs.h -+ -+ ac_no_sleep=no -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_has_win32_sleep" >&5 -+$as_echo "$ac_has_win32_sleep" >&6; } -+ fi -+ -+ if test x"$ac_no_sleep" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_NO_SLEEP 1" >>confdefs.h -+ -+ fi -+ -+ -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ LIBS="$ac_save_LIBS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+# Check for tmpnam which is obsolescent in POSIX.1-2008 -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -fno-exceptions" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tmpnam" >&5 -+$as_echo_n "checking for tmpnam... " >&6; } -+if ${glibcxx_cv_TMPNAM+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+char *tmp = tmpnam(NULL); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_TMPNAM=yes -+else -+ glibcxx_cv_TMPNAM=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+char *tmp = tmpnam(NULL); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_TMPNAM=yes -+else -+ glibcxx_cv_TMPNAM=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_TMPNAM" >&5 -+$as_echo "$glibcxx_cv_TMPNAM" >&6; } -+ if test $glibcxx_cv_TMPNAM = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_TMPNAM 1" >>confdefs.h -+ -+ fi -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+# For pthread_cond_clockwait -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -fno-exceptions" -+ ac_save_LIBS="$LIBS" -+ LIBS="$LIBS -lpthread" -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_cond_clockwait" >&5 -+$as_echo_n "checking for pthread_cond_clockwait... " >&6; } -+if ${glibcxx_cv_PTHREAD_COND_CLOCKWAIT+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+pthread_mutex_t mutex; pthread_cond_t cond; struct timespec ts; int n = pthread_cond_clockwait(&cond, &mutex, 0, &ts); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_PTHREAD_COND_CLOCKWAIT=yes -+else -+ glibcxx_cv_PTHREAD_COND_CLOCKWAIT=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+pthread_mutex_t mutex; pthread_cond_t cond; struct timespec ts; int n = pthread_cond_clockwait(&cond, &mutex, 0, &ts); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_PTHREAD_COND_CLOCKWAIT=yes -+else -+ glibcxx_cv_PTHREAD_COND_CLOCKWAIT=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_PTHREAD_COND_CLOCKWAIT" >&5 -+$as_echo "$glibcxx_cv_PTHREAD_COND_CLOCKWAIT" >&6; } -+ if test $glibcxx_cv_PTHREAD_COND_CLOCKWAIT = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT 1" >>confdefs.h -+ -+ fi -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ LIBS="$ac_save_LIBS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+# For pthread_mutex_clocklock -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -fno-exceptions" -+ ac_save_LIBS="$LIBS" -+ LIBS="$LIBS -lpthread" -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_mutex_clocklock" >&5 -+$as_echo_n "checking for pthread_mutex_clocklock... " >&6; } -+if ${glibcxx_cv_PTHREAD_MUTEX_CLOCKLOCK+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+pthread_mutex_t mutex; struct timespec ts; int n = pthread_mutex_clocklock(&mutex, CLOCK_REALTIME, &ts); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_PTHREAD_MUTEX_CLOCKLOCK=yes -+else -+ glibcxx_cv_PTHREAD_MUTEX_CLOCKLOCK=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+pthread_mutex_t mutex; struct timespec ts; int n = pthread_mutex_clocklock(&mutex, CLOCK_REALTIME, &ts); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_PTHREAD_MUTEX_CLOCKLOCK=yes -+else -+ glibcxx_cv_PTHREAD_MUTEX_CLOCKLOCK=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_PTHREAD_MUTEX_CLOCKLOCK" >&5 -+$as_echo "$glibcxx_cv_PTHREAD_MUTEX_CLOCKLOCK" >&6; } -+ if test $glibcxx_cv_PTHREAD_MUTEX_CLOCKLOCK = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_PTHREAD_MUTEX_CLOCKLOCK 1" >>confdefs.h -+ -+ fi -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ LIBS="$ac_save_LIBS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+# For pthread_rwlock_clockrdlock and pthread_rwlock_clockwrlock -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -fno-exceptions" -+ ac_save_LIBS="$LIBS" -+ LIBS="$LIBS -lpthread" -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_rwlock_clockrdlock, pthread_wlock_clockwrlock" >&5 -+$as_echo_n "checking for pthread_rwlock_clockrdlock, pthread_wlock_clockwrlock... " >&6; } -+if ${glibcxx_cv_PTHREAD_RWLOCK_CLOCKLOCK+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+pthread_rwlock_t rwl; struct timespec ts; -+ int n = pthread_rwlock_clockrdlock(&rwl, CLOCK_REALTIME, &ts); -+ int m = pthread_rwlock_clockwrlock(&rwl, CLOCK_REALTIME, &ts); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_PTHREAD_RWLOCK_CLOCKLOCK=yes -+else -+ glibcxx_cv_PTHREAD_RWLOCK_CLOCKLOCK=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+pthread_rwlock_t rwl; struct timespec ts; -+ int n = pthread_rwlock_clockrdlock(&rwl, CLOCK_REALTIME, &ts); -+ int m = pthread_rwlock_clockwrlock(&rwl, CLOCK_REALTIME, &ts); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_PTHREAD_RWLOCK_CLOCKLOCK=yes -+else -+ glibcxx_cv_PTHREAD_RWLOCK_CLOCKLOCK=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_PTHREAD_RWLOCK_CLOCKLOCK" >&5 -+$as_echo "$glibcxx_cv_PTHREAD_RWLOCK_CLOCKLOCK" >&6; } -+ if test $glibcxx_cv_PTHREAD_RWLOCK_CLOCKLOCK = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_PTHREAD_RWLOCK_CLOCKLOCK 1" >>confdefs.h -+ -+ fi -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ LIBS="$ac_save_LIBS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ -+ ac_fn_c_check_header_mongrel "$LINENO" "locale.h" "ac_cv_header_locale_h" "$ac_includes_default" -+if test "x$ac_cv_header_locale_h" = xyes; then : -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5 -+$as_echo_n "checking for LC_MESSAGES... " >&6; } -+if ${ac_cv_val_LC_MESSAGES+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+return LC_MESSAGES -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_val_LC_MESSAGES=yes -+else -+ ac_cv_val_LC_MESSAGES=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_val_LC_MESSAGES" >&5 -+$as_echo "$ac_cv_val_LC_MESSAGES" >&6; } -+ if test $ac_cv_val_LC_MESSAGES = yes; then -+ -+$as_echo "@%:@define HAVE_LC_MESSAGES 1" >>confdefs.h -+ -+ fi -+ -+fi -+ -+ -+ -+ -+# For hardware_concurrency -+for ac_header in sys/sysinfo.h -+do : -+ ac_fn_c_check_header_mongrel "$LINENO" "sys/sysinfo.h" "ac_cv_header_sys_sysinfo_h" "$ac_includes_default" -+if test "x$ac_cv_header_sys_sysinfo_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SYS_SYSINFO_H 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -fno-exceptions" -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for get_nprocs" >&5 -+$as_echo_n "checking for get_nprocs... " >&6; } -+if ${glibcxx_cv_GET_NPROCS+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+int n = get_nprocs(); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_GET_NPROCS=yes -+else -+ glibcxx_cv_GET_NPROCS=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+int n = get_nprocs(); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_GET_NPROCS=yes -+else -+ glibcxx_cv_GET_NPROCS=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_GET_NPROCS" >&5 -+$as_echo "$glibcxx_cv_GET_NPROCS" >&6; } -+ if test $glibcxx_cv_GET_NPROCS = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_GET_NPROCS 1" >>confdefs.h -+ -+ fi -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+for ac_header in unistd.h -+do : -+ ac_fn_c_check_header_mongrel "$LINENO" "unistd.h" "ac_cv_header_unistd_h" "$ac_includes_default" -+if test "x$ac_cv_header_unistd_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_UNISTD_H 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -fno-exceptions" -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _SC_NPROCESSORS_ONLN" >&5 -+$as_echo_n "checking for _SC_NPROCESSORS_ONLN... " >&6; } -+if ${glibcxx_cv_SC_NPROCESSORS_ONLN+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+int n = sysconf(_SC_NPROCESSORS_ONLN); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_SC_NPROCESSORS_ONLN=yes -+else -+ glibcxx_cv_SC_NPROCESSORS_ONLN=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+int n = sysconf(_SC_NPROCESSORS_ONLN); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_SC_NPROCESSORS_ONLN=yes -+else -+ glibcxx_cv_SC_NPROCESSORS_ONLN=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_SC_NPROCESSORS_ONLN" >&5 -+$as_echo "$glibcxx_cv_SC_NPROCESSORS_ONLN" >&6; } -+ if test $glibcxx_cv_SC_NPROCESSORS_ONLN = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_SC_NPROCESSORS_ONLN 1" >>confdefs.h -+ -+ fi -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -fno-exceptions" -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _SC_NPROC_ONLN" >&5 -+$as_echo_n "checking for _SC_NPROC_ONLN... " >&6; } -+if ${glibcxx_cv_SC_NPROC_ONLN+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+int n = sysconf(_SC_NPROC_ONLN); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_SC_NPROC_ONLN=yes -+else -+ glibcxx_cv_SC_NPROC_ONLN=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+int n = sysconf(_SC_NPROC_ONLN); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_SC_NPROC_ONLN=yes -+else -+ glibcxx_cv_SC_NPROC_ONLN=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_SC_NPROC_ONLN" >&5 -+$as_echo "$glibcxx_cv_SC_NPROC_ONLN" >&6; } -+ if test $glibcxx_cv_SC_NPROC_ONLN = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_SC_NPROC_ONLN 1" >>confdefs.h -+ -+ fi -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -fno-exceptions" -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthreads_num_processors_np" >&5 -+$as_echo_n "checking for pthreads_num_processors_np... " >&6; } -+if ${glibcxx_cv_PTHREADS_NUM_PROCESSORS_NP+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+int n = pthread_num_processors_np(); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_PTHREADS_NUM_PROCESSORS_NP=yes -+else -+ glibcxx_cv_PTHREADS_NUM_PROCESSORS_NP=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+int n = pthread_num_processors_np(); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_PTHREADS_NUM_PROCESSORS_NP=yes -+else -+ glibcxx_cv_PTHREADS_NUM_PROCESSORS_NP=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_PTHREADS_NUM_PROCESSORS_NP" >&5 -+$as_echo "$glibcxx_cv_PTHREADS_NUM_PROCESSORS_NP" >&6; } -+ if test $glibcxx_cv_PTHREADS_NUM_PROCESSORS_NP = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP 1" >>confdefs.h -+ -+ fi -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -fno-exceptions" -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hw.ncpu sysctl" >&5 -+$as_echo_n "checking for hw.ncpu sysctl... " >&6; } -+if ${glibcxx_cv_SYSCTL_HW_NCPU+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+ #include -+ #include -+ -+int -+main () -+{ -+ -+ int count; -+ size_t size = sizeof(count); -+ int mib[] = { CTL_HW, HW_NCPU }; -+ sysctl(mib, 2, &count, &size, NULL, 0); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_SYSCTL_HW_NCPU=yes -+else -+ glibcxx_cv_SYSCTL_HW_NCPU=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+ #include -+ #include -+ -+int -+main () -+{ -+ -+ int count; -+ size_t size = sizeof(count); -+ int mib[] = { CTL_HW, HW_NCPU }; -+ sysctl(mib, 2, &count, &size, NULL, 0); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_SYSCTL_HW_NCPU=yes -+else -+ glibcxx_cv_SYSCTL_HW_NCPU=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_SYSCTL_HW_NCPU" >&5 -+$as_echo "$glibcxx_cv_SYSCTL_HW_NCPU" >&6; } -+ if test $glibcxx_cv_SYSCTL_HW_NCPU = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_SYSCTL_HW_NCPU 1" >>confdefs.h -+ -+ fi -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ # Note that this test has to be run with the C language. -+ # Otherwise, sdt.h will try to include some headers from -+ # libstdc++ itself. -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suitable sys/sdt.h" >&5 -+$as_echo_n "checking for suitable sys/sdt.h... " >&6; } -+if ${glibcxx_cv_sys_sdt_h+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ # Because we have to run the test in C, we use grep rather -+ # than the compiler to check for the bug. The bug is that -+ # were strings without trailing whitespace, causing g++ -+ # to look for operator"". The pattern searches for the fixed -+ # output. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+ #include -+ int f() { STAP_PROBE(hi, bob); } -+ -+_ACEOF -+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | -+ $EGREP " \",\" " >/dev/null 2>&1; then : -+ glibcxx_cv_sys_sdt_h=yes -+else -+ glibcxx_cv_sys_sdt_h=no -+fi -+rm -f conftest* -+ -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_sys_sdt_h" >&5 -+$as_echo "$glibcxx_cv_sys_sdt_h" >&6; } -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ if test $glibcxx_cv_sys_sdt_h = yes; then -+ -+$as_echo "@%:@define HAVE_SYS_SDT_H 1" >>confdefs.h -+ -+ fi -+ -+ -+# Check for available headers. -+for ac_header in endian.h execinfo.h float.h fp.h ieeefp.h inttypes.h \ -+locale.h machine/endian.h machine/param.h nan.h stdint.h stdlib.h string.h \ -+strings.h sys/ipc.h sys/isa_defs.h sys/machine.h sys/param.h \ -+sys/resource.h sys/sem.h sys/stat.h sys/time.h sys/types.h unistd.h \ -+wchar.h wctype.h linux/types.h -+do : -+ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -+ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ -+for ac_header in linux/random.h -+do : -+ ac_fn_c_check_header_compile "$LINENO" "linux/random.h" "ac_cv_header_linux_random_h" "#ifdef HAVE_LINUX_TYPES_H -+# include -+#endif -+ -+" -+if test "x$ac_cv_header_linux_random_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LINUX_RANDOM_H 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ -+for ac_header in xlocale.h -+do : -+ ac_fn_c_check_header_mongrel "$LINENO" "xlocale.h" "ac_cv_header_xlocale_h" "$ac_includes_default" -+if test "x$ac_cv_header_xlocale_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_XLOCALE_H 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ -+# Only do link tests if native. Else, hardcode. -+if $GLIBCXX_IS_NATIVE; then -+ -+ # We can do more elaborate tests that assume a working linker. -+ CANADIAN=no -+ -+ -+ -+@%:@ Check whether --with-gnu-ld was given. -+if test "${with_gnu_ld+set}" = set; then : -+ withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes -+else -+ with_gnu_ld=no -+fi -+ -+ac_prog=ld -+if test "$GCC" = yes; then -+ # Check if gcc -print-prog-name=ld gives a path. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 -+$as_echo_n "checking for ld used by $CC... " >&6; } -+ case $host in -+ *-*-mingw*) -+ # gcc leaves a trailing carriage return which upsets mingw -+ ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; -+ *) -+ ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; -+ esac -+ case $ac_prog in -+ # Accept absolute paths. -+ [\\/]* | ?:[\\/]*) -+ re_direlt='/[^/][^/]*/\.\./' -+ # Canonicalize the pathname of ld -+ ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` -+ while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do -+ ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` -+ done -+ test -z "$LD" && LD="$ac_prog" -+ ;; -+ "") -+ # If it fails, then pretend we aren't using GCC. -+ ac_prog=ld -+ ;; -+ *) -+ # If it is relative, then search for the first ld in PATH. -+ with_gnu_ld=unknown -+ ;; -+ esac -+elif test "$with_gnu_ld" = yes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 -+$as_echo_n "checking for GNU ld... " >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 -+$as_echo_n "checking for non-GNU ld... " >&6; } -+fi -+if ${lt_cv_path_LD+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -z "$LD"; then -+ lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR -+ for ac_dir in $PATH; do -+ IFS="$lt_save_ifs" -+ test -z "$ac_dir" && ac_dir=. -+ if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then -+ lt_cv_path_LD="$ac_dir/$ac_prog" -+ # Check to see if the program is GNU ld. I'd rather use --version, -+ # but apparently some variants of GNU ld only accept -v. -+ # Break only if it was the GNU/non-GNU ld that we prefer. -+ case `"$lt_cv_path_LD" -v 2>&1 &5 -+$as_echo "$LD" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 -+$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } -+if ${lt_cv_prog_gnu_ld+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ # I'd rather use --version here, but apparently some GNU lds only accept -v. -+case `$LD -v 2>&1 &5 -+$as_echo "$lt_cv_prog_gnu_ld" >&6; } -+with_gnu_ld=$lt_cv_prog_gnu_ld -+ -+ -+ -+ -+ -+ -+ -+ # If we're not using GNU ld, then there's no point in even trying these -+ # tests. Check for that first. We should have already tested for gld -+ # by now (in libtool), but require it now just to be safe... -+ test -z "$SECTION_LDFLAGS" && SECTION_LDFLAGS='' -+ test -z "$OPT_LDFLAGS" && OPT_LDFLAGS='' -+ -+ -+ -+ # The name set by libtool depends on the version of libtool. Shame on us -+ # for depending on an impl detail, but c'est la vie. Older versions used -+ # ac_cv_prog_gnu_ld, but now it's lt_cv_prog_gnu_ld, and is copied back on -+ # top of with_gnu_ld (which is also set by --with-gnu-ld, so that actually -+ # makes sense). We'll test with_gnu_ld everywhere else, so if that isn't -+ # set (hence we're using an older libtool), then set it. -+ if test x${with_gnu_ld+set} != xset; then -+ if test x${ac_cv_prog_gnu_ld+set} != xset; then -+ # We got through "ac_require(ac_prog_ld)" and still not set? Huh? -+ with_gnu_ld=no -+ else -+ with_gnu_ld=$ac_cv_prog_gnu_ld -+ fi -+ fi -+ -+ # Start by getting the version number. I think the libtool test already -+ # does some of this, but throws away the result. -+ glibcxx_ld_is_gold=no -+ glibcxx_ld_is_mold=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld version" >&5 -+$as_echo_n "checking for ld version... " >&6; } -+ -+ if $LD --version 2>/dev/null | grep 'GNU gold' >/dev/null 2>&1; then -+ glibcxx_ld_is_gold=yes -+ elif $LD --version 2>/dev/null | grep 'mold' >/dev/null 2>&1; then -+ glibcxx_ld_is_mold=yes -+ fi -+ ldver=`$LD --version 2>/dev/null | -+ sed -e 's/[. ][0-9]\{8\}$//;s/.* \([^ ]\{1,\}\)$/\1/; q'` -+ -+ glibcxx_gnu_ld_version=`echo $ldver | \ -+ $AWK -F. '{ if (NF<3) $3=0; print ($1*100+$2)*100+$3 }'` -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_gnu_ld_version" >&5 -+$as_echo "$glibcxx_gnu_ld_version" >&6; } -+ fi -+ -+ # Set --gc-sections. -+ glibcxx_have_gc_sections=no -+ if test "$glibcxx_ld_is_gold" = "yes" || test "$glibcxx_ld_is_mold" = "yes" ; then -+ if $LD --help 2>/dev/null | grep gc-sections >/dev/null 2>&1; then -+ glibcxx_have_gc_sections=yes -+ fi -+ else -+ glibcxx_gcsections_min_ld=21602 -+ if test x"$with_gnu_ld" = x"yes" && -+ test $glibcxx_gnu_ld_version -gt $glibcxx_gcsections_min_ld ; then -+ glibcxx_have_gc_sections=yes -+ fi -+ fi -+ if test "$glibcxx_have_gc_sections" = "yes"; then -+ # Sufficiently young GNU ld it is! Joy and bunny rabbits! -+ # NB: This flag only works reliably after 2.16.1. Configure tests -+ # for this are difficult, so hard wire a value that should work. -+ -+ ac_test_CFLAGS="${CFLAGS+set}" -+ ac_save_CFLAGS="$CFLAGS" -+ CFLAGS='-Wl,--gc-sections' -+ -+ # Check for -Wl,--gc-sections -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5 -+$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; } -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ int one(void) { return 1; } -+ int two(void) { return 2; } -+ -+int -+main () -+{ -+ two(); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_gcsections=yes -+else -+ ac_gcsections=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ if test "$ac_gcsections" = "yes"; then -+ rm -f conftest.c -+ touch conftest.c -+ if $CC -c conftest.c; then -+ if $LD --gc-sections -o conftest conftest.o 2>&1 | \ -+ grep "Warning: gc-sections option ignored" > /dev/null; then -+ ac_gcsections=no -+ fi -+ fi -+ rm -f conftest.c conftest.o conftest -+ fi -+ if test "$ac_gcsections" = "yes"; then -+ SECTION_LDFLAGS="-Wl,--gc-sections $SECTION_LDFLAGS" -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_gcsections" >&5 -+$as_echo "$ac_gcsections" >&6; } -+ -+ if test "$ac_test_CFLAGS" = set; then -+ CFLAGS="$ac_save_CFLAGS" -+ else -+ # this is the suspicious part -+ CFLAGS='' -+ fi -+ fi -+ -+ # Set -z,relro. -+ # Note this is only for shared objects. -+ ac_ld_relro=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ # cygwin and mingw uses PE, which has no ELF relro support, -+ # multi target ld may confuse configure machinery -+ case "$host" in -+ *-*-cygwin*) -+ ;; -+ *-*-mingw*) -+ ;; -+ *) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,-z,relro" >&5 -+$as_echo_n "checking for ld that supports -Wl,-z,relro... " >&6; } -+ cxx_z_relo=`$LD -v --help 2>/dev/null | grep "z relro"` -+ if test -n "$cxx_z_relo"; then -+ OPT_LDFLAGS="-Wl,-z,relro" -+ ac_ld_relro=yes -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ld_relro" >&5 -+$as_echo "$ac_ld_relro" >&6; } -+ esac -+ fi -+ -+ # Set linker optimization flags. -+ if test x"$with_gnu_ld" = x"yes"; then -+ OPT_LDFLAGS="-Wl,-O1 $OPT_LDFLAGS" -+ fi -+ -+ -+ -+ -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS='-fno-builtin -D_GNU_SOURCE' -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5 -+$as_echo_n "checking for sin in -lm... " >&6; } -+if ${ac_cv_lib_m_sin+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lm $LIBS" -+if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char sin (); -+int -+main () -+{ -+return sin (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_m_sin=yes -+else -+ ac_cv_lib_m_sin=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5 -+$as_echo "$ac_cv_lib_m_sin" >&6; } -+if test "x$ac_cv_lib_m_sin" = xyes; then : -+ libm="-lm" -+fi -+ -+ ac_save_LIBS="$LIBS" -+ LIBS="$LIBS $libm" -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf declaration" >&5 -+$as_echo_n "checking for isinf declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinf_use+set} != xset; then -+ if ${glibcxx_cv_func_isinf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinf_use=yes -+else -+ glibcxx_cv_func_isinf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinf_use" >&5 -+$as_echo "$glibcxx_cv_func_isinf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinf_use = x"yes"; then -+ for ac_func in isinf -+do : -+ ac_fn_c_check_func "$LINENO" "isinf" "ac_cv_func_isinf" -+if test "x$ac_cv_func_isinf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinf declaration" >&5 -+$as_echo_n "checking for _isinf declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinf_use+set} != xset; then -+ if ${glibcxx_cv_func__isinf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinf_use=yes -+else -+ glibcxx_cv_func__isinf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinf_use" >&5 -+$as_echo "$glibcxx_cv_func__isinf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinf_use = x"yes"; then -+ for ac_func in _isinf -+do : -+ ac_fn_c_check_func "$LINENO" "_isinf" "ac_cv_func__isinf" -+if test "x$ac_cv_func__isinf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan declaration" >&5 -+$as_echo_n "checking for isnan declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnan_use+set} != xset; then -+ if ${glibcxx_cv_func_isnan_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnan(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnan_use=yes -+else -+ glibcxx_cv_func_isnan_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnan_use" >&5 -+$as_echo "$glibcxx_cv_func_isnan_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnan_use = x"yes"; then -+ for ac_func in isnan -+do : -+ ac_fn_c_check_func "$LINENO" "isnan" "ac_cv_func_isnan" -+if test "x$ac_cv_func_isnan" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNAN 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnan declaration" >&5 -+$as_echo_n "checking for _isnan declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnan_use+set} != xset; then -+ if ${glibcxx_cv_func__isnan_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnan(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnan_use=yes -+else -+ glibcxx_cv_func__isnan_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnan_use" >&5 -+$as_echo "$glibcxx_cv_func__isnan_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnan_use = x"yes"; then -+ for ac_func in _isnan -+do : -+ ac_fn_c_check_func "$LINENO" "_isnan" "ac_cv_func__isnan" -+if test "x$ac_cv_func__isnan" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNAN 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finite declaration" >&5 -+$as_echo_n "checking for finite declaration... " >&6; } -+ if test x${glibcxx_cv_func_finite_use+set} != xset; then -+ if ${glibcxx_cv_func_finite_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finite(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finite_use=yes -+else -+ glibcxx_cv_func_finite_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finite_use" >&5 -+$as_echo "$glibcxx_cv_func_finite_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finite_use = x"yes"; then -+ for ac_func in finite -+do : -+ ac_fn_c_check_func "$LINENO" "finite" "ac_cv_func_finite" -+if test "x$ac_cv_func_finite" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITE 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finite declaration" >&5 -+$as_echo_n "checking for _finite declaration... " >&6; } -+ if test x${glibcxx_cv_func__finite_use+set} != xset; then -+ if ${glibcxx_cv_func__finite_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finite(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finite_use=yes -+else -+ glibcxx_cv_func__finite_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finite_use" >&5 -+$as_echo "$glibcxx_cv_func__finite_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finite_use = x"yes"; then -+ for ac_func in _finite -+do : -+ ac_fn_c_check_func "$LINENO" "_finite" "ac_cv_func__finite" -+if test "x$ac_cv_func__finite" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITE 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincos declaration" >&5 -+$as_echo_n "checking for sincos declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincos_use+set} != xset; then -+ if ${glibcxx_cv_func_sincos_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincos(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincos_use=yes -+else -+ glibcxx_cv_func_sincos_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincos_use" >&5 -+$as_echo "$glibcxx_cv_func_sincos_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincos_use = x"yes"; then -+ for ac_func in sincos -+do : -+ ac_fn_c_check_func "$LINENO" "sincos" "ac_cv_func_sincos" -+if test "x$ac_cv_func_sincos" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincos declaration" >&5 -+$as_echo_n "checking for _sincos declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincos_use+set} != xset; then -+ if ${glibcxx_cv_func__sincos_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincos(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincos_use=yes -+else -+ glibcxx_cv_func__sincos_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincos_use" >&5 -+$as_echo "$glibcxx_cv_func__sincos_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincos_use = x"yes"; then -+ for ac_func in _sincos -+do : -+ ac_fn_c_check_func "$LINENO" "_sincos" "ac_cv_func__sincos" -+if test "x$ac_cv_func__sincos" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fpclass declaration" >&5 -+$as_echo_n "checking for fpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func_fpclass_use+set} != xset; then -+ if ${glibcxx_cv_func_fpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fpclass_use=yes -+else -+ glibcxx_cv_func_fpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fpclass_use" >&5 -+$as_echo "$glibcxx_cv_func_fpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fpclass_use = x"yes"; then -+ for ac_func in fpclass -+do : -+ ac_fn_c_check_func "$LINENO" "fpclass" "ac_cv_func_fpclass" -+if test "x$ac_cv_func_fpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fpclass declaration" >&5 -+$as_echo_n "checking for _fpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func__fpclass_use+set} != xset; then -+ if ${glibcxx_cv_func__fpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fpclass_use=yes -+else -+ glibcxx_cv_func__fpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fpclass_use" >&5 -+$as_echo "$glibcxx_cv_func__fpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fpclass_use = x"yes"; then -+ for ac_func in _fpclass -+do : -+ ac_fn_c_check_func "$LINENO" "_fpclass" "ac_cv_func__fpclass" -+if test "x$ac_cv_func__fpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for qfpclass declaration" >&5 -+$as_echo_n "checking for qfpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func_qfpclass_use+set} != xset; then -+ if ${glibcxx_cv_func_qfpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ qfpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_qfpclass_use=yes -+else -+ glibcxx_cv_func_qfpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_qfpclass_use" >&5 -+$as_echo "$glibcxx_cv_func_qfpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func_qfpclass_use = x"yes"; then -+ for ac_func in qfpclass -+do : -+ ac_fn_c_check_func "$LINENO" "qfpclass" "ac_cv_func_qfpclass" -+if test "x$ac_cv_func_qfpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_QFPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _qfpclass declaration" >&5 -+$as_echo_n "checking for _qfpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func__qfpclass_use+set} != xset; then -+ if ${glibcxx_cv_func__qfpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _qfpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__qfpclass_use=yes -+else -+ glibcxx_cv_func__qfpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__qfpclass_use" >&5 -+$as_echo "$glibcxx_cv_func__qfpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func__qfpclass_use = x"yes"; then -+ for ac_func in _qfpclass -+do : -+ ac_fn_c_check_func "$LINENO" "_qfpclass" "ac_cv_func__qfpclass" -+if test "x$ac_cv_func__qfpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__QFPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypot declaration" >&5 -+$as_echo_n "checking for hypot declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypot_use+set} != xset; then -+ if ${glibcxx_cv_func_hypot_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypot(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypot_use=yes -+else -+ glibcxx_cv_func_hypot_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypot_use" >&5 -+$as_echo "$glibcxx_cv_func_hypot_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypot_use = x"yes"; then -+ for ac_func in hypot -+do : -+ ac_fn_c_check_func "$LINENO" "hypot" "ac_cv_func_hypot" -+if test "x$ac_cv_func_hypot" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOT 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypot declaration" >&5 -+$as_echo_n "checking for _hypot declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypot_use+set} != xset; then -+ if ${glibcxx_cv_func__hypot_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypot(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypot_use=yes -+else -+ glibcxx_cv_func__hypot_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypot_use" >&5 -+$as_echo "$glibcxx_cv_func__hypot_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypot_use = x"yes"; then -+ for ac_func in _hypot -+do : -+ ac_fn_c_check_func "$LINENO" "_hypot" "ac_cv_func__hypot" -+if test "x$ac_cv_func__hypot" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for float trig functions" >&5 -+$as_echo_n "checking for float trig functions... " >&6; } -+ if ${glibcxx_cv_func_float_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+acosf (0); asinf (0); atanf (0); cosf (0); sinf (0); tanf (0); coshf (0); sinhf (0); tanhf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_float_trig_use=yes -+else -+ glibcxx_cv_func_float_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_float_trig_use" >&5 -+$as_echo "$glibcxx_cv_func_float_trig_use" >&6; } -+ if test x$glibcxx_cv_func_float_trig_use = x"yes"; then -+ for ac_func in acosf asinf atanf cosf sinf tanf coshf sinhf tanhf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float trig functions" >&5 -+$as_echo_n "checking for _float trig functions... " >&6; } -+ if ${glibcxx_cv_func__float_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_acosf (0); _asinf (0); _atanf (0); _cosf (0); _sinf (0); _tanf (0); _coshf (0); _sinhf (0); _tanhf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__float_trig_use=yes -+else -+ glibcxx_cv_func__float_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__float_trig_use" >&5 -+$as_echo "$glibcxx_cv_func__float_trig_use" >&6; } -+ if test x$glibcxx_cv_func__float_trig_use = x"yes"; then -+ for ac_func in _acosf _asinf _atanf _cosf _sinf _tanf _coshf _sinhf _tanhf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for float round functions" >&5 -+$as_echo_n "checking for float round functions... " >&6; } -+ if ${glibcxx_cv_func_float_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ceilf (0); floorf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_float_round_use=yes -+else -+ glibcxx_cv_func_float_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_float_round_use" >&5 -+$as_echo "$glibcxx_cv_func_float_round_use" >&6; } -+ if test x$glibcxx_cv_func_float_round_use = x"yes"; then -+ for ac_func in ceilf floorf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float round functions" >&5 -+$as_echo_n "checking for _float round functions... " >&6; } -+ if ${glibcxx_cv_func__float_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_ceilf (0); _floorf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__float_round_use=yes -+else -+ glibcxx_cv_func__float_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__float_round_use" >&5 -+$as_echo "$glibcxx_cv_func__float_round_use" >&6; } -+ if test x$glibcxx_cv_func__float_round_use = x"yes"; then -+ for ac_func in _ceilf _floorf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for expf declaration" >&5 -+$as_echo_n "checking for expf declaration... " >&6; } -+ if test x${glibcxx_cv_func_expf_use+set} != xset; then -+ if ${glibcxx_cv_func_expf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ expf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_expf_use=yes -+else -+ glibcxx_cv_func_expf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_expf_use" >&5 -+$as_echo "$glibcxx_cv_func_expf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_expf_use = x"yes"; then -+ for ac_func in expf -+do : -+ ac_fn_c_check_func "$LINENO" "expf" "ac_cv_func_expf" -+if test "x$ac_cv_func_expf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_EXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expf declaration" >&5 -+$as_echo_n "checking for _expf declaration... " >&6; } -+ if test x${glibcxx_cv_func__expf_use+set} != xset; then -+ if ${glibcxx_cv_func__expf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _expf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__expf_use=yes -+else -+ glibcxx_cv_func__expf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__expf_use" >&5 -+$as_echo "$glibcxx_cv_func__expf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__expf_use = x"yes"; then -+ for ac_func in _expf -+do : -+ ac_fn_c_check_func "$LINENO" "_expf" "ac_cv_func__expf" -+if test "x$ac_cv_func__expf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__EXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanf declaration" >&5 -+$as_echo_n "checking for isnanf declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnanf_use+set} != xset; then -+ if ${glibcxx_cv_func_isnanf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnanf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnanf_use=yes -+else -+ glibcxx_cv_func_isnanf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnanf_use" >&5 -+$as_echo "$glibcxx_cv_func_isnanf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnanf_use = x"yes"; then -+ for ac_func in isnanf -+do : -+ ac_fn_c_check_func "$LINENO" "isnanf" "ac_cv_func_isnanf" -+if test "x$ac_cv_func_isnanf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNANF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanf declaration" >&5 -+$as_echo_n "checking for _isnanf declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnanf_use+set} != xset; then -+ if ${glibcxx_cv_func__isnanf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnanf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnanf_use=yes -+else -+ glibcxx_cv_func__isnanf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnanf_use" >&5 -+$as_echo "$glibcxx_cv_func__isnanf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnanf_use = x"yes"; then -+ for ac_func in _isnanf -+do : -+ ac_fn_c_check_func "$LINENO" "_isnanf" "ac_cv_func__isnanf" -+if test "x$ac_cv_func__isnanf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNANF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinff declaration" >&5 -+$as_echo_n "checking for isinff declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinff_use+set} != xset; then -+ if ${glibcxx_cv_func_isinff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinff(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinff_use=yes -+else -+ glibcxx_cv_func_isinff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinff_use" >&5 -+$as_echo "$glibcxx_cv_func_isinff_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinff_use = x"yes"; then -+ for ac_func in isinff -+do : -+ ac_fn_c_check_func "$LINENO" "isinff" "ac_cv_func_isinff" -+if test "x$ac_cv_func_isinff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINFF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinff declaration" >&5 -+$as_echo_n "checking for _isinff declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinff_use+set} != xset; then -+ if ${glibcxx_cv_func__isinff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinff(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinff_use=yes -+else -+ glibcxx_cv_func__isinff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinff_use" >&5 -+$as_echo "$glibcxx_cv_func__isinff_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinff_use = x"yes"; then -+ for ac_func in _isinff -+do : -+ ac_fn_c_check_func "$LINENO" "_isinff" "ac_cv_func__isinff" -+if test "x$ac_cv_func__isinff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINFF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2f declaration" >&5 -+$as_echo_n "checking for atan2f declaration... " >&6; } -+ if test x${glibcxx_cv_func_atan2f_use+set} != xset; then -+ if ${glibcxx_cv_func_atan2f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ atan2f(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atan2f_use=yes -+else -+ glibcxx_cv_func_atan2f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atan2f_use" >&5 -+$as_echo "$glibcxx_cv_func_atan2f_use" >&6; } -+ -+ if test x$glibcxx_cv_func_atan2f_use = x"yes"; then -+ for ac_func in atan2f -+do : -+ ac_fn_c_check_func "$LINENO" "atan2f" "ac_cv_func_atan2f" -+if test "x$ac_cv_func_atan2f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATAN2F 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2f declaration" >&5 -+$as_echo_n "checking for _atan2f declaration... " >&6; } -+ if test x${glibcxx_cv_func__atan2f_use+set} != xset; then -+ if ${glibcxx_cv_func__atan2f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _atan2f(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__atan2f_use=yes -+else -+ glibcxx_cv_func__atan2f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__atan2f_use" >&5 -+$as_echo "$glibcxx_cv_func__atan2f_use" >&6; } -+ -+ if test x$glibcxx_cv_func__atan2f_use = x"yes"; then -+ for ac_func in _atan2f -+do : -+ ac_fn_c_check_func "$LINENO" "_atan2f" "ac_cv_func__atan2f" -+if test "x$ac_cv_func__atan2f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ATAN2F 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsf declaration" >&5 -+$as_echo_n "checking for fabsf declaration... " >&6; } -+ if test x${glibcxx_cv_func_fabsf_use+set} != xset; then -+ if ${glibcxx_cv_func_fabsf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fabsf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fabsf_use=yes -+else -+ glibcxx_cv_func_fabsf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fabsf_use" >&5 -+$as_echo "$glibcxx_cv_func_fabsf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fabsf_use = x"yes"; then -+ for ac_func in fabsf -+do : -+ ac_fn_c_check_func "$LINENO" "fabsf" "ac_cv_func_fabsf" -+if test "x$ac_cv_func_fabsf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FABSF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsf declaration" >&5 -+$as_echo_n "checking for _fabsf declaration... " >&6; } -+ if test x${glibcxx_cv_func__fabsf_use+set} != xset; then -+ if ${glibcxx_cv_func__fabsf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fabsf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fabsf_use=yes -+else -+ glibcxx_cv_func__fabsf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fabsf_use" >&5 -+$as_echo "$glibcxx_cv_func__fabsf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fabsf_use = x"yes"; then -+ for ac_func in _fabsf -+do : -+ ac_fn_c_check_func "$LINENO" "_fabsf" "ac_cv_func__fabsf" -+if test "x$ac_cv_func__fabsf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FABSF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodf declaration" >&5 -+$as_echo_n "checking for fmodf declaration... " >&6; } -+ if test x${glibcxx_cv_func_fmodf_use+set} != xset; then -+ if ${glibcxx_cv_func_fmodf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ fmodf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fmodf_use=yes -+else -+ glibcxx_cv_func_fmodf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fmodf_use" >&5 -+$as_echo "$glibcxx_cv_func_fmodf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fmodf_use = x"yes"; then -+ for ac_func in fmodf -+do : -+ ac_fn_c_check_func "$LINENO" "fmodf" "ac_cv_func_fmodf" -+if test "x$ac_cv_func_fmodf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FMODF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodf declaration" >&5 -+$as_echo_n "checking for _fmodf declaration... " >&6; } -+ if test x${glibcxx_cv_func__fmodf_use+set} != xset; then -+ if ${glibcxx_cv_func__fmodf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _fmodf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fmodf_use=yes -+else -+ glibcxx_cv_func__fmodf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fmodf_use" >&5 -+$as_echo "$glibcxx_cv_func__fmodf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fmodf_use = x"yes"; then -+ for ac_func in _fmodf -+do : -+ ac_fn_c_check_func "$LINENO" "_fmodf" "ac_cv_func__fmodf" -+if test "x$ac_cv_func__fmodf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FMODF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpf declaration" >&5 -+$as_echo_n "checking for frexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func_frexpf_use+set} != xset; then -+ if ${glibcxx_cv_func_frexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ frexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpf_use=yes -+else -+ glibcxx_cv_func_frexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_frexpf_use = x"yes"; then -+ for ac_func in frexpf -+do : -+ ac_fn_c_check_func "$LINENO" "frexpf" "ac_cv_func_frexpf" -+if test "x$ac_cv_func_frexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpf declaration" >&5 -+$as_echo_n "checking for _frexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func__frexpf_use+set} != xset; then -+ if ${glibcxx_cv_func__frexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _frexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__frexpf_use=yes -+else -+ glibcxx_cv_func__frexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__frexpf_use" >&5 -+$as_echo "$glibcxx_cv_func__frexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__frexpf_use = x"yes"; then -+ for ac_func in _frexpf -+do : -+ ac_fn_c_check_func "$LINENO" "_frexpf" "ac_cv_func__frexpf" -+if test "x$ac_cv_func__frexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FREXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotf declaration" >&5 -+$as_echo_n "checking for hypotf declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypotf_use+set} != xset; then -+ if ${glibcxx_cv_func_hypotf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypotf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotf_use=yes -+else -+ glibcxx_cv_func_hypotf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotf_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypotf_use = x"yes"; then -+ for ac_func in hypotf -+do : -+ ac_fn_c_check_func "$LINENO" "hypotf" "ac_cv_func_hypotf" -+if test "x$ac_cv_func_hypotf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotf declaration" >&5 -+$as_echo_n "checking for _hypotf declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypotf_use+set} != xset; then -+ if ${glibcxx_cv_func__hypotf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypotf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypotf_use=yes -+else -+ glibcxx_cv_func__hypotf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypotf_use" >&5 -+$as_echo "$glibcxx_cv_func__hypotf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypotf_use = x"yes"; then -+ for ac_func in _hypotf -+do : -+ ac_fn_c_check_func "$LINENO" "_hypotf" "ac_cv_func__hypotf" -+if test "x$ac_cv_func__hypotf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOTF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpf declaration" >&5 -+$as_echo_n "checking for ldexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func_ldexpf_use+set} != xset; then -+ if ${glibcxx_cv_func_ldexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ ldexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpf_use=yes -+else -+ glibcxx_cv_func_ldexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_ldexpf_use = x"yes"; then -+ for ac_func in ldexpf -+do : -+ ac_fn_c_check_func "$LINENO" "ldexpf" "ac_cv_func_ldexpf" -+if test "x$ac_cv_func_ldexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpf declaration" >&5 -+$as_echo_n "checking for _ldexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func__ldexpf_use+set} != xset; then -+ if ${glibcxx_cv_func__ldexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _ldexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__ldexpf_use=yes -+else -+ glibcxx_cv_func__ldexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__ldexpf_use" >&5 -+$as_echo "$glibcxx_cv_func__ldexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__ldexpf_use = x"yes"; then -+ for ac_func in _ldexpf -+do : -+ ac_fn_c_check_func "$LINENO" "_ldexpf" "ac_cv_func__ldexpf" -+if test "x$ac_cv_func__ldexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LDEXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for logf declaration" >&5 -+$as_echo_n "checking for logf declaration... " >&6; } -+ if test x${glibcxx_cv_func_logf_use+set} != xset; then -+ if ${glibcxx_cv_func_logf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ logf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_logf_use=yes -+else -+ glibcxx_cv_func_logf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_logf_use" >&5 -+$as_echo "$glibcxx_cv_func_logf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_logf_use = x"yes"; then -+ for ac_func in logf -+do : -+ ac_fn_c_check_func "$LINENO" "logf" "ac_cv_func_logf" -+if test "x$ac_cv_func_logf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOGF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logf declaration" >&5 -+$as_echo_n "checking for _logf declaration... " >&6; } -+ if test x${glibcxx_cv_func__logf_use+set} != xset; then -+ if ${glibcxx_cv_func__logf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _logf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__logf_use=yes -+else -+ glibcxx_cv_func__logf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__logf_use" >&5 -+$as_echo "$glibcxx_cv_func__logf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__logf_use = x"yes"; then -+ for ac_func in _logf -+do : -+ ac_fn_c_check_func "$LINENO" "_logf" "ac_cv_func__logf" -+if test "x$ac_cv_func__logf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOGF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10f declaration" >&5 -+$as_echo_n "checking for log10f declaration... " >&6; } -+ if test x${glibcxx_cv_func_log10f_use+set} != xset; then -+ if ${glibcxx_cv_func_log10f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ log10f(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_log10f_use=yes -+else -+ glibcxx_cv_func_log10f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_log10f_use" >&5 -+$as_echo "$glibcxx_cv_func_log10f_use" >&6; } -+ -+ if test x$glibcxx_cv_func_log10f_use = x"yes"; then -+ for ac_func in log10f -+do : -+ ac_fn_c_check_func "$LINENO" "log10f" "ac_cv_func_log10f" -+if test "x$ac_cv_func_log10f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOG10F 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10f declaration" >&5 -+$as_echo_n "checking for _log10f declaration... " >&6; } -+ if test x${glibcxx_cv_func__log10f_use+set} != xset; then -+ if ${glibcxx_cv_func__log10f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _log10f(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__log10f_use=yes -+else -+ glibcxx_cv_func__log10f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__log10f_use" >&5 -+$as_echo "$glibcxx_cv_func__log10f_use" >&6; } -+ -+ if test x$glibcxx_cv_func__log10f_use = x"yes"; then -+ for ac_func in _log10f -+do : -+ ac_fn_c_check_func "$LINENO" "_log10f" "ac_cv_func__log10f" -+if test "x$ac_cv_func__log10f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOG10F 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modff declaration" >&5 -+$as_echo_n "checking for modff declaration... " >&6; } -+ if test x${glibcxx_cv_func_modff_use+set} != xset; then -+ if ${glibcxx_cv_func_modff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modff(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modff_use=yes -+else -+ glibcxx_cv_func_modff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modff_use" >&5 -+$as_echo "$glibcxx_cv_func_modff_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modff_use = x"yes"; then -+ for ac_func in modff -+do : -+ ac_fn_c_check_func "$LINENO" "modff" "ac_cv_func_modff" -+if test "x$ac_cv_func_modff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modff declaration" >&5 -+$as_echo_n "checking for _modff declaration... " >&6; } -+ if test x${glibcxx_cv_func__modff_use+set} != xset; then -+ if ${glibcxx_cv_func__modff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modff(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modff_use=yes -+else -+ glibcxx_cv_func__modff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modff_use" >&5 -+$as_echo "$glibcxx_cv_func__modff_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modff_use = x"yes"; then -+ for ac_func in _modff -+do : -+ ac_fn_c_check_func "$LINENO" "_modff" "ac_cv_func__modff" -+if test "x$ac_cv_func__modff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODFF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modf declaration" >&5 -+$as_echo_n "checking for modf declaration... " >&6; } -+ if test x${glibcxx_cv_func_modf_use+set} != xset; then -+ if ${glibcxx_cv_func_modf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modf_use=yes -+else -+ glibcxx_cv_func_modf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modf_use" >&5 -+$as_echo "$glibcxx_cv_func_modf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modf_use = x"yes"; then -+ for ac_func in modf -+do : -+ ac_fn_c_check_func "$LINENO" "modf" "ac_cv_func_modf" -+if test "x$ac_cv_func_modf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modf declaration" >&5 -+$as_echo_n "checking for _modf declaration... " >&6; } -+ if test x${glibcxx_cv_func__modf_use+set} != xset; then -+ if ${glibcxx_cv_func__modf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modf_use=yes -+else -+ glibcxx_cv_func__modf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modf_use" >&5 -+$as_echo "$glibcxx_cv_func__modf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modf_use = x"yes"; then -+ for ac_func in _modf -+do : -+ ac_fn_c_check_func "$LINENO" "_modf" "ac_cv_func__modf" -+if test "x$ac_cv_func__modf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for powf declaration" >&5 -+$as_echo_n "checking for powf declaration... " >&6; } -+ if test x${glibcxx_cv_func_powf_use+set} != xset; then -+ if ${glibcxx_cv_func_powf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ powf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_powf_use=yes -+else -+ glibcxx_cv_func_powf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_powf_use" >&5 -+$as_echo "$glibcxx_cv_func_powf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_powf_use = x"yes"; then -+ for ac_func in powf -+do : -+ ac_fn_c_check_func "$LINENO" "powf" "ac_cv_func_powf" -+if test "x$ac_cv_func_powf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_POWF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powf declaration" >&5 -+$as_echo_n "checking for _powf declaration... " >&6; } -+ if test x${glibcxx_cv_func__powf_use+set} != xset; then -+ if ${glibcxx_cv_func__powf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _powf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__powf_use=yes -+else -+ glibcxx_cv_func__powf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__powf_use" >&5 -+$as_echo "$glibcxx_cv_func__powf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__powf_use = x"yes"; then -+ for ac_func in _powf -+do : -+ ac_fn_c_check_func "$LINENO" "_powf" "ac_cv_func__powf" -+if test "x$ac_cv_func__powf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__POWF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtf declaration" >&5 -+$as_echo_n "checking for sqrtf declaration... " >&6; } -+ if test x${glibcxx_cv_func_sqrtf_use+set} != xset; then -+ if ${glibcxx_cv_func_sqrtf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ sqrtf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sqrtf_use=yes -+else -+ glibcxx_cv_func_sqrtf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sqrtf_use" >&5 -+$as_echo "$glibcxx_cv_func_sqrtf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sqrtf_use = x"yes"; then -+ for ac_func in sqrtf -+do : -+ ac_fn_c_check_func "$LINENO" "sqrtf" "ac_cv_func_sqrtf" -+if test "x$ac_cv_func_sqrtf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SQRTF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtf declaration" >&5 -+$as_echo_n "checking for _sqrtf declaration... " >&6; } -+ if test x${glibcxx_cv_func__sqrtf_use+set} != xset; then -+ if ${glibcxx_cv_func__sqrtf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _sqrtf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sqrtf_use=yes -+else -+ glibcxx_cv_func__sqrtf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sqrtf_use" >&5 -+$as_echo "$glibcxx_cv_func__sqrtf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sqrtf_use = x"yes"; then -+ for ac_func in _sqrtf -+do : -+ ac_fn_c_check_func "$LINENO" "_sqrtf" "ac_cv_func__sqrtf" -+if test "x$ac_cv_func__sqrtf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SQRTF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosf declaration" >&5 -+$as_echo_n "checking for sincosf declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincosf_use+set} != xset; then -+ if ${glibcxx_cv_func_sincosf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincosf(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincosf_use=yes -+else -+ glibcxx_cv_func_sincosf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincosf_use" >&5 -+$as_echo "$glibcxx_cv_func_sincosf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincosf_use = x"yes"; then -+ for ac_func in sincosf -+do : -+ ac_fn_c_check_func "$LINENO" "sincosf" "ac_cv_func_sincosf" -+if test "x$ac_cv_func_sincosf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOSF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosf declaration" >&5 -+$as_echo_n "checking for _sincosf declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincosf_use+set} != xset; then -+ if ${glibcxx_cv_func__sincosf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincosf(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincosf_use=yes -+else -+ glibcxx_cv_func__sincosf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincosf_use" >&5 -+$as_echo "$glibcxx_cv_func__sincosf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincosf_use = x"yes"; then -+ for ac_func in _sincosf -+do : -+ ac_fn_c_check_func "$LINENO" "_sincosf" "ac_cv_func__sincosf" -+if test "x$ac_cv_func__sincosf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOSF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitef declaration" >&5 -+$as_echo_n "checking for finitef declaration... " >&6; } -+ if test x${glibcxx_cv_func_finitef_use+set} != xset; then -+ if ${glibcxx_cv_func_finitef_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finitef(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finitef_use=yes -+else -+ glibcxx_cv_func_finitef_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finitef_use" >&5 -+$as_echo "$glibcxx_cv_func_finitef_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finitef_use = x"yes"; then -+ for ac_func in finitef -+do : -+ ac_fn_c_check_func "$LINENO" "finitef" "ac_cv_func_finitef" -+if test "x$ac_cv_func_finitef" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITEF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitef declaration" >&5 -+$as_echo_n "checking for _finitef declaration... " >&6; } -+ if test x${glibcxx_cv_func__finitef_use+set} != xset; then -+ if ${glibcxx_cv_func__finitef_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finitef(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finitef_use=yes -+else -+ glibcxx_cv_func__finitef_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finitef_use" >&5 -+$as_echo "$glibcxx_cv_func__finitef_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finitef_use = x"yes"; then -+ for ac_func in _finitef -+do : -+ ac_fn_c_check_func "$LINENO" "_finitef" "ac_cv_func__finitef" -+if test "x$ac_cv_func__finitef" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITEF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double trig functions" >&5 -+$as_echo_n "checking for long double trig functions... " >&6; } -+ if ${glibcxx_cv_func_long_double_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+acosl (0); asinl (0); atanl (0); cosl (0); sinl (0); tanl (0); coshl (0); sinhl (0); tanhl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_long_double_trig_use=yes -+else -+ glibcxx_cv_func_long_double_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_long_double_trig_use" >&5 -+$as_echo "$glibcxx_cv_func_long_double_trig_use" >&6; } -+ if test x$glibcxx_cv_func_long_double_trig_use = x"yes"; then -+ for ac_func in acosl asinl atanl cosl sinl tanl coshl sinhl tanhl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double trig functions" >&5 -+$as_echo_n "checking for _long double trig functions... " >&6; } -+ if ${glibcxx_cv_func__long_double_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_acosl (0); _asinl (0); _atanl (0); _cosl (0); _sinl (0); _tanl (0); _coshl (0); _sinhl (0); _tanhl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__long_double_trig_use=yes -+else -+ glibcxx_cv_func__long_double_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__long_double_trig_use" >&5 -+$as_echo "$glibcxx_cv_func__long_double_trig_use" >&6; } -+ if test x$glibcxx_cv_func__long_double_trig_use = x"yes"; then -+ for ac_func in _acosl _asinl _atanl _cosl _sinl _tanl _coshl _sinhl _tanhl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double round functions" >&5 -+$as_echo_n "checking for long double round functions... " >&6; } -+ if ${glibcxx_cv_func_long_double_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ceill (0); floorl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_long_double_round_use=yes -+else -+ glibcxx_cv_func_long_double_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_long_double_round_use" >&5 -+$as_echo "$glibcxx_cv_func_long_double_round_use" >&6; } -+ if test x$glibcxx_cv_func_long_double_round_use = x"yes"; then -+ for ac_func in ceill floorl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double round functions" >&5 -+$as_echo_n "checking for _long double round functions... " >&6; } -+ if ${glibcxx_cv_func__long_double_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_ceill (0); _floorl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__long_double_round_use=yes -+else -+ glibcxx_cv_func__long_double_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__long_double_round_use" >&5 -+$as_echo "$glibcxx_cv_func__long_double_round_use" >&6; } -+ if test x$glibcxx_cv_func__long_double_round_use = x"yes"; then -+ for ac_func in _ceill _floorl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanl declaration" >&5 -+$as_echo_n "checking for isnanl declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnanl_use+set} != xset; then -+ if ${glibcxx_cv_func_isnanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnanl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnanl_use=yes -+else -+ glibcxx_cv_func_isnanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnanl_use" >&5 -+$as_echo "$glibcxx_cv_func_isnanl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnanl_use = x"yes"; then -+ for ac_func in isnanl -+do : -+ ac_fn_c_check_func "$LINENO" "isnanl" "ac_cv_func_isnanl" -+if test "x$ac_cv_func_isnanl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNANL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanl declaration" >&5 -+$as_echo_n "checking for _isnanl declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnanl_use+set} != xset; then -+ if ${glibcxx_cv_func__isnanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnanl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnanl_use=yes -+else -+ glibcxx_cv_func__isnanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnanl_use" >&5 -+$as_echo "$glibcxx_cv_func__isnanl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnanl_use = x"yes"; then -+ for ac_func in _isnanl -+do : -+ ac_fn_c_check_func "$LINENO" "_isnanl" "ac_cv_func__isnanl" -+if test "x$ac_cv_func__isnanl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNANL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinfl declaration" >&5 -+$as_echo_n "checking for isinfl declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinfl_use+set} != xset; then -+ if ${glibcxx_cv_func_isinfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinfl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinfl_use=yes -+else -+ glibcxx_cv_func_isinfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinfl_use" >&5 -+$as_echo "$glibcxx_cv_func_isinfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinfl_use = x"yes"; then -+ for ac_func in isinfl -+do : -+ ac_fn_c_check_func "$LINENO" "isinfl" "ac_cv_func_isinfl" -+if test "x$ac_cv_func_isinfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINFL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinfl declaration" >&5 -+$as_echo_n "checking for _isinfl declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinfl_use+set} != xset; then -+ if ${glibcxx_cv_func__isinfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinfl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinfl_use=yes -+else -+ glibcxx_cv_func__isinfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinfl_use" >&5 -+$as_echo "$glibcxx_cv_func__isinfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinfl_use = x"yes"; then -+ for ac_func in _isinfl -+do : -+ ac_fn_c_check_func "$LINENO" "_isinfl" "ac_cv_func__isinfl" -+if test "x$ac_cv_func__isinfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINFL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2l declaration" >&5 -+$as_echo_n "checking for atan2l declaration... " >&6; } -+ if test x${glibcxx_cv_func_atan2l_use+set} != xset; then -+ if ${glibcxx_cv_func_atan2l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ atan2l(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atan2l_use=yes -+else -+ glibcxx_cv_func_atan2l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atan2l_use" >&5 -+$as_echo "$glibcxx_cv_func_atan2l_use" >&6; } -+ -+ if test x$glibcxx_cv_func_atan2l_use = x"yes"; then -+ for ac_func in atan2l -+do : -+ ac_fn_c_check_func "$LINENO" "atan2l" "ac_cv_func_atan2l" -+if test "x$ac_cv_func_atan2l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATAN2L 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2l declaration" >&5 -+$as_echo_n "checking for _atan2l declaration... " >&6; } -+ if test x${glibcxx_cv_func__atan2l_use+set} != xset; then -+ if ${glibcxx_cv_func__atan2l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _atan2l(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__atan2l_use=yes -+else -+ glibcxx_cv_func__atan2l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__atan2l_use" >&5 -+$as_echo "$glibcxx_cv_func__atan2l_use" >&6; } -+ -+ if test x$glibcxx_cv_func__atan2l_use = x"yes"; then -+ for ac_func in _atan2l -+do : -+ ac_fn_c_check_func "$LINENO" "_atan2l" "ac_cv_func__atan2l" -+if test "x$ac_cv_func__atan2l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ATAN2L 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for expl declaration" >&5 -+$as_echo_n "checking for expl declaration... " >&6; } -+ if test x${glibcxx_cv_func_expl_use+set} != xset; then -+ if ${glibcxx_cv_func_expl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ expl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_expl_use=yes -+else -+ glibcxx_cv_func_expl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_expl_use" >&5 -+$as_echo "$glibcxx_cv_func_expl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_expl_use = x"yes"; then -+ for ac_func in expl -+do : -+ ac_fn_c_check_func "$LINENO" "expl" "ac_cv_func_expl" -+if test "x$ac_cv_func_expl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_EXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expl declaration" >&5 -+$as_echo_n "checking for _expl declaration... " >&6; } -+ if test x${glibcxx_cv_func__expl_use+set} != xset; then -+ if ${glibcxx_cv_func__expl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _expl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__expl_use=yes -+else -+ glibcxx_cv_func__expl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__expl_use" >&5 -+$as_echo "$glibcxx_cv_func__expl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__expl_use = x"yes"; then -+ for ac_func in _expl -+do : -+ ac_fn_c_check_func "$LINENO" "_expl" "ac_cv_func__expl" -+if test "x$ac_cv_func__expl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__EXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsl declaration" >&5 -+$as_echo_n "checking for fabsl declaration... " >&6; } -+ if test x${glibcxx_cv_func_fabsl_use+set} != xset; then -+ if ${glibcxx_cv_func_fabsl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fabsl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fabsl_use=yes -+else -+ glibcxx_cv_func_fabsl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fabsl_use" >&5 -+$as_echo "$glibcxx_cv_func_fabsl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fabsl_use = x"yes"; then -+ for ac_func in fabsl -+do : -+ ac_fn_c_check_func "$LINENO" "fabsl" "ac_cv_func_fabsl" -+if test "x$ac_cv_func_fabsl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FABSL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsl declaration" >&5 -+$as_echo_n "checking for _fabsl declaration... " >&6; } -+ if test x${glibcxx_cv_func__fabsl_use+set} != xset; then -+ if ${glibcxx_cv_func__fabsl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fabsl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fabsl_use=yes -+else -+ glibcxx_cv_func__fabsl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fabsl_use" >&5 -+$as_echo "$glibcxx_cv_func__fabsl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fabsl_use = x"yes"; then -+ for ac_func in _fabsl -+do : -+ ac_fn_c_check_func "$LINENO" "_fabsl" "ac_cv_func__fabsl" -+if test "x$ac_cv_func__fabsl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FABSL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodl declaration" >&5 -+$as_echo_n "checking for fmodl declaration... " >&6; } -+ if test x${glibcxx_cv_func_fmodl_use+set} != xset; then -+ if ${glibcxx_cv_func_fmodl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ fmodl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fmodl_use=yes -+else -+ glibcxx_cv_func_fmodl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fmodl_use" >&5 -+$as_echo "$glibcxx_cv_func_fmodl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fmodl_use = x"yes"; then -+ for ac_func in fmodl -+do : -+ ac_fn_c_check_func "$LINENO" "fmodl" "ac_cv_func_fmodl" -+if test "x$ac_cv_func_fmodl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FMODL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodl declaration" >&5 -+$as_echo_n "checking for _fmodl declaration... " >&6; } -+ if test x${glibcxx_cv_func__fmodl_use+set} != xset; then -+ if ${glibcxx_cv_func__fmodl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _fmodl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fmodl_use=yes -+else -+ glibcxx_cv_func__fmodl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fmodl_use" >&5 -+$as_echo "$glibcxx_cv_func__fmodl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fmodl_use = x"yes"; then -+ for ac_func in _fmodl -+do : -+ ac_fn_c_check_func "$LINENO" "_fmodl" "ac_cv_func__fmodl" -+if test "x$ac_cv_func__fmodl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FMODL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpl declaration" >&5 -+$as_echo_n "checking for frexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func_frexpl_use+set} != xset; then -+ if ${glibcxx_cv_func_frexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ frexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpl_use=yes -+else -+ glibcxx_cv_func_frexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_frexpl_use = x"yes"; then -+ for ac_func in frexpl -+do : -+ ac_fn_c_check_func "$LINENO" "frexpl" "ac_cv_func_frexpl" -+if test "x$ac_cv_func_frexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpl declaration" >&5 -+$as_echo_n "checking for _frexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func__frexpl_use+set} != xset; then -+ if ${glibcxx_cv_func__frexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _frexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__frexpl_use=yes -+else -+ glibcxx_cv_func__frexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__frexpl_use" >&5 -+$as_echo "$glibcxx_cv_func__frexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__frexpl_use = x"yes"; then -+ for ac_func in _frexpl -+do : -+ ac_fn_c_check_func "$LINENO" "_frexpl" "ac_cv_func__frexpl" -+if test "x$ac_cv_func__frexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FREXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotl declaration" >&5 -+$as_echo_n "checking for hypotl declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypotl_use+set} != xset; then -+ if ${glibcxx_cv_func_hypotl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypotl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotl_use=yes -+else -+ glibcxx_cv_func_hypotl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotl_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypotl_use = x"yes"; then -+ for ac_func in hypotl -+do : -+ ac_fn_c_check_func "$LINENO" "hypotl" "ac_cv_func_hypotl" -+if test "x$ac_cv_func_hypotl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotl declaration" >&5 -+$as_echo_n "checking for _hypotl declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypotl_use+set} != xset; then -+ if ${glibcxx_cv_func__hypotl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypotl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypotl_use=yes -+else -+ glibcxx_cv_func__hypotl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypotl_use" >&5 -+$as_echo "$glibcxx_cv_func__hypotl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypotl_use = x"yes"; then -+ for ac_func in _hypotl -+do : -+ ac_fn_c_check_func "$LINENO" "_hypotl" "ac_cv_func__hypotl" -+if test "x$ac_cv_func__hypotl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOTL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpl declaration" >&5 -+$as_echo_n "checking for ldexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func_ldexpl_use+set} != xset; then -+ if ${glibcxx_cv_func_ldexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ ldexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpl_use=yes -+else -+ glibcxx_cv_func_ldexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_ldexpl_use = x"yes"; then -+ for ac_func in ldexpl -+do : -+ ac_fn_c_check_func "$LINENO" "ldexpl" "ac_cv_func_ldexpl" -+if test "x$ac_cv_func_ldexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpl declaration" >&5 -+$as_echo_n "checking for _ldexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func__ldexpl_use+set} != xset; then -+ if ${glibcxx_cv_func__ldexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _ldexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__ldexpl_use=yes -+else -+ glibcxx_cv_func__ldexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__ldexpl_use" >&5 -+$as_echo "$glibcxx_cv_func__ldexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__ldexpl_use = x"yes"; then -+ for ac_func in _ldexpl -+do : -+ ac_fn_c_check_func "$LINENO" "_ldexpl" "ac_cv_func__ldexpl" -+if test "x$ac_cv_func__ldexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LDEXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for logl declaration" >&5 -+$as_echo_n "checking for logl declaration... " >&6; } -+ if test x${glibcxx_cv_func_logl_use+set} != xset; then -+ if ${glibcxx_cv_func_logl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ logl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_logl_use=yes -+else -+ glibcxx_cv_func_logl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_logl_use" >&5 -+$as_echo "$glibcxx_cv_func_logl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_logl_use = x"yes"; then -+ for ac_func in logl -+do : -+ ac_fn_c_check_func "$LINENO" "logl" "ac_cv_func_logl" -+if test "x$ac_cv_func_logl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOGL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logl declaration" >&5 -+$as_echo_n "checking for _logl declaration... " >&6; } -+ if test x${glibcxx_cv_func__logl_use+set} != xset; then -+ if ${glibcxx_cv_func__logl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _logl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__logl_use=yes -+else -+ glibcxx_cv_func__logl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__logl_use" >&5 -+$as_echo "$glibcxx_cv_func__logl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__logl_use = x"yes"; then -+ for ac_func in _logl -+do : -+ ac_fn_c_check_func "$LINENO" "_logl" "ac_cv_func__logl" -+if test "x$ac_cv_func__logl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOGL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10l declaration" >&5 -+$as_echo_n "checking for log10l declaration... " >&6; } -+ if test x${glibcxx_cv_func_log10l_use+set} != xset; then -+ if ${glibcxx_cv_func_log10l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ log10l(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_log10l_use=yes -+else -+ glibcxx_cv_func_log10l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_log10l_use" >&5 -+$as_echo "$glibcxx_cv_func_log10l_use" >&6; } -+ -+ if test x$glibcxx_cv_func_log10l_use = x"yes"; then -+ for ac_func in log10l -+do : -+ ac_fn_c_check_func "$LINENO" "log10l" "ac_cv_func_log10l" -+if test "x$ac_cv_func_log10l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOG10L 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10l declaration" >&5 -+$as_echo_n "checking for _log10l declaration... " >&6; } -+ if test x${glibcxx_cv_func__log10l_use+set} != xset; then -+ if ${glibcxx_cv_func__log10l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _log10l(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__log10l_use=yes -+else -+ glibcxx_cv_func__log10l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__log10l_use" >&5 -+$as_echo "$glibcxx_cv_func__log10l_use" >&6; } -+ -+ if test x$glibcxx_cv_func__log10l_use = x"yes"; then -+ for ac_func in _log10l -+do : -+ ac_fn_c_check_func "$LINENO" "_log10l" "ac_cv_func__log10l" -+if test "x$ac_cv_func__log10l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOG10L 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modfl declaration" >&5 -+$as_echo_n "checking for modfl declaration... " >&6; } -+ if test x${glibcxx_cv_func_modfl_use+set} != xset; then -+ if ${glibcxx_cv_func_modfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modfl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modfl_use=yes -+else -+ glibcxx_cv_func_modfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modfl_use" >&5 -+$as_echo "$glibcxx_cv_func_modfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modfl_use = x"yes"; then -+ for ac_func in modfl -+do : -+ ac_fn_c_check_func "$LINENO" "modfl" "ac_cv_func_modfl" -+if test "x$ac_cv_func_modfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modfl declaration" >&5 -+$as_echo_n "checking for _modfl declaration... " >&6; } -+ if test x${glibcxx_cv_func__modfl_use+set} != xset; then -+ if ${glibcxx_cv_func__modfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modfl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modfl_use=yes -+else -+ glibcxx_cv_func__modfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modfl_use" >&5 -+$as_echo "$glibcxx_cv_func__modfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modfl_use = x"yes"; then -+ for ac_func in _modfl -+do : -+ ac_fn_c_check_func "$LINENO" "_modfl" "ac_cv_func__modfl" -+if test "x$ac_cv_func__modfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODFL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for powl declaration" >&5 -+$as_echo_n "checking for powl declaration... " >&6; } -+ if test x${glibcxx_cv_func_powl_use+set} != xset; then -+ if ${glibcxx_cv_func_powl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ powl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_powl_use=yes -+else -+ glibcxx_cv_func_powl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_powl_use" >&5 -+$as_echo "$glibcxx_cv_func_powl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_powl_use = x"yes"; then -+ for ac_func in powl -+do : -+ ac_fn_c_check_func "$LINENO" "powl" "ac_cv_func_powl" -+if test "x$ac_cv_func_powl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_POWL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powl declaration" >&5 -+$as_echo_n "checking for _powl declaration... " >&6; } -+ if test x${glibcxx_cv_func__powl_use+set} != xset; then -+ if ${glibcxx_cv_func__powl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _powl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__powl_use=yes -+else -+ glibcxx_cv_func__powl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__powl_use" >&5 -+$as_echo "$glibcxx_cv_func__powl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__powl_use = x"yes"; then -+ for ac_func in _powl -+do : -+ ac_fn_c_check_func "$LINENO" "_powl" "ac_cv_func__powl" -+if test "x$ac_cv_func__powl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__POWL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtl declaration" >&5 -+$as_echo_n "checking for sqrtl declaration... " >&6; } -+ if test x${glibcxx_cv_func_sqrtl_use+set} != xset; then -+ if ${glibcxx_cv_func_sqrtl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ sqrtl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sqrtl_use=yes -+else -+ glibcxx_cv_func_sqrtl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sqrtl_use" >&5 -+$as_echo "$glibcxx_cv_func_sqrtl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sqrtl_use = x"yes"; then -+ for ac_func in sqrtl -+do : -+ ac_fn_c_check_func "$LINENO" "sqrtl" "ac_cv_func_sqrtl" -+if test "x$ac_cv_func_sqrtl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SQRTL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtl declaration" >&5 -+$as_echo_n "checking for _sqrtl declaration... " >&6; } -+ if test x${glibcxx_cv_func__sqrtl_use+set} != xset; then -+ if ${glibcxx_cv_func__sqrtl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _sqrtl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sqrtl_use=yes -+else -+ glibcxx_cv_func__sqrtl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sqrtl_use" >&5 -+$as_echo "$glibcxx_cv_func__sqrtl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sqrtl_use = x"yes"; then -+ for ac_func in _sqrtl -+do : -+ ac_fn_c_check_func "$LINENO" "_sqrtl" "ac_cv_func__sqrtl" -+if test "x$ac_cv_func__sqrtl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SQRTL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosl declaration" >&5 -+$as_echo_n "checking for sincosl declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincosl_use+set} != xset; then -+ if ${glibcxx_cv_func_sincosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincosl(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincosl_use=yes -+else -+ glibcxx_cv_func_sincosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincosl_use" >&5 -+$as_echo "$glibcxx_cv_func_sincosl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincosl_use = x"yes"; then -+ for ac_func in sincosl -+do : -+ ac_fn_c_check_func "$LINENO" "sincosl" "ac_cv_func_sincosl" -+if test "x$ac_cv_func_sincosl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOSL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosl declaration" >&5 -+$as_echo_n "checking for _sincosl declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincosl_use+set} != xset; then -+ if ${glibcxx_cv_func__sincosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincosl(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincosl_use=yes -+else -+ glibcxx_cv_func__sincosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincosl_use" >&5 -+$as_echo "$glibcxx_cv_func__sincosl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincosl_use = x"yes"; then -+ for ac_func in _sincosl -+do : -+ ac_fn_c_check_func "$LINENO" "_sincosl" "ac_cv_func__sincosl" -+if test "x$ac_cv_func__sincosl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOSL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitel declaration" >&5 -+$as_echo_n "checking for finitel declaration... " >&6; } -+ if test x${glibcxx_cv_func_finitel_use+set} != xset; then -+ if ${glibcxx_cv_func_finitel_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finitel(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finitel_use=yes -+else -+ glibcxx_cv_func_finitel_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finitel_use" >&5 -+$as_echo "$glibcxx_cv_func_finitel_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finitel_use = x"yes"; then -+ for ac_func in finitel -+do : -+ ac_fn_c_check_func "$LINENO" "finitel" "ac_cv_func_finitel" -+if test "x$ac_cv_func_finitel" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITEL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitel declaration" >&5 -+$as_echo_n "checking for _finitel declaration... " >&6; } -+ if test x${glibcxx_cv_func__finitel_use+set} != xset; then -+ if ${glibcxx_cv_func__finitel_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finitel(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finitel_use=yes -+else -+ glibcxx_cv_func__finitel_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finitel_use" >&5 -+$as_echo "$glibcxx_cv_func__finitel_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finitel_use = x"yes"; then -+ for ac_func in _finitel -+do : -+ ac_fn_c_check_func "$LINENO" "_finitel" "ac_cv_func__finitel" -+if test "x$ac_cv_func__finitel" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITEL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ LIBS="$ac_save_LIBS" -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS='-fno-builtin -D_GNU_SOURCE' -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for at_quick_exit declaration" >&5 -+$as_echo_n "checking for at_quick_exit declaration... " >&6; } -+ if test x${glibcxx_cv_func_at_quick_exit_use+set} != xset; then -+ if ${glibcxx_cv_func_at_quick_exit_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ at_quick_exit(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_at_quick_exit_use=yes -+else -+ glibcxx_cv_func_at_quick_exit_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_at_quick_exit_use" >&5 -+$as_echo "$glibcxx_cv_func_at_quick_exit_use" >&6; } -+ if test x$glibcxx_cv_func_at_quick_exit_use = x"yes"; then -+ for ac_func in at_quick_exit -+do : -+ ac_fn_c_check_func "$LINENO" "at_quick_exit" "ac_cv_func_at_quick_exit" -+if test "x$ac_cv_func_at_quick_exit" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_AT_QUICK_EXIT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for quick_exit declaration" >&5 -+$as_echo_n "checking for quick_exit declaration... " >&6; } -+ if test x${glibcxx_cv_func_quick_exit_use+set} != xset; then -+ if ${glibcxx_cv_func_quick_exit_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ quick_exit(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_quick_exit_use=yes -+else -+ glibcxx_cv_func_quick_exit_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_quick_exit_use" >&5 -+$as_echo "$glibcxx_cv_func_quick_exit_use" >&6; } -+ if test x$glibcxx_cv_func_quick_exit_use = x"yes"; then -+ for ac_func in quick_exit -+do : -+ ac_fn_c_check_func "$LINENO" "quick_exit" "ac_cv_func_quick_exit" -+if test "x$ac_cv_func_quick_exit" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_QUICK_EXIT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtold declaration" >&5 -+$as_echo_n "checking for strtold declaration... " >&6; } -+ if test x${glibcxx_cv_func_strtold_use+set} != xset; then -+ if ${glibcxx_cv_func_strtold_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ strtold(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_strtold_use=yes -+else -+ glibcxx_cv_func_strtold_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_strtold_use" >&5 -+$as_echo "$glibcxx_cv_func_strtold_use" >&6; } -+ if test x$glibcxx_cv_func_strtold_use = x"yes"; then -+ for ac_func in strtold -+do : -+ ac_fn_c_check_func "$LINENO" "strtold" "ac_cv_func_strtold" -+if test "x$ac_cv_func_strtold" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STRTOLD 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtof declaration" >&5 -+$as_echo_n "checking for strtof declaration... " >&6; } -+ if test x${glibcxx_cv_func_strtof_use+set} != xset; then -+ if ${glibcxx_cv_func_strtof_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ strtof(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_strtof_use=yes -+else -+ glibcxx_cv_func_strtof_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_strtof_use" >&5 -+$as_echo "$glibcxx_cv_func_strtof_use" >&6; } -+ if test x$glibcxx_cv_func_strtof_use = x"yes"; then -+ for ac_func in strtof -+do : -+ ac_fn_c_check_func "$LINENO" "strtof" "ac_cv_func_strtof" -+if test "x$ac_cv_func_strtof" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STRTOF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ -+ -+ # For /dev/random and /dev/urandom for std::random_device. -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for \"/dev/random\" and \"/dev/urandom\" for std::random_device" >&5 -+$as_echo_n "checking for \"/dev/random\" and \"/dev/urandom\" for std::random_device... " >&6; } -+if ${glibcxx_cv_dev_random+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test -r /dev/random && test -r /dev/urandom; then -+ ## For MSys environment the test above is detected as false-positive -+ ## on mingw-targets. So disable it explicitly for them. -+ case ${target_os} in -+ *mingw*) glibcxx_cv_dev_random=no ;; -+ *) glibcxx_cv_dev_random=yes ;; -+ esac -+ else -+ glibcxx_cv_dev_random=no; -+ fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_dev_random" >&5 -+$as_echo "$glibcxx_cv_dev_random" >&6; } -+ -+ if test x"$glibcxx_cv_dev_random" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_DEV_RANDOM 1" >>confdefs.h -+ -+ -+$as_echo "@%:@define _GLIBCXX_USE_RANDOM_TR1 1" >>confdefs.h -+ -+ fi -+ -+ -+ -+ # For TLS support. -+ -+ -+ @%:@ Check whether --enable-tls was given. -+if test "${enable_tls+set}" = set; then : -+ enableval=$enable_tls; -+ case "$enableval" in -+ yes|no) ;; -+ *) as_fn_error $? "Argument to enable/disable tls must be yes or no" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_tls=yes -+fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the target supports thread-local storage" >&5 -+$as_echo_n "checking whether the target supports thread-local storage... " >&6; } -+if ${gcc_cv_have_tls+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test "$cross_compiling" = yes; then : -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__thread int a; int b; int main() { return a = b; } -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ chktls_save_LDFLAGS="$LDFLAGS" -+ case $host in -+ *-*-linux* | -*-uclinuxfdpic*) -+ LDFLAGS="-shared -Wl,--no-undefined $LDFLAGS" -+ ;; -+ esac -+ chktls_save_CFLAGS="$CFLAGS" -+ CFLAGS="-fPIC $CFLAGS" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+int f() { return 0; } -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__thread int a; int b; int f() { return a = b; } -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ gcc_cv_have_tls=yes -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+else -+ gcc_cv_have_tls=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ CFLAGS="$chktls_save_CFLAGS" -+ LDFLAGS="$chktls_save_LDFLAGS" -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ -+ -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__thread int a; int b; int main() { return a = b; } -+_ACEOF -+if ac_fn_c_try_run "$LINENO"; then : -+ chktls_save_LDFLAGS="$LDFLAGS" -+ LDFLAGS="-static $LDFLAGS" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+int main() { return 0; } -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ if test "$cross_compiling" = yes; then : -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "cannot run test program while cross compiling -+See \`config.log' for more details" "$LINENO" 5; } -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__thread int a; int b; int main() { return a = b; } -+_ACEOF -+if ac_fn_c_try_run "$LINENO"; then : -+ gcc_cv_have_tls=yes -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ -+ conftest.$ac_objext conftest.beam conftest.$ac_ext -+fi -+ -+else -+ gcc_cv_have_tls=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ LDFLAGS="$chktls_save_LDFLAGS" -+ if test $gcc_cv_have_tls = yes; then -+ chktls_save_CFLAGS="$CFLAGS" -+ thread_CFLAGS=failed -+ for flag in '' '-pthread' '-lpthread'; do -+ CFLAGS="$flag $chktls_save_CFLAGS" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ void *g(void *d) { return NULL; } -+int -+main () -+{ -+pthread_t t; pthread_create(&t,NULL,g,NULL); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ thread_CFLAGS="$flag" -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ if test "X$thread_CFLAGS" != Xfailed; then -+ break -+ fi -+ done -+ CFLAGS="$chktls_save_CFLAGS" -+ if test "X$thread_CFLAGS" != Xfailed; then -+ CFLAGS="$thread_CFLAGS $chktls_save_CFLAGS" -+ if test "$cross_compiling" = yes; then : -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "cannot run test program while cross compiling -+See \`config.log' for more details" "$LINENO" 5; } -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ __thread int a; -+ static int *volatile a_in_other_thread; -+ static void * -+ thread_func (void *arg) -+ { -+ a_in_other_thread = &a; -+ return (void *)0; -+ } -+int -+main () -+{ -+pthread_t thread; -+ void *thread_retval; -+ int *volatile a_in_main_thread; -+ a_in_main_thread = &a; -+ if (pthread_create (&thread, (pthread_attr_t *)0, -+ thread_func, (void *)0)) -+ return 0; -+ if (pthread_join (thread, &thread_retval)) -+ return 0; -+ return (a_in_other_thread == a_in_main_thread); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_run "$LINENO"; then : -+ gcc_cv_have_tls=yes -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ -+ conftest.$ac_objext conftest.beam conftest.$ac_ext -+fi -+ -+ CFLAGS="$chktls_save_CFLAGS" -+ fi -+ fi -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ -+ conftest.$ac_objext conftest.beam conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gcc_cv_have_tls" >&5 -+$as_echo "$gcc_cv_have_tls" >&6; } -+ if test "$enable_tls $gcc_cv_have_tls" = "yes yes"; then -+ -+$as_echo "@%:@define HAVE_TLS 1" >>confdefs.h -+ -+ fi -+ -+ for ac_func in __cxa_thread_atexit_impl __cxa_thread_atexit -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ for ac_func in aligned_alloc posix_memalign memalign _aligned_malloc -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ for ac_func in _wfopen -+do : -+ ac_fn_c_check_func "$LINENO" "_wfopen" "ac_cv_func__wfopen" -+if test "x$ac_cv_func__wfopen" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__WFOPEN 1 -+_ACEOF -+ -+fi -+done -+ -+ for ac_func in secure_getenv -+do : -+ ac_fn_c_check_func "$LINENO" "secure_getenv" "ac_cv_func_secure_getenv" -+if test "x$ac_cv_func_secure_getenv" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SECURE_GETENV 1 -+_ACEOF -+ -+fi -+done -+ -+ -+ # C11 functions for C++17 library -+ for ac_func in timespec_get -+do : -+ ac_fn_c_check_func "$LINENO" "timespec_get" "ac_cv_func_timespec_get" -+if test "x$ac_cv_func_timespec_get" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_TIMESPEC_GET 1 -+_ACEOF -+ -+fi -+done -+ -+ -+ # For Networking TS. -+ for ac_func in sockatmark -+do : -+ ac_fn_c_check_func "$LINENO" "sockatmark" "ac_cv_func_sockatmark" -+if test "x$ac_cv_func_sockatmark" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SOCKATMARK 1 -+_ACEOF -+ -+fi -+done -+ -+ -+ # Non-standard functions used by C++17 std::from_chars -+ for ac_func in uselocale -+do : -+ ac_fn_c_check_func "$LINENO" "uselocale" "ac_cv_func_uselocale" -+if test "x$ac_cv_func_uselocale" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_USELOCALE 1 -+_ACEOF -+ -+fi -+done -+ -+ -+ # For iconv support. -+ -+ if test "X$prefix" = "XNONE"; then -+ acl_final_prefix="$ac_default_prefix" -+ else -+ acl_final_prefix="$prefix" -+ fi -+ if test "X$exec_prefix" = "XNONE"; then -+ acl_final_exec_prefix='${prefix}' -+ else -+ acl_final_exec_prefix="$exec_prefix" -+ fi -+ acl_save_prefix="$prefix" -+ prefix="$acl_final_prefix" -+ eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" -+ prefix="$acl_save_prefix" -+ -+ -+@%:@ Check whether --with-gnu-ld was given. -+if test "${with_gnu_ld+set}" = set; then : -+ withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes -+else -+ with_gnu_ld=no -+fi -+ -+# Prepare PATH_SEPARATOR. -+# The user is always right. -+if test "${PATH_SEPARATOR+set}" != set; then -+ echo "#! /bin/sh" >conf$$.sh -+ echo "exit 0" >>conf$$.sh -+ chmod +x conf$$.sh -+ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then -+ PATH_SEPARATOR=';' -+ else -+ PATH_SEPARATOR=: -+ fi -+ rm -f conf$$.sh -+fi -+ac_prog=ld -+if test "$GCC" = yes; then -+ # Check if gcc -print-prog-name=ld gives a path. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by GCC" >&5 -+$as_echo_n "checking for ld used by GCC... " >&6; } -+ case $host in -+ *-*-mingw*) -+ # gcc leaves a trailing carriage return which upsets mingw -+ ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; -+ *) -+ ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; -+ esac -+ case $ac_prog in -+ # Accept absolute paths. -+ [\\/]* | [A-Za-z]:[\\/]*) -+ re_direlt='/[^/][^/]*/\.\./' -+ # Canonicalize the path of ld -+ ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` -+ while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do -+ ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` -+ done -+ test -z "$LD" && LD="$ac_prog" -+ ;; -+ "") -+ # If it fails, then pretend we aren't using GCC. -+ ac_prog=ld -+ ;; -+ *) -+ # If it is relative, then search for the first ld in PATH. -+ with_gnu_ld=unknown -+ ;; -+ esac -+elif test "$with_gnu_ld" = yes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 -+$as_echo_n "checking for GNU ld... " >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 -+$as_echo_n "checking for non-GNU ld... " >&6; } -+fi -+if ${acl_cv_path_LD+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -z "$LD"; then -+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" -+ for ac_dir in $PATH; do -+ test -z "$ac_dir" && ac_dir=. -+ if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then -+ acl_cv_path_LD="$ac_dir/$ac_prog" -+ # Check to see if the program is GNU ld. I'd rather use --version, -+ # but apparently some GNU ld's only accept -v. -+ # Break only if it was the GNU/non-GNU ld that we prefer. -+ if "$acl_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then -+ test "$with_gnu_ld" != no && break -+ else -+ test "$with_gnu_ld" != yes && break -+ fi -+ fi -+ done -+ IFS="$ac_save_ifs" -+else -+ acl_cv_path_LD="$LD" # Let the user override the test with a path. -+fi -+fi -+ -+LD="$acl_cv_path_LD" -+if test -n "$LD"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5 -+$as_echo "$LD" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 -+$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } -+if ${acl_cv_prog_gnu_ld+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ # I'd rather use --version here, but apparently some GNU ld's only accept -v. -+if $LD -v 2>&1 &5; then -+ acl_cv_prog_gnu_ld=yes -+else -+ acl_cv_prog_gnu_ld=no -+fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_prog_gnu_ld" >&5 -+$as_echo "$acl_cv_prog_gnu_ld" >&6; } -+with_gnu_ld=$acl_cv_prog_gnu_ld -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5 -+$as_echo_n "checking for shared library run path origin... " >&6; } -+if ${acl_cv_rpath+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ -+ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh -+ . ./conftest.sh -+ rm -f ./conftest.sh -+ acl_cv_rpath=done -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_rpath" >&5 -+$as_echo "$acl_cv_rpath" >&6; } -+ wl="$acl_cv_wl" -+ libext="$acl_cv_libext" -+ shlibext="$acl_cv_shlibext" -+ hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" -+ hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" -+ hardcode_direct="$acl_cv_hardcode_direct" -+ hardcode_minus_L="$acl_cv_hardcode_minus_L" -+ @%:@ Check whether --enable-rpath was given. -+if test "${enable_rpath+set}" = set; then : -+ enableval=$enable_rpath; : -+else -+ enable_rpath=yes -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+ use_additional=yes -+ -+ acl_save_prefix="$prefix" -+ prefix="$acl_final_prefix" -+ acl_save_exec_prefix="$exec_prefix" -+ exec_prefix="$acl_final_exec_prefix" -+ -+ eval additional_includedir=\"$includedir\" -+ eval additional_libdir=\"$libdir\" -+ -+ exec_prefix="$acl_save_exec_prefix" -+ prefix="$acl_save_prefix" -+ -+ -+@%:@ Check whether --with-libiconv-prefix was given. -+if test "${with_libiconv_prefix+set}" = set; then : -+ withval=$with_libiconv_prefix; -+ if test "X$withval" = "Xno"; then -+ use_additional=no -+ else -+ if test "X$withval" = "X"; then -+ -+ acl_save_prefix="$prefix" -+ prefix="$acl_final_prefix" -+ acl_save_exec_prefix="$exec_prefix" -+ exec_prefix="$acl_final_exec_prefix" -+ -+ eval additional_includedir=\"$includedir\" -+ eval additional_libdir=\"$libdir\" -+ -+ exec_prefix="$acl_save_exec_prefix" -+ prefix="$acl_save_prefix" -+ -+ else -+ additional_includedir="$withval/include" -+ additional_libdir="$withval/lib" -+ fi -+ fi -+ -+fi -+ -+ -+@%:@ Check whether --with-libiconv-type was given. -+if test "${with_libiconv_type+set}" = set; then : -+ withval=$with_libiconv_type; with_libiconv_type=$withval -+else -+ with_libiconv_type=auto -+fi -+ -+ lib_type=`eval echo \$with_libiconv_type` -+ -+ LIBICONV= -+ LTLIBICONV= -+ INCICONV= -+ rpathdirs= -+ ltrpathdirs= -+ names_already_handled= -+ names_next_round='iconv ' -+ while test -n "$names_next_round"; do -+ names_this_round="$names_next_round" -+ names_next_round= -+ for name in $names_this_round; do -+ already_handled= -+ for n in $names_already_handled; do -+ if test "$n" = "$name"; then -+ already_handled=yes -+ break -+ fi -+ done -+ if test -z "$already_handled"; then -+ names_already_handled="$names_already_handled $name" -+ uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` -+ eval value=\"\$HAVE_LIB$uppername\" -+ if test -n "$value"; then -+ if test "$value" = yes; then -+ eval value=\"\$LIB$uppername\" -+ test -z "$value" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value" -+ eval value=\"\$LTLIB$uppername\" -+ test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value" -+ else -+ : -+ fi -+ else -+ found_dir= -+ found_la= -+ found_so= -+ found_a= -+ if test $use_additional = yes; then -+ if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext" && test x$lib_type != xstatic; then -+ found_dir="$additional_libdir" -+ found_so="$additional_libdir/lib$name.$shlibext" -+ if test -f "$additional_libdir/lib$name.la"; then -+ found_la="$additional_libdir/lib$name.la" -+ fi -+ elif test x$lib_type != xshared; then -+ if test -f "$additional_libdir/lib$name.$libext"; then -+ found_dir="$additional_libdir" -+ found_a="$additional_libdir/lib$name.$libext" -+ if test -f "$additional_libdir/lib$name.la"; then -+ found_la="$additional_libdir/lib$name.la" -+ fi -+ fi -+ fi -+ fi -+ if test "X$found_dir" = "X"; then -+ for x in $LDFLAGS $LTLIBICONV; do -+ -+ acl_save_prefix="$prefix" -+ prefix="$acl_final_prefix" -+ acl_save_exec_prefix="$exec_prefix" -+ exec_prefix="$acl_final_exec_prefix" -+ eval x=\"$x\" -+ exec_prefix="$acl_save_exec_prefix" -+ prefix="$acl_save_prefix" -+ -+ case "$x" in -+ -L*) -+ dir=`echo "X$x" | sed -e 's/^X-L//'` -+ if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext" && test x$lib_type != xstatic; then -+ found_dir="$dir" -+ found_so="$dir/lib$name.$shlibext" -+ if test -f "$dir/lib$name.la"; then -+ found_la="$dir/lib$name.la" -+ fi -+ elif test x$lib_type != xshared; then -+ if test -f "$dir/lib$name.$libext"; then -+ found_dir="$dir" -+ found_a="$dir/lib$name.$libext" -+ if test -f "$dir/lib$name.la"; then -+ found_la="$dir/lib$name.la" -+ fi -+ fi -+ fi -+ ;; -+ esac -+ if test "X$found_dir" != "X"; then -+ break -+ fi -+ done -+ fi -+ if test "X$found_dir" != "X"; then -+ LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name" -+ if test "X$found_so" != "X"; then -+ if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then -+ LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" -+ else -+ haveit= -+ for x in $ltrpathdirs; do -+ if test "X$x" = "X$found_dir"; then -+ haveit=yes -+ break -+ fi -+ done -+ if test -z "$haveit"; then -+ ltrpathdirs="$ltrpathdirs $found_dir" -+ fi -+ if test "$hardcode_direct" = yes; then -+ LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" -+ else -+ if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then -+ LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" -+ haveit= -+ for x in $rpathdirs; do -+ if test "X$x" = "X$found_dir"; then -+ haveit=yes -+ break -+ fi -+ done -+ if test -z "$haveit"; then -+ rpathdirs="$rpathdirs $found_dir" -+ fi -+ else -+ haveit= -+ for x in $LDFLAGS $LIBICONV; do -+ -+ acl_save_prefix="$prefix" -+ prefix="$acl_final_prefix" -+ acl_save_exec_prefix="$exec_prefix" -+ exec_prefix="$acl_final_exec_prefix" -+ eval x=\"$x\" -+ exec_prefix="$acl_save_exec_prefix" -+ prefix="$acl_save_prefix" -+ -+ if test "X$x" = "X-L$found_dir"; then -+ haveit=yes -+ break -+ fi -+ done -+ if test -z "$haveit"; then -+ LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir" -+ fi -+ if test "$hardcode_minus_L" != no; then -+ LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" -+ else -+ LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" -+ fi -+ fi -+ fi -+ fi -+ else -+ if test "X$found_a" != "X"; then -+ LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a" -+ else -+ LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name" -+ fi -+ fi -+ additional_includedir= -+ case "$found_dir" in -+ */lib | */lib/) -+ basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'` -+ additional_includedir="$basedir/include" -+ ;; -+ esac -+ if test "X$additional_includedir" != "X"; then -+ if test "X$additional_includedir" != "X/usr/include"; then -+ haveit= -+ if test "X$additional_includedir" = "X/usr/local/include"; then -+ if test -n "$GCC"; then -+ case $host_os in -+ linux*) haveit=yes;; -+ esac -+ fi -+ fi -+ if test -z "$haveit"; then -+ for x in $CPPFLAGS $INCICONV; do -+ -+ acl_save_prefix="$prefix" -+ prefix="$acl_final_prefix" -+ acl_save_exec_prefix="$exec_prefix" -+ exec_prefix="$acl_final_exec_prefix" -+ eval x=\"$x\" -+ exec_prefix="$acl_save_exec_prefix" -+ prefix="$acl_save_prefix" -+ -+ if test "X$x" = "X-I$additional_includedir"; then -+ haveit=yes -+ break -+ fi -+ done -+ if test -z "$haveit"; then -+ if test -d "$additional_includedir"; then -+ INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir" -+ fi -+ fi -+ fi -+ fi -+ fi -+ if test -n "$found_la"; then -+ save_libdir="$libdir" -+ case "$found_la" in -+ */* | *\\*) . "$found_la" ;; -+ *) . "./$found_la" ;; -+ esac -+ libdir="$save_libdir" -+ for dep in $dependency_libs; do -+ case "$dep" in -+ -L*) -+ additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` -+ if test "X$additional_libdir" != "X/usr/lib"; then -+ haveit= -+ if test "X$additional_libdir" = "X/usr/local/lib"; then -+ if test -n "$GCC"; then -+ case $host_os in -+ linux*) haveit=yes;; -+ esac -+ fi -+ fi -+ if test -z "$haveit"; then -+ haveit= -+ for x in $LDFLAGS $LIBICONV; do -+ -+ acl_save_prefix="$prefix" -+ prefix="$acl_final_prefix" -+ acl_save_exec_prefix="$exec_prefix" -+ exec_prefix="$acl_final_exec_prefix" -+ eval x=\"$x\" -+ exec_prefix="$acl_save_exec_prefix" -+ prefix="$acl_save_prefix" -+ -+ if test "X$x" = "X-L$additional_libdir"; then -+ haveit=yes -+ break -+ fi -+ done -+ if test -z "$haveit"; then -+ if test -d "$additional_libdir"; then -+ LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir" -+ fi -+ fi -+ haveit= -+ for x in $LDFLAGS $LTLIBICONV; do -+ -+ acl_save_prefix="$prefix" -+ prefix="$acl_final_prefix" -+ acl_save_exec_prefix="$exec_prefix" -+ exec_prefix="$acl_final_exec_prefix" -+ eval x=\"$x\" -+ exec_prefix="$acl_save_exec_prefix" -+ prefix="$acl_save_prefix" -+ -+ if test "X$x" = "X-L$additional_libdir"; then -+ haveit=yes -+ break -+ fi -+ done -+ if test -z "$haveit"; then -+ if test -d "$additional_libdir"; then -+ LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir" -+ fi -+ fi -+ fi -+ fi -+ ;; -+ -R*) -+ dir=`echo "X$dep" | sed -e 's/^X-R//'` -+ if test "$enable_rpath" != no; then -+ haveit= -+ for x in $rpathdirs; do -+ if test "X$x" = "X$dir"; then -+ haveit=yes -+ break -+ fi -+ done -+ if test -z "$haveit"; then -+ rpathdirs="$rpathdirs $dir" -+ fi -+ haveit= -+ for x in $ltrpathdirs; do -+ if test "X$x" = "X$dir"; then -+ haveit=yes -+ break -+ fi -+ done -+ if test -z "$haveit"; then -+ ltrpathdirs="$ltrpathdirs $dir" -+ fi -+ fi -+ ;; -+ -l*) -+ names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` -+ ;; -+ *.la) -+ names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` -+ ;; -+ *) -+ LIBICONV="${LIBICONV}${LIBICONV:+ }$dep" -+ LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep" -+ ;; -+ esac -+ done -+ fi -+ else -+ if test "x$lib_type" = "xauto" || test "x$lib_type" = "xshared"; then -+ LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" -+ LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name" -+ else -+ LIBICONV="${LIBICONV}${LIBICONV:+ }-l:lib$name.$libext" -+ LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l:lib$name.$libext" -+ fi -+ fi -+ fi -+ fi -+ done -+ done -+ if test "X$rpathdirs" != "X"; then -+ if test -n "$hardcode_libdir_separator"; then -+ alldirs= -+ for found_dir in $rpathdirs; do -+ alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir" -+ done -+ acl_save_libdir="$libdir" -+ libdir="$alldirs" -+ eval flag=\"$hardcode_libdir_flag_spec\" -+ libdir="$acl_save_libdir" -+ LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" -+ else -+ for found_dir in $rpathdirs; do -+ acl_save_libdir="$libdir" -+ libdir="$found_dir" -+ eval flag=\"$hardcode_libdir_flag_spec\" -+ libdir="$acl_save_libdir" -+ LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" -+ done -+ fi -+ fi -+ if test "X$ltrpathdirs" != "X"; then -+ for found_dir in $ltrpathdirs; do -+ LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir" -+ done -+ fi -+ -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5 -+$as_echo_n "checking for iconv... " >&6; } -+if ${am_cv_func_iconv+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ am_cv_func_iconv="no, consider installing GNU libiconv" -+ am_cv_lib_iconv=no -+ am_save_CPPFLAGS="$CPPFLAGS" -+ CPPFLAGS="$CPPFLAGS $INCICONV" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+#include -+int -+main () -+{ -+iconv_t cd = iconv_open("",""); -+ iconv(cd,NULL,NULL,NULL,NULL); -+ iconv_close(cd); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ am_cv_func_iconv=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ CPPFLAGS="$am_save_CPPFLAGS" -+ -+ if test "$am_cv_func_iconv" != yes && test -d ../libiconv; then -+ for _libs in .libs _libs; do -+ am_save_CPPFLAGS="$CPPFLAGS" -+ am_save_LIBS="$LIBS" -+ CPPFLAGS="$CPPFLAGS -I../libiconv/include" -+ LIBS="$LIBS ../libiconv/lib/$_libs/libiconv.a" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+#include -+int -+main () -+{ -+iconv_t cd = iconv_open("",""); -+ iconv(cd,NULL,NULL,NULL,NULL); -+ iconv_close(cd); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ INCICONV="-I../libiconv/include" -+ LIBICONV='${top_builddir}'/../libiconv/lib/$_libs/libiconv.a -+ LTLIBICONV='${top_builddir}'/../libiconv/lib/libiconv.la -+ am_cv_lib_iconv=yes -+ am_cv_func_iconv=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ CPPFLAGS="$am_save_CPPFLAGS" -+ LIBS="$am_save_LIBS" -+ if test "$am_cv_func_iconv" = "yes"; then -+ break -+ fi -+ done -+ fi -+ -+ if test "$am_cv_func_iconv" != yes; then -+ am_save_CPPFLAGS="$CPPFLAGS" -+ am_save_LIBS="$LIBS" -+ CPPFLAGS="$CPPFLAGS $INCICONV" -+ LIBS="$LIBS $LIBICONV" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+#include -+int -+main () -+{ -+iconv_t cd = iconv_open("",""); -+ iconv(cd,NULL,NULL,NULL,NULL); -+ iconv_close(cd); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ am_cv_lib_iconv=yes -+ am_cv_func_iconv=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ CPPFLAGS="$am_save_CPPFLAGS" -+ LIBS="$am_save_LIBS" -+ fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5 -+$as_echo "$am_cv_func_iconv" >&6; } -+ if test "$am_cv_func_iconv" = yes; then -+ -+$as_echo "@%:@define HAVE_ICONV 1" >>confdefs.h -+ -+ fi -+ if test "$am_cv_lib_iconv" = yes; then -+ -+ for element in $INCICONV; do -+ haveit= -+ for x in $CPPFLAGS; do -+ -+ acl_save_prefix="$prefix" -+ prefix="$acl_final_prefix" -+ acl_save_exec_prefix="$exec_prefix" -+ exec_prefix="$acl_final_exec_prefix" -+ eval x=\"$x\" -+ exec_prefix="$acl_save_exec_prefix" -+ prefix="$acl_save_prefix" -+ -+ if test "X$x" = "X$element"; then -+ haveit=yes -+ break -+ fi -+ done -+ if test -z "$haveit"; then -+ CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" -+ fi -+ done -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5 -+$as_echo_n "checking how to link with libiconv... " >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5 -+$as_echo "$LIBICONV" >&6; } -+ else -+ LIBICONV= -+ LTLIBICONV= -+ fi -+ -+ -+ -+ if test "$am_cv_func_iconv" = yes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv declaration" >&5 -+$as_echo_n "checking for iconv declaration... " >&6; } -+ if ${am_cv_proto_iconv+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#include -+extern -+#ifdef __cplusplus -+"C" -+#endif -+#if defined(__STDC__) || defined(__cplusplus) -+size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); -+#else -+size_t iconv(); -+#endif -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ am_cv_proto_iconv_arg1="" -+else -+ am_cv_proto_iconv_arg1="const" -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);" -+fi -+ -+ am_cv_proto_iconv=`echo "$am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${ac_t:- -+ }$am_cv_proto_iconv" >&5 -+$as_echo "${ac_t:- -+ }$am_cv_proto_iconv" >&6; } -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define ICONV_CONST $am_cv_proto_iconv_arg1 -+_ACEOF -+ -+ fi -+ -+ -+else -+ -+ # This lets us hard-code the functionality we know we'll have in the cross -+ # target environment. "Let" is a sugar-coated word placed on an especially -+ # dull and tedious hack, actually. -+ # -+ # Here's why GLIBCXX_CHECK_MATH_SUPPORT, and other autoconf macros -+ # that involve linking, can't be used: -+ # "cannot open sim-crt0.o" -+ # "cannot open crt0.o" -+ # etc. All this is because there currently exists no unified, consistent -+ # way for top level CC information to be passed down to target directories: -+ # newlib includes, newlib linking info, libgloss versus newlib crt0.o, etc. -+ # When all of that is done, all of this hokey, excessive AC_DEFINE junk for -+ # crosses can be removed. -+ -+ # If Canadian cross, then don't pick up tools from the build directory. -+ # Used only in GLIBCXX_EXPORT_INCLUDES. -+ if test -n "$with_cross_host" && -+ test x"$build_alias" != x"$with_cross_host" && -+ test x"$build" != x"$target"; -+ then -+ CANADIAN=yes -+ else -+ CANADIAN=no -+ fi -+ -+ # Construct crosses by hand, eliminating bits that need ld... -+ # GLIBCXX_CHECK_MATH_SUPPORT -+ -+ # First, test for "known" system libraries. We may be using newlib even -+ # on a hosted environment. -+ if test "x${with_newlib}" = "xyes"; then -+ os_include_dir="os/newlib" -+ $as_echo "@%:@define HAVE_HYPOT 1" >>confdefs.h -+ -+ -+ # GLIBCXX_CHECK_STDLIB_SUPPORT -+ $as_echo "@%:@define HAVE_STRTOF 1" >>confdefs.h -+ -+ -+ $as_echo "@%:@define HAVE_ACOSF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ASINF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ATAN2F 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ATANF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_CEILF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_COSF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_COSHF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_EXPF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FABSF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FLOORF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FMODF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FREXPF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LDEXPF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LOG10F 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LOGF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_MODFF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_POWF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINHF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SQRTF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_TANF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_TANHF 1" >>confdefs.h -+ -+ -+ $as_echo "@%:@define HAVE_ICONV 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_MEMALIGN 1" >>confdefs.h -+ -+ elif test "x$with_headers" != "xno"; then -+ -+# Base decisions on target environment. -+case "${host}" in -+ arm*-*-symbianelf*) -+ # This is a freestanding configuration; there is nothing to do here. -+ ;; -+ -+ *-banan_os*) -+ -+ # All these tests are for C++; save the language and the compiler flags. -+ # The CXXFLAGS thing is suspicious, but based on similar bits previously -+ # found in GLIBCXX_CONFIGURE. -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ -+ # Check for -ffunction-sections -fdata-sections -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for g++ that supports -ffunction-sections -fdata-sections" >&5 -+$as_echo_n "checking for g++ that supports -ffunction-sections -fdata-sections... " >&6; } -+ CXXFLAGS='-g -Werror -ffunction-sections -fdata-sections' -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+int foo; void bar() { }; -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_fdsections=yes -+else -+ ac_fdsections=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ if test "$ac_test_CXXFLAGS" = set; then -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ else -+ # this is the suspicious part -+ CXXFLAGS='' -+ fi -+ if test x"$ac_fdsections" = x"yes"; then -+ SECTION_FLAGS='-ffunction-sections -fdata-sections' -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_fdsections" >&5 -+$as_echo "$ac_fdsections" >&6; } -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ -+ # If we're not using GNU ld, then there's no point in even trying these -+ # tests. Check for that first. We should have already tested for gld -+ # by now (in libtool), but require it now just to be safe... -+ test -z "$SECTION_LDFLAGS" && SECTION_LDFLAGS='' -+ test -z "$OPT_LDFLAGS" && OPT_LDFLAGS='' -+ -+ -+ -+ # The name set by libtool depends on the version of libtool. Shame on us -+ # for depending on an impl detail, but c'est la vie. Older versions used -+ # ac_cv_prog_gnu_ld, but now it's lt_cv_prog_gnu_ld, and is copied back on -+ # top of with_gnu_ld (which is also set by --with-gnu-ld, so that actually -+ # makes sense). We'll test with_gnu_ld everywhere else, so if that isn't -+ # set (hence we're using an older libtool), then set it. -+ if test x${with_gnu_ld+set} != xset; then -+ if test x${ac_cv_prog_gnu_ld+set} != xset; then -+ # We got through "ac_require(ac_prog_ld)" and still not set? Huh? -+ with_gnu_ld=no -+ else -+ with_gnu_ld=$ac_cv_prog_gnu_ld -+ fi -+ fi -+ -+ # Start by getting the version number. I think the libtool test already -+ # does some of this, but throws away the result. -+ glibcxx_ld_is_gold=no -+ glibcxx_ld_is_mold=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld version" >&5 -+$as_echo_n "checking for ld version... " >&6; } -+ -+ if $LD --version 2>/dev/null | grep 'GNU gold' >/dev/null 2>&1; then -+ glibcxx_ld_is_gold=yes -+ elif $LD --version 2>/dev/null | grep 'mold' >/dev/null 2>&1; then -+ glibcxx_ld_is_mold=yes -+ fi -+ ldver=`$LD --version 2>/dev/null | -+ sed -e 's/[. ][0-9]\{8\}$//;s/.* \([^ ]\{1,\}\)$/\1/; q'` -+ -+ glibcxx_gnu_ld_version=`echo $ldver | \ -+ $AWK -F. '{ if (NF<3) $3=0; print ($1*100+$2)*100+$3 }'` -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_gnu_ld_version" >&5 -+$as_echo "$glibcxx_gnu_ld_version" >&6; } -+ fi -+ -+ # Set --gc-sections. -+ glibcxx_have_gc_sections=no -+ if test "$glibcxx_ld_is_gold" = "yes" || test "$glibcxx_ld_is_mold" = "yes" ; then -+ if $LD --help 2>/dev/null | grep gc-sections >/dev/null 2>&1; then -+ glibcxx_have_gc_sections=yes -+ fi -+ else -+ glibcxx_gcsections_min_ld=21602 -+ if test x"$with_gnu_ld" = x"yes" && -+ test $glibcxx_gnu_ld_version -gt $glibcxx_gcsections_min_ld ; then -+ glibcxx_have_gc_sections=yes -+ fi -+ fi -+ if test "$glibcxx_have_gc_sections" = "yes"; then -+ # Sufficiently young GNU ld it is! Joy and bunny rabbits! -+ # NB: This flag only works reliably after 2.16.1. Configure tests -+ # for this are difficult, so hard wire a value that should work. -+ -+ ac_test_CFLAGS="${CFLAGS+set}" -+ ac_save_CFLAGS="$CFLAGS" -+ CFLAGS='-Wl,--gc-sections' -+ -+ # Check for -Wl,--gc-sections -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5 -+$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; } -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ int one(void) { return 1; } -+ int two(void) { return 2; } -+ -+int -+main () -+{ -+ two(); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_gcsections=yes -+else -+ ac_gcsections=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ if test "$ac_gcsections" = "yes"; then -+ rm -f conftest.c -+ touch conftest.c -+ if $CC -c conftest.c; then -+ if $LD --gc-sections -o conftest conftest.o 2>&1 | \ -+ grep "Warning: gc-sections option ignored" > /dev/null; then -+ ac_gcsections=no -+ fi -+ fi -+ rm -f conftest.c conftest.o conftest -+ fi -+ if test "$ac_gcsections" = "yes"; then -+ SECTION_LDFLAGS="-Wl,--gc-sections $SECTION_LDFLAGS" -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_gcsections" >&5 -+$as_echo "$ac_gcsections" >&6; } -+ -+ if test "$ac_test_CFLAGS" = set; then -+ CFLAGS="$ac_save_CFLAGS" -+ else -+ # this is the suspicious part -+ CFLAGS='' -+ fi -+ fi -+ -+ # Set -z,relro. -+ # Note this is only for shared objects. -+ ac_ld_relro=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ # cygwin and mingw uses PE, which has no ELF relro support, -+ # multi target ld may confuse configure machinery -+ case "$host" in -+ *-*-cygwin*) -+ ;; -+ *-*-mingw*) -+ ;; -+ *) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,-z,relro" >&5 -+$as_echo_n "checking for ld that supports -Wl,-z,relro... " >&6; } -+ cxx_z_relo=`$LD -v --help 2>/dev/null | grep "z relro"` -+ if test -n "$cxx_z_relo"; then -+ OPT_LDFLAGS="-Wl,-z,relro" -+ ac_ld_relro=yes -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ld_relro" >&5 -+$as_echo "$ac_ld_relro" >&6; } -+ esac -+ fi -+ -+ # Set linker optimization flags. -+ if test x"$with_gnu_ld" = x"yes"; then -+ OPT_LDFLAGS="-Wl,-O1 $OPT_LDFLAGS" -+ fi -+ -+ -+ -+ -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS='-fno-builtin -D_GNU_SOURCE' -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5 -+$as_echo_n "checking for sin in -lm... " >&6; } -+if ${ac_cv_lib_m_sin+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lm $LIBS" -+if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char sin (); -+int -+main () -+{ -+return sin (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_m_sin=yes -+else -+ ac_cv_lib_m_sin=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5 -+$as_echo "$ac_cv_lib_m_sin" >&6; } -+if test "x$ac_cv_lib_m_sin" = xyes; then : -+ libm="-lm" -+fi -+ -+ ac_save_LIBS="$LIBS" -+ LIBS="$LIBS $libm" -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf declaration" >&5 -+$as_echo_n "checking for isinf declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinf_use+set} != xset; then -+ if ${glibcxx_cv_func_isinf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinf_use=yes -+else -+ glibcxx_cv_func_isinf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinf_use" >&5 -+$as_echo "$glibcxx_cv_func_isinf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinf_use = x"yes"; then -+ for ac_func in isinf -+do : -+ ac_fn_c_check_func "$LINENO" "isinf" "ac_cv_func_isinf" -+if test "x$ac_cv_func_isinf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinf declaration" >&5 -+$as_echo_n "checking for _isinf declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinf_use+set} != xset; then -+ if ${glibcxx_cv_func__isinf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinf_use=yes -+else -+ glibcxx_cv_func__isinf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinf_use" >&5 -+$as_echo "$glibcxx_cv_func__isinf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinf_use = x"yes"; then -+ for ac_func in _isinf -+do : -+ ac_fn_c_check_func "$LINENO" "_isinf" "ac_cv_func__isinf" -+if test "x$ac_cv_func__isinf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan declaration" >&5 -+$as_echo_n "checking for isnan declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnan_use+set} != xset; then -+ if ${glibcxx_cv_func_isnan_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnan(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnan_use=yes -+else -+ glibcxx_cv_func_isnan_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnan_use" >&5 -+$as_echo "$glibcxx_cv_func_isnan_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnan_use = x"yes"; then -+ for ac_func in isnan -+do : -+ ac_fn_c_check_func "$LINENO" "isnan" "ac_cv_func_isnan" -+if test "x$ac_cv_func_isnan" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNAN 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnan declaration" >&5 -+$as_echo_n "checking for _isnan declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnan_use+set} != xset; then -+ if ${glibcxx_cv_func__isnan_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnan(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnan_use=yes -+else -+ glibcxx_cv_func__isnan_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnan_use" >&5 -+$as_echo "$glibcxx_cv_func__isnan_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnan_use = x"yes"; then -+ for ac_func in _isnan -+do : -+ ac_fn_c_check_func "$LINENO" "_isnan" "ac_cv_func__isnan" -+if test "x$ac_cv_func__isnan" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNAN 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finite declaration" >&5 -+$as_echo_n "checking for finite declaration... " >&6; } -+ if test x${glibcxx_cv_func_finite_use+set} != xset; then -+ if ${glibcxx_cv_func_finite_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finite(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finite_use=yes -+else -+ glibcxx_cv_func_finite_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finite_use" >&5 -+$as_echo "$glibcxx_cv_func_finite_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finite_use = x"yes"; then -+ for ac_func in finite -+do : -+ ac_fn_c_check_func "$LINENO" "finite" "ac_cv_func_finite" -+if test "x$ac_cv_func_finite" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITE 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finite declaration" >&5 -+$as_echo_n "checking for _finite declaration... " >&6; } -+ if test x${glibcxx_cv_func__finite_use+set} != xset; then -+ if ${glibcxx_cv_func__finite_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finite(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finite_use=yes -+else -+ glibcxx_cv_func__finite_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finite_use" >&5 -+$as_echo "$glibcxx_cv_func__finite_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finite_use = x"yes"; then -+ for ac_func in _finite -+do : -+ ac_fn_c_check_func "$LINENO" "_finite" "ac_cv_func__finite" -+if test "x$ac_cv_func__finite" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITE 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincos declaration" >&5 -+$as_echo_n "checking for sincos declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincos_use+set} != xset; then -+ if ${glibcxx_cv_func_sincos_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincos(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincos_use=yes -+else -+ glibcxx_cv_func_sincos_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincos_use" >&5 -+$as_echo "$glibcxx_cv_func_sincos_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincos_use = x"yes"; then -+ for ac_func in sincos -+do : -+ ac_fn_c_check_func "$LINENO" "sincos" "ac_cv_func_sincos" -+if test "x$ac_cv_func_sincos" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincos declaration" >&5 -+$as_echo_n "checking for _sincos declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincos_use+set} != xset; then -+ if ${glibcxx_cv_func__sincos_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincos(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincos_use=yes -+else -+ glibcxx_cv_func__sincos_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincos_use" >&5 -+$as_echo "$glibcxx_cv_func__sincos_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincos_use = x"yes"; then -+ for ac_func in _sincos -+do : -+ ac_fn_c_check_func "$LINENO" "_sincos" "ac_cv_func__sincos" -+if test "x$ac_cv_func__sincos" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fpclass declaration" >&5 -+$as_echo_n "checking for fpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func_fpclass_use+set} != xset; then -+ if ${glibcxx_cv_func_fpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fpclass_use=yes -+else -+ glibcxx_cv_func_fpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fpclass_use" >&5 -+$as_echo "$glibcxx_cv_func_fpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fpclass_use = x"yes"; then -+ for ac_func in fpclass -+do : -+ ac_fn_c_check_func "$LINENO" "fpclass" "ac_cv_func_fpclass" -+if test "x$ac_cv_func_fpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fpclass declaration" >&5 -+$as_echo_n "checking for _fpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func__fpclass_use+set} != xset; then -+ if ${glibcxx_cv_func__fpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fpclass_use=yes -+else -+ glibcxx_cv_func__fpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fpclass_use" >&5 -+$as_echo "$glibcxx_cv_func__fpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fpclass_use = x"yes"; then -+ for ac_func in _fpclass -+do : -+ ac_fn_c_check_func "$LINENO" "_fpclass" "ac_cv_func__fpclass" -+if test "x$ac_cv_func__fpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for qfpclass declaration" >&5 -+$as_echo_n "checking for qfpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func_qfpclass_use+set} != xset; then -+ if ${glibcxx_cv_func_qfpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ qfpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_qfpclass_use=yes -+else -+ glibcxx_cv_func_qfpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_qfpclass_use" >&5 -+$as_echo "$glibcxx_cv_func_qfpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func_qfpclass_use = x"yes"; then -+ for ac_func in qfpclass -+do : -+ ac_fn_c_check_func "$LINENO" "qfpclass" "ac_cv_func_qfpclass" -+if test "x$ac_cv_func_qfpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_QFPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _qfpclass declaration" >&5 -+$as_echo_n "checking for _qfpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func__qfpclass_use+set} != xset; then -+ if ${glibcxx_cv_func__qfpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _qfpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__qfpclass_use=yes -+else -+ glibcxx_cv_func__qfpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__qfpclass_use" >&5 -+$as_echo "$glibcxx_cv_func__qfpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func__qfpclass_use = x"yes"; then -+ for ac_func in _qfpclass -+do : -+ ac_fn_c_check_func "$LINENO" "_qfpclass" "ac_cv_func__qfpclass" -+if test "x$ac_cv_func__qfpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__QFPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypot declaration" >&5 -+$as_echo_n "checking for hypot declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypot_use+set} != xset; then -+ if ${glibcxx_cv_func_hypot_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypot(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypot_use=yes -+else -+ glibcxx_cv_func_hypot_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypot_use" >&5 -+$as_echo "$glibcxx_cv_func_hypot_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypot_use = x"yes"; then -+ for ac_func in hypot -+do : -+ ac_fn_c_check_func "$LINENO" "hypot" "ac_cv_func_hypot" -+if test "x$ac_cv_func_hypot" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOT 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypot declaration" >&5 -+$as_echo_n "checking for _hypot declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypot_use+set} != xset; then -+ if ${glibcxx_cv_func__hypot_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypot(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypot_use=yes -+else -+ glibcxx_cv_func__hypot_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypot_use" >&5 -+$as_echo "$glibcxx_cv_func__hypot_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypot_use = x"yes"; then -+ for ac_func in _hypot -+do : -+ ac_fn_c_check_func "$LINENO" "_hypot" "ac_cv_func__hypot" -+if test "x$ac_cv_func__hypot" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for float trig functions" >&5 -+$as_echo_n "checking for float trig functions... " >&6; } -+ if ${glibcxx_cv_func_float_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+acosf (0); asinf (0); atanf (0); cosf (0); sinf (0); tanf (0); coshf (0); sinhf (0); tanhf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_float_trig_use=yes -+else -+ glibcxx_cv_func_float_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_float_trig_use" >&5 -+$as_echo "$glibcxx_cv_func_float_trig_use" >&6; } -+ if test x$glibcxx_cv_func_float_trig_use = x"yes"; then -+ for ac_func in acosf asinf atanf cosf sinf tanf coshf sinhf tanhf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float trig functions" >&5 -+$as_echo_n "checking for _float trig functions... " >&6; } -+ if ${glibcxx_cv_func__float_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_acosf (0); _asinf (0); _atanf (0); _cosf (0); _sinf (0); _tanf (0); _coshf (0); _sinhf (0); _tanhf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__float_trig_use=yes -+else -+ glibcxx_cv_func__float_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__float_trig_use" >&5 -+$as_echo "$glibcxx_cv_func__float_trig_use" >&6; } -+ if test x$glibcxx_cv_func__float_trig_use = x"yes"; then -+ for ac_func in _acosf _asinf _atanf _cosf _sinf _tanf _coshf _sinhf _tanhf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for float round functions" >&5 -+$as_echo_n "checking for float round functions... " >&6; } -+ if ${glibcxx_cv_func_float_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ceilf (0); floorf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_float_round_use=yes -+else -+ glibcxx_cv_func_float_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_float_round_use" >&5 -+$as_echo "$glibcxx_cv_func_float_round_use" >&6; } -+ if test x$glibcxx_cv_func_float_round_use = x"yes"; then -+ for ac_func in ceilf floorf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float round functions" >&5 -+$as_echo_n "checking for _float round functions... " >&6; } -+ if ${glibcxx_cv_func__float_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_ceilf (0); _floorf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__float_round_use=yes -+else -+ glibcxx_cv_func__float_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__float_round_use" >&5 -+$as_echo "$glibcxx_cv_func__float_round_use" >&6; } -+ if test x$glibcxx_cv_func__float_round_use = x"yes"; then -+ for ac_func in _ceilf _floorf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for expf declaration" >&5 -+$as_echo_n "checking for expf declaration... " >&6; } -+ if test x${glibcxx_cv_func_expf_use+set} != xset; then -+ if ${glibcxx_cv_func_expf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ expf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_expf_use=yes -+else -+ glibcxx_cv_func_expf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_expf_use" >&5 -+$as_echo "$glibcxx_cv_func_expf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_expf_use = x"yes"; then -+ for ac_func in expf -+do : -+ ac_fn_c_check_func "$LINENO" "expf" "ac_cv_func_expf" -+if test "x$ac_cv_func_expf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_EXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expf declaration" >&5 -+$as_echo_n "checking for _expf declaration... " >&6; } -+ if test x${glibcxx_cv_func__expf_use+set} != xset; then -+ if ${glibcxx_cv_func__expf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _expf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__expf_use=yes -+else -+ glibcxx_cv_func__expf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__expf_use" >&5 -+$as_echo "$glibcxx_cv_func__expf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__expf_use = x"yes"; then -+ for ac_func in _expf -+do : -+ ac_fn_c_check_func "$LINENO" "_expf" "ac_cv_func__expf" -+if test "x$ac_cv_func__expf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__EXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanf declaration" >&5 -+$as_echo_n "checking for isnanf declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnanf_use+set} != xset; then -+ if ${glibcxx_cv_func_isnanf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnanf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnanf_use=yes -+else -+ glibcxx_cv_func_isnanf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnanf_use" >&5 -+$as_echo "$glibcxx_cv_func_isnanf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnanf_use = x"yes"; then -+ for ac_func in isnanf -+do : -+ ac_fn_c_check_func "$LINENO" "isnanf" "ac_cv_func_isnanf" -+if test "x$ac_cv_func_isnanf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNANF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanf declaration" >&5 -+$as_echo_n "checking for _isnanf declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnanf_use+set} != xset; then -+ if ${glibcxx_cv_func__isnanf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnanf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnanf_use=yes -+else -+ glibcxx_cv_func__isnanf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnanf_use" >&5 -+$as_echo "$glibcxx_cv_func__isnanf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnanf_use = x"yes"; then -+ for ac_func in _isnanf -+do : -+ ac_fn_c_check_func "$LINENO" "_isnanf" "ac_cv_func__isnanf" -+if test "x$ac_cv_func__isnanf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNANF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinff declaration" >&5 -+$as_echo_n "checking for isinff declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinff_use+set} != xset; then -+ if ${glibcxx_cv_func_isinff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinff(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinff_use=yes -+else -+ glibcxx_cv_func_isinff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinff_use" >&5 -+$as_echo "$glibcxx_cv_func_isinff_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinff_use = x"yes"; then -+ for ac_func in isinff -+do : -+ ac_fn_c_check_func "$LINENO" "isinff" "ac_cv_func_isinff" -+if test "x$ac_cv_func_isinff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINFF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinff declaration" >&5 -+$as_echo_n "checking for _isinff declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinff_use+set} != xset; then -+ if ${glibcxx_cv_func__isinff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinff(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinff_use=yes -+else -+ glibcxx_cv_func__isinff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinff_use" >&5 -+$as_echo "$glibcxx_cv_func__isinff_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinff_use = x"yes"; then -+ for ac_func in _isinff -+do : -+ ac_fn_c_check_func "$LINENO" "_isinff" "ac_cv_func__isinff" -+if test "x$ac_cv_func__isinff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINFF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2f declaration" >&5 -+$as_echo_n "checking for atan2f declaration... " >&6; } -+ if test x${glibcxx_cv_func_atan2f_use+set} != xset; then -+ if ${glibcxx_cv_func_atan2f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ atan2f(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atan2f_use=yes -+else -+ glibcxx_cv_func_atan2f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atan2f_use" >&5 -+$as_echo "$glibcxx_cv_func_atan2f_use" >&6; } -+ -+ if test x$glibcxx_cv_func_atan2f_use = x"yes"; then -+ for ac_func in atan2f -+do : -+ ac_fn_c_check_func "$LINENO" "atan2f" "ac_cv_func_atan2f" -+if test "x$ac_cv_func_atan2f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATAN2F 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2f declaration" >&5 -+$as_echo_n "checking for _atan2f declaration... " >&6; } -+ if test x${glibcxx_cv_func__atan2f_use+set} != xset; then -+ if ${glibcxx_cv_func__atan2f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _atan2f(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__atan2f_use=yes -+else -+ glibcxx_cv_func__atan2f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__atan2f_use" >&5 -+$as_echo "$glibcxx_cv_func__atan2f_use" >&6; } -+ -+ if test x$glibcxx_cv_func__atan2f_use = x"yes"; then -+ for ac_func in _atan2f -+do : -+ ac_fn_c_check_func "$LINENO" "_atan2f" "ac_cv_func__atan2f" -+if test "x$ac_cv_func__atan2f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ATAN2F 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsf declaration" >&5 -+$as_echo_n "checking for fabsf declaration... " >&6; } -+ if test x${glibcxx_cv_func_fabsf_use+set} != xset; then -+ if ${glibcxx_cv_func_fabsf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fabsf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fabsf_use=yes -+else -+ glibcxx_cv_func_fabsf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fabsf_use" >&5 -+$as_echo "$glibcxx_cv_func_fabsf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fabsf_use = x"yes"; then -+ for ac_func in fabsf -+do : -+ ac_fn_c_check_func "$LINENO" "fabsf" "ac_cv_func_fabsf" -+if test "x$ac_cv_func_fabsf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FABSF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsf declaration" >&5 -+$as_echo_n "checking for _fabsf declaration... " >&6; } -+ if test x${glibcxx_cv_func__fabsf_use+set} != xset; then -+ if ${glibcxx_cv_func__fabsf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fabsf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fabsf_use=yes -+else -+ glibcxx_cv_func__fabsf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fabsf_use" >&5 -+$as_echo "$glibcxx_cv_func__fabsf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fabsf_use = x"yes"; then -+ for ac_func in _fabsf -+do : -+ ac_fn_c_check_func "$LINENO" "_fabsf" "ac_cv_func__fabsf" -+if test "x$ac_cv_func__fabsf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FABSF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodf declaration" >&5 -+$as_echo_n "checking for fmodf declaration... " >&6; } -+ if test x${glibcxx_cv_func_fmodf_use+set} != xset; then -+ if ${glibcxx_cv_func_fmodf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ fmodf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fmodf_use=yes -+else -+ glibcxx_cv_func_fmodf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fmodf_use" >&5 -+$as_echo "$glibcxx_cv_func_fmodf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fmodf_use = x"yes"; then -+ for ac_func in fmodf -+do : -+ ac_fn_c_check_func "$LINENO" "fmodf" "ac_cv_func_fmodf" -+if test "x$ac_cv_func_fmodf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FMODF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodf declaration" >&5 -+$as_echo_n "checking for _fmodf declaration... " >&6; } -+ if test x${glibcxx_cv_func__fmodf_use+set} != xset; then -+ if ${glibcxx_cv_func__fmodf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _fmodf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fmodf_use=yes -+else -+ glibcxx_cv_func__fmodf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fmodf_use" >&5 -+$as_echo "$glibcxx_cv_func__fmodf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fmodf_use = x"yes"; then -+ for ac_func in _fmodf -+do : -+ ac_fn_c_check_func "$LINENO" "_fmodf" "ac_cv_func__fmodf" -+if test "x$ac_cv_func__fmodf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FMODF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpf declaration" >&5 -+$as_echo_n "checking for frexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func_frexpf_use+set} != xset; then -+ if ${glibcxx_cv_func_frexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ frexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpf_use=yes -+else -+ glibcxx_cv_func_frexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_frexpf_use = x"yes"; then -+ for ac_func in frexpf -+do : -+ ac_fn_c_check_func "$LINENO" "frexpf" "ac_cv_func_frexpf" -+if test "x$ac_cv_func_frexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpf declaration" >&5 -+$as_echo_n "checking for _frexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func__frexpf_use+set} != xset; then -+ if ${glibcxx_cv_func__frexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _frexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__frexpf_use=yes -+else -+ glibcxx_cv_func__frexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__frexpf_use" >&5 -+$as_echo "$glibcxx_cv_func__frexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__frexpf_use = x"yes"; then -+ for ac_func in _frexpf -+do : -+ ac_fn_c_check_func "$LINENO" "_frexpf" "ac_cv_func__frexpf" -+if test "x$ac_cv_func__frexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FREXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotf declaration" >&5 -+$as_echo_n "checking for hypotf declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypotf_use+set} != xset; then -+ if ${glibcxx_cv_func_hypotf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypotf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotf_use=yes -+else -+ glibcxx_cv_func_hypotf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotf_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypotf_use = x"yes"; then -+ for ac_func in hypotf -+do : -+ ac_fn_c_check_func "$LINENO" "hypotf" "ac_cv_func_hypotf" -+if test "x$ac_cv_func_hypotf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotf declaration" >&5 -+$as_echo_n "checking for _hypotf declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypotf_use+set} != xset; then -+ if ${glibcxx_cv_func__hypotf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypotf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypotf_use=yes -+else -+ glibcxx_cv_func__hypotf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypotf_use" >&5 -+$as_echo "$glibcxx_cv_func__hypotf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypotf_use = x"yes"; then -+ for ac_func in _hypotf -+do : -+ ac_fn_c_check_func "$LINENO" "_hypotf" "ac_cv_func__hypotf" -+if test "x$ac_cv_func__hypotf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOTF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpf declaration" >&5 -+$as_echo_n "checking for ldexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func_ldexpf_use+set} != xset; then -+ if ${glibcxx_cv_func_ldexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ ldexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpf_use=yes -+else -+ glibcxx_cv_func_ldexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_ldexpf_use = x"yes"; then -+ for ac_func in ldexpf -+do : -+ ac_fn_c_check_func "$LINENO" "ldexpf" "ac_cv_func_ldexpf" -+if test "x$ac_cv_func_ldexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpf declaration" >&5 -+$as_echo_n "checking for _ldexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func__ldexpf_use+set} != xset; then -+ if ${glibcxx_cv_func__ldexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _ldexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__ldexpf_use=yes -+else -+ glibcxx_cv_func__ldexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__ldexpf_use" >&5 -+$as_echo "$glibcxx_cv_func__ldexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__ldexpf_use = x"yes"; then -+ for ac_func in _ldexpf -+do : -+ ac_fn_c_check_func "$LINENO" "_ldexpf" "ac_cv_func__ldexpf" -+if test "x$ac_cv_func__ldexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LDEXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for logf declaration" >&5 -+$as_echo_n "checking for logf declaration... " >&6; } -+ if test x${glibcxx_cv_func_logf_use+set} != xset; then -+ if ${glibcxx_cv_func_logf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ logf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_logf_use=yes -+else -+ glibcxx_cv_func_logf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_logf_use" >&5 -+$as_echo "$glibcxx_cv_func_logf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_logf_use = x"yes"; then -+ for ac_func in logf -+do : -+ ac_fn_c_check_func "$LINENO" "logf" "ac_cv_func_logf" -+if test "x$ac_cv_func_logf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOGF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logf declaration" >&5 -+$as_echo_n "checking for _logf declaration... " >&6; } -+ if test x${glibcxx_cv_func__logf_use+set} != xset; then -+ if ${glibcxx_cv_func__logf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _logf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__logf_use=yes -+else -+ glibcxx_cv_func__logf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__logf_use" >&5 -+$as_echo "$glibcxx_cv_func__logf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__logf_use = x"yes"; then -+ for ac_func in _logf -+do : -+ ac_fn_c_check_func "$LINENO" "_logf" "ac_cv_func__logf" -+if test "x$ac_cv_func__logf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOGF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10f declaration" >&5 -+$as_echo_n "checking for log10f declaration... " >&6; } -+ if test x${glibcxx_cv_func_log10f_use+set} != xset; then -+ if ${glibcxx_cv_func_log10f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ log10f(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_log10f_use=yes -+else -+ glibcxx_cv_func_log10f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_log10f_use" >&5 -+$as_echo "$glibcxx_cv_func_log10f_use" >&6; } -+ -+ if test x$glibcxx_cv_func_log10f_use = x"yes"; then -+ for ac_func in log10f -+do : -+ ac_fn_c_check_func "$LINENO" "log10f" "ac_cv_func_log10f" -+if test "x$ac_cv_func_log10f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOG10F 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10f declaration" >&5 -+$as_echo_n "checking for _log10f declaration... " >&6; } -+ if test x${glibcxx_cv_func__log10f_use+set} != xset; then -+ if ${glibcxx_cv_func__log10f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _log10f(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__log10f_use=yes -+else -+ glibcxx_cv_func__log10f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__log10f_use" >&5 -+$as_echo "$glibcxx_cv_func__log10f_use" >&6; } -+ -+ if test x$glibcxx_cv_func__log10f_use = x"yes"; then -+ for ac_func in _log10f -+do : -+ ac_fn_c_check_func "$LINENO" "_log10f" "ac_cv_func__log10f" -+if test "x$ac_cv_func__log10f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOG10F 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modff declaration" >&5 -+$as_echo_n "checking for modff declaration... " >&6; } -+ if test x${glibcxx_cv_func_modff_use+set} != xset; then -+ if ${glibcxx_cv_func_modff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modff(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modff_use=yes -+else -+ glibcxx_cv_func_modff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modff_use" >&5 -+$as_echo "$glibcxx_cv_func_modff_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modff_use = x"yes"; then -+ for ac_func in modff -+do : -+ ac_fn_c_check_func "$LINENO" "modff" "ac_cv_func_modff" -+if test "x$ac_cv_func_modff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modff declaration" >&5 -+$as_echo_n "checking for _modff declaration... " >&6; } -+ if test x${glibcxx_cv_func__modff_use+set} != xset; then -+ if ${glibcxx_cv_func__modff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modff(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modff_use=yes -+else -+ glibcxx_cv_func__modff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modff_use" >&5 -+$as_echo "$glibcxx_cv_func__modff_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modff_use = x"yes"; then -+ for ac_func in _modff -+do : -+ ac_fn_c_check_func "$LINENO" "_modff" "ac_cv_func__modff" -+if test "x$ac_cv_func__modff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODFF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modf declaration" >&5 -+$as_echo_n "checking for modf declaration... " >&6; } -+ if test x${glibcxx_cv_func_modf_use+set} != xset; then -+ if ${glibcxx_cv_func_modf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modf_use=yes -+else -+ glibcxx_cv_func_modf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modf_use" >&5 -+$as_echo "$glibcxx_cv_func_modf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modf_use = x"yes"; then -+ for ac_func in modf -+do : -+ ac_fn_c_check_func "$LINENO" "modf" "ac_cv_func_modf" -+if test "x$ac_cv_func_modf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modf declaration" >&5 -+$as_echo_n "checking for _modf declaration... " >&6; } -+ if test x${glibcxx_cv_func__modf_use+set} != xset; then -+ if ${glibcxx_cv_func__modf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modf_use=yes -+else -+ glibcxx_cv_func__modf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modf_use" >&5 -+$as_echo "$glibcxx_cv_func__modf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modf_use = x"yes"; then -+ for ac_func in _modf -+do : -+ ac_fn_c_check_func "$LINENO" "_modf" "ac_cv_func__modf" -+if test "x$ac_cv_func__modf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for powf declaration" >&5 -+$as_echo_n "checking for powf declaration... " >&6; } -+ if test x${glibcxx_cv_func_powf_use+set} != xset; then -+ if ${glibcxx_cv_func_powf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ powf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_powf_use=yes -+else -+ glibcxx_cv_func_powf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_powf_use" >&5 -+$as_echo "$glibcxx_cv_func_powf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_powf_use = x"yes"; then -+ for ac_func in powf -+do : -+ ac_fn_c_check_func "$LINENO" "powf" "ac_cv_func_powf" -+if test "x$ac_cv_func_powf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_POWF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powf declaration" >&5 -+$as_echo_n "checking for _powf declaration... " >&6; } -+ if test x${glibcxx_cv_func__powf_use+set} != xset; then -+ if ${glibcxx_cv_func__powf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _powf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__powf_use=yes -+else -+ glibcxx_cv_func__powf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__powf_use" >&5 -+$as_echo "$glibcxx_cv_func__powf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__powf_use = x"yes"; then -+ for ac_func in _powf -+do : -+ ac_fn_c_check_func "$LINENO" "_powf" "ac_cv_func__powf" -+if test "x$ac_cv_func__powf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__POWF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtf declaration" >&5 -+$as_echo_n "checking for sqrtf declaration... " >&6; } -+ if test x${glibcxx_cv_func_sqrtf_use+set} != xset; then -+ if ${glibcxx_cv_func_sqrtf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ sqrtf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sqrtf_use=yes -+else -+ glibcxx_cv_func_sqrtf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sqrtf_use" >&5 -+$as_echo "$glibcxx_cv_func_sqrtf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sqrtf_use = x"yes"; then -+ for ac_func in sqrtf -+do : -+ ac_fn_c_check_func "$LINENO" "sqrtf" "ac_cv_func_sqrtf" -+if test "x$ac_cv_func_sqrtf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SQRTF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtf declaration" >&5 -+$as_echo_n "checking for _sqrtf declaration... " >&6; } -+ if test x${glibcxx_cv_func__sqrtf_use+set} != xset; then -+ if ${glibcxx_cv_func__sqrtf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _sqrtf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sqrtf_use=yes -+else -+ glibcxx_cv_func__sqrtf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sqrtf_use" >&5 -+$as_echo "$glibcxx_cv_func__sqrtf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sqrtf_use = x"yes"; then -+ for ac_func in _sqrtf -+do : -+ ac_fn_c_check_func "$LINENO" "_sqrtf" "ac_cv_func__sqrtf" -+if test "x$ac_cv_func__sqrtf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SQRTF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosf declaration" >&5 -+$as_echo_n "checking for sincosf declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincosf_use+set} != xset; then -+ if ${glibcxx_cv_func_sincosf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincosf(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincosf_use=yes -+else -+ glibcxx_cv_func_sincosf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincosf_use" >&5 -+$as_echo "$glibcxx_cv_func_sincosf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincosf_use = x"yes"; then -+ for ac_func in sincosf -+do : -+ ac_fn_c_check_func "$LINENO" "sincosf" "ac_cv_func_sincosf" -+if test "x$ac_cv_func_sincosf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOSF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosf declaration" >&5 -+$as_echo_n "checking for _sincosf declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincosf_use+set} != xset; then -+ if ${glibcxx_cv_func__sincosf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincosf(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincosf_use=yes -+else -+ glibcxx_cv_func__sincosf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincosf_use" >&5 -+$as_echo "$glibcxx_cv_func__sincosf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincosf_use = x"yes"; then -+ for ac_func in _sincosf -+do : -+ ac_fn_c_check_func "$LINENO" "_sincosf" "ac_cv_func__sincosf" -+if test "x$ac_cv_func__sincosf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOSF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitef declaration" >&5 -+$as_echo_n "checking for finitef declaration... " >&6; } -+ if test x${glibcxx_cv_func_finitef_use+set} != xset; then -+ if ${glibcxx_cv_func_finitef_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finitef(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finitef_use=yes -+else -+ glibcxx_cv_func_finitef_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finitef_use" >&5 -+$as_echo "$glibcxx_cv_func_finitef_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finitef_use = x"yes"; then -+ for ac_func in finitef -+do : -+ ac_fn_c_check_func "$LINENO" "finitef" "ac_cv_func_finitef" -+if test "x$ac_cv_func_finitef" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITEF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitef declaration" >&5 -+$as_echo_n "checking for _finitef declaration... " >&6; } -+ if test x${glibcxx_cv_func__finitef_use+set} != xset; then -+ if ${glibcxx_cv_func__finitef_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finitef(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finitef_use=yes -+else -+ glibcxx_cv_func__finitef_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finitef_use" >&5 -+$as_echo "$glibcxx_cv_func__finitef_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finitef_use = x"yes"; then -+ for ac_func in _finitef -+do : -+ ac_fn_c_check_func "$LINENO" "_finitef" "ac_cv_func__finitef" -+if test "x$ac_cv_func__finitef" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITEF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double trig functions" >&5 -+$as_echo_n "checking for long double trig functions... " >&6; } -+ if ${glibcxx_cv_func_long_double_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+acosl (0); asinl (0); atanl (0); cosl (0); sinl (0); tanl (0); coshl (0); sinhl (0); tanhl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_long_double_trig_use=yes -+else -+ glibcxx_cv_func_long_double_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_long_double_trig_use" >&5 -+$as_echo "$glibcxx_cv_func_long_double_trig_use" >&6; } -+ if test x$glibcxx_cv_func_long_double_trig_use = x"yes"; then -+ for ac_func in acosl asinl atanl cosl sinl tanl coshl sinhl tanhl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double trig functions" >&5 -+$as_echo_n "checking for _long double trig functions... " >&6; } -+ if ${glibcxx_cv_func__long_double_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_acosl (0); _asinl (0); _atanl (0); _cosl (0); _sinl (0); _tanl (0); _coshl (0); _sinhl (0); _tanhl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__long_double_trig_use=yes -+else -+ glibcxx_cv_func__long_double_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__long_double_trig_use" >&5 -+$as_echo "$glibcxx_cv_func__long_double_trig_use" >&6; } -+ if test x$glibcxx_cv_func__long_double_trig_use = x"yes"; then -+ for ac_func in _acosl _asinl _atanl _cosl _sinl _tanl _coshl _sinhl _tanhl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double round functions" >&5 -+$as_echo_n "checking for long double round functions... " >&6; } -+ if ${glibcxx_cv_func_long_double_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ceill (0); floorl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_long_double_round_use=yes -+else -+ glibcxx_cv_func_long_double_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_long_double_round_use" >&5 -+$as_echo "$glibcxx_cv_func_long_double_round_use" >&6; } -+ if test x$glibcxx_cv_func_long_double_round_use = x"yes"; then -+ for ac_func in ceill floorl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double round functions" >&5 -+$as_echo_n "checking for _long double round functions... " >&6; } -+ if ${glibcxx_cv_func__long_double_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_ceill (0); _floorl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__long_double_round_use=yes -+else -+ glibcxx_cv_func__long_double_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__long_double_round_use" >&5 -+$as_echo "$glibcxx_cv_func__long_double_round_use" >&6; } -+ if test x$glibcxx_cv_func__long_double_round_use = x"yes"; then -+ for ac_func in _ceill _floorl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanl declaration" >&5 -+$as_echo_n "checking for isnanl declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnanl_use+set} != xset; then -+ if ${glibcxx_cv_func_isnanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnanl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnanl_use=yes -+else -+ glibcxx_cv_func_isnanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnanl_use" >&5 -+$as_echo "$glibcxx_cv_func_isnanl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnanl_use = x"yes"; then -+ for ac_func in isnanl -+do : -+ ac_fn_c_check_func "$LINENO" "isnanl" "ac_cv_func_isnanl" -+if test "x$ac_cv_func_isnanl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNANL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanl declaration" >&5 -+$as_echo_n "checking for _isnanl declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnanl_use+set} != xset; then -+ if ${glibcxx_cv_func__isnanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnanl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnanl_use=yes -+else -+ glibcxx_cv_func__isnanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnanl_use" >&5 -+$as_echo "$glibcxx_cv_func__isnanl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnanl_use = x"yes"; then -+ for ac_func in _isnanl -+do : -+ ac_fn_c_check_func "$LINENO" "_isnanl" "ac_cv_func__isnanl" -+if test "x$ac_cv_func__isnanl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNANL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinfl declaration" >&5 -+$as_echo_n "checking for isinfl declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinfl_use+set} != xset; then -+ if ${glibcxx_cv_func_isinfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinfl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinfl_use=yes -+else -+ glibcxx_cv_func_isinfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinfl_use" >&5 -+$as_echo "$glibcxx_cv_func_isinfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinfl_use = x"yes"; then -+ for ac_func in isinfl -+do : -+ ac_fn_c_check_func "$LINENO" "isinfl" "ac_cv_func_isinfl" -+if test "x$ac_cv_func_isinfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINFL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinfl declaration" >&5 -+$as_echo_n "checking for _isinfl declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinfl_use+set} != xset; then -+ if ${glibcxx_cv_func__isinfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinfl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinfl_use=yes -+else -+ glibcxx_cv_func__isinfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinfl_use" >&5 -+$as_echo "$glibcxx_cv_func__isinfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinfl_use = x"yes"; then -+ for ac_func in _isinfl -+do : -+ ac_fn_c_check_func "$LINENO" "_isinfl" "ac_cv_func__isinfl" -+if test "x$ac_cv_func__isinfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINFL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2l declaration" >&5 -+$as_echo_n "checking for atan2l declaration... " >&6; } -+ if test x${glibcxx_cv_func_atan2l_use+set} != xset; then -+ if ${glibcxx_cv_func_atan2l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ atan2l(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atan2l_use=yes -+else -+ glibcxx_cv_func_atan2l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atan2l_use" >&5 -+$as_echo "$glibcxx_cv_func_atan2l_use" >&6; } -+ -+ if test x$glibcxx_cv_func_atan2l_use = x"yes"; then -+ for ac_func in atan2l -+do : -+ ac_fn_c_check_func "$LINENO" "atan2l" "ac_cv_func_atan2l" -+if test "x$ac_cv_func_atan2l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATAN2L 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2l declaration" >&5 -+$as_echo_n "checking for _atan2l declaration... " >&6; } -+ if test x${glibcxx_cv_func__atan2l_use+set} != xset; then -+ if ${glibcxx_cv_func__atan2l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _atan2l(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__atan2l_use=yes -+else -+ glibcxx_cv_func__atan2l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__atan2l_use" >&5 -+$as_echo "$glibcxx_cv_func__atan2l_use" >&6; } -+ -+ if test x$glibcxx_cv_func__atan2l_use = x"yes"; then -+ for ac_func in _atan2l -+do : -+ ac_fn_c_check_func "$LINENO" "_atan2l" "ac_cv_func__atan2l" -+if test "x$ac_cv_func__atan2l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ATAN2L 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for expl declaration" >&5 -+$as_echo_n "checking for expl declaration... " >&6; } -+ if test x${glibcxx_cv_func_expl_use+set} != xset; then -+ if ${glibcxx_cv_func_expl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ expl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_expl_use=yes -+else -+ glibcxx_cv_func_expl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_expl_use" >&5 -+$as_echo "$glibcxx_cv_func_expl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_expl_use = x"yes"; then -+ for ac_func in expl -+do : -+ ac_fn_c_check_func "$LINENO" "expl" "ac_cv_func_expl" -+if test "x$ac_cv_func_expl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_EXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expl declaration" >&5 -+$as_echo_n "checking for _expl declaration... " >&6; } -+ if test x${glibcxx_cv_func__expl_use+set} != xset; then -+ if ${glibcxx_cv_func__expl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _expl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__expl_use=yes -+else -+ glibcxx_cv_func__expl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__expl_use" >&5 -+$as_echo "$glibcxx_cv_func__expl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__expl_use = x"yes"; then -+ for ac_func in _expl -+do : -+ ac_fn_c_check_func "$LINENO" "_expl" "ac_cv_func__expl" -+if test "x$ac_cv_func__expl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__EXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsl declaration" >&5 -+$as_echo_n "checking for fabsl declaration... " >&6; } -+ if test x${glibcxx_cv_func_fabsl_use+set} != xset; then -+ if ${glibcxx_cv_func_fabsl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fabsl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fabsl_use=yes -+else -+ glibcxx_cv_func_fabsl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fabsl_use" >&5 -+$as_echo "$glibcxx_cv_func_fabsl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fabsl_use = x"yes"; then -+ for ac_func in fabsl -+do : -+ ac_fn_c_check_func "$LINENO" "fabsl" "ac_cv_func_fabsl" -+if test "x$ac_cv_func_fabsl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FABSL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsl declaration" >&5 -+$as_echo_n "checking for _fabsl declaration... " >&6; } -+ if test x${glibcxx_cv_func__fabsl_use+set} != xset; then -+ if ${glibcxx_cv_func__fabsl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fabsl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fabsl_use=yes -+else -+ glibcxx_cv_func__fabsl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fabsl_use" >&5 -+$as_echo "$glibcxx_cv_func__fabsl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fabsl_use = x"yes"; then -+ for ac_func in _fabsl -+do : -+ ac_fn_c_check_func "$LINENO" "_fabsl" "ac_cv_func__fabsl" -+if test "x$ac_cv_func__fabsl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FABSL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodl declaration" >&5 -+$as_echo_n "checking for fmodl declaration... " >&6; } -+ if test x${glibcxx_cv_func_fmodl_use+set} != xset; then -+ if ${glibcxx_cv_func_fmodl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ fmodl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fmodl_use=yes -+else -+ glibcxx_cv_func_fmodl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fmodl_use" >&5 -+$as_echo "$glibcxx_cv_func_fmodl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fmodl_use = x"yes"; then -+ for ac_func in fmodl -+do : -+ ac_fn_c_check_func "$LINENO" "fmodl" "ac_cv_func_fmodl" -+if test "x$ac_cv_func_fmodl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FMODL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodl declaration" >&5 -+$as_echo_n "checking for _fmodl declaration... " >&6; } -+ if test x${glibcxx_cv_func__fmodl_use+set} != xset; then -+ if ${glibcxx_cv_func__fmodl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _fmodl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fmodl_use=yes -+else -+ glibcxx_cv_func__fmodl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fmodl_use" >&5 -+$as_echo "$glibcxx_cv_func__fmodl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fmodl_use = x"yes"; then -+ for ac_func in _fmodl -+do : -+ ac_fn_c_check_func "$LINENO" "_fmodl" "ac_cv_func__fmodl" -+if test "x$ac_cv_func__fmodl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FMODL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpl declaration" >&5 -+$as_echo_n "checking for frexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func_frexpl_use+set} != xset; then -+ if ${glibcxx_cv_func_frexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ frexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpl_use=yes -+else -+ glibcxx_cv_func_frexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_frexpl_use = x"yes"; then -+ for ac_func in frexpl -+do : -+ ac_fn_c_check_func "$LINENO" "frexpl" "ac_cv_func_frexpl" -+if test "x$ac_cv_func_frexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpl declaration" >&5 -+$as_echo_n "checking for _frexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func__frexpl_use+set} != xset; then -+ if ${glibcxx_cv_func__frexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _frexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__frexpl_use=yes -+else -+ glibcxx_cv_func__frexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__frexpl_use" >&5 -+$as_echo "$glibcxx_cv_func__frexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__frexpl_use = x"yes"; then -+ for ac_func in _frexpl -+do : -+ ac_fn_c_check_func "$LINENO" "_frexpl" "ac_cv_func__frexpl" -+if test "x$ac_cv_func__frexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FREXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotl declaration" >&5 -+$as_echo_n "checking for hypotl declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypotl_use+set} != xset; then -+ if ${glibcxx_cv_func_hypotl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypotl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotl_use=yes -+else -+ glibcxx_cv_func_hypotl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotl_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypotl_use = x"yes"; then -+ for ac_func in hypotl -+do : -+ ac_fn_c_check_func "$LINENO" "hypotl" "ac_cv_func_hypotl" -+if test "x$ac_cv_func_hypotl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotl declaration" >&5 -+$as_echo_n "checking for _hypotl declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypotl_use+set} != xset; then -+ if ${glibcxx_cv_func__hypotl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypotl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypotl_use=yes -+else -+ glibcxx_cv_func__hypotl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypotl_use" >&5 -+$as_echo "$glibcxx_cv_func__hypotl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypotl_use = x"yes"; then -+ for ac_func in _hypotl -+do : -+ ac_fn_c_check_func "$LINENO" "_hypotl" "ac_cv_func__hypotl" -+if test "x$ac_cv_func__hypotl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOTL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpl declaration" >&5 -+$as_echo_n "checking for ldexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func_ldexpl_use+set} != xset; then -+ if ${glibcxx_cv_func_ldexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ ldexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpl_use=yes -+else -+ glibcxx_cv_func_ldexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_ldexpl_use = x"yes"; then -+ for ac_func in ldexpl -+do : -+ ac_fn_c_check_func "$LINENO" "ldexpl" "ac_cv_func_ldexpl" -+if test "x$ac_cv_func_ldexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpl declaration" >&5 -+$as_echo_n "checking for _ldexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func__ldexpl_use+set} != xset; then -+ if ${glibcxx_cv_func__ldexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _ldexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__ldexpl_use=yes -+else -+ glibcxx_cv_func__ldexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__ldexpl_use" >&5 -+$as_echo "$glibcxx_cv_func__ldexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__ldexpl_use = x"yes"; then -+ for ac_func in _ldexpl -+do : -+ ac_fn_c_check_func "$LINENO" "_ldexpl" "ac_cv_func__ldexpl" -+if test "x$ac_cv_func__ldexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LDEXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for logl declaration" >&5 -+$as_echo_n "checking for logl declaration... " >&6; } -+ if test x${glibcxx_cv_func_logl_use+set} != xset; then -+ if ${glibcxx_cv_func_logl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ logl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_logl_use=yes -+else -+ glibcxx_cv_func_logl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_logl_use" >&5 -+$as_echo "$glibcxx_cv_func_logl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_logl_use = x"yes"; then -+ for ac_func in logl -+do : -+ ac_fn_c_check_func "$LINENO" "logl" "ac_cv_func_logl" -+if test "x$ac_cv_func_logl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOGL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logl declaration" >&5 -+$as_echo_n "checking for _logl declaration... " >&6; } -+ if test x${glibcxx_cv_func__logl_use+set} != xset; then -+ if ${glibcxx_cv_func__logl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _logl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__logl_use=yes -+else -+ glibcxx_cv_func__logl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__logl_use" >&5 -+$as_echo "$glibcxx_cv_func__logl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__logl_use = x"yes"; then -+ for ac_func in _logl -+do : -+ ac_fn_c_check_func "$LINENO" "_logl" "ac_cv_func__logl" -+if test "x$ac_cv_func__logl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOGL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10l declaration" >&5 -+$as_echo_n "checking for log10l declaration... " >&6; } -+ if test x${glibcxx_cv_func_log10l_use+set} != xset; then -+ if ${glibcxx_cv_func_log10l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ log10l(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_log10l_use=yes -+else -+ glibcxx_cv_func_log10l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_log10l_use" >&5 -+$as_echo "$glibcxx_cv_func_log10l_use" >&6; } -+ -+ if test x$glibcxx_cv_func_log10l_use = x"yes"; then -+ for ac_func in log10l -+do : -+ ac_fn_c_check_func "$LINENO" "log10l" "ac_cv_func_log10l" -+if test "x$ac_cv_func_log10l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOG10L 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10l declaration" >&5 -+$as_echo_n "checking for _log10l declaration... " >&6; } -+ if test x${glibcxx_cv_func__log10l_use+set} != xset; then -+ if ${glibcxx_cv_func__log10l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _log10l(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__log10l_use=yes -+else -+ glibcxx_cv_func__log10l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__log10l_use" >&5 -+$as_echo "$glibcxx_cv_func__log10l_use" >&6; } -+ -+ if test x$glibcxx_cv_func__log10l_use = x"yes"; then -+ for ac_func in _log10l -+do : -+ ac_fn_c_check_func "$LINENO" "_log10l" "ac_cv_func__log10l" -+if test "x$ac_cv_func__log10l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOG10L 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modfl declaration" >&5 -+$as_echo_n "checking for modfl declaration... " >&6; } -+ if test x${glibcxx_cv_func_modfl_use+set} != xset; then -+ if ${glibcxx_cv_func_modfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modfl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modfl_use=yes -+else -+ glibcxx_cv_func_modfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modfl_use" >&5 -+$as_echo "$glibcxx_cv_func_modfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modfl_use = x"yes"; then -+ for ac_func in modfl -+do : -+ ac_fn_c_check_func "$LINENO" "modfl" "ac_cv_func_modfl" -+if test "x$ac_cv_func_modfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modfl declaration" >&5 -+$as_echo_n "checking for _modfl declaration... " >&6; } -+ if test x${glibcxx_cv_func__modfl_use+set} != xset; then -+ if ${glibcxx_cv_func__modfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modfl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modfl_use=yes -+else -+ glibcxx_cv_func__modfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modfl_use" >&5 -+$as_echo "$glibcxx_cv_func__modfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modfl_use = x"yes"; then -+ for ac_func in _modfl -+do : -+ ac_fn_c_check_func "$LINENO" "_modfl" "ac_cv_func__modfl" -+if test "x$ac_cv_func__modfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODFL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for powl declaration" >&5 -+$as_echo_n "checking for powl declaration... " >&6; } -+ if test x${glibcxx_cv_func_powl_use+set} != xset; then -+ if ${glibcxx_cv_func_powl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ powl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_powl_use=yes -+else -+ glibcxx_cv_func_powl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_powl_use" >&5 -+$as_echo "$glibcxx_cv_func_powl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_powl_use = x"yes"; then -+ for ac_func in powl -+do : -+ ac_fn_c_check_func "$LINENO" "powl" "ac_cv_func_powl" -+if test "x$ac_cv_func_powl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_POWL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powl declaration" >&5 -+$as_echo_n "checking for _powl declaration... " >&6; } -+ if test x${glibcxx_cv_func__powl_use+set} != xset; then -+ if ${glibcxx_cv_func__powl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _powl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__powl_use=yes -+else -+ glibcxx_cv_func__powl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__powl_use" >&5 -+$as_echo "$glibcxx_cv_func__powl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__powl_use = x"yes"; then -+ for ac_func in _powl -+do : -+ ac_fn_c_check_func "$LINENO" "_powl" "ac_cv_func__powl" -+if test "x$ac_cv_func__powl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__POWL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtl declaration" >&5 -+$as_echo_n "checking for sqrtl declaration... " >&6; } -+ if test x${glibcxx_cv_func_sqrtl_use+set} != xset; then -+ if ${glibcxx_cv_func_sqrtl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ sqrtl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sqrtl_use=yes -+else -+ glibcxx_cv_func_sqrtl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sqrtl_use" >&5 -+$as_echo "$glibcxx_cv_func_sqrtl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sqrtl_use = x"yes"; then -+ for ac_func in sqrtl -+do : -+ ac_fn_c_check_func "$LINENO" "sqrtl" "ac_cv_func_sqrtl" -+if test "x$ac_cv_func_sqrtl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SQRTL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtl declaration" >&5 -+$as_echo_n "checking for _sqrtl declaration... " >&6; } -+ if test x${glibcxx_cv_func__sqrtl_use+set} != xset; then -+ if ${glibcxx_cv_func__sqrtl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _sqrtl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sqrtl_use=yes -+else -+ glibcxx_cv_func__sqrtl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sqrtl_use" >&5 -+$as_echo "$glibcxx_cv_func__sqrtl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sqrtl_use = x"yes"; then -+ for ac_func in _sqrtl -+do : -+ ac_fn_c_check_func "$LINENO" "_sqrtl" "ac_cv_func__sqrtl" -+if test "x$ac_cv_func__sqrtl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SQRTL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosl declaration" >&5 -+$as_echo_n "checking for sincosl declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincosl_use+set} != xset; then -+ if ${glibcxx_cv_func_sincosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincosl(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincosl_use=yes -+else -+ glibcxx_cv_func_sincosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincosl_use" >&5 -+$as_echo "$glibcxx_cv_func_sincosl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincosl_use = x"yes"; then -+ for ac_func in sincosl -+do : -+ ac_fn_c_check_func "$LINENO" "sincosl" "ac_cv_func_sincosl" -+if test "x$ac_cv_func_sincosl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOSL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosl declaration" >&5 -+$as_echo_n "checking for _sincosl declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincosl_use+set} != xset; then -+ if ${glibcxx_cv_func__sincosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincosl(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincosl_use=yes -+else -+ glibcxx_cv_func__sincosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincosl_use" >&5 -+$as_echo "$glibcxx_cv_func__sincosl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincosl_use = x"yes"; then -+ for ac_func in _sincosl -+do : -+ ac_fn_c_check_func "$LINENO" "_sincosl" "ac_cv_func__sincosl" -+if test "x$ac_cv_func__sincosl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOSL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitel declaration" >&5 -+$as_echo_n "checking for finitel declaration... " >&6; } -+ if test x${glibcxx_cv_func_finitel_use+set} != xset; then -+ if ${glibcxx_cv_func_finitel_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finitel(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finitel_use=yes -+else -+ glibcxx_cv_func_finitel_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finitel_use" >&5 -+$as_echo "$glibcxx_cv_func_finitel_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finitel_use = x"yes"; then -+ for ac_func in finitel -+do : -+ ac_fn_c_check_func "$LINENO" "finitel" "ac_cv_func_finitel" -+if test "x$ac_cv_func_finitel" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITEL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitel declaration" >&5 -+$as_echo_n "checking for _finitel declaration... " >&6; } -+ if test x${glibcxx_cv_func__finitel_use+set} != xset; then -+ if ${glibcxx_cv_func__finitel_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finitel(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finitel_use=yes -+else -+ glibcxx_cv_func__finitel_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finitel_use" >&5 -+$as_echo "$glibcxx_cv_func__finitel_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finitel_use = x"yes"; then -+ for ac_func in _finitel -+do : -+ ac_fn_c_check_func "$LINENO" "_finitel" "ac_cv_func__finitel" -+if test "x$ac_cv_func__finitel" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITEL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ LIBS="$ac_save_LIBS" -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS='-fno-builtin -D_GNU_SOURCE' -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for at_quick_exit declaration" >&5 -+$as_echo_n "checking for at_quick_exit declaration... " >&6; } -+ if test x${glibcxx_cv_func_at_quick_exit_use+set} != xset; then -+ if ${glibcxx_cv_func_at_quick_exit_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ at_quick_exit(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_at_quick_exit_use=yes -+else -+ glibcxx_cv_func_at_quick_exit_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_at_quick_exit_use" >&5 -+$as_echo "$glibcxx_cv_func_at_quick_exit_use" >&6; } -+ if test x$glibcxx_cv_func_at_quick_exit_use = x"yes"; then -+ for ac_func in at_quick_exit -+do : -+ ac_fn_c_check_func "$LINENO" "at_quick_exit" "ac_cv_func_at_quick_exit" -+if test "x$ac_cv_func_at_quick_exit" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_AT_QUICK_EXIT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for quick_exit declaration" >&5 -+$as_echo_n "checking for quick_exit declaration... " >&6; } -+ if test x${glibcxx_cv_func_quick_exit_use+set} != xset; then -+ if ${glibcxx_cv_func_quick_exit_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ quick_exit(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_quick_exit_use=yes -+else -+ glibcxx_cv_func_quick_exit_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_quick_exit_use" >&5 -+$as_echo "$glibcxx_cv_func_quick_exit_use" >&6; } -+ if test x$glibcxx_cv_func_quick_exit_use = x"yes"; then -+ for ac_func in quick_exit -+do : -+ ac_fn_c_check_func "$LINENO" "quick_exit" "ac_cv_func_quick_exit" -+if test "x$ac_cv_func_quick_exit" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_QUICK_EXIT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtold declaration" >&5 -+$as_echo_n "checking for strtold declaration... " >&6; } -+ if test x${glibcxx_cv_func_strtold_use+set} != xset; then -+ if ${glibcxx_cv_func_strtold_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ strtold(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_strtold_use=yes -+else -+ glibcxx_cv_func_strtold_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_strtold_use" >&5 -+$as_echo "$glibcxx_cv_func_strtold_use" >&6; } -+ if test x$glibcxx_cv_func_strtold_use = x"yes"; then -+ for ac_func in strtold -+do : -+ ac_fn_c_check_func "$LINENO" "strtold" "ac_cv_func_strtold" -+if test "x$ac_cv_func_strtold" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STRTOLD 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtof declaration" >&5 -+$as_echo_n "checking for strtof declaration... " >&6; } -+ if test x${glibcxx_cv_func_strtof_use+set} != xset; then -+ if ${glibcxx_cv_func_strtof_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ strtof(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_strtof_use=yes -+else -+ glibcxx_cv_func_strtof_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_strtof_use" >&5 -+$as_echo "$glibcxx_cv_func_strtof_use" >&6; } -+ if test x$glibcxx_cv_func_strtof_use = x"yes"; then -+ for ac_func in strtof -+do : -+ ac_fn_c_check_func "$LINENO" "strtof" "ac_cv_func_strtof" -+if test "x$ac_cv_func_strtof" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STRTOF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ -+ ;; -+ -+ avr*-*-*) -+ $as_echo "@%:@define HAVE_ACOSF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ASINF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ATAN2F 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ATANF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_CEILF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_COSF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_COSHF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_EXPF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FABSF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FLOORF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FMODF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FREXPF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SQRTF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_HYPOTF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LDEXPF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LOG10F 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LOGF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_MODFF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_POWF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINHF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_TANF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_TANHF 1" >>confdefs.h -+ -+ ;; -+ -+ mips*-sde-elf*) -+ # These definitions are for the SDE C library rather than newlib. -+ SECTION_FLAGS='-ffunction-sections -fdata-sections' -+ -+ -+ # All these tests are for C++; save the language and the compiler flags. -+ # The CXXFLAGS thing is suspicious, but based on similar bits previously -+ # found in GLIBCXX_CONFIGURE. -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ -+ # Check for -ffunction-sections -fdata-sections -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for g++ that supports -ffunction-sections -fdata-sections" >&5 -+$as_echo_n "checking for g++ that supports -ffunction-sections -fdata-sections... " >&6; } -+ CXXFLAGS='-g -Werror -ffunction-sections -fdata-sections' -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+int foo; void bar() { }; -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_fdsections=yes -+else -+ ac_fdsections=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ if test "$ac_test_CXXFLAGS" = set; then -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ else -+ # this is the suspicious part -+ CXXFLAGS='' -+ fi -+ if test x"$ac_fdsections" = x"yes"; then -+ SECTION_FLAGS='-ffunction-sections -fdata-sections' -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_fdsections" >&5 -+$as_echo "$ac_fdsections" >&6; } -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ -+ # If we're not using GNU ld, then there's no point in even trying these -+ # tests. Check for that first. We should have already tested for gld -+ # by now (in libtool), but require it now just to be safe... -+ test -z "$SECTION_LDFLAGS" && SECTION_LDFLAGS='' -+ test -z "$OPT_LDFLAGS" && OPT_LDFLAGS='' -+ -+ -+ -+ # The name set by libtool depends on the version of libtool. Shame on us -+ # for depending on an impl detail, but c'est la vie. Older versions used -+ # ac_cv_prog_gnu_ld, but now it's lt_cv_prog_gnu_ld, and is copied back on -+ # top of with_gnu_ld (which is also set by --with-gnu-ld, so that actually -+ # makes sense). We'll test with_gnu_ld everywhere else, so if that isn't -+ # set (hence we're using an older libtool), then set it. -+ if test x${with_gnu_ld+set} != xset; then -+ if test x${ac_cv_prog_gnu_ld+set} != xset; then -+ # We got through "ac_require(ac_prog_ld)" and still not set? Huh? -+ with_gnu_ld=no -+ else -+ with_gnu_ld=$ac_cv_prog_gnu_ld -+ fi -+ fi -+ -+ # Start by getting the version number. I think the libtool test already -+ # does some of this, but throws away the result. -+ glibcxx_ld_is_gold=no -+ glibcxx_ld_is_mold=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld version" >&5 -+$as_echo_n "checking for ld version... " >&6; } -+ -+ if $LD --version 2>/dev/null | grep 'GNU gold' >/dev/null 2>&1; then -+ glibcxx_ld_is_gold=yes -+ elif $LD --version 2>/dev/null | grep 'mold' >/dev/null 2>&1; then -+ glibcxx_ld_is_mold=yes -+ fi -+ ldver=`$LD --version 2>/dev/null | -+ sed -e 's/[. ][0-9]\{8\}$//;s/.* \([^ ]\{1,\}\)$/\1/; q'` -+ -+ glibcxx_gnu_ld_version=`echo $ldver | \ -+ $AWK -F. '{ if (NF<3) $3=0; print ($1*100+$2)*100+$3 }'` -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_gnu_ld_version" >&5 -+$as_echo "$glibcxx_gnu_ld_version" >&6; } -+ fi -+ -+ # Set --gc-sections. -+ glibcxx_have_gc_sections=no -+ if test "$glibcxx_ld_is_gold" = "yes" || test "$glibcxx_ld_is_mold" = "yes" ; then -+ if $LD --help 2>/dev/null | grep gc-sections >/dev/null 2>&1; then -+ glibcxx_have_gc_sections=yes -+ fi -+ else -+ glibcxx_gcsections_min_ld=21602 -+ if test x"$with_gnu_ld" = x"yes" && -+ test $glibcxx_gnu_ld_version -gt $glibcxx_gcsections_min_ld ; then -+ glibcxx_have_gc_sections=yes -+ fi -+ fi -+ if test "$glibcxx_have_gc_sections" = "yes"; then -+ # Sufficiently young GNU ld it is! Joy and bunny rabbits! -+ # NB: This flag only works reliably after 2.16.1. Configure tests -+ # for this are difficult, so hard wire a value that should work. -+ -+ ac_test_CFLAGS="${CFLAGS+set}" -+ ac_save_CFLAGS="$CFLAGS" -+ CFLAGS='-Wl,--gc-sections' -+ -+ # Check for -Wl,--gc-sections -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5 -+$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; } -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ int one(void) { return 1; } -+ int two(void) { return 2; } -+ -+int -+main () -+{ -+ two(); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_gcsections=yes -+else -+ ac_gcsections=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ if test "$ac_gcsections" = "yes"; then -+ rm -f conftest.c -+ touch conftest.c -+ if $CC -c conftest.c; then -+ if $LD --gc-sections -o conftest conftest.o 2>&1 | \ -+ grep "Warning: gc-sections option ignored" > /dev/null; then -+ ac_gcsections=no -+ fi -+ fi -+ rm -f conftest.c conftest.o conftest -+ fi -+ if test "$ac_gcsections" = "yes"; then -+ SECTION_LDFLAGS="-Wl,--gc-sections $SECTION_LDFLAGS" -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_gcsections" >&5 -+$as_echo "$ac_gcsections" >&6; } -+ -+ if test "$ac_test_CFLAGS" = set; then -+ CFLAGS="$ac_save_CFLAGS" -+ else -+ # this is the suspicious part -+ CFLAGS='' -+ fi -+ fi -+ -+ # Set -z,relro. -+ # Note this is only for shared objects. -+ ac_ld_relro=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ # cygwin and mingw uses PE, which has no ELF relro support, -+ # multi target ld may confuse configure machinery -+ case "$host" in -+ *-*-cygwin*) -+ ;; -+ *-*-mingw*) -+ ;; -+ *) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,-z,relro" >&5 -+$as_echo_n "checking for ld that supports -Wl,-z,relro... " >&6; } -+ cxx_z_relo=`$LD -v --help 2>/dev/null | grep "z relro"` -+ if test -n "$cxx_z_relo"; then -+ OPT_LDFLAGS="-Wl,-z,relro" -+ ac_ld_relro=yes -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ld_relro" >&5 -+$as_echo "$ac_ld_relro" >&6; } -+ esac -+ fi -+ -+ # Set linker optimization flags. -+ if test x"$with_gnu_ld" = x"yes"; then -+ OPT_LDFLAGS="-Wl,-O1 $OPT_LDFLAGS" -+ fi -+ -+ -+ -+ -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS='-fno-builtin -D_GNU_SOURCE' -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5 -+$as_echo_n "checking for sin in -lm... " >&6; } -+if ${ac_cv_lib_m_sin+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lm $LIBS" -+if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char sin (); -+int -+main () -+{ -+return sin (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_m_sin=yes -+else -+ ac_cv_lib_m_sin=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5 -+$as_echo "$ac_cv_lib_m_sin" >&6; } -+if test "x$ac_cv_lib_m_sin" = xyes; then : -+ libm="-lm" -+fi -+ -+ ac_save_LIBS="$LIBS" -+ LIBS="$LIBS $libm" -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf declaration" >&5 -+$as_echo_n "checking for isinf declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinf_use+set} != xset; then -+ if ${glibcxx_cv_func_isinf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinf_use=yes -+else -+ glibcxx_cv_func_isinf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinf_use" >&5 -+$as_echo "$glibcxx_cv_func_isinf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinf_use = x"yes"; then -+ for ac_func in isinf -+do : -+ ac_fn_c_check_func "$LINENO" "isinf" "ac_cv_func_isinf" -+if test "x$ac_cv_func_isinf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinf declaration" >&5 -+$as_echo_n "checking for _isinf declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinf_use+set} != xset; then -+ if ${glibcxx_cv_func__isinf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinf_use=yes -+else -+ glibcxx_cv_func__isinf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinf_use" >&5 -+$as_echo "$glibcxx_cv_func__isinf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinf_use = x"yes"; then -+ for ac_func in _isinf -+do : -+ ac_fn_c_check_func "$LINENO" "_isinf" "ac_cv_func__isinf" -+if test "x$ac_cv_func__isinf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan declaration" >&5 -+$as_echo_n "checking for isnan declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnan_use+set} != xset; then -+ if ${glibcxx_cv_func_isnan_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnan(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnan_use=yes -+else -+ glibcxx_cv_func_isnan_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnan_use" >&5 -+$as_echo "$glibcxx_cv_func_isnan_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnan_use = x"yes"; then -+ for ac_func in isnan -+do : -+ ac_fn_c_check_func "$LINENO" "isnan" "ac_cv_func_isnan" -+if test "x$ac_cv_func_isnan" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNAN 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnan declaration" >&5 -+$as_echo_n "checking for _isnan declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnan_use+set} != xset; then -+ if ${glibcxx_cv_func__isnan_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnan(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnan_use=yes -+else -+ glibcxx_cv_func__isnan_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnan_use" >&5 -+$as_echo "$glibcxx_cv_func__isnan_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnan_use = x"yes"; then -+ for ac_func in _isnan -+do : -+ ac_fn_c_check_func "$LINENO" "_isnan" "ac_cv_func__isnan" -+if test "x$ac_cv_func__isnan" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNAN 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finite declaration" >&5 -+$as_echo_n "checking for finite declaration... " >&6; } -+ if test x${glibcxx_cv_func_finite_use+set} != xset; then -+ if ${glibcxx_cv_func_finite_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finite(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finite_use=yes -+else -+ glibcxx_cv_func_finite_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finite_use" >&5 -+$as_echo "$glibcxx_cv_func_finite_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finite_use = x"yes"; then -+ for ac_func in finite -+do : -+ ac_fn_c_check_func "$LINENO" "finite" "ac_cv_func_finite" -+if test "x$ac_cv_func_finite" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITE 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finite declaration" >&5 -+$as_echo_n "checking for _finite declaration... " >&6; } -+ if test x${glibcxx_cv_func__finite_use+set} != xset; then -+ if ${glibcxx_cv_func__finite_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finite(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finite_use=yes -+else -+ glibcxx_cv_func__finite_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finite_use" >&5 -+$as_echo "$glibcxx_cv_func__finite_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finite_use = x"yes"; then -+ for ac_func in _finite -+do : -+ ac_fn_c_check_func "$LINENO" "_finite" "ac_cv_func__finite" -+if test "x$ac_cv_func__finite" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITE 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincos declaration" >&5 -+$as_echo_n "checking for sincos declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincos_use+set} != xset; then -+ if ${glibcxx_cv_func_sincos_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincos(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincos_use=yes -+else -+ glibcxx_cv_func_sincos_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincos_use" >&5 -+$as_echo "$glibcxx_cv_func_sincos_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincos_use = x"yes"; then -+ for ac_func in sincos -+do : -+ ac_fn_c_check_func "$LINENO" "sincos" "ac_cv_func_sincos" -+if test "x$ac_cv_func_sincos" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincos declaration" >&5 -+$as_echo_n "checking for _sincos declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincos_use+set} != xset; then -+ if ${glibcxx_cv_func__sincos_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincos(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincos_use=yes -+else -+ glibcxx_cv_func__sincos_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincos_use" >&5 -+$as_echo "$glibcxx_cv_func__sincos_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincos_use = x"yes"; then -+ for ac_func in _sincos -+do : -+ ac_fn_c_check_func "$LINENO" "_sincos" "ac_cv_func__sincos" -+if test "x$ac_cv_func__sincos" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fpclass declaration" >&5 -+$as_echo_n "checking for fpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func_fpclass_use+set} != xset; then -+ if ${glibcxx_cv_func_fpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fpclass_use=yes -+else -+ glibcxx_cv_func_fpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fpclass_use" >&5 -+$as_echo "$glibcxx_cv_func_fpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fpclass_use = x"yes"; then -+ for ac_func in fpclass -+do : -+ ac_fn_c_check_func "$LINENO" "fpclass" "ac_cv_func_fpclass" -+if test "x$ac_cv_func_fpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fpclass declaration" >&5 -+$as_echo_n "checking for _fpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func__fpclass_use+set} != xset; then -+ if ${glibcxx_cv_func__fpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fpclass_use=yes -+else -+ glibcxx_cv_func__fpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fpclass_use" >&5 -+$as_echo "$glibcxx_cv_func__fpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fpclass_use = x"yes"; then -+ for ac_func in _fpclass -+do : -+ ac_fn_c_check_func "$LINENO" "_fpclass" "ac_cv_func__fpclass" -+if test "x$ac_cv_func__fpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for qfpclass declaration" >&5 -+$as_echo_n "checking for qfpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func_qfpclass_use+set} != xset; then -+ if ${glibcxx_cv_func_qfpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ qfpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_qfpclass_use=yes -+else -+ glibcxx_cv_func_qfpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_qfpclass_use" >&5 -+$as_echo "$glibcxx_cv_func_qfpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func_qfpclass_use = x"yes"; then -+ for ac_func in qfpclass -+do : -+ ac_fn_c_check_func "$LINENO" "qfpclass" "ac_cv_func_qfpclass" -+if test "x$ac_cv_func_qfpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_QFPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _qfpclass declaration" >&5 -+$as_echo_n "checking for _qfpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func__qfpclass_use+set} != xset; then -+ if ${glibcxx_cv_func__qfpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _qfpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__qfpclass_use=yes -+else -+ glibcxx_cv_func__qfpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__qfpclass_use" >&5 -+$as_echo "$glibcxx_cv_func__qfpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func__qfpclass_use = x"yes"; then -+ for ac_func in _qfpclass -+do : -+ ac_fn_c_check_func "$LINENO" "_qfpclass" "ac_cv_func__qfpclass" -+if test "x$ac_cv_func__qfpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__QFPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypot declaration" >&5 -+$as_echo_n "checking for hypot declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypot_use+set} != xset; then -+ if ${glibcxx_cv_func_hypot_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypot(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypot_use=yes -+else -+ glibcxx_cv_func_hypot_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypot_use" >&5 -+$as_echo "$glibcxx_cv_func_hypot_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypot_use = x"yes"; then -+ for ac_func in hypot -+do : -+ ac_fn_c_check_func "$LINENO" "hypot" "ac_cv_func_hypot" -+if test "x$ac_cv_func_hypot" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOT 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypot declaration" >&5 -+$as_echo_n "checking for _hypot declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypot_use+set} != xset; then -+ if ${glibcxx_cv_func__hypot_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypot(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypot_use=yes -+else -+ glibcxx_cv_func__hypot_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypot_use" >&5 -+$as_echo "$glibcxx_cv_func__hypot_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypot_use = x"yes"; then -+ for ac_func in _hypot -+do : -+ ac_fn_c_check_func "$LINENO" "_hypot" "ac_cv_func__hypot" -+if test "x$ac_cv_func__hypot" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for float trig functions" >&5 -+$as_echo_n "checking for float trig functions... " >&6; } -+ if ${glibcxx_cv_func_float_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+acosf (0); asinf (0); atanf (0); cosf (0); sinf (0); tanf (0); coshf (0); sinhf (0); tanhf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_float_trig_use=yes -+else -+ glibcxx_cv_func_float_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_float_trig_use" >&5 -+$as_echo "$glibcxx_cv_func_float_trig_use" >&6; } -+ if test x$glibcxx_cv_func_float_trig_use = x"yes"; then -+ for ac_func in acosf asinf atanf cosf sinf tanf coshf sinhf tanhf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float trig functions" >&5 -+$as_echo_n "checking for _float trig functions... " >&6; } -+ if ${glibcxx_cv_func__float_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_acosf (0); _asinf (0); _atanf (0); _cosf (0); _sinf (0); _tanf (0); _coshf (0); _sinhf (0); _tanhf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__float_trig_use=yes -+else -+ glibcxx_cv_func__float_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__float_trig_use" >&5 -+$as_echo "$glibcxx_cv_func__float_trig_use" >&6; } -+ if test x$glibcxx_cv_func__float_trig_use = x"yes"; then -+ for ac_func in _acosf _asinf _atanf _cosf _sinf _tanf _coshf _sinhf _tanhf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for float round functions" >&5 -+$as_echo_n "checking for float round functions... " >&6; } -+ if ${glibcxx_cv_func_float_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ceilf (0); floorf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_float_round_use=yes -+else -+ glibcxx_cv_func_float_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_float_round_use" >&5 -+$as_echo "$glibcxx_cv_func_float_round_use" >&6; } -+ if test x$glibcxx_cv_func_float_round_use = x"yes"; then -+ for ac_func in ceilf floorf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float round functions" >&5 -+$as_echo_n "checking for _float round functions... " >&6; } -+ if ${glibcxx_cv_func__float_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_ceilf (0); _floorf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__float_round_use=yes -+else -+ glibcxx_cv_func__float_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__float_round_use" >&5 -+$as_echo "$glibcxx_cv_func__float_round_use" >&6; } -+ if test x$glibcxx_cv_func__float_round_use = x"yes"; then -+ for ac_func in _ceilf _floorf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for expf declaration" >&5 -+$as_echo_n "checking for expf declaration... " >&6; } -+ if test x${glibcxx_cv_func_expf_use+set} != xset; then -+ if ${glibcxx_cv_func_expf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ expf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_expf_use=yes -+else -+ glibcxx_cv_func_expf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_expf_use" >&5 -+$as_echo "$glibcxx_cv_func_expf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_expf_use = x"yes"; then -+ for ac_func in expf -+do : -+ ac_fn_c_check_func "$LINENO" "expf" "ac_cv_func_expf" -+if test "x$ac_cv_func_expf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_EXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expf declaration" >&5 -+$as_echo_n "checking for _expf declaration... " >&6; } -+ if test x${glibcxx_cv_func__expf_use+set} != xset; then -+ if ${glibcxx_cv_func__expf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _expf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__expf_use=yes -+else -+ glibcxx_cv_func__expf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__expf_use" >&5 -+$as_echo "$glibcxx_cv_func__expf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__expf_use = x"yes"; then -+ for ac_func in _expf -+do : -+ ac_fn_c_check_func "$LINENO" "_expf" "ac_cv_func__expf" -+if test "x$ac_cv_func__expf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__EXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanf declaration" >&5 -+$as_echo_n "checking for isnanf declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnanf_use+set} != xset; then -+ if ${glibcxx_cv_func_isnanf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnanf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnanf_use=yes -+else -+ glibcxx_cv_func_isnanf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnanf_use" >&5 -+$as_echo "$glibcxx_cv_func_isnanf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnanf_use = x"yes"; then -+ for ac_func in isnanf -+do : -+ ac_fn_c_check_func "$LINENO" "isnanf" "ac_cv_func_isnanf" -+if test "x$ac_cv_func_isnanf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNANF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanf declaration" >&5 -+$as_echo_n "checking for _isnanf declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnanf_use+set} != xset; then -+ if ${glibcxx_cv_func__isnanf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnanf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnanf_use=yes -+else -+ glibcxx_cv_func__isnanf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnanf_use" >&5 -+$as_echo "$glibcxx_cv_func__isnanf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnanf_use = x"yes"; then -+ for ac_func in _isnanf -+do : -+ ac_fn_c_check_func "$LINENO" "_isnanf" "ac_cv_func__isnanf" -+if test "x$ac_cv_func__isnanf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNANF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinff declaration" >&5 -+$as_echo_n "checking for isinff declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinff_use+set} != xset; then -+ if ${glibcxx_cv_func_isinff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinff(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinff_use=yes -+else -+ glibcxx_cv_func_isinff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinff_use" >&5 -+$as_echo "$glibcxx_cv_func_isinff_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinff_use = x"yes"; then -+ for ac_func in isinff -+do : -+ ac_fn_c_check_func "$LINENO" "isinff" "ac_cv_func_isinff" -+if test "x$ac_cv_func_isinff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINFF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinff declaration" >&5 -+$as_echo_n "checking for _isinff declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinff_use+set} != xset; then -+ if ${glibcxx_cv_func__isinff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinff(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinff_use=yes -+else -+ glibcxx_cv_func__isinff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinff_use" >&5 -+$as_echo "$glibcxx_cv_func__isinff_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinff_use = x"yes"; then -+ for ac_func in _isinff -+do : -+ ac_fn_c_check_func "$LINENO" "_isinff" "ac_cv_func__isinff" -+if test "x$ac_cv_func__isinff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINFF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2f declaration" >&5 -+$as_echo_n "checking for atan2f declaration... " >&6; } -+ if test x${glibcxx_cv_func_atan2f_use+set} != xset; then -+ if ${glibcxx_cv_func_atan2f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ atan2f(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atan2f_use=yes -+else -+ glibcxx_cv_func_atan2f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atan2f_use" >&5 -+$as_echo "$glibcxx_cv_func_atan2f_use" >&6; } -+ -+ if test x$glibcxx_cv_func_atan2f_use = x"yes"; then -+ for ac_func in atan2f -+do : -+ ac_fn_c_check_func "$LINENO" "atan2f" "ac_cv_func_atan2f" -+if test "x$ac_cv_func_atan2f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATAN2F 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2f declaration" >&5 -+$as_echo_n "checking for _atan2f declaration... " >&6; } -+ if test x${glibcxx_cv_func__atan2f_use+set} != xset; then -+ if ${glibcxx_cv_func__atan2f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _atan2f(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__atan2f_use=yes -+else -+ glibcxx_cv_func__atan2f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__atan2f_use" >&5 -+$as_echo "$glibcxx_cv_func__atan2f_use" >&6; } -+ -+ if test x$glibcxx_cv_func__atan2f_use = x"yes"; then -+ for ac_func in _atan2f -+do : -+ ac_fn_c_check_func "$LINENO" "_atan2f" "ac_cv_func__atan2f" -+if test "x$ac_cv_func__atan2f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ATAN2F 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsf declaration" >&5 -+$as_echo_n "checking for fabsf declaration... " >&6; } -+ if test x${glibcxx_cv_func_fabsf_use+set} != xset; then -+ if ${glibcxx_cv_func_fabsf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fabsf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fabsf_use=yes -+else -+ glibcxx_cv_func_fabsf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fabsf_use" >&5 -+$as_echo "$glibcxx_cv_func_fabsf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fabsf_use = x"yes"; then -+ for ac_func in fabsf -+do : -+ ac_fn_c_check_func "$LINENO" "fabsf" "ac_cv_func_fabsf" -+if test "x$ac_cv_func_fabsf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FABSF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsf declaration" >&5 -+$as_echo_n "checking for _fabsf declaration... " >&6; } -+ if test x${glibcxx_cv_func__fabsf_use+set} != xset; then -+ if ${glibcxx_cv_func__fabsf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fabsf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fabsf_use=yes -+else -+ glibcxx_cv_func__fabsf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fabsf_use" >&5 -+$as_echo "$glibcxx_cv_func__fabsf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fabsf_use = x"yes"; then -+ for ac_func in _fabsf -+do : -+ ac_fn_c_check_func "$LINENO" "_fabsf" "ac_cv_func__fabsf" -+if test "x$ac_cv_func__fabsf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FABSF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodf declaration" >&5 -+$as_echo_n "checking for fmodf declaration... " >&6; } -+ if test x${glibcxx_cv_func_fmodf_use+set} != xset; then -+ if ${glibcxx_cv_func_fmodf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ fmodf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fmodf_use=yes -+else -+ glibcxx_cv_func_fmodf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fmodf_use" >&5 -+$as_echo "$glibcxx_cv_func_fmodf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fmodf_use = x"yes"; then -+ for ac_func in fmodf -+do : -+ ac_fn_c_check_func "$LINENO" "fmodf" "ac_cv_func_fmodf" -+if test "x$ac_cv_func_fmodf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FMODF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodf declaration" >&5 -+$as_echo_n "checking for _fmodf declaration... " >&6; } -+ if test x${glibcxx_cv_func__fmodf_use+set} != xset; then -+ if ${glibcxx_cv_func__fmodf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _fmodf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fmodf_use=yes -+else -+ glibcxx_cv_func__fmodf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fmodf_use" >&5 -+$as_echo "$glibcxx_cv_func__fmodf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fmodf_use = x"yes"; then -+ for ac_func in _fmodf -+do : -+ ac_fn_c_check_func "$LINENO" "_fmodf" "ac_cv_func__fmodf" -+if test "x$ac_cv_func__fmodf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FMODF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpf declaration" >&5 -+$as_echo_n "checking for frexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func_frexpf_use+set} != xset; then -+ if ${glibcxx_cv_func_frexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ frexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpf_use=yes -+else -+ glibcxx_cv_func_frexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_frexpf_use = x"yes"; then -+ for ac_func in frexpf -+do : -+ ac_fn_c_check_func "$LINENO" "frexpf" "ac_cv_func_frexpf" -+if test "x$ac_cv_func_frexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpf declaration" >&5 -+$as_echo_n "checking for _frexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func__frexpf_use+set} != xset; then -+ if ${glibcxx_cv_func__frexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _frexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__frexpf_use=yes -+else -+ glibcxx_cv_func__frexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__frexpf_use" >&5 -+$as_echo "$glibcxx_cv_func__frexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__frexpf_use = x"yes"; then -+ for ac_func in _frexpf -+do : -+ ac_fn_c_check_func "$LINENO" "_frexpf" "ac_cv_func__frexpf" -+if test "x$ac_cv_func__frexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FREXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotf declaration" >&5 -+$as_echo_n "checking for hypotf declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypotf_use+set} != xset; then -+ if ${glibcxx_cv_func_hypotf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypotf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotf_use=yes -+else -+ glibcxx_cv_func_hypotf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotf_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypotf_use = x"yes"; then -+ for ac_func in hypotf -+do : -+ ac_fn_c_check_func "$LINENO" "hypotf" "ac_cv_func_hypotf" -+if test "x$ac_cv_func_hypotf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotf declaration" >&5 -+$as_echo_n "checking for _hypotf declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypotf_use+set} != xset; then -+ if ${glibcxx_cv_func__hypotf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypotf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypotf_use=yes -+else -+ glibcxx_cv_func__hypotf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypotf_use" >&5 -+$as_echo "$glibcxx_cv_func__hypotf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypotf_use = x"yes"; then -+ for ac_func in _hypotf -+do : -+ ac_fn_c_check_func "$LINENO" "_hypotf" "ac_cv_func__hypotf" -+if test "x$ac_cv_func__hypotf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOTF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpf declaration" >&5 -+$as_echo_n "checking for ldexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func_ldexpf_use+set} != xset; then -+ if ${glibcxx_cv_func_ldexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ ldexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpf_use=yes -+else -+ glibcxx_cv_func_ldexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_ldexpf_use = x"yes"; then -+ for ac_func in ldexpf -+do : -+ ac_fn_c_check_func "$LINENO" "ldexpf" "ac_cv_func_ldexpf" -+if test "x$ac_cv_func_ldexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpf declaration" >&5 -+$as_echo_n "checking for _ldexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func__ldexpf_use+set} != xset; then -+ if ${glibcxx_cv_func__ldexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _ldexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__ldexpf_use=yes -+else -+ glibcxx_cv_func__ldexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__ldexpf_use" >&5 -+$as_echo "$glibcxx_cv_func__ldexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__ldexpf_use = x"yes"; then -+ for ac_func in _ldexpf -+do : -+ ac_fn_c_check_func "$LINENO" "_ldexpf" "ac_cv_func__ldexpf" -+if test "x$ac_cv_func__ldexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LDEXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for logf declaration" >&5 -+$as_echo_n "checking for logf declaration... " >&6; } -+ if test x${glibcxx_cv_func_logf_use+set} != xset; then -+ if ${glibcxx_cv_func_logf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ logf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_logf_use=yes -+else -+ glibcxx_cv_func_logf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_logf_use" >&5 -+$as_echo "$glibcxx_cv_func_logf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_logf_use = x"yes"; then -+ for ac_func in logf -+do : -+ ac_fn_c_check_func "$LINENO" "logf" "ac_cv_func_logf" -+if test "x$ac_cv_func_logf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOGF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logf declaration" >&5 -+$as_echo_n "checking for _logf declaration... " >&6; } -+ if test x${glibcxx_cv_func__logf_use+set} != xset; then -+ if ${glibcxx_cv_func__logf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _logf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__logf_use=yes -+else -+ glibcxx_cv_func__logf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__logf_use" >&5 -+$as_echo "$glibcxx_cv_func__logf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__logf_use = x"yes"; then -+ for ac_func in _logf -+do : -+ ac_fn_c_check_func "$LINENO" "_logf" "ac_cv_func__logf" -+if test "x$ac_cv_func__logf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOGF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10f declaration" >&5 -+$as_echo_n "checking for log10f declaration... " >&6; } -+ if test x${glibcxx_cv_func_log10f_use+set} != xset; then -+ if ${glibcxx_cv_func_log10f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ log10f(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_log10f_use=yes -+else -+ glibcxx_cv_func_log10f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_log10f_use" >&5 -+$as_echo "$glibcxx_cv_func_log10f_use" >&6; } -+ -+ if test x$glibcxx_cv_func_log10f_use = x"yes"; then -+ for ac_func in log10f -+do : -+ ac_fn_c_check_func "$LINENO" "log10f" "ac_cv_func_log10f" -+if test "x$ac_cv_func_log10f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOG10F 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10f declaration" >&5 -+$as_echo_n "checking for _log10f declaration... " >&6; } -+ if test x${glibcxx_cv_func__log10f_use+set} != xset; then -+ if ${glibcxx_cv_func__log10f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _log10f(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__log10f_use=yes -+else -+ glibcxx_cv_func__log10f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__log10f_use" >&5 -+$as_echo "$glibcxx_cv_func__log10f_use" >&6; } -+ -+ if test x$glibcxx_cv_func__log10f_use = x"yes"; then -+ for ac_func in _log10f -+do : -+ ac_fn_c_check_func "$LINENO" "_log10f" "ac_cv_func__log10f" -+if test "x$ac_cv_func__log10f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOG10F 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modff declaration" >&5 -+$as_echo_n "checking for modff declaration... " >&6; } -+ if test x${glibcxx_cv_func_modff_use+set} != xset; then -+ if ${glibcxx_cv_func_modff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modff(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modff_use=yes -+else -+ glibcxx_cv_func_modff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modff_use" >&5 -+$as_echo "$glibcxx_cv_func_modff_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modff_use = x"yes"; then -+ for ac_func in modff -+do : -+ ac_fn_c_check_func "$LINENO" "modff" "ac_cv_func_modff" -+if test "x$ac_cv_func_modff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modff declaration" >&5 -+$as_echo_n "checking for _modff declaration... " >&6; } -+ if test x${glibcxx_cv_func__modff_use+set} != xset; then -+ if ${glibcxx_cv_func__modff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modff(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modff_use=yes -+else -+ glibcxx_cv_func__modff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modff_use" >&5 -+$as_echo "$glibcxx_cv_func__modff_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modff_use = x"yes"; then -+ for ac_func in _modff -+do : -+ ac_fn_c_check_func "$LINENO" "_modff" "ac_cv_func__modff" -+if test "x$ac_cv_func__modff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODFF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modf declaration" >&5 -+$as_echo_n "checking for modf declaration... " >&6; } -+ if test x${glibcxx_cv_func_modf_use+set} != xset; then -+ if ${glibcxx_cv_func_modf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modf_use=yes -+else -+ glibcxx_cv_func_modf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modf_use" >&5 -+$as_echo "$glibcxx_cv_func_modf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modf_use = x"yes"; then -+ for ac_func in modf -+do : -+ ac_fn_c_check_func "$LINENO" "modf" "ac_cv_func_modf" -+if test "x$ac_cv_func_modf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modf declaration" >&5 -+$as_echo_n "checking for _modf declaration... " >&6; } -+ if test x${glibcxx_cv_func__modf_use+set} != xset; then -+ if ${glibcxx_cv_func__modf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modf_use=yes -+else -+ glibcxx_cv_func__modf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modf_use" >&5 -+$as_echo "$glibcxx_cv_func__modf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modf_use = x"yes"; then -+ for ac_func in _modf -+do : -+ ac_fn_c_check_func "$LINENO" "_modf" "ac_cv_func__modf" -+if test "x$ac_cv_func__modf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for powf declaration" >&5 -+$as_echo_n "checking for powf declaration... " >&6; } -+ if test x${glibcxx_cv_func_powf_use+set} != xset; then -+ if ${glibcxx_cv_func_powf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ powf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_powf_use=yes -+else -+ glibcxx_cv_func_powf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_powf_use" >&5 -+$as_echo "$glibcxx_cv_func_powf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_powf_use = x"yes"; then -+ for ac_func in powf -+do : -+ ac_fn_c_check_func "$LINENO" "powf" "ac_cv_func_powf" -+if test "x$ac_cv_func_powf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_POWF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powf declaration" >&5 -+$as_echo_n "checking for _powf declaration... " >&6; } -+ if test x${glibcxx_cv_func__powf_use+set} != xset; then -+ if ${glibcxx_cv_func__powf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _powf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__powf_use=yes -+else -+ glibcxx_cv_func__powf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__powf_use" >&5 -+$as_echo "$glibcxx_cv_func__powf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__powf_use = x"yes"; then -+ for ac_func in _powf -+do : -+ ac_fn_c_check_func "$LINENO" "_powf" "ac_cv_func__powf" -+if test "x$ac_cv_func__powf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__POWF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtf declaration" >&5 -+$as_echo_n "checking for sqrtf declaration... " >&6; } -+ if test x${glibcxx_cv_func_sqrtf_use+set} != xset; then -+ if ${glibcxx_cv_func_sqrtf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ sqrtf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sqrtf_use=yes -+else -+ glibcxx_cv_func_sqrtf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sqrtf_use" >&5 -+$as_echo "$glibcxx_cv_func_sqrtf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sqrtf_use = x"yes"; then -+ for ac_func in sqrtf -+do : -+ ac_fn_c_check_func "$LINENO" "sqrtf" "ac_cv_func_sqrtf" -+if test "x$ac_cv_func_sqrtf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SQRTF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtf declaration" >&5 -+$as_echo_n "checking for _sqrtf declaration... " >&6; } -+ if test x${glibcxx_cv_func__sqrtf_use+set} != xset; then -+ if ${glibcxx_cv_func__sqrtf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _sqrtf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sqrtf_use=yes -+else -+ glibcxx_cv_func__sqrtf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sqrtf_use" >&5 -+$as_echo "$glibcxx_cv_func__sqrtf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sqrtf_use = x"yes"; then -+ for ac_func in _sqrtf -+do : -+ ac_fn_c_check_func "$LINENO" "_sqrtf" "ac_cv_func__sqrtf" -+if test "x$ac_cv_func__sqrtf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SQRTF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosf declaration" >&5 -+$as_echo_n "checking for sincosf declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincosf_use+set} != xset; then -+ if ${glibcxx_cv_func_sincosf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincosf(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincosf_use=yes -+else -+ glibcxx_cv_func_sincosf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincosf_use" >&5 -+$as_echo "$glibcxx_cv_func_sincosf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincosf_use = x"yes"; then -+ for ac_func in sincosf -+do : -+ ac_fn_c_check_func "$LINENO" "sincosf" "ac_cv_func_sincosf" -+if test "x$ac_cv_func_sincosf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOSF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosf declaration" >&5 -+$as_echo_n "checking for _sincosf declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincosf_use+set} != xset; then -+ if ${glibcxx_cv_func__sincosf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincosf(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincosf_use=yes -+else -+ glibcxx_cv_func__sincosf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincosf_use" >&5 -+$as_echo "$glibcxx_cv_func__sincosf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincosf_use = x"yes"; then -+ for ac_func in _sincosf -+do : -+ ac_fn_c_check_func "$LINENO" "_sincosf" "ac_cv_func__sincosf" -+if test "x$ac_cv_func__sincosf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOSF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitef declaration" >&5 -+$as_echo_n "checking for finitef declaration... " >&6; } -+ if test x${glibcxx_cv_func_finitef_use+set} != xset; then -+ if ${glibcxx_cv_func_finitef_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finitef(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finitef_use=yes -+else -+ glibcxx_cv_func_finitef_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finitef_use" >&5 -+$as_echo "$glibcxx_cv_func_finitef_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finitef_use = x"yes"; then -+ for ac_func in finitef -+do : -+ ac_fn_c_check_func "$LINENO" "finitef" "ac_cv_func_finitef" -+if test "x$ac_cv_func_finitef" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITEF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitef declaration" >&5 -+$as_echo_n "checking for _finitef declaration... " >&6; } -+ if test x${glibcxx_cv_func__finitef_use+set} != xset; then -+ if ${glibcxx_cv_func__finitef_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finitef(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finitef_use=yes -+else -+ glibcxx_cv_func__finitef_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finitef_use" >&5 -+$as_echo "$glibcxx_cv_func__finitef_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finitef_use = x"yes"; then -+ for ac_func in _finitef -+do : -+ ac_fn_c_check_func "$LINENO" "_finitef" "ac_cv_func__finitef" -+if test "x$ac_cv_func__finitef" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITEF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double trig functions" >&5 -+$as_echo_n "checking for long double trig functions... " >&6; } -+ if ${glibcxx_cv_func_long_double_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+acosl (0); asinl (0); atanl (0); cosl (0); sinl (0); tanl (0); coshl (0); sinhl (0); tanhl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_long_double_trig_use=yes -+else -+ glibcxx_cv_func_long_double_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_long_double_trig_use" >&5 -+$as_echo "$glibcxx_cv_func_long_double_trig_use" >&6; } -+ if test x$glibcxx_cv_func_long_double_trig_use = x"yes"; then -+ for ac_func in acosl asinl atanl cosl sinl tanl coshl sinhl tanhl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double trig functions" >&5 -+$as_echo_n "checking for _long double trig functions... " >&6; } -+ if ${glibcxx_cv_func__long_double_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_acosl (0); _asinl (0); _atanl (0); _cosl (0); _sinl (0); _tanl (0); _coshl (0); _sinhl (0); _tanhl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__long_double_trig_use=yes -+else -+ glibcxx_cv_func__long_double_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__long_double_trig_use" >&5 -+$as_echo "$glibcxx_cv_func__long_double_trig_use" >&6; } -+ if test x$glibcxx_cv_func__long_double_trig_use = x"yes"; then -+ for ac_func in _acosl _asinl _atanl _cosl _sinl _tanl _coshl _sinhl _tanhl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double round functions" >&5 -+$as_echo_n "checking for long double round functions... " >&6; } -+ if ${glibcxx_cv_func_long_double_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ceill (0); floorl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_long_double_round_use=yes -+else -+ glibcxx_cv_func_long_double_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_long_double_round_use" >&5 -+$as_echo "$glibcxx_cv_func_long_double_round_use" >&6; } -+ if test x$glibcxx_cv_func_long_double_round_use = x"yes"; then -+ for ac_func in ceill floorl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double round functions" >&5 -+$as_echo_n "checking for _long double round functions... " >&6; } -+ if ${glibcxx_cv_func__long_double_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_ceill (0); _floorl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__long_double_round_use=yes -+else -+ glibcxx_cv_func__long_double_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__long_double_round_use" >&5 -+$as_echo "$glibcxx_cv_func__long_double_round_use" >&6; } -+ if test x$glibcxx_cv_func__long_double_round_use = x"yes"; then -+ for ac_func in _ceill _floorl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanl declaration" >&5 -+$as_echo_n "checking for isnanl declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnanl_use+set} != xset; then -+ if ${glibcxx_cv_func_isnanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnanl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnanl_use=yes -+else -+ glibcxx_cv_func_isnanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnanl_use" >&5 -+$as_echo "$glibcxx_cv_func_isnanl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnanl_use = x"yes"; then -+ for ac_func in isnanl -+do : -+ ac_fn_c_check_func "$LINENO" "isnanl" "ac_cv_func_isnanl" -+if test "x$ac_cv_func_isnanl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNANL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanl declaration" >&5 -+$as_echo_n "checking for _isnanl declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnanl_use+set} != xset; then -+ if ${glibcxx_cv_func__isnanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnanl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnanl_use=yes -+else -+ glibcxx_cv_func__isnanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnanl_use" >&5 -+$as_echo "$glibcxx_cv_func__isnanl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnanl_use = x"yes"; then -+ for ac_func in _isnanl -+do : -+ ac_fn_c_check_func "$LINENO" "_isnanl" "ac_cv_func__isnanl" -+if test "x$ac_cv_func__isnanl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNANL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinfl declaration" >&5 -+$as_echo_n "checking for isinfl declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinfl_use+set} != xset; then -+ if ${glibcxx_cv_func_isinfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinfl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinfl_use=yes -+else -+ glibcxx_cv_func_isinfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinfl_use" >&5 -+$as_echo "$glibcxx_cv_func_isinfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinfl_use = x"yes"; then -+ for ac_func in isinfl -+do : -+ ac_fn_c_check_func "$LINENO" "isinfl" "ac_cv_func_isinfl" -+if test "x$ac_cv_func_isinfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINFL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinfl declaration" >&5 -+$as_echo_n "checking for _isinfl declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinfl_use+set} != xset; then -+ if ${glibcxx_cv_func__isinfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinfl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinfl_use=yes -+else -+ glibcxx_cv_func__isinfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinfl_use" >&5 -+$as_echo "$glibcxx_cv_func__isinfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinfl_use = x"yes"; then -+ for ac_func in _isinfl -+do : -+ ac_fn_c_check_func "$LINENO" "_isinfl" "ac_cv_func__isinfl" -+if test "x$ac_cv_func__isinfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINFL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2l declaration" >&5 -+$as_echo_n "checking for atan2l declaration... " >&6; } -+ if test x${glibcxx_cv_func_atan2l_use+set} != xset; then -+ if ${glibcxx_cv_func_atan2l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ atan2l(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atan2l_use=yes -+else -+ glibcxx_cv_func_atan2l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atan2l_use" >&5 -+$as_echo "$glibcxx_cv_func_atan2l_use" >&6; } -+ -+ if test x$glibcxx_cv_func_atan2l_use = x"yes"; then -+ for ac_func in atan2l -+do : -+ ac_fn_c_check_func "$LINENO" "atan2l" "ac_cv_func_atan2l" -+if test "x$ac_cv_func_atan2l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATAN2L 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2l declaration" >&5 -+$as_echo_n "checking for _atan2l declaration... " >&6; } -+ if test x${glibcxx_cv_func__atan2l_use+set} != xset; then -+ if ${glibcxx_cv_func__atan2l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _atan2l(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__atan2l_use=yes -+else -+ glibcxx_cv_func__atan2l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__atan2l_use" >&5 -+$as_echo "$glibcxx_cv_func__atan2l_use" >&6; } -+ -+ if test x$glibcxx_cv_func__atan2l_use = x"yes"; then -+ for ac_func in _atan2l -+do : -+ ac_fn_c_check_func "$LINENO" "_atan2l" "ac_cv_func__atan2l" -+if test "x$ac_cv_func__atan2l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ATAN2L 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for expl declaration" >&5 -+$as_echo_n "checking for expl declaration... " >&6; } -+ if test x${glibcxx_cv_func_expl_use+set} != xset; then -+ if ${glibcxx_cv_func_expl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ expl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_expl_use=yes -+else -+ glibcxx_cv_func_expl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_expl_use" >&5 -+$as_echo "$glibcxx_cv_func_expl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_expl_use = x"yes"; then -+ for ac_func in expl -+do : -+ ac_fn_c_check_func "$LINENO" "expl" "ac_cv_func_expl" -+if test "x$ac_cv_func_expl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_EXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expl declaration" >&5 -+$as_echo_n "checking for _expl declaration... " >&6; } -+ if test x${glibcxx_cv_func__expl_use+set} != xset; then -+ if ${glibcxx_cv_func__expl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _expl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__expl_use=yes -+else -+ glibcxx_cv_func__expl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__expl_use" >&5 -+$as_echo "$glibcxx_cv_func__expl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__expl_use = x"yes"; then -+ for ac_func in _expl -+do : -+ ac_fn_c_check_func "$LINENO" "_expl" "ac_cv_func__expl" -+if test "x$ac_cv_func__expl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__EXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsl declaration" >&5 -+$as_echo_n "checking for fabsl declaration... " >&6; } -+ if test x${glibcxx_cv_func_fabsl_use+set} != xset; then -+ if ${glibcxx_cv_func_fabsl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fabsl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fabsl_use=yes -+else -+ glibcxx_cv_func_fabsl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fabsl_use" >&5 -+$as_echo "$glibcxx_cv_func_fabsl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fabsl_use = x"yes"; then -+ for ac_func in fabsl -+do : -+ ac_fn_c_check_func "$LINENO" "fabsl" "ac_cv_func_fabsl" -+if test "x$ac_cv_func_fabsl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FABSL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsl declaration" >&5 -+$as_echo_n "checking for _fabsl declaration... " >&6; } -+ if test x${glibcxx_cv_func__fabsl_use+set} != xset; then -+ if ${glibcxx_cv_func__fabsl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fabsl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fabsl_use=yes -+else -+ glibcxx_cv_func__fabsl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fabsl_use" >&5 -+$as_echo "$glibcxx_cv_func__fabsl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fabsl_use = x"yes"; then -+ for ac_func in _fabsl -+do : -+ ac_fn_c_check_func "$LINENO" "_fabsl" "ac_cv_func__fabsl" -+if test "x$ac_cv_func__fabsl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FABSL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodl declaration" >&5 -+$as_echo_n "checking for fmodl declaration... " >&6; } -+ if test x${glibcxx_cv_func_fmodl_use+set} != xset; then -+ if ${glibcxx_cv_func_fmodl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ fmodl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fmodl_use=yes -+else -+ glibcxx_cv_func_fmodl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fmodl_use" >&5 -+$as_echo "$glibcxx_cv_func_fmodl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fmodl_use = x"yes"; then -+ for ac_func in fmodl -+do : -+ ac_fn_c_check_func "$LINENO" "fmodl" "ac_cv_func_fmodl" -+if test "x$ac_cv_func_fmodl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FMODL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodl declaration" >&5 -+$as_echo_n "checking for _fmodl declaration... " >&6; } -+ if test x${glibcxx_cv_func__fmodl_use+set} != xset; then -+ if ${glibcxx_cv_func__fmodl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _fmodl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fmodl_use=yes -+else -+ glibcxx_cv_func__fmodl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fmodl_use" >&5 -+$as_echo "$glibcxx_cv_func__fmodl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fmodl_use = x"yes"; then -+ for ac_func in _fmodl -+do : -+ ac_fn_c_check_func "$LINENO" "_fmodl" "ac_cv_func__fmodl" -+if test "x$ac_cv_func__fmodl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FMODL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpl declaration" >&5 -+$as_echo_n "checking for frexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func_frexpl_use+set} != xset; then -+ if ${glibcxx_cv_func_frexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ frexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpl_use=yes -+else -+ glibcxx_cv_func_frexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_frexpl_use = x"yes"; then -+ for ac_func in frexpl -+do : -+ ac_fn_c_check_func "$LINENO" "frexpl" "ac_cv_func_frexpl" -+if test "x$ac_cv_func_frexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpl declaration" >&5 -+$as_echo_n "checking for _frexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func__frexpl_use+set} != xset; then -+ if ${glibcxx_cv_func__frexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _frexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__frexpl_use=yes -+else -+ glibcxx_cv_func__frexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__frexpl_use" >&5 -+$as_echo "$glibcxx_cv_func__frexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__frexpl_use = x"yes"; then -+ for ac_func in _frexpl -+do : -+ ac_fn_c_check_func "$LINENO" "_frexpl" "ac_cv_func__frexpl" -+if test "x$ac_cv_func__frexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FREXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotl declaration" >&5 -+$as_echo_n "checking for hypotl declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypotl_use+set} != xset; then -+ if ${glibcxx_cv_func_hypotl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypotl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotl_use=yes -+else -+ glibcxx_cv_func_hypotl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotl_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypotl_use = x"yes"; then -+ for ac_func in hypotl -+do : -+ ac_fn_c_check_func "$LINENO" "hypotl" "ac_cv_func_hypotl" -+if test "x$ac_cv_func_hypotl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotl declaration" >&5 -+$as_echo_n "checking for _hypotl declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypotl_use+set} != xset; then -+ if ${glibcxx_cv_func__hypotl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypotl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypotl_use=yes -+else -+ glibcxx_cv_func__hypotl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypotl_use" >&5 -+$as_echo "$glibcxx_cv_func__hypotl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypotl_use = x"yes"; then -+ for ac_func in _hypotl -+do : -+ ac_fn_c_check_func "$LINENO" "_hypotl" "ac_cv_func__hypotl" -+if test "x$ac_cv_func__hypotl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOTL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpl declaration" >&5 -+$as_echo_n "checking for ldexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func_ldexpl_use+set} != xset; then -+ if ${glibcxx_cv_func_ldexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ ldexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpl_use=yes -+else -+ glibcxx_cv_func_ldexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_ldexpl_use = x"yes"; then -+ for ac_func in ldexpl -+do : -+ ac_fn_c_check_func "$LINENO" "ldexpl" "ac_cv_func_ldexpl" -+if test "x$ac_cv_func_ldexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpl declaration" >&5 -+$as_echo_n "checking for _ldexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func__ldexpl_use+set} != xset; then -+ if ${glibcxx_cv_func__ldexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _ldexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__ldexpl_use=yes -+else -+ glibcxx_cv_func__ldexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__ldexpl_use" >&5 -+$as_echo "$glibcxx_cv_func__ldexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__ldexpl_use = x"yes"; then -+ for ac_func in _ldexpl -+do : -+ ac_fn_c_check_func "$LINENO" "_ldexpl" "ac_cv_func__ldexpl" -+if test "x$ac_cv_func__ldexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LDEXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for logl declaration" >&5 -+$as_echo_n "checking for logl declaration... " >&6; } -+ if test x${glibcxx_cv_func_logl_use+set} != xset; then -+ if ${glibcxx_cv_func_logl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ logl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_logl_use=yes -+else -+ glibcxx_cv_func_logl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_logl_use" >&5 -+$as_echo "$glibcxx_cv_func_logl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_logl_use = x"yes"; then -+ for ac_func in logl -+do : -+ ac_fn_c_check_func "$LINENO" "logl" "ac_cv_func_logl" -+if test "x$ac_cv_func_logl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOGL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logl declaration" >&5 -+$as_echo_n "checking for _logl declaration... " >&6; } -+ if test x${glibcxx_cv_func__logl_use+set} != xset; then -+ if ${glibcxx_cv_func__logl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _logl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__logl_use=yes -+else -+ glibcxx_cv_func__logl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__logl_use" >&5 -+$as_echo "$glibcxx_cv_func__logl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__logl_use = x"yes"; then -+ for ac_func in _logl -+do : -+ ac_fn_c_check_func "$LINENO" "_logl" "ac_cv_func__logl" -+if test "x$ac_cv_func__logl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOGL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10l declaration" >&5 -+$as_echo_n "checking for log10l declaration... " >&6; } -+ if test x${glibcxx_cv_func_log10l_use+set} != xset; then -+ if ${glibcxx_cv_func_log10l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ log10l(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_log10l_use=yes -+else -+ glibcxx_cv_func_log10l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_log10l_use" >&5 -+$as_echo "$glibcxx_cv_func_log10l_use" >&6; } -+ -+ if test x$glibcxx_cv_func_log10l_use = x"yes"; then -+ for ac_func in log10l -+do : -+ ac_fn_c_check_func "$LINENO" "log10l" "ac_cv_func_log10l" -+if test "x$ac_cv_func_log10l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOG10L 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10l declaration" >&5 -+$as_echo_n "checking for _log10l declaration... " >&6; } -+ if test x${glibcxx_cv_func__log10l_use+set} != xset; then -+ if ${glibcxx_cv_func__log10l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _log10l(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__log10l_use=yes -+else -+ glibcxx_cv_func__log10l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__log10l_use" >&5 -+$as_echo "$glibcxx_cv_func__log10l_use" >&6; } -+ -+ if test x$glibcxx_cv_func__log10l_use = x"yes"; then -+ for ac_func in _log10l -+do : -+ ac_fn_c_check_func "$LINENO" "_log10l" "ac_cv_func__log10l" -+if test "x$ac_cv_func__log10l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOG10L 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modfl declaration" >&5 -+$as_echo_n "checking for modfl declaration... " >&6; } -+ if test x${glibcxx_cv_func_modfl_use+set} != xset; then -+ if ${glibcxx_cv_func_modfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modfl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modfl_use=yes -+else -+ glibcxx_cv_func_modfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modfl_use" >&5 -+$as_echo "$glibcxx_cv_func_modfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modfl_use = x"yes"; then -+ for ac_func in modfl -+do : -+ ac_fn_c_check_func "$LINENO" "modfl" "ac_cv_func_modfl" -+if test "x$ac_cv_func_modfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modfl declaration" >&5 -+$as_echo_n "checking for _modfl declaration... " >&6; } -+ if test x${glibcxx_cv_func__modfl_use+set} != xset; then -+ if ${glibcxx_cv_func__modfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modfl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modfl_use=yes -+else -+ glibcxx_cv_func__modfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modfl_use" >&5 -+$as_echo "$glibcxx_cv_func__modfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modfl_use = x"yes"; then -+ for ac_func in _modfl -+do : -+ ac_fn_c_check_func "$LINENO" "_modfl" "ac_cv_func__modfl" -+if test "x$ac_cv_func__modfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODFL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for powl declaration" >&5 -+$as_echo_n "checking for powl declaration... " >&6; } -+ if test x${glibcxx_cv_func_powl_use+set} != xset; then -+ if ${glibcxx_cv_func_powl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ powl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_powl_use=yes -+else -+ glibcxx_cv_func_powl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_powl_use" >&5 -+$as_echo "$glibcxx_cv_func_powl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_powl_use = x"yes"; then -+ for ac_func in powl -+do : -+ ac_fn_c_check_func "$LINENO" "powl" "ac_cv_func_powl" -+if test "x$ac_cv_func_powl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_POWL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powl declaration" >&5 -+$as_echo_n "checking for _powl declaration... " >&6; } -+ if test x${glibcxx_cv_func__powl_use+set} != xset; then -+ if ${glibcxx_cv_func__powl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _powl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__powl_use=yes -+else -+ glibcxx_cv_func__powl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__powl_use" >&5 -+$as_echo "$glibcxx_cv_func__powl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__powl_use = x"yes"; then -+ for ac_func in _powl -+do : -+ ac_fn_c_check_func "$LINENO" "_powl" "ac_cv_func__powl" -+if test "x$ac_cv_func__powl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__POWL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtl declaration" >&5 -+$as_echo_n "checking for sqrtl declaration... " >&6; } -+ if test x${glibcxx_cv_func_sqrtl_use+set} != xset; then -+ if ${glibcxx_cv_func_sqrtl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ sqrtl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sqrtl_use=yes -+else -+ glibcxx_cv_func_sqrtl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sqrtl_use" >&5 -+$as_echo "$glibcxx_cv_func_sqrtl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sqrtl_use = x"yes"; then -+ for ac_func in sqrtl -+do : -+ ac_fn_c_check_func "$LINENO" "sqrtl" "ac_cv_func_sqrtl" -+if test "x$ac_cv_func_sqrtl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SQRTL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtl declaration" >&5 -+$as_echo_n "checking for _sqrtl declaration... " >&6; } -+ if test x${glibcxx_cv_func__sqrtl_use+set} != xset; then -+ if ${glibcxx_cv_func__sqrtl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _sqrtl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sqrtl_use=yes -+else -+ glibcxx_cv_func__sqrtl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sqrtl_use" >&5 -+$as_echo "$glibcxx_cv_func__sqrtl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sqrtl_use = x"yes"; then -+ for ac_func in _sqrtl -+do : -+ ac_fn_c_check_func "$LINENO" "_sqrtl" "ac_cv_func__sqrtl" -+if test "x$ac_cv_func__sqrtl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SQRTL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosl declaration" >&5 -+$as_echo_n "checking for sincosl declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincosl_use+set} != xset; then -+ if ${glibcxx_cv_func_sincosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincosl(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincosl_use=yes -+else -+ glibcxx_cv_func_sincosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincosl_use" >&5 -+$as_echo "$glibcxx_cv_func_sincosl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincosl_use = x"yes"; then -+ for ac_func in sincosl -+do : -+ ac_fn_c_check_func "$LINENO" "sincosl" "ac_cv_func_sincosl" -+if test "x$ac_cv_func_sincosl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOSL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosl declaration" >&5 -+$as_echo_n "checking for _sincosl declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincosl_use+set} != xset; then -+ if ${glibcxx_cv_func__sincosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincosl(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincosl_use=yes -+else -+ glibcxx_cv_func__sincosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincosl_use" >&5 -+$as_echo "$glibcxx_cv_func__sincosl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincosl_use = x"yes"; then -+ for ac_func in _sincosl -+do : -+ ac_fn_c_check_func "$LINENO" "_sincosl" "ac_cv_func__sincosl" -+if test "x$ac_cv_func__sincosl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOSL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitel declaration" >&5 -+$as_echo_n "checking for finitel declaration... " >&6; } -+ if test x${glibcxx_cv_func_finitel_use+set} != xset; then -+ if ${glibcxx_cv_func_finitel_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finitel(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finitel_use=yes -+else -+ glibcxx_cv_func_finitel_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finitel_use" >&5 -+$as_echo "$glibcxx_cv_func_finitel_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finitel_use = x"yes"; then -+ for ac_func in finitel -+do : -+ ac_fn_c_check_func "$LINENO" "finitel" "ac_cv_func_finitel" -+if test "x$ac_cv_func_finitel" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITEL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitel declaration" >&5 -+$as_echo_n "checking for _finitel declaration... " >&6; } -+ if test x${glibcxx_cv_func__finitel_use+set} != xset; then -+ if ${glibcxx_cv_func__finitel_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finitel(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finitel_use=yes -+else -+ glibcxx_cv_func__finitel_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finitel_use" >&5 -+$as_echo "$glibcxx_cv_func__finitel_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finitel_use = x"yes"; then -+ for ac_func in _finitel -+do : -+ ac_fn_c_check_func "$LINENO" "_finitel" "ac_cv_func__finitel" -+if test "x$ac_cv_func__finitel" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITEL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ LIBS="$ac_save_LIBS" -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS='-fno-builtin -D_GNU_SOURCE' -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for at_quick_exit declaration" >&5 -+$as_echo_n "checking for at_quick_exit declaration... " >&6; } -+ if test x${glibcxx_cv_func_at_quick_exit_use+set} != xset; then -+ if ${glibcxx_cv_func_at_quick_exit_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ at_quick_exit(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_at_quick_exit_use=yes -+else -+ glibcxx_cv_func_at_quick_exit_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_at_quick_exit_use" >&5 -+$as_echo "$glibcxx_cv_func_at_quick_exit_use" >&6; } -+ if test x$glibcxx_cv_func_at_quick_exit_use = x"yes"; then -+ for ac_func in at_quick_exit -+do : -+ ac_fn_c_check_func "$LINENO" "at_quick_exit" "ac_cv_func_at_quick_exit" -+if test "x$ac_cv_func_at_quick_exit" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_AT_QUICK_EXIT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for quick_exit declaration" >&5 -+$as_echo_n "checking for quick_exit declaration... " >&6; } -+ if test x${glibcxx_cv_func_quick_exit_use+set} != xset; then -+ if ${glibcxx_cv_func_quick_exit_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ quick_exit(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_quick_exit_use=yes -+else -+ glibcxx_cv_func_quick_exit_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_quick_exit_use" >&5 -+$as_echo "$glibcxx_cv_func_quick_exit_use" >&6; } -+ if test x$glibcxx_cv_func_quick_exit_use = x"yes"; then -+ for ac_func in quick_exit -+do : -+ ac_fn_c_check_func "$LINENO" "quick_exit" "ac_cv_func_quick_exit" -+if test "x$ac_cv_func_quick_exit" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_QUICK_EXIT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtold declaration" >&5 -+$as_echo_n "checking for strtold declaration... " >&6; } -+ if test x${glibcxx_cv_func_strtold_use+set} != xset; then -+ if ${glibcxx_cv_func_strtold_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ strtold(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_strtold_use=yes -+else -+ glibcxx_cv_func_strtold_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_strtold_use" >&5 -+$as_echo "$glibcxx_cv_func_strtold_use" >&6; } -+ if test x$glibcxx_cv_func_strtold_use = x"yes"; then -+ for ac_func in strtold -+do : -+ ac_fn_c_check_func "$LINENO" "strtold" "ac_cv_func_strtold" -+if test "x$ac_cv_func_strtold" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STRTOLD 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtof declaration" >&5 -+$as_echo_n "checking for strtof declaration... " >&6; } -+ if test x${glibcxx_cv_func_strtof_use+set} != xset; then -+ if ${glibcxx_cv_func_strtof_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ strtof(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_strtof_use=yes -+else -+ glibcxx_cv_func_strtof_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_strtof_use" >&5 -+$as_echo "$glibcxx_cv_func_strtof_use" >&6; } -+ if test x$glibcxx_cv_func_strtof_use = x"yes"; then -+ for ac_func in strtof -+do : -+ ac_fn_c_check_func "$LINENO" "strtof" "ac_cv_func_strtof" -+if test "x$ac_cv_func_strtof" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STRTOF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ -+ -+ $as_echo "@%:@define HAVE_FINITE 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_HYPOT 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISNAN 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISINF 1" >>confdefs.h -+ -+ -+ $as_echo "@%:@define HAVE_LDEXPF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_MODF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SQRTF 1" >>confdefs.h -+ -+ ;; -+ -+ *-aix*) -+ -+ # If we're not using GNU ld, then there's no point in even trying these -+ # tests. Check for that first. We should have already tested for gld -+ # by now (in libtool), but require it now just to be safe... -+ test -z "$SECTION_LDFLAGS" && SECTION_LDFLAGS='' -+ test -z "$OPT_LDFLAGS" && OPT_LDFLAGS='' -+ -+ -+ -+ # The name set by libtool depends on the version of libtool. Shame on us -+ # for depending on an impl detail, but c'est la vie. Older versions used -+ # ac_cv_prog_gnu_ld, but now it's lt_cv_prog_gnu_ld, and is copied back on -+ # top of with_gnu_ld (which is also set by --with-gnu-ld, so that actually -+ # makes sense). We'll test with_gnu_ld everywhere else, so if that isn't -+ # set (hence we're using an older libtool), then set it. -+ if test x${with_gnu_ld+set} != xset; then -+ if test x${ac_cv_prog_gnu_ld+set} != xset; then -+ # We got through "ac_require(ac_prog_ld)" and still not set? Huh? -+ with_gnu_ld=no -+ else -+ with_gnu_ld=$ac_cv_prog_gnu_ld -+ fi -+ fi -+ -+ # Start by getting the version number. I think the libtool test already -+ # does some of this, but throws away the result. -+ glibcxx_ld_is_gold=no -+ glibcxx_ld_is_mold=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld version" >&5 -+$as_echo_n "checking for ld version... " >&6; } -+ -+ if $LD --version 2>/dev/null | grep 'GNU gold' >/dev/null 2>&1; then -+ glibcxx_ld_is_gold=yes -+ elif $LD --version 2>/dev/null | grep 'mold' >/dev/null 2>&1; then -+ glibcxx_ld_is_mold=yes -+ fi -+ ldver=`$LD --version 2>/dev/null | -+ sed -e 's/[. ][0-9]\{8\}$//;s/.* \([^ ]\{1,\}\)$/\1/; q'` -+ -+ glibcxx_gnu_ld_version=`echo $ldver | \ -+ $AWK -F. '{ if (NF<3) $3=0; print ($1*100+$2)*100+$3 }'` -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_gnu_ld_version" >&5 -+$as_echo "$glibcxx_gnu_ld_version" >&6; } -+ fi -+ -+ # Set --gc-sections. -+ glibcxx_have_gc_sections=no -+ if test "$glibcxx_ld_is_gold" = "yes" || test "$glibcxx_ld_is_mold" = "yes" ; then -+ if $LD --help 2>/dev/null | grep gc-sections >/dev/null 2>&1; then -+ glibcxx_have_gc_sections=yes -+ fi -+ else -+ glibcxx_gcsections_min_ld=21602 -+ if test x"$with_gnu_ld" = x"yes" && -+ test $glibcxx_gnu_ld_version -gt $glibcxx_gcsections_min_ld ; then -+ glibcxx_have_gc_sections=yes -+ fi -+ fi -+ if test "$glibcxx_have_gc_sections" = "yes"; then -+ # Sufficiently young GNU ld it is! Joy and bunny rabbits! -+ # NB: This flag only works reliably after 2.16.1. Configure tests -+ # for this are difficult, so hard wire a value that should work. -+ -+ ac_test_CFLAGS="${CFLAGS+set}" -+ ac_save_CFLAGS="$CFLAGS" -+ CFLAGS='-Wl,--gc-sections' -+ -+ # Check for -Wl,--gc-sections -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5 -+$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; } -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ int one(void) { return 1; } -+ int two(void) { return 2; } -+ -+int -+main () -+{ -+ two(); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_gcsections=yes -+else -+ ac_gcsections=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ if test "$ac_gcsections" = "yes"; then -+ rm -f conftest.c -+ touch conftest.c -+ if $CC -c conftest.c; then -+ if $LD --gc-sections -o conftest conftest.o 2>&1 | \ -+ grep "Warning: gc-sections option ignored" > /dev/null; then -+ ac_gcsections=no -+ fi -+ fi -+ rm -f conftest.c conftest.o conftest -+ fi -+ if test "$ac_gcsections" = "yes"; then -+ SECTION_LDFLAGS="-Wl,--gc-sections $SECTION_LDFLAGS" -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_gcsections" >&5 -+$as_echo "$ac_gcsections" >&6; } -+ -+ if test "$ac_test_CFLAGS" = set; then -+ CFLAGS="$ac_save_CFLAGS" -+ else -+ # this is the suspicious part -+ CFLAGS='' -+ fi -+ fi -+ -+ # Set -z,relro. -+ # Note this is only for shared objects. -+ ac_ld_relro=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ # cygwin and mingw uses PE, which has no ELF relro support, -+ # multi target ld may confuse configure machinery -+ case "$host" in -+ *-*-cygwin*) -+ ;; -+ *-*-mingw*) -+ ;; -+ *) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,-z,relro" >&5 -+$as_echo_n "checking for ld that supports -Wl,-z,relro... " >&6; } -+ cxx_z_relo=`$LD -v --help 2>/dev/null | grep "z relro"` -+ if test -n "$cxx_z_relo"; then -+ OPT_LDFLAGS="-Wl,-z,relro" -+ ac_ld_relro=yes -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ld_relro" >&5 -+$as_echo "$ac_ld_relro" >&6; } -+ esac -+ fi -+ -+ # Set linker optimization flags. -+ if test x"$with_gnu_ld" = x"yes"; then -+ OPT_LDFLAGS="-Wl,-O1 $OPT_LDFLAGS" -+ fi -+ -+ -+ -+ -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS='-fno-builtin -D_GNU_SOURCE' -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5 -+$as_echo_n "checking for sin in -lm... " >&6; } -+if ${ac_cv_lib_m_sin+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lm $LIBS" -+if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char sin (); -+int -+main () -+{ -+return sin (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_m_sin=yes -+else -+ ac_cv_lib_m_sin=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5 -+$as_echo "$ac_cv_lib_m_sin" >&6; } -+if test "x$ac_cv_lib_m_sin" = xyes; then : -+ libm="-lm" -+fi -+ -+ ac_save_LIBS="$LIBS" -+ LIBS="$LIBS $libm" -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf declaration" >&5 -+$as_echo_n "checking for isinf declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinf_use+set} != xset; then -+ if ${glibcxx_cv_func_isinf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinf_use=yes -+else -+ glibcxx_cv_func_isinf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinf_use" >&5 -+$as_echo "$glibcxx_cv_func_isinf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinf_use = x"yes"; then -+ for ac_func in isinf -+do : -+ ac_fn_c_check_func "$LINENO" "isinf" "ac_cv_func_isinf" -+if test "x$ac_cv_func_isinf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinf declaration" >&5 -+$as_echo_n "checking for _isinf declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinf_use+set} != xset; then -+ if ${glibcxx_cv_func__isinf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinf_use=yes -+else -+ glibcxx_cv_func__isinf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinf_use" >&5 -+$as_echo "$glibcxx_cv_func__isinf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinf_use = x"yes"; then -+ for ac_func in _isinf -+do : -+ ac_fn_c_check_func "$LINENO" "_isinf" "ac_cv_func__isinf" -+if test "x$ac_cv_func__isinf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan declaration" >&5 -+$as_echo_n "checking for isnan declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnan_use+set} != xset; then -+ if ${glibcxx_cv_func_isnan_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnan(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnan_use=yes -+else -+ glibcxx_cv_func_isnan_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnan_use" >&5 -+$as_echo "$glibcxx_cv_func_isnan_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnan_use = x"yes"; then -+ for ac_func in isnan -+do : -+ ac_fn_c_check_func "$LINENO" "isnan" "ac_cv_func_isnan" -+if test "x$ac_cv_func_isnan" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNAN 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnan declaration" >&5 -+$as_echo_n "checking for _isnan declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnan_use+set} != xset; then -+ if ${glibcxx_cv_func__isnan_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnan(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnan_use=yes -+else -+ glibcxx_cv_func__isnan_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnan_use" >&5 -+$as_echo "$glibcxx_cv_func__isnan_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnan_use = x"yes"; then -+ for ac_func in _isnan -+do : -+ ac_fn_c_check_func "$LINENO" "_isnan" "ac_cv_func__isnan" -+if test "x$ac_cv_func__isnan" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNAN 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finite declaration" >&5 -+$as_echo_n "checking for finite declaration... " >&6; } -+ if test x${glibcxx_cv_func_finite_use+set} != xset; then -+ if ${glibcxx_cv_func_finite_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finite(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finite_use=yes -+else -+ glibcxx_cv_func_finite_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finite_use" >&5 -+$as_echo "$glibcxx_cv_func_finite_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finite_use = x"yes"; then -+ for ac_func in finite -+do : -+ ac_fn_c_check_func "$LINENO" "finite" "ac_cv_func_finite" -+if test "x$ac_cv_func_finite" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITE 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finite declaration" >&5 -+$as_echo_n "checking for _finite declaration... " >&6; } -+ if test x${glibcxx_cv_func__finite_use+set} != xset; then -+ if ${glibcxx_cv_func__finite_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finite(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finite_use=yes -+else -+ glibcxx_cv_func__finite_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finite_use" >&5 -+$as_echo "$glibcxx_cv_func__finite_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finite_use = x"yes"; then -+ for ac_func in _finite -+do : -+ ac_fn_c_check_func "$LINENO" "_finite" "ac_cv_func__finite" -+if test "x$ac_cv_func__finite" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITE 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincos declaration" >&5 -+$as_echo_n "checking for sincos declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincos_use+set} != xset; then -+ if ${glibcxx_cv_func_sincos_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincos(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincos_use=yes -+else -+ glibcxx_cv_func_sincos_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincos_use" >&5 -+$as_echo "$glibcxx_cv_func_sincos_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincos_use = x"yes"; then -+ for ac_func in sincos -+do : -+ ac_fn_c_check_func "$LINENO" "sincos" "ac_cv_func_sincos" -+if test "x$ac_cv_func_sincos" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincos declaration" >&5 -+$as_echo_n "checking for _sincos declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincos_use+set} != xset; then -+ if ${glibcxx_cv_func__sincos_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincos(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincos_use=yes -+else -+ glibcxx_cv_func__sincos_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincos_use" >&5 -+$as_echo "$glibcxx_cv_func__sincos_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincos_use = x"yes"; then -+ for ac_func in _sincos -+do : -+ ac_fn_c_check_func "$LINENO" "_sincos" "ac_cv_func__sincos" -+if test "x$ac_cv_func__sincos" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fpclass declaration" >&5 -+$as_echo_n "checking for fpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func_fpclass_use+set} != xset; then -+ if ${glibcxx_cv_func_fpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fpclass_use=yes -+else -+ glibcxx_cv_func_fpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fpclass_use" >&5 -+$as_echo "$glibcxx_cv_func_fpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fpclass_use = x"yes"; then -+ for ac_func in fpclass -+do : -+ ac_fn_c_check_func "$LINENO" "fpclass" "ac_cv_func_fpclass" -+if test "x$ac_cv_func_fpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fpclass declaration" >&5 -+$as_echo_n "checking for _fpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func__fpclass_use+set} != xset; then -+ if ${glibcxx_cv_func__fpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fpclass_use=yes -+else -+ glibcxx_cv_func__fpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fpclass_use" >&5 -+$as_echo "$glibcxx_cv_func__fpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fpclass_use = x"yes"; then -+ for ac_func in _fpclass -+do : -+ ac_fn_c_check_func "$LINENO" "_fpclass" "ac_cv_func__fpclass" -+if test "x$ac_cv_func__fpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for qfpclass declaration" >&5 -+$as_echo_n "checking for qfpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func_qfpclass_use+set} != xset; then -+ if ${glibcxx_cv_func_qfpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ qfpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_qfpclass_use=yes -+else -+ glibcxx_cv_func_qfpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_qfpclass_use" >&5 -+$as_echo "$glibcxx_cv_func_qfpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func_qfpclass_use = x"yes"; then -+ for ac_func in qfpclass -+do : -+ ac_fn_c_check_func "$LINENO" "qfpclass" "ac_cv_func_qfpclass" -+if test "x$ac_cv_func_qfpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_QFPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _qfpclass declaration" >&5 -+$as_echo_n "checking for _qfpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func__qfpclass_use+set} != xset; then -+ if ${glibcxx_cv_func__qfpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _qfpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__qfpclass_use=yes -+else -+ glibcxx_cv_func__qfpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__qfpclass_use" >&5 -+$as_echo "$glibcxx_cv_func__qfpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func__qfpclass_use = x"yes"; then -+ for ac_func in _qfpclass -+do : -+ ac_fn_c_check_func "$LINENO" "_qfpclass" "ac_cv_func__qfpclass" -+if test "x$ac_cv_func__qfpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__QFPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypot declaration" >&5 -+$as_echo_n "checking for hypot declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypot_use+set} != xset; then -+ if ${glibcxx_cv_func_hypot_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypot(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypot_use=yes -+else -+ glibcxx_cv_func_hypot_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypot_use" >&5 -+$as_echo "$glibcxx_cv_func_hypot_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypot_use = x"yes"; then -+ for ac_func in hypot -+do : -+ ac_fn_c_check_func "$LINENO" "hypot" "ac_cv_func_hypot" -+if test "x$ac_cv_func_hypot" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOT 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypot declaration" >&5 -+$as_echo_n "checking for _hypot declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypot_use+set} != xset; then -+ if ${glibcxx_cv_func__hypot_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypot(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypot_use=yes -+else -+ glibcxx_cv_func__hypot_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypot_use" >&5 -+$as_echo "$glibcxx_cv_func__hypot_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypot_use = x"yes"; then -+ for ac_func in _hypot -+do : -+ ac_fn_c_check_func "$LINENO" "_hypot" "ac_cv_func__hypot" -+if test "x$ac_cv_func__hypot" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for float trig functions" >&5 -+$as_echo_n "checking for float trig functions... " >&6; } -+ if ${glibcxx_cv_func_float_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+acosf (0); asinf (0); atanf (0); cosf (0); sinf (0); tanf (0); coshf (0); sinhf (0); tanhf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_float_trig_use=yes -+else -+ glibcxx_cv_func_float_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_float_trig_use" >&5 -+$as_echo "$glibcxx_cv_func_float_trig_use" >&6; } -+ if test x$glibcxx_cv_func_float_trig_use = x"yes"; then -+ for ac_func in acosf asinf atanf cosf sinf tanf coshf sinhf tanhf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float trig functions" >&5 -+$as_echo_n "checking for _float trig functions... " >&6; } -+ if ${glibcxx_cv_func__float_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_acosf (0); _asinf (0); _atanf (0); _cosf (0); _sinf (0); _tanf (0); _coshf (0); _sinhf (0); _tanhf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__float_trig_use=yes -+else -+ glibcxx_cv_func__float_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__float_trig_use" >&5 -+$as_echo "$glibcxx_cv_func__float_trig_use" >&6; } -+ if test x$glibcxx_cv_func__float_trig_use = x"yes"; then -+ for ac_func in _acosf _asinf _atanf _cosf _sinf _tanf _coshf _sinhf _tanhf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for float round functions" >&5 -+$as_echo_n "checking for float round functions... " >&6; } -+ if ${glibcxx_cv_func_float_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ceilf (0); floorf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_float_round_use=yes -+else -+ glibcxx_cv_func_float_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_float_round_use" >&5 -+$as_echo "$glibcxx_cv_func_float_round_use" >&6; } -+ if test x$glibcxx_cv_func_float_round_use = x"yes"; then -+ for ac_func in ceilf floorf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float round functions" >&5 -+$as_echo_n "checking for _float round functions... " >&6; } -+ if ${glibcxx_cv_func__float_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_ceilf (0); _floorf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__float_round_use=yes -+else -+ glibcxx_cv_func__float_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__float_round_use" >&5 -+$as_echo "$glibcxx_cv_func__float_round_use" >&6; } -+ if test x$glibcxx_cv_func__float_round_use = x"yes"; then -+ for ac_func in _ceilf _floorf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for expf declaration" >&5 -+$as_echo_n "checking for expf declaration... " >&6; } -+ if test x${glibcxx_cv_func_expf_use+set} != xset; then -+ if ${glibcxx_cv_func_expf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ expf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_expf_use=yes -+else -+ glibcxx_cv_func_expf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_expf_use" >&5 -+$as_echo "$glibcxx_cv_func_expf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_expf_use = x"yes"; then -+ for ac_func in expf -+do : -+ ac_fn_c_check_func "$LINENO" "expf" "ac_cv_func_expf" -+if test "x$ac_cv_func_expf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_EXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expf declaration" >&5 -+$as_echo_n "checking for _expf declaration... " >&6; } -+ if test x${glibcxx_cv_func__expf_use+set} != xset; then -+ if ${glibcxx_cv_func__expf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _expf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__expf_use=yes -+else -+ glibcxx_cv_func__expf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__expf_use" >&5 -+$as_echo "$glibcxx_cv_func__expf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__expf_use = x"yes"; then -+ for ac_func in _expf -+do : -+ ac_fn_c_check_func "$LINENO" "_expf" "ac_cv_func__expf" -+if test "x$ac_cv_func__expf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__EXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanf declaration" >&5 -+$as_echo_n "checking for isnanf declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnanf_use+set} != xset; then -+ if ${glibcxx_cv_func_isnanf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnanf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnanf_use=yes -+else -+ glibcxx_cv_func_isnanf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnanf_use" >&5 -+$as_echo "$glibcxx_cv_func_isnanf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnanf_use = x"yes"; then -+ for ac_func in isnanf -+do : -+ ac_fn_c_check_func "$LINENO" "isnanf" "ac_cv_func_isnanf" -+if test "x$ac_cv_func_isnanf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNANF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanf declaration" >&5 -+$as_echo_n "checking for _isnanf declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnanf_use+set} != xset; then -+ if ${glibcxx_cv_func__isnanf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnanf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnanf_use=yes -+else -+ glibcxx_cv_func__isnanf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnanf_use" >&5 -+$as_echo "$glibcxx_cv_func__isnanf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnanf_use = x"yes"; then -+ for ac_func in _isnanf -+do : -+ ac_fn_c_check_func "$LINENO" "_isnanf" "ac_cv_func__isnanf" -+if test "x$ac_cv_func__isnanf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNANF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinff declaration" >&5 -+$as_echo_n "checking for isinff declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinff_use+set} != xset; then -+ if ${glibcxx_cv_func_isinff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinff(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinff_use=yes -+else -+ glibcxx_cv_func_isinff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinff_use" >&5 -+$as_echo "$glibcxx_cv_func_isinff_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinff_use = x"yes"; then -+ for ac_func in isinff -+do : -+ ac_fn_c_check_func "$LINENO" "isinff" "ac_cv_func_isinff" -+if test "x$ac_cv_func_isinff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINFF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinff declaration" >&5 -+$as_echo_n "checking for _isinff declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinff_use+set} != xset; then -+ if ${glibcxx_cv_func__isinff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinff(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinff_use=yes -+else -+ glibcxx_cv_func__isinff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinff_use" >&5 -+$as_echo "$glibcxx_cv_func__isinff_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinff_use = x"yes"; then -+ for ac_func in _isinff -+do : -+ ac_fn_c_check_func "$LINENO" "_isinff" "ac_cv_func__isinff" -+if test "x$ac_cv_func__isinff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINFF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2f declaration" >&5 -+$as_echo_n "checking for atan2f declaration... " >&6; } -+ if test x${glibcxx_cv_func_atan2f_use+set} != xset; then -+ if ${glibcxx_cv_func_atan2f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ atan2f(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atan2f_use=yes -+else -+ glibcxx_cv_func_atan2f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atan2f_use" >&5 -+$as_echo "$glibcxx_cv_func_atan2f_use" >&6; } -+ -+ if test x$glibcxx_cv_func_atan2f_use = x"yes"; then -+ for ac_func in atan2f -+do : -+ ac_fn_c_check_func "$LINENO" "atan2f" "ac_cv_func_atan2f" -+if test "x$ac_cv_func_atan2f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATAN2F 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2f declaration" >&5 -+$as_echo_n "checking for _atan2f declaration... " >&6; } -+ if test x${glibcxx_cv_func__atan2f_use+set} != xset; then -+ if ${glibcxx_cv_func__atan2f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _atan2f(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__atan2f_use=yes -+else -+ glibcxx_cv_func__atan2f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__atan2f_use" >&5 -+$as_echo "$glibcxx_cv_func__atan2f_use" >&6; } -+ -+ if test x$glibcxx_cv_func__atan2f_use = x"yes"; then -+ for ac_func in _atan2f -+do : -+ ac_fn_c_check_func "$LINENO" "_atan2f" "ac_cv_func__atan2f" -+if test "x$ac_cv_func__atan2f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ATAN2F 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsf declaration" >&5 -+$as_echo_n "checking for fabsf declaration... " >&6; } -+ if test x${glibcxx_cv_func_fabsf_use+set} != xset; then -+ if ${glibcxx_cv_func_fabsf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fabsf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fabsf_use=yes -+else -+ glibcxx_cv_func_fabsf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fabsf_use" >&5 -+$as_echo "$glibcxx_cv_func_fabsf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fabsf_use = x"yes"; then -+ for ac_func in fabsf -+do : -+ ac_fn_c_check_func "$LINENO" "fabsf" "ac_cv_func_fabsf" -+if test "x$ac_cv_func_fabsf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FABSF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsf declaration" >&5 -+$as_echo_n "checking for _fabsf declaration... " >&6; } -+ if test x${glibcxx_cv_func__fabsf_use+set} != xset; then -+ if ${glibcxx_cv_func__fabsf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fabsf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fabsf_use=yes -+else -+ glibcxx_cv_func__fabsf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fabsf_use" >&5 -+$as_echo "$glibcxx_cv_func__fabsf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fabsf_use = x"yes"; then -+ for ac_func in _fabsf -+do : -+ ac_fn_c_check_func "$LINENO" "_fabsf" "ac_cv_func__fabsf" -+if test "x$ac_cv_func__fabsf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FABSF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodf declaration" >&5 -+$as_echo_n "checking for fmodf declaration... " >&6; } -+ if test x${glibcxx_cv_func_fmodf_use+set} != xset; then -+ if ${glibcxx_cv_func_fmodf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ fmodf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fmodf_use=yes -+else -+ glibcxx_cv_func_fmodf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fmodf_use" >&5 -+$as_echo "$glibcxx_cv_func_fmodf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fmodf_use = x"yes"; then -+ for ac_func in fmodf -+do : -+ ac_fn_c_check_func "$LINENO" "fmodf" "ac_cv_func_fmodf" -+if test "x$ac_cv_func_fmodf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FMODF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodf declaration" >&5 -+$as_echo_n "checking for _fmodf declaration... " >&6; } -+ if test x${glibcxx_cv_func__fmodf_use+set} != xset; then -+ if ${glibcxx_cv_func__fmodf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _fmodf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fmodf_use=yes -+else -+ glibcxx_cv_func__fmodf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fmodf_use" >&5 -+$as_echo "$glibcxx_cv_func__fmodf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fmodf_use = x"yes"; then -+ for ac_func in _fmodf -+do : -+ ac_fn_c_check_func "$LINENO" "_fmodf" "ac_cv_func__fmodf" -+if test "x$ac_cv_func__fmodf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FMODF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpf declaration" >&5 -+$as_echo_n "checking for frexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func_frexpf_use+set} != xset; then -+ if ${glibcxx_cv_func_frexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ frexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpf_use=yes -+else -+ glibcxx_cv_func_frexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_frexpf_use = x"yes"; then -+ for ac_func in frexpf -+do : -+ ac_fn_c_check_func "$LINENO" "frexpf" "ac_cv_func_frexpf" -+if test "x$ac_cv_func_frexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpf declaration" >&5 -+$as_echo_n "checking for _frexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func__frexpf_use+set} != xset; then -+ if ${glibcxx_cv_func__frexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _frexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__frexpf_use=yes -+else -+ glibcxx_cv_func__frexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__frexpf_use" >&5 -+$as_echo "$glibcxx_cv_func__frexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__frexpf_use = x"yes"; then -+ for ac_func in _frexpf -+do : -+ ac_fn_c_check_func "$LINENO" "_frexpf" "ac_cv_func__frexpf" -+if test "x$ac_cv_func__frexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FREXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotf declaration" >&5 -+$as_echo_n "checking for hypotf declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypotf_use+set} != xset; then -+ if ${glibcxx_cv_func_hypotf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypotf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotf_use=yes -+else -+ glibcxx_cv_func_hypotf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotf_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypotf_use = x"yes"; then -+ for ac_func in hypotf -+do : -+ ac_fn_c_check_func "$LINENO" "hypotf" "ac_cv_func_hypotf" -+if test "x$ac_cv_func_hypotf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotf declaration" >&5 -+$as_echo_n "checking for _hypotf declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypotf_use+set} != xset; then -+ if ${glibcxx_cv_func__hypotf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypotf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypotf_use=yes -+else -+ glibcxx_cv_func__hypotf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypotf_use" >&5 -+$as_echo "$glibcxx_cv_func__hypotf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypotf_use = x"yes"; then -+ for ac_func in _hypotf -+do : -+ ac_fn_c_check_func "$LINENO" "_hypotf" "ac_cv_func__hypotf" -+if test "x$ac_cv_func__hypotf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOTF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpf declaration" >&5 -+$as_echo_n "checking for ldexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func_ldexpf_use+set} != xset; then -+ if ${glibcxx_cv_func_ldexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ ldexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpf_use=yes -+else -+ glibcxx_cv_func_ldexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_ldexpf_use = x"yes"; then -+ for ac_func in ldexpf -+do : -+ ac_fn_c_check_func "$LINENO" "ldexpf" "ac_cv_func_ldexpf" -+if test "x$ac_cv_func_ldexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpf declaration" >&5 -+$as_echo_n "checking for _ldexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func__ldexpf_use+set} != xset; then -+ if ${glibcxx_cv_func__ldexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _ldexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__ldexpf_use=yes -+else -+ glibcxx_cv_func__ldexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__ldexpf_use" >&5 -+$as_echo "$glibcxx_cv_func__ldexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__ldexpf_use = x"yes"; then -+ for ac_func in _ldexpf -+do : -+ ac_fn_c_check_func "$LINENO" "_ldexpf" "ac_cv_func__ldexpf" -+if test "x$ac_cv_func__ldexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LDEXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for logf declaration" >&5 -+$as_echo_n "checking for logf declaration... " >&6; } -+ if test x${glibcxx_cv_func_logf_use+set} != xset; then -+ if ${glibcxx_cv_func_logf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ logf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_logf_use=yes -+else -+ glibcxx_cv_func_logf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_logf_use" >&5 -+$as_echo "$glibcxx_cv_func_logf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_logf_use = x"yes"; then -+ for ac_func in logf -+do : -+ ac_fn_c_check_func "$LINENO" "logf" "ac_cv_func_logf" -+if test "x$ac_cv_func_logf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOGF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logf declaration" >&5 -+$as_echo_n "checking for _logf declaration... " >&6; } -+ if test x${glibcxx_cv_func__logf_use+set} != xset; then -+ if ${glibcxx_cv_func__logf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _logf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__logf_use=yes -+else -+ glibcxx_cv_func__logf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__logf_use" >&5 -+$as_echo "$glibcxx_cv_func__logf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__logf_use = x"yes"; then -+ for ac_func in _logf -+do : -+ ac_fn_c_check_func "$LINENO" "_logf" "ac_cv_func__logf" -+if test "x$ac_cv_func__logf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOGF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10f declaration" >&5 -+$as_echo_n "checking for log10f declaration... " >&6; } -+ if test x${glibcxx_cv_func_log10f_use+set} != xset; then -+ if ${glibcxx_cv_func_log10f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ log10f(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_log10f_use=yes -+else -+ glibcxx_cv_func_log10f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_log10f_use" >&5 -+$as_echo "$glibcxx_cv_func_log10f_use" >&6; } -+ -+ if test x$glibcxx_cv_func_log10f_use = x"yes"; then -+ for ac_func in log10f -+do : -+ ac_fn_c_check_func "$LINENO" "log10f" "ac_cv_func_log10f" -+if test "x$ac_cv_func_log10f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOG10F 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10f declaration" >&5 -+$as_echo_n "checking for _log10f declaration... " >&6; } -+ if test x${glibcxx_cv_func__log10f_use+set} != xset; then -+ if ${glibcxx_cv_func__log10f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _log10f(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__log10f_use=yes -+else -+ glibcxx_cv_func__log10f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__log10f_use" >&5 -+$as_echo "$glibcxx_cv_func__log10f_use" >&6; } -+ -+ if test x$glibcxx_cv_func__log10f_use = x"yes"; then -+ for ac_func in _log10f -+do : -+ ac_fn_c_check_func "$LINENO" "_log10f" "ac_cv_func__log10f" -+if test "x$ac_cv_func__log10f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOG10F 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modff declaration" >&5 -+$as_echo_n "checking for modff declaration... " >&6; } -+ if test x${glibcxx_cv_func_modff_use+set} != xset; then -+ if ${glibcxx_cv_func_modff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modff(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modff_use=yes -+else -+ glibcxx_cv_func_modff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modff_use" >&5 -+$as_echo "$glibcxx_cv_func_modff_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modff_use = x"yes"; then -+ for ac_func in modff -+do : -+ ac_fn_c_check_func "$LINENO" "modff" "ac_cv_func_modff" -+if test "x$ac_cv_func_modff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modff declaration" >&5 -+$as_echo_n "checking for _modff declaration... " >&6; } -+ if test x${glibcxx_cv_func__modff_use+set} != xset; then -+ if ${glibcxx_cv_func__modff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modff(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modff_use=yes -+else -+ glibcxx_cv_func__modff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modff_use" >&5 -+$as_echo "$glibcxx_cv_func__modff_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modff_use = x"yes"; then -+ for ac_func in _modff -+do : -+ ac_fn_c_check_func "$LINENO" "_modff" "ac_cv_func__modff" -+if test "x$ac_cv_func__modff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODFF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modf declaration" >&5 -+$as_echo_n "checking for modf declaration... " >&6; } -+ if test x${glibcxx_cv_func_modf_use+set} != xset; then -+ if ${glibcxx_cv_func_modf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modf_use=yes -+else -+ glibcxx_cv_func_modf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modf_use" >&5 -+$as_echo "$glibcxx_cv_func_modf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modf_use = x"yes"; then -+ for ac_func in modf -+do : -+ ac_fn_c_check_func "$LINENO" "modf" "ac_cv_func_modf" -+if test "x$ac_cv_func_modf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modf declaration" >&5 -+$as_echo_n "checking for _modf declaration... " >&6; } -+ if test x${glibcxx_cv_func__modf_use+set} != xset; then -+ if ${glibcxx_cv_func__modf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modf_use=yes -+else -+ glibcxx_cv_func__modf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modf_use" >&5 -+$as_echo "$glibcxx_cv_func__modf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modf_use = x"yes"; then -+ for ac_func in _modf -+do : -+ ac_fn_c_check_func "$LINENO" "_modf" "ac_cv_func__modf" -+if test "x$ac_cv_func__modf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for powf declaration" >&5 -+$as_echo_n "checking for powf declaration... " >&6; } -+ if test x${glibcxx_cv_func_powf_use+set} != xset; then -+ if ${glibcxx_cv_func_powf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ powf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_powf_use=yes -+else -+ glibcxx_cv_func_powf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_powf_use" >&5 -+$as_echo "$glibcxx_cv_func_powf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_powf_use = x"yes"; then -+ for ac_func in powf -+do : -+ ac_fn_c_check_func "$LINENO" "powf" "ac_cv_func_powf" -+if test "x$ac_cv_func_powf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_POWF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powf declaration" >&5 -+$as_echo_n "checking for _powf declaration... " >&6; } -+ if test x${glibcxx_cv_func__powf_use+set} != xset; then -+ if ${glibcxx_cv_func__powf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _powf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__powf_use=yes -+else -+ glibcxx_cv_func__powf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__powf_use" >&5 -+$as_echo "$glibcxx_cv_func__powf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__powf_use = x"yes"; then -+ for ac_func in _powf -+do : -+ ac_fn_c_check_func "$LINENO" "_powf" "ac_cv_func__powf" -+if test "x$ac_cv_func__powf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__POWF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtf declaration" >&5 -+$as_echo_n "checking for sqrtf declaration... " >&6; } -+ if test x${glibcxx_cv_func_sqrtf_use+set} != xset; then -+ if ${glibcxx_cv_func_sqrtf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ sqrtf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sqrtf_use=yes -+else -+ glibcxx_cv_func_sqrtf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sqrtf_use" >&5 -+$as_echo "$glibcxx_cv_func_sqrtf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sqrtf_use = x"yes"; then -+ for ac_func in sqrtf -+do : -+ ac_fn_c_check_func "$LINENO" "sqrtf" "ac_cv_func_sqrtf" -+if test "x$ac_cv_func_sqrtf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SQRTF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtf declaration" >&5 -+$as_echo_n "checking for _sqrtf declaration... " >&6; } -+ if test x${glibcxx_cv_func__sqrtf_use+set} != xset; then -+ if ${glibcxx_cv_func__sqrtf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _sqrtf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sqrtf_use=yes -+else -+ glibcxx_cv_func__sqrtf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sqrtf_use" >&5 -+$as_echo "$glibcxx_cv_func__sqrtf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sqrtf_use = x"yes"; then -+ for ac_func in _sqrtf -+do : -+ ac_fn_c_check_func "$LINENO" "_sqrtf" "ac_cv_func__sqrtf" -+if test "x$ac_cv_func__sqrtf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SQRTF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosf declaration" >&5 -+$as_echo_n "checking for sincosf declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincosf_use+set} != xset; then -+ if ${glibcxx_cv_func_sincosf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincosf(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincosf_use=yes -+else -+ glibcxx_cv_func_sincosf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincosf_use" >&5 -+$as_echo "$glibcxx_cv_func_sincosf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincosf_use = x"yes"; then -+ for ac_func in sincosf -+do : -+ ac_fn_c_check_func "$LINENO" "sincosf" "ac_cv_func_sincosf" -+if test "x$ac_cv_func_sincosf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOSF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosf declaration" >&5 -+$as_echo_n "checking for _sincosf declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincosf_use+set} != xset; then -+ if ${glibcxx_cv_func__sincosf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincosf(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincosf_use=yes -+else -+ glibcxx_cv_func__sincosf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincosf_use" >&5 -+$as_echo "$glibcxx_cv_func__sincosf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincosf_use = x"yes"; then -+ for ac_func in _sincosf -+do : -+ ac_fn_c_check_func "$LINENO" "_sincosf" "ac_cv_func__sincosf" -+if test "x$ac_cv_func__sincosf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOSF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitef declaration" >&5 -+$as_echo_n "checking for finitef declaration... " >&6; } -+ if test x${glibcxx_cv_func_finitef_use+set} != xset; then -+ if ${glibcxx_cv_func_finitef_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finitef(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finitef_use=yes -+else -+ glibcxx_cv_func_finitef_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finitef_use" >&5 -+$as_echo "$glibcxx_cv_func_finitef_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finitef_use = x"yes"; then -+ for ac_func in finitef -+do : -+ ac_fn_c_check_func "$LINENO" "finitef" "ac_cv_func_finitef" -+if test "x$ac_cv_func_finitef" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITEF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitef declaration" >&5 -+$as_echo_n "checking for _finitef declaration... " >&6; } -+ if test x${glibcxx_cv_func__finitef_use+set} != xset; then -+ if ${glibcxx_cv_func__finitef_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finitef(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finitef_use=yes -+else -+ glibcxx_cv_func__finitef_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finitef_use" >&5 -+$as_echo "$glibcxx_cv_func__finitef_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finitef_use = x"yes"; then -+ for ac_func in _finitef -+do : -+ ac_fn_c_check_func "$LINENO" "_finitef" "ac_cv_func__finitef" -+if test "x$ac_cv_func__finitef" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITEF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double trig functions" >&5 -+$as_echo_n "checking for long double trig functions... " >&6; } -+ if ${glibcxx_cv_func_long_double_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+acosl (0); asinl (0); atanl (0); cosl (0); sinl (0); tanl (0); coshl (0); sinhl (0); tanhl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_long_double_trig_use=yes -+else -+ glibcxx_cv_func_long_double_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_long_double_trig_use" >&5 -+$as_echo "$glibcxx_cv_func_long_double_trig_use" >&6; } -+ if test x$glibcxx_cv_func_long_double_trig_use = x"yes"; then -+ for ac_func in acosl asinl atanl cosl sinl tanl coshl sinhl tanhl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double trig functions" >&5 -+$as_echo_n "checking for _long double trig functions... " >&6; } -+ if ${glibcxx_cv_func__long_double_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_acosl (0); _asinl (0); _atanl (0); _cosl (0); _sinl (0); _tanl (0); _coshl (0); _sinhl (0); _tanhl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__long_double_trig_use=yes -+else -+ glibcxx_cv_func__long_double_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__long_double_trig_use" >&5 -+$as_echo "$glibcxx_cv_func__long_double_trig_use" >&6; } -+ if test x$glibcxx_cv_func__long_double_trig_use = x"yes"; then -+ for ac_func in _acosl _asinl _atanl _cosl _sinl _tanl _coshl _sinhl _tanhl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double round functions" >&5 -+$as_echo_n "checking for long double round functions... " >&6; } -+ if ${glibcxx_cv_func_long_double_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ceill (0); floorl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_long_double_round_use=yes -+else -+ glibcxx_cv_func_long_double_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_long_double_round_use" >&5 -+$as_echo "$glibcxx_cv_func_long_double_round_use" >&6; } -+ if test x$glibcxx_cv_func_long_double_round_use = x"yes"; then -+ for ac_func in ceill floorl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double round functions" >&5 -+$as_echo_n "checking for _long double round functions... " >&6; } -+ if ${glibcxx_cv_func__long_double_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_ceill (0); _floorl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__long_double_round_use=yes -+else -+ glibcxx_cv_func__long_double_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__long_double_round_use" >&5 -+$as_echo "$glibcxx_cv_func__long_double_round_use" >&6; } -+ if test x$glibcxx_cv_func__long_double_round_use = x"yes"; then -+ for ac_func in _ceill _floorl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanl declaration" >&5 -+$as_echo_n "checking for isnanl declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnanl_use+set} != xset; then -+ if ${glibcxx_cv_func_isnanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnanl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnanl_use=yes -+else -+ glibcxx_cv_func_isnanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnanl_use" >&5 -+$as_echo "$glibcxx_cv_func_isnanl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnanl_use = x"yes"; then -+ for ac_func in isnanl -+do : -+ ac_fn_c_check_func "$LINENO" "isnanl" "ac_cv_func_isnanl" -+if test "x$ac_cv_func_isnanl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNANL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanl declaration" >&5 -+$as_echo_n "checking for _isnanl declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnanl_use+set} != xset; then -+ if ${glibcxx_cv_func__isnanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnanl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnanl_use=yes -+else -+ glibcxx_cv_func__isnanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnanl_use" >&5 -+$as_echo "$glibcxx_cv_func__isnanl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnanl_use = x"yes"; then -+ for ac_func in _isnanl -+do : -+ ac_fn_c_check_func "$LINENO" "_isnanl" "ac_cv_func__isnanl" -+if test "x$ac_cv_func__isnanl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNANL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinfl declaration" >&5 -+$as_echo_n "checking for isinfl declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinfl_use+set} != xset; then -+ if ${glibcxx_cv_func_isinfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinfl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinfl_use=yes -+else -+ glibcxx_cv_func_isinfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinfl_use" >&5 -+$as_echo "$glibcxx_cv_func_isinfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinfl_use = x"yes"; then -+ for ac_func in isinfl -+do : -+ ac_fn_c_check_func "$LINENO" "isinfl" "ac_cv_func_isinfl" -+if test "x$ac_cv_func_isinfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINFL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinfl declaration" >&5 -+$as_echo_n "checking for _isinfl declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinfl_use+set} != xset; then -+ if ${glibcxx_cv_func__isinfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinfl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinfl_use=yes -+else -+ glibcxx_cv_func__isinfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinfl_use" >&5 -+$as_echo "$glibcxx_cv_func__isinfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinfl_use = x"yes"; then -+ for ac_func in _isinfl -+do : -+ ac_fn_c_check_func "$LINENO" "_isinfl" "ac_cv_func__isinfl" -+if test "x$ac_cv_func__isinfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINFL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2l declaration" >&5 -+$as_echo_n "checking for atan2l declaration... " >&6; } -+ if test x${glibcxx_cv_func_atan2l_use+set} != xset; then -+ if ${glibcxx_cv_func_atan2l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ atan2l(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atan2l_use=yes -+else -+ glibcxx_cv_func_atan2l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atan2l_use" >&5 -+$as_echo "$glibcxx_cv_func_atan2l_use" >&6; } -+ -+ if test x$glibcxx_cv_func_atan2l_use = x"yes"; then -+ for ac_func in atan2l -+do : -+ ac_fn_c_check_func "$LINENO" "atan2l" "ac_cv_func_atan2l" -+if test "x$ac_cv_func_atan2l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATAN2L 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2l declaration" >&5 -+$as_echo_n "checking for _atan2l declaration... " >&6; } -+ if test x${glibcxx_cv_func__atan2l_use+set} != xset; then -+ if ${glibcxx_cv_func__atan2l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _atan2l(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__atan2l_use=yes -+else -+ glibcxx_cv_func__atan2l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__atan2l_use" >&5 -+$as_echo "$glibcxx_cv_func__atan2l_use" >&6; } -+ -+ if test x$glibcxx_cv_func__atan2l_use = x"yes"; then -+ for ac_func in _atan2l -+do : -+ ac_fn_c_check_func "$LINENO" "_atan2l" "ac_cv_func__atan2l" -+if test "x$ac_cv_func__atan2l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ATAN2L 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for expl declaration" >&5 -+$as_echo_n "checking for expl declaration... " >&6; } -+ if test x${glibcxx_cv_func_expl_use+set} != xset; then -+ if ${glibcxx_cv_func_expl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ expl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_expl_use=yes -+else -+ glibcxx_cv_func_expl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_expl_use" >&5 -+$as_echo "$glibcxx_cv_func_expl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_expl_use = x"yes"; then -+ for ac_func in expl -+do : -+ ac_fn_c_check_func "$LINENO" "expl" "ac_cv_func_expl" -+if test "x$ac_cv_func_expl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_EXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expl declaration" >&5 -+$as_echo_n "checking for _expl declaration... " >&6; } -+ if test x${glibcxx_cv_func__expl_use+set} != xset; then -+ if ${glibcxx_cv_func__expl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _expl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__expl_use=yes -+else -+ glibcxx_cv_func__expl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__expl_use" >&5 -+$as_echo "$glibcxx_cv_func__expl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__expl_use = x"yes"; then -+ for ac_func in _expl -+do : -+ ac_fn_c_check_func "$LINENO" "_expl" "ac_cv_func__expl" -+if test "x$ac_cv_func__expl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__EXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsl declaration" >&5 -+$as_echo_n "checking for fabsl declaration... " >&6; } -+ if test x${glibcxx_cv_func_fabsl_use+set} != xset; then -+ if ${glibcxx_cv_func_fabsl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fabsl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fabsl_use=yes -+else -+ glibcxx_cv_func_fabsl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fabsl_use" >&5 -+$as_echo "$glibcxx_cv_func_fabsl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fabsl_use = x"yes"; then -+ for ac_func in fabsl -+do : -+ ac_fn_c_check_func "$LINENO" "fabsl" "ac_cv_func_fabsl" -+if test "x$ac_cv_func_fabsl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FABSL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsl declaration" >&5 -+$as_echo_n "checking for _fabsl declaration... " >&6; } -+ if test x${glibcxx_cv_func__fabsl_use+set} != xset; then -+ if ${glibcxx_cv_func__fabsl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fabsl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fabsl_use=yes -+else -+ glibcxx_cv_func__fabsl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fabsl_use" >&5 -+$as_echo "$glibcxx_cv_func__fabsl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fabsl_use = x"yes"; then -+ for ac_func in _fabsl -+do : -+ ac_fn_c_check_func "$LINENO" "_fabsl" "ac_cv_func__fabsl" -+if test "x$ac_cv_func__fabsl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FABSL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodl declaration" >&5 -+$as_echo_n "checking for fmodl declaration... " >&6; } -+ if test x${glibcxx_cv_func_fmodl_use+set} != xset; then -+ if ${glibcxx_cv_func_fmodl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ fmodl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fmodl_use=yes -+else -+ glibcxx_cv_func_fmodl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fmodl_use" >&5 -+$as_echo "$glibcxx_cv_func_fmodl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fmodl_use = x"yes"; then -+ for ac_func in fmodl -+do : -+ ac_fn_c_check_func "$LINENO" "fmodl" "ac_cv_func_fmodl" -+if test "x$ac_cv_func_fmodl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FMODL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodl declaration" >&5 -+$as_echo_n "checking for _fmodl declaration... " >&6; } -+ if test x${glibcxx_cv_func__fmodl_use+set} != xset; then -+ if ${glibcxx_cv_func__fmodl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _fmodl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fmodl_use=yes -+else -+ glibcxx_cv_func__fmodl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fmodl_use" >&5 -+$as_echo "$glibcxx_cv_func__fmodl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fmodl_use = x"yes"; then -+ for ac_func in _fmodl -+do : -+ ac_fn_c_check_func "$LINENO" "_fmodl" "ac_cv_func__fmodl" -+if test "x$ac_cv_func__fmodl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FMODL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpl declaration" >&5 -+$as_echo_n "checking for frexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func_frexpl_use+set} != xset; then -+ if ${glibcxx_cv_func_frexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ frexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpl_use=yes -+else -+ glibcxx_cv_func_frexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_frexpl_use = x"yes"; then -+ for ac_func in frexpl -+do : -+ ac_fn_c_check_func "$LINENO" "frexpl" "ac_cv_func_frexpl" -+if test "x$ac_cv_func_frexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpl declaration" >&5 -+$as_echo_n "checking for _frexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func__frexpl_use+set} != xset; then -+ if ${glibcxx_cv_func__frexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _frexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__frexpl_use=yes -+else -+ glibcxx_cv_func__frexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__frexpl_use" >&5 -+$as_echo "$glibcxx_cv_func__frexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__frexpl_use = x"yes"; then -+ for ac_func in _frexpl -+do : -+ ac_fn_c_check_func "$LINENO" "_frexpl" "ac_cv_func__frexpl" -+if test "x$ac_cv_func__frexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FREXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotl declaration" >&5 -+$as_echo_n "checking for hypotl declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypotl_use+set} != xset; then -+ if ${glibcxx_cv_func_hypotl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypotl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotl_use=yes -+else -+ glibcxx_cv_func_hypotl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotl_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypotl_use = x"yes"; then -+ for ac_func in hypotl -+do : -+ ac_fn_c_check_func "$LINENO" "hypotl" "ac_cv_func_hypotl" -+if test "x$ac_cv_func_hypotl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotl declaration" >&5 -+$as_echo_n "checking for _hypotl declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypotl_use+set} != xset; then -+ if ${glibcxx_cv_func__hypotl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypotl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypotl_use=yes -+else -+ glibcxx_cv_func__hypotl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypotl_use" >&5 -+$as_echo "$glibcxx_cv_func__hypotl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypotl_use = x"yes"; then -+ for ac_func in _hypotl -+do : -+ ac_fn_c_check_func "$LINENO" "_hypotl" "ac_cv_func__hypotl" -+if test "x$ac_cv_func__hypotl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOTL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpl declaration" >&5 -+$as_echo_n "checking for ldexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func_ldexpl_use+set} != xset; then -+ if ${glibcxx_cv_func_ldexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ ldexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpl_use=yes -+else -+ glibcxx_cv_func_ldexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_ldexpl_use = x"yes"; then -+ for ac_func in ldexpl -+do : -+ ac_fn_c_check_func "$LINENO" "ldexpl" "ac_cv_func_ldexpl" -+if test "x$ac_cv_func_ldexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpl declaration" >&5 -+$as_echo_n "checking for _ldexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func__ldexpl_use+set} != xset; then -+ if ${glibcxx_cv_func__ldexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _ldexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__ldexpl_use=yes -+else -+ glibcxx_cv_func__ldexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__ldexpl_use" >&5 -+$as_echo "$glibcxx_cv_func__ldexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__ldexpl_use = x"yes"; then -+ for ac_func in _ldexpl -+do : -+ ac_fn_c_check_func "$LINENO" "_ldexpl" "ac_cv_func__ldexpl" -+if test "x$ac_cv_func__ldexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LDEXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for logl declaration" >&5 -+$as_echo_n "checking for logl declaration... " >&6; } -+ if test x${glibcxx_cv_func_logl_use+set} != xset; then -+ if ${glibcxx_cv_func_logl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ logl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_logl_use=yes -+else -+ glibcxx_cv_func_logl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_logl_use" >&5 -+$as_echo "$glibcxx_cv_func_logl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_logl_use = x"yes"; then -+ for ac_func in logl -+do : -+ ac_fn_c_check_func "$LINENO" "logl" "ac_cv_func_logl" -+if test "x$ac_cv_func_logl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOGL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logl declaration" >&5 -+$as_echo_n "checking for _logl declaration... " >&6; } -+ if test x${glibcxx_cv_func__logl_use+set} != xset; then -+ if ${glibcxx_cv_func__logl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _logl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__logl_use=yes -+else -+ glibcxx_cv_func__logl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__logl_use" >&5 -+$as_echo "$glibcxx_cv_func__logl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__logl_use = x"yes"; then -+ for ac_func in _logl -+do : -+ ac_fn_c_check_func "$LINENO" "_logl" "ac_cv_func__logl" -+if test "x$ac_cv_func__logl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOGL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10l declaration" >&5 -+$as_echo_n "checking for log10l declaration... " >&6; } -+ if test x${glibcxx_cv_func_log10l_use+set} != xset; then -+ if ${glibcxx_cv_func_log10l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ log10l(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_log10l_use=yes -+else -+ glibcxx_cv_func_log10l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_log10l_use" >&5 -+$as_echo "$glibcxx_cv_func_log10l_use" >&6; } -+ -+ if test x$glibcxx_cv_func_log10l_use = x"yes"; then -+ for ac_func in log10l -+do : -+ ac_fn_c_check_func "$LINENO" "log10l" "ac_cv_func_log10l" -+if test "x$ac_cv_func_log10l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOG10L 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10l declaration" >&5 -+$as_echo_n "checking for _log10l declaration... " >&6; } -+ if test x${glibcxx_cv_func__log10l_use+set} != xset; then -+ if ${glibcxx_cv_func__log10l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _log10l(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__log10l_use=yes -+else -+ glibcxx_cv_func__log10l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__log10l_use" >&5 -+$as_echo "$glibcxx_cv_func__log10l_use" >&6; } -+ -+ if test x$glibcxx_cv_func__log10l_use = x"yes"; then -+ for ac_func in _log10l -+do : -+ ac_fn_c_check_func "$LINENO" "_log10l" "ac_cv_func__log10l" -+if test "x$ac_cv_func__log10l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOG10L 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modfl declaration" >&5 -+$as_echo_n "checking for modfl declaration... " >&6; } -+ if test x${glibcxx_cv_func_modfl_use+set} != xset; then -+ if ${glibcxx_cv_func_modfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modfl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modfl_use=yes -+else -+ glibcxx_cv_func_modfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modfl_use" >&5 -+$as_echo "$glibcxx_cv_func_modfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modfl_use = x"yes"; then -+ for ac_func in modfl -+do : -+ ac_fn_c_check_func "$LINENO" "modfl" "ac_cv_func_modfl" -+if test "x$ac_cv_func_modfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modfl declaration" >&5 -+$as_echo_n "checking for _modfl declaration... " >&6; } -+ if test x${glibcxx_cv_func__modfl_use+set} != xset; then -+ if ${glibcxx_cv_func__modfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modfl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modfl_use=yes -+else -+ glibcxx_cv_func__modfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modfl_use" >&5 -+$as_echo "$glibcxx_cv_func__modfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modfl_use = x"yes"; then -+ for ac_func in _modfl -+do : -+ ac_fn_c_check_func "$LINENO" "_modfl" "ac_cv_func__modfl" -+if test "x$ac_cv_func__modfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODFL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for powl declaration" >&5 -+$as_echo_n "checking for powl declaration... " >&6; } -+ if test x${glibcxx_cv_func_powl_use+set} != xset; then -+ if ${glibcxx_cv_func_powl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ powl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_powl_use=yes -+else -+ glibcxx_cv_func_powl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_powl_use" >&5 -+$as_echo "$glibcxx_cv_func_powl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_powl_use = x"yes"; then -+ for ac_func in powl -+do : -+ ac_fn_c_check_func "$LINENO" "powl" "ac_cv_func_powl" -+if test "x$ac_cv_func_powl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_POWL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powl declaration" >&5 -+$as_echo_n "checking for _powl declaration... " >&6; } -+ if test x${glibcxx_cv_func__powl_use+set} != xset; then -+ if ${glibcxx_cv_func__powl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _powl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__powl_use=yes -+else -+ glibcxx_cv_func__powl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__powl_use" >&5 -+$as_echo "$glibcxx_cv_func__powl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__powl_use = x"yes"; then -+ for ac_func in _powl -+do : -+ ac_fn_c_check_func "$LINENO" "_powl" "ac_cv_func__powl" -+if test "x$ac_cv_func__powl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__POWL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtl declaration" >&5 -+$as_echo_n "checking for sqrtl declaration... " >&6; } -+ if test x${glibcxx_cv_func_sqrtl_use+set} != xset; then -+ if ${glibcxx_cv_func_sqrtl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ sqrtl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sqrtl_use=yes -+else -+ glibcxx_cv_func_sqrtl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sqrtl_use" >&5 -+$as_echo "$glibcxx_cv_func_sqrtl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sqrtl_use = x"yes"; then -+ for ac_func in sqrtl -+do : -+ ac_fn_c_check_func "$LINENO" "sqrtl" "ac_cv_func_sqrtl" -+if test "x$ac_cv_func_sqrtl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SQRTL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtl declaration" >&5 -+$as_echo_n "checking for _sqrtl declaration... " >&6; } -+ if test x${glibcxx_cv_func__sqrtl_use+set} != xset; then -+ if ${glibcxx_cv_func__sqrtl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _sqrtl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sqrtl_use=yes -+else -+ glibcxx_cv_func__sqrtl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sqrtl_use" >&5 -+$as_echo "$glibcxx_cv_func__sqrtl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sqrtl_use = x"yes"; then -+ for ac_func in _sqrtl -+do : -+ ac_fn_c_check_func "$LINENO" "_sqrtl" "ac_cv_func__sqrtl" -+if test "x$ac_cv_func__sqrtl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SQRTL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosl declaration" >&5 -+$as_echo_n "checking for sincosl declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincosl_use+set} != xset; then -+ if ${glibcxx_cv_func_sincosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincosl(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincosl_use=yes -+else -+ glibcxx_cv_func_sincosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincosl_use" >&5 -+$as_echo "$glibcxx_cv_func_sincosl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincosl_use = x"yes"; then -+ for ac_func in sincosl -+do : -+ ac_fn_c_check_func "$LINENO" "sincosl" "ac_cv_func_sincosl" -+if test "x$ac_cv_func_sincosl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOSL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosl declaration" >&5 -+$as_echo_n "checking for _sincosl declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincosl_use+set} != xset; then -+ if ${glibcxx_cv_func__sincosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincosl(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincosl_use=yes -+else -+ glibcxx_cv_func__sincosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincosl_use" >&5 -+$as_echo "$glibcxx_cv_func__sincosl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincosl_use = x"yes"; then -+ for ac_func in _sincosl -+do : -+ ac_fn_c_check_func "$LINENO" "_sincosl" "ac_cv_func__sincosl" -+if test "x$ac_cv_func__sincosl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOSL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitel declaration" >&5 -+$as_echo_n "checking for finitel declaration... " >&6; } -+ if test x${glibcxx_cv_func_finitel_use+set} != xset; then -+ if ${glibcxx_cv_func_finitel_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finitel(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finitel_use=yes -+else -+ glibcxx_cv_func_finitel_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finitel_use" >&5 -+$as_echo "$glibcxx_cv_func_finitel_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finitel_use = x"yes"; then -+ for ac_func in finitel -+do : -+ ac_fn_c_check_func "$LINENO" "finitel" "ac_cv_func_finitel" -+if test "x$ac_cv_func_finitel" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITEL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitel declaration" >&5 -+$as_echo_n "checking for _finitel declaration... " >&6; } -+ if test x${glibcxx_cv_func__finitel_use+set} != xset; then -+ if ${glibcxx_cv_func__finitel_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finitel(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finitel_use=yes -+else -+ glibcxx_cv_func__finitel_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finitel_use" >&5 -+$as_echo "$glibcxx_cv_func__finitel_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finitel_use = x"yes"; then -+ for ac_func in _finitel -+do : -+ ac_fn_c_check_func "$LINENO" "_finitel" "ac_cv_func__finitel" -+if test "x$ac_cv_func__finitel" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITEL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ LIBS="$ac_save_LIBS" -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS='-fno-builtin -D_GNU_SOURCE' -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for at_quick_exit declaration" >&5 -+$as_echo_n "checking for at_quick_exit declaration... " >&6; } -+ if test x${glibcxx_cv_func_at_quick_exit_use+set} != xset; then -+ if ${glibcxx_cv_func_at_quick_exit_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ at_quick_exit(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_at_quick_exit_use=yes -+else -+ glibcxx_cv_func_at_quick_exit_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_at_quick_exit_use" >&5 -+$as_echo "$glibcxx_cv_func_at_quick_exit_use" >&6; } -+ if test x$glibcxx_cv_func_at_quick_exit_use = x"yes"; then -+ for ac_func in at_quick_exit -+do : -+ ac_fn_c_check_func "$LINENO" "at_quick_exit" "ac_cv_func_at_quick_exit" -+if test "x$ac_cv_func_at_quick_exit" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_AT_QUICK_EXIT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for quick_exit declaration" >&5 -+$as_echo_n "checking for quick_exit declaration... " >&6; } -+ if test x${glibcxx_cv_func_quick_exit_use+set} != xset; then -+ if ${glibcxx_cv_func_quick_exit_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ quick_exit(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_quick_exit_use=yes -+else -+ glibcxx_cv_func_quick_exit_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_quick_exit_use" >&5 -+$as_echo "$glibcxx_cv_func_quick_exit_use" >&6; } -+ if test x$glibcxx_cv_func_quick_exit_use = x"yes"; then -+ for ac_func in quick_exit -+do : -+ ac_fn_c_check_func "$LINENO" "quick_exit" "ac_cv_func_quick_exit" -+if test "x$ac_cv_func_quick_exit" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_QUICK_EXIT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtold declaration" >&5 -+$as_echo_n "checking for strtold declaration... " >&6; } -+ if test x${glibcxx_cv_func_strtold_use+set} != xset; then -+ if ${glibcxx_cv_func_strtold_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ strtold(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_strtold_use=yes -+else -+ glibcxx_cv_func_strtold_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_strtold_use" >&5 -+$as_echo "$glibcxx_cv_func_strtold_use" >&6; } -+ if test x$glibcxx_cv_func_strtold_use = x"yes"; then -+ for ac_func in strtold -+do : -+ ac_fn_c_check_func "$LINENO" "strtold" "ac_cv_func_strtold" -+if test "x$ac_cv_func_strtold" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STRTOLD 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtof declaration" >&5 -+$as_echo_n "checking for strtof declaration... " >&6; } -+ if test x${glibcxx_cv_func_strtof_use+set} != xset; then -+ if ${glibcxx_cv_func_strtof_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ strtof(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_strtof_use=yes -+else -+ glibcxx_cv_func_strtof_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_strtof_use" >&5 -+$as_echo "$glibcxx_cv_func_strtof_use" >&6; } -+ if test x$glibcxx_cv_func_strtof_use = x"yes"; then -+ for ac_func in strtof -+do : -+ ac_fn_c_check_func "$LINENO" "strtof" "ac_cv_func_strtof" -+if test "x$ac_cv_func_strtof" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STRTOF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ -+ $as_echo "@%:@define _GLIBCXX_USE_DEV_RANDOM 1" >>confdefs.h -+ -+ $as_echo "@%:@define _GLIBCXX_USE_RANDOM_TR1 1" >>confdefs.h -+ -+ # We don't yet support AIX's TLS ABI. -+ #GCC_CHECK_TLS -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5 -+$as_echo_n "checking for iconv... " >&6; } -+if ${am_cv_func_iconv+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ am_cv_func_iconv="no, consider installing GNU libiconv" -+ am_cv_lib_iconv=no -+ am_save_CPPFLAGS="$CPPFLAGS" -+ CPPFLAGS="$CPPFLAGS $INCICONV" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+#include -+int -+main () -+{ -+iconv_t cd = iconv_open("",""); -+ iconv(cd,NULL,NULL,NULL,NULL); -+ iconv_close(cd); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ am_cv_func_iconv=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ CPPFLAGS="$am_save_CPPFLAGS" -+ -+ if test "$am_cv_func_iconv" != yes && test -d ../libiconv; then -+ for _libs in .libs _libs; do -+ am_save_CPPFLAGS="$CPPFLAGS" -+ am_save_LIBS="$LIBS" -+ CPPFLAGS="$CPPFLAGS -I../libiconv/include" -+ LIBS="$LIBS ../libiconv/lib/$_libs/libiconv.a" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+#include -+int -+main () -+{ -+iconv_t cd = iconv_open("",""); -+ iconv(cd,NULL,NULL,NULL,NULL); -+ iconv_close(cd); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ INCICONV="-I../libiconv/include" -+ LIBICONV='${top_builddir}'/../libiconv/lib/$_libs/libiconv.a -+ LTLIBICONV='${top_builddir}'/../libiconv/lib/libiconv.la -+ am_cv_lib_iconv=yes -+ am_cv_func_iconv=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ CPPFLAGS="$am_save_CPPFLAGS" -+ LIBS="$am_save_LIBS" -+ if test "$am_cv_func_iconv" = "yes"; then -+ break -+ fi -+ done -+ fi -+ -+ if test "$am_cv_func_iconv" != yes; then -+ am_save_CPPFLAGS="$CPPFLAGS" -+ am_save_LIBS="$LIBS" -+ CPPFLAGS="$CPPFLAGS $INCICONV" -+ LIBS="$LIBS $LIBICONV" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+#include -+int -+main () -+{ -+iconv_t cd = iconv_open("",""); -+ iconv(cd,NULL,NULL,NULL,NULL); -+ iconv_close(cd); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ am_cv_lib_iconv=yes -+ am_cv_func_iconv=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ CPPFLAGS="$am_save_CPPFLAGS" -+ LIBS="$am_save_LIBS" -+ fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5 -+$as_echo "$am_cv_func_iconv" >&6; } -+ if test "$am_cv_func_iconv" = yes; then -+ -+$as_echo "@%:@define HAVE_ICONV 1" >>confdefs.h -+ -+ fi -+ if test "$am_cv_lib_iconv" = yes; then -+ -+ for element in $INCICONV; do -+ haveit= -+ for x in $CPPFLAGS; do -+ -+ acl_save_prefix="$prefix" -+ prefix="$acl_final_prefix" -+ acl_save_exec_prefix="$exec_prefix" -+ exec_prefix="$acl_final_exec_prefix" -+ eval x=\"$x\" -+ exec_prefix="$acl_save_exec_prefix" -+ prefix="$acl_save_prefix" -+ -+ if test "X$x" = "X$element"; then -+ haveit=yes -+ break -+ fi -+ done -+ if test -z "$haveit"; then -+ CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" -+ fi -+ done -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5 -+$as_echo_n "checking how to link with libiconv... " >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5 -+$as_echo "$LIBICONV" >&6; } -+ else -+ LIBICONV= -+ LTLIBICONV= -+ fi -+ -+ -+ -+ if test "$am_cv_func_iconv" = yes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv declaration" >&5 -+$as_echo_n "checking for iconv declaration... " >&6; } -+ if ${am_cv_proto_iconv+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#include -+extern -+#ifdef __cplusplus -+"C" -+#endif -+#if defined(__STDC__) || defined(__cplusplus) -+size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); -+#else -+size_t iconv(); -+#endif -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ am_cv_proto_iconv_arg1="" -+else -+ am_cv_proto_iconv_arg1="const" -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);" -+fi -+ -+ am_cv_proto_iconv=`echo "$am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${ac_t:- -+ }$am_cv_proto_iconv" >&5 -+$as_echo "${ac_t:- -+ }$am_cv_proto_iconv" >&6; } -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define ICONV_CONST $am_cv_proto_iconv_arg1 -+_ACEOF -+ -+ fi -+ -+ -+ $as_echo "@%:@define HAVE_USELOCALE 1" >>confdefs.h -+ -+ ;; -+ -+ *-darwin*) -+ # Darwin versions vary, but the linker should work in a cross environment, -+ # so we just check for all the features here. -+ # Check for available headers. -+ -+ # Don't call GLIBCXX_CHECK_LINKER_FEATURES, Darwin doesn't have a GNU ld -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS='-fno-builtin -D_GNU_SOURCE' -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5 -+$as_echo_n "checking for sin in -lm... " >&6; } -+if ${ac_cv_lib_m_sin+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lm $LIBS" -+if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char sin (); -+int -+main () -+{ -+return sin (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_m_sin=yes -+else -+ ac_cv_lib_m_sin=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5 -+$as_echo "$ac_cv_lib_m_sin" >&6; } -+if test "x$ac_cv_lib_m_sin" = xyes; then : -+ libm="-lm" -+fi -+ -+ ac_save_LIBS="$LIBS" -+ LIBS="$LIBS $libm" -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf declaration" >&5 -+$as_echo_n "checking for isinf declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinf_use+set} != xset; then -+ if ${glibcxx_cv_func_isinf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinf_use=yes -+else -+ glibcxx_cv_func_isinf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinf_use" >&5 -+$as_echo "$glibcxx_cv_func_isinf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinf_use = x"yes"; then -+ for ac_func in isinf -+do : -+ ac_fn_c_check_func "$LINENO" "isinf" "ac_cv_func_isinf" -+if test "x$ac_cv_func_isinf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinf declaration" >&5 -+$as_echo_n "checking for _isinf declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinf_use+set} != xset; then -+ if ${glibcxx_cv_func__isinf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinf_use=yes -+else -+ glibcxx_cv_func__isinf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinf_use" >&5 -+$as_echo "$glibcxx_cv_func__isinf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinf_use = x"yes"; then -+ for ac_func in _isinf -+do : -+ ac_fn_c_check_func "$LINENO" "_isinf" "ac_cv_func__isinf" -+if test "x$ac_cv_func__isinf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan declaration" >&5 -+$as_echo_n "checking for isnan declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnan_use+set} != xset; then -+ if ${glibcxx_cv_func_isnan_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnan(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnan_use=yes -+else -+ glibcxx_cv_func_isnan_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnan_use" >&5 -+$as_echo "$glibcxx_cv_func_isnan_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnan_use = x"yes"; then -+ for ac_func in isnan -+do : -+ ac_fn_c_check_func "$LINENO" "isnan" "ac_cv_func_isnan" -+if test "x$ac_cv_func_isnan" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNAN 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnan declaration" >&5 -+$as_echo_n "checking for _isnan declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnan_use+set} != xset; then -+ if ${glibcxx_cv_func__isnan_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnan(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnan_use=yes -+else -+ glibcxx_cv_func__isnan_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnan_use" >&5 -+$as_echo "$glibcxx_cv_func__isnan_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnan_use = x"yes"; then -+ for ac_func in _isnan -+do : -+ ac_fn_c_check_func "$LINENO" "_isnan" "ac_cv_func__isnan" -+if test "x$ac_cv_func__isnan" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNAN 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finite declaration" >&5 -+$as_echo_n "checking for finite declaration... " >&6; } -+ if test x${glibcxx_cv_func_finite_use+set} != xset; then -+ if ${glibcxx_cv_func_finite_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finite(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finite_use=yes -+else -+ glibcxx_cv_func_finite_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finite_use" >&5 -+$as_echo "$glibcxx_cv_func_finite_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finite_use = x"yes"; then -+ for ac_func in finite -+do : -+ ac_fn_c_check_func "$LINENO" "finite" "ac_cv_func_finite" -+if test "x$ac_cv_func_finite" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITE 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finite declaration" >&5 -+$as_echo_n "checking for _finite declaration... " >&6; } -+ if test x${glibcxx_cv_func__finite_use+set} != xset; then -+ if ${glibcxx_cv_func__finite_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finite(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finite_use=yes -+else -+ glibcxx_cv_func__finite_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finite_use" >&5 -+$as_echo "$glibcxx_cv_func__finite_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finite_use = x"yes"; then -+ for ac_func in _finite -+do : -+ ac_fn_c_check_func "$LINENO" "_finite" "ac_cv_func__finite" -+if test "x$ac_cv_func__finite" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITE 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincos declaration" >&5 -+$as_echo_n "checking for sincos declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincos_use+set} != xset; then -+ if ${glibcxx_cv_func_sincos_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincos(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincos_use=yes -+else -+ glibcxx_cv_func_sincos_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincos_use" >&5 -+$as_echo "$glibcxx_cv_func_sincos_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincos_use = x"yes"; then -+ for ac_func in sincos -+do : -+ ac_fn_c_check_func "$LINENO" "sincos" "ac_cv_func_sincos" -+if test "x$ac_cv_func_sincos" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincos declaration" >&5 -+$as_echo_n "checking for _sincos declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincos_use+set} != xset; then -+ if ${glibcxx_cv_func__sincos_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincos(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincos_use=yes -+else -+ glibcxx_cv_func__sincos_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincos_use" >&5 -+$as_echo "$glibcxx_cv_func__sincos_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincos_use = x"yes"; then -+ for ac_func in _sincos -+do : -+ ac_fn_c_check_func "$LINENO" "_sincos" "ac_cv_func__sincos" -+if test "x$ac_cv_func__sincos" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fpclass declaration" >&5 -+$as_echo_n "checking for fpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func_fpclass_use+set} != xset; then -+ if ${glibcxx_cv_func_fpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fpclass_use=yes -+else -+ glibcxx_cv_func_fpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fpclass_use" >&5 -+$as_echo "$glibcxx_cv_func_fpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fpclass_use = x"yes"; then -+ for ac_func in fpclass -+do : -+ ac_fn_c_check_func "$LINENO" "fpclass" "ac_cv_func_fpclass" -+if test "x$ac_cv_func_fpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fpclass declaration" >&5 -+$as_echo_n "checking for _fpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func__fpclass_use+set} != xset; then -+ if ${glibcxx_cv_func__fpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fpclass_use=yes -+else -+ glibcxx_cv_func__fpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fpclass_use" >&5 -+$as_echo "$glibcxx_cv_func__fpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fpclass_use = x"yes"; then -+ for ac_func in _fpclass -+do : -+ ac_fn_c_check_func "$LINENO" "_fpclass" "ac_cv_func__fpclass" -+if test "x$ac_cv_func__fpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for qfpclass declaration" >&5 -+$as_echo_n "checking for qfpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func_qfpclass_use+set} != xset; then -+ if ${glibcxx_cv_func_qfpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ qfpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_qfpclass_use=yes -+else -+ glibcxx_cv_func_qfpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_qfpclass_use" >&5 -+$as_echo "$glibcxx_cv_func_qfpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func_qfpclass_use = x"yes"; then -+ for ac_func in qfpclass -+do : -+ ac_fn_c_check_func "$LINENO" "qfpclass" "ac_cv_func_qfpclass" -+if test "x$ac_cv_func_qfpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_QFPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _qfpclass declaration" >&5 -+$as_echo_n "checking for _qfpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func__qfpclass_use+set} != xset; then -+ if ${glibcxx_cv_func__qfpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _qfpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__qfpclass_use=yes -+else -+ glibcxx_cv_func__qfpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__qfpclass_use" >&5 -+$as_echo "$glibcxx_cv_func__qfpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func__qfpclass_use = x"yes"; then -+ for ac_func in _qfpclass -+do : -+ ac_fn_c_check_func "$LINENO" "_qfpclass" "ac_cv_func__qfpclass" -+if test "x$ac_cv_func__qfpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__QFPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypot declaration" >&5 -+$as_echo_n "checking for hypot declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypot_use+set} != xset; then -+ if ${glibcxx_cv_func_hypot_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypot(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypot_use=yes -+else -+ glibcxx_cv_func_hypot_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypot_use" >&5 -+$as_echo "$glibcxx_cv_func_hypot_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypot_use = x"yes"; then -+ for ac_func in hypot -+do : -+ ac_fn_c_check_func "$LINENO" "hypot" "ac_cv_func_hypot" -+if test "x$ac_cv_func_hypot" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOT 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypot declaration" >&5 -+$as_echo_n "checking for _hypot declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypot_use+set} != xset; then -+ if ${glibcxx_cv_func__hypot_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypot(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypot_use=yes -+else -+ glibcxx_cv_func__hypot_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypot_use" >&5 -+$as_echo "$glibcxx_cv_func__hypot_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypot_use = x"yes"; then -+ for ac_func in _hypot -+do : -+ ac_fn_c_check_func "$LINENO" "_hypot" "ac_cv_func__hypot" -+if test "x$ac_cv_func__hypot" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for float trig functions" >&5 -+$as_echo_n "checking for float trig functions... " >&6; } -+ if ${glibcxx_cv_func_float_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+acosf (0); asinf (0); atanf (0); cosf (0); sinf (0); tanf (0); coshf (0); sinhf (0); tanhf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_float_trig_use=yes -+else -+ glibcxx_cv_func_float_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_float_trig_use" >&5 -+$as_echo "$glibcxx_cv_func_float_trig_use" >&6; } -+ if test x$glibcxx_cv_func_float_trig_use = x"yes"; then -+ for ac_func in acosf asinf atanf cosf sinf tanf coshf sinhf tanhf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float trig functions" >&5 -+$as_echo_n "checking for _float trig functions... " >&6; } -+ if ${glibcxx_cv_func__float_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_acosf (0); _asinf (0); _atanf (0); _cosf (0); _sinf (0); _tanf (0); _coshf (0); _sinhf (0); _tanhf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__float_trig_use=yes -+else -+ glibcxx_cv_func__float_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__float_trig_use" >&5 -+$as_echo "$glibcxx_cv_func__float_trig_use" >&6; } -+ if test x$glibcxx_cv_func__float_trig_use = x"yes"; then -+ for ac_func in _acosf _asinf _atanf _cosf _sinf _tanf _coshf _sinhf _tanhf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for float round functions" >&5 -+$as_echo_n "checking for float round functions... " >&6; } -+ if ${glibcxx_cv_func_float_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ceilf (0); floorf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_float_round_use=yes -+else -+ glibcxx_cv_func_float_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_float_round_use" >&5 -+$as_echo "$glibcxx_cv_func_float_round_use" >&6; } -+ if test x$glibcxx_cv_func_float_round_use = x"yes"; then -+ for ac_func in ceilf floorf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float round functions" >&5 -+$as_echo_n "checking for _float round functions... " >&6; } -+ if ${glibcxx_cv_func__float_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_ceilf (0); _floorf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__float_round_use=yes -+else -+ glibcxx_cv_func__float_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__float_round_use" >&5 -+$as_echo "$glibcxx_cv_func__float_round_use" >&6; } -+ if test x$glibcxx_cv_func__float_round_use = x"yes"; then -+ for ac_func in _ceilf _floorf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for expf declaration" >&5 -+$as_echo_n "checking for expf declaration... " >&6; } -+ if test x${glibcxx_cv_func_expf_use+set} != xset; then -+ if ${glibcxx_cv_func_expf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ expf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_expf_use=yes -+else -+ glibcxx_cv_func_expf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_expf_use" >&5 -+$as_echo "$glibcxx_cv_func_expf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_expf_use = x"yes"; then -+ for ac_func in expf -+do : -+ ac_fn_c_check_func "$LINENO" "expf" "ac_cv_func_expf" -+if test "x$ac_cv_func_expf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_EXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expf declaration" >&5 -+$as_echo_n "checking for _expf declaration... " >&6; } -+ if test x${glibcxx_cv_func__expf_use+set} != xset; then -+ if ${glibcxx_cv_func__expf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _expf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__expf_use=yes -+else -+ glibcxx_cv_func__expf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__expf_use" >&5 -+$as_echo "$glibcxx_cv_func__expf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__expf_use = x"yes"; then -+ for ac_func in _expf -+do : -+ ac_fn_c_check_func "$LINENO" "_expf" "ac_cv_func__expf" -+if test "x$ac_cv_func__expf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__EXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanf declaration" >&5 -+$as_echo_n "checking for isnanf declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnanf_use+set} != xset; then -+ if ${glibcxx_cv_func_isnanf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnanf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnanf_use=yes -+else -+ glibcxx_cv_func_isnanf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnanf_use" >&5 -+$as_echo "$glibcxx_cv_func_isnanf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnanf_use = x"yes"; then -+ for ac_func in isnanf -+do : -+ ac_fn_c_check_func "$LINENO" "isnanf" "ac_cv_func_isnanf" -+if test "x$ac_cv_func_isnanf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNANF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanf declaration" >&5 -+$as_echo_n "checking for _isnanf declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnanf_use+set} != xset; then -+ if ${glibcxx_cv_func__isnanf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnanf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnanf_use=yes -+else -+ glibcxx_cv_func__isnanf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnanf_use" >&5 -+$as_echo "$glibcxx_cv_func__isnanf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnanf_use = x"yes"; then -+ for ac_func in _isnanf -+do : -+ ac_fn_c_check_func "$LINENO" "_isnanf" "ac_cv_func__isnanf" -+if test "x$ac_cv_func__isnanf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNANF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinff declaration" >&5 -+$as_echo_n "checking for isinff declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinff_use+set} != xset; then -+ if ${glibcxx_cv_func_isinff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinff(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinff_use=yes -+else -+ glibcxx_cv_func_isinff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinff_use" >&5 -+$as_echo "$glibcxx_cv_func_isinff_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinff_use = x"yes"; then -+ for ac_func in isinff -+do : -+ ac_fn_c_check_func "$LINENO" "isinff" "ac_cv_func_isinff" -+if test "x$ac_cv_func_isinff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINFF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinff declaration" >&5 -+$as_echo_n "checking for _isinff declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinff_use+set} != xset; then -+ if ${glibcxx_cv_func__isinff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinff(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinff_use=yes -+else -+ glibcxx_cv_func__isinff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinff_use" >&5 -+$as_echo "$glibcxx_cv_func__isinff_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinff_use = x"yes"; then -+ for ac_func in _isinff -+do : -+ ac_fn_c_check_func "$LINENO" "_isinff" "ac_cv_func__isinff" -+if test "x$ac_cv_func__isinff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINFF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2f declaration" >&5 -+$as_echo_n "checking for atan2f declaration... " >&6; } -+ if test x${glibcxx_cv_func_atan2f_use+set} != xset; then -+ if ${glibcxx_cv_func_atan2f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ atan2f(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atan2f_use=yes -+else -+ glibcxx_cv_func_atan2f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atan2f_use" >&5 -+$as_echo "$glibcxx_cv_func_atan2f_use" >&6; } -+ -+ if test x$glibcxx_cv_func_atan2f_use = x"yes"; then -+ for ac_func in atan2f -+do : -+ ac_fn_c_check_func "$LINENO" "atan2f" "ac_cv_func_atan2f" -+if test "x$ac_cv_func_atan2f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATAN2F 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2f declaration" >&5 -+$as_echo_n "checking for _atan2f declaration... " >&6; } -+ if test x${glibcxx_cv_func__atan2f_use+set} != xset; then -+ if ${glibcxx_cv_func__atan2f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _atan2f(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__atan2f_use=yes -+else -+ glibcxx_cv_func__atan2f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__atan2f_use" >&5 -+$as_echo "$glibcxx_cv_func__atan2f_use" >&6; } -+ -+ if test x$glibcxx_cv_func__atan2f_use = x"yes"; then -+ for ac_func in _atan2f -+do : -+ ac_fn_c_check_func "$LINENO" "_atan2f" "ac_cv_func__atan2f" -+if test "x$ac_cv_func__atan2f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ATAN2F 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsf declaration" >&5 -+$as_echo_n "checking for fabsf declaration... " >&6; } -+ if test x${glibcxx_cv_func_fabsf_use+set} != xset; then -+ if ${glibcxx_cv_func_fabsf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fabsf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fabsf_use=yes -+else -+ glibcxx_cv_func_fabsf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fabsf_use" >&5 -+$as_echo "$glibcxx_cv_func_fabsf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fabsf_use = x"yes"; then -+ for ac_func in fabsf -+do : -+ ac_fn_c_check_func "$LINENO" "fabsf" "ac_cv_func_fabsf" -+if test "x$ac_cv_func_fabsf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FABSF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsf declaration" >&5 -+$as_echo_n "checking for _fabsf declaration... " >&6; } -+ if test x${glibcxx_cv_func__fabsf_use+set} != xset; then -+ if ${glibcxx_cv_func__fabsf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fabsf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fabsf_use=yes -+else -+ glibcxx_cv_func__fabsf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fabsf_use" >&5 -+$as_echo "$glibcxx_cv_func__fabsf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fabsf_use = x"yes"; then -+ for ac_func in _fabsf -+do : -+ ac_fn_c_check_func "$LINENO" "_fabsf" "ac_cv_func__fabsf" -+if test "x$ac_cv_func__fabsf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FABSF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodf declaration" >&5 -+$as_echo_n "checking for fmodf declaration... " >&6; } -+ if test x${glibcxx_cv_func_fmodf_use+set} != xset; then -+ if ${glibcxx_cv_func_fmodf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ fmodf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fmodf_use=yes -+else -+ glibcxx_cv_func_fmodf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fmodf_use" >&5 -+$as_echo "$glibcxx_cv_func_fmodf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fmodf_use = x"yes"; then -+ for ac_func in fmodf -+do : -+ ac_fn_c_check_func "$LINENO" "fmodf" "ac_cv_func_fmodf" -+if test "x$ac_cv_func_fmodf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FMODF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodf declaration" >&5 -+$as_echo_n "checking for _fmodf declaration... " >&6; } -+ if test x${glibcxx_cv_func__fmodf_use+set} != xset; then -+ if ${glibcxx_cv_func__fmodf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _fmodf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fmodf_use=yes -+else -+ glibcxx_cv_func__fmodf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fmodf_use" >&5 -+$as_echo "$glibcxx_cv_func__fmodf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fmodf_use = x"yes"; then -+ for ac_func in _fmodf -+do : -+ ac_fn_c_check_func "$LINENO" "_fmodf" "ac_cv_func__fmodf" -+if test "x$ac_cv_func__fmodf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FMODF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpf declaration" >&5 -+$as_echo_n "checking for frexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func_frexpf_use+set} != xset; then -+ if ${glibcxx_cv_func_frexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ frexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpf_use=yes -+else -+ glibcxx_cv_func_frexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_frexpf_use = x"yes"; then -+ for ac_func in frexpf -+do : -+ ac_fn_c_check_func "$LINENO" "frexpf" "ac_cv_func_frexpf" -+if test "x$ac_cv_func_frexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpf declaration" >&5 -+$as_echo_n "checking for _frexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func__frexpf_use+set} != xset; then -+ if ${glibcxx_cv_func__frexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _frexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__frexpf_use=yes -+else -+ glibcxx_cv_func__frexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__frexpf_use" >&5 -+$as_echo "$glibcxx_cv_func__frexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__frexpf_use = x"yes"; then -+ for ac_func in _frexpf -+do : -+ ac_fn_c_check_func "$LINENO" "_frexpf" "ac_cv_func__frexpf" -+if test "x$ac_cv_func__frexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FREXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotf declaration" >&5 -+$as_echo_n "checking for hypotf declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypotf_use+set} != xset; then -+ if ${glibcxx_cv_func_hypotf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypotf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotf_use=yes -+else -+ glibcxx_cv_func_hypotf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotf_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypotf_use = x"yes"; then -+ for ac_func in hypotf -+do : -+ ac_fn_c_check_func "$LINENO" "hypotf" "ac_cv_func_hypotf" -+if test "x$ac_cv_func_hypotf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotf declaration" >&5 -+$as_echo_n "checking for _hypotf declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypotf_use+set} != xset; then -+ if ${glibcxx_cv_func__hypotf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypotf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypotf_use=yes -+else -+ glibcxx_cv_func__hypotf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypotf_use" >&5 -+$as_echo "$glibcxx_cv_func__hypotf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypotf_use = x"yes"; then -+ for ac_func in _hypotf -+do : -+ ac_fn_c_check_func "$LINENO" "_hypotf" "ac_cv_func__hypotf" -+if test "x$ac_cv_func__hypotf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOTF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpf declaration" >&5 -+$as_echo_n "checking for ldexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func_ldexpf_use+set} != xset; then -+ if ${glibcxx_cv_func_ldexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ ldexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpf_use=yes -+else -+ glibcxx_cv_func_ldexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_ldexpf_use = x"yes"; then -+ for ac_func in ldexpf -+do : -+ ac_fn_c_check_func "$LINENO" "ldexpf" "ac_cv_func_ldexpf" -+if test "x$ac_cv_func_ldexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpf declaration" >&5 -+$as_echo_n "checking for _ldexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func__ldexpf_use+set} != xset; then -+ if ${glibcxx_cv_func__ldexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _ldexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__ldexpf_use=yes -+else -+ glibcxx_cv_func__ldexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__ldexpf_use" >&5 -+$as_echo "$glibcxx_cv_func__ldexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__ldexpf_use = x"yes"; then -+ for ac_func in _ldexpf -+do : -+ ac_fn_c_check_func "$LINENO" "_ldexpf" "ac_cv_func__ldexpf" -+if test "x$ac_cv_func__ldexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LDEXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for logf declaration" >&5 -+$as_echo_n "checking for logf declaration... " >&6; } -+ if test x${glibcxx_cv_func_logf_use+set} != xset; then -+ if ${glibcxx_cv_func_logf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ logf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_logf_use=yes -+else -+ glibcxx_cv_func_logf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_logf_use" >&5 -+$as_echo "$glibcxx_cv_func_logf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_logf_use = x"yes"; then -+ for ac_func in logf -+do : -+ ac_fn_c_check_func "$LINENO" "logf" "ac_cv_func_logf" -+if test "x$ac_cv_func_logf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOGF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logf declaration" >&5 -+$as_echo_n "checking for _logf declaration... " >&6; } -+ if test x${glibcxx_cv_func__logf_use+set} != xset; then -+ if ${glibcxx_cv_func__logf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _logf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__logf_use=yes -+else -+ glibcxx_cv_func__logf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__logf_use" >&5 -+$as_echo "$glibcxx_cv_func__logf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__logf_use = x"yes"; then -+ for ac_func in _logf -+do : -+ ac_fn_c_check_func "$LINENO" "_logf" "ac_cv_func__logf" -+if test "x$ac_cv_func__logf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOGF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10f declaration" >&5 -+$as_echo_n "checking for log10f declaration... " >&6; } -+ if test x${glibcxx_cv_func_log10f_use+set} != xset; then -+ if ${glibcxx_cv_func_log10f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ log10f(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_log10f_use=yes -+else -+ glibcxx_cv_func_log10f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_log10f_use" >&5 -+$as_echo "$glibcxx_cv_func_log10f_use" >&6; } -+ -+ if test x$glibcxx_cv_func_log10f_use = x"yes"; then -+ for ac_func in log10f -+do : -+ ac_fn_c_check_func "$LINENO" "log10f" "ac_cv_func_log10f" -+if test "x$ac_cv_func_log10f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOG10F 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10f declaration" >&5 -+$as_echo_n "checking for _log10f declaration... " >&6; } -+ if test x${glibcxx_cv_func__log10f_use+set} != xset; then -+ if ${glibcxx_cv_func__log10f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _log10f(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__log10f_use=yes -+else -+ glibcxx_cv_func__log10f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__log10f_use" >&5 -+$as_echo "$glibcxx_cv_func__log10f_use" >&6; } -+ -+ if test x$glibcxx_cv_func__log10f_use = x"yes"; then -+ for ac_func in _log10f -+do : -+ ac_fn_c_check_func "$LINENO" "_log10f" "ac_cv_func__log10f" -+if test "x$ac_cv_func__log10f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOG10F 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modff declaration" >&5 -+$as_echo_n "checking for modff declaration... " >&6; } -+ if test x${glibcxx_cv_func_modff_use+set} != xset; then -+ if ${glibcxx_cv_func_modff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modff(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modff_use=yes -+else -+ glibcxx_cv_func_modff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modff_use" >&5 -+$as_echo "$glibcxx_cv_func_modff_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modff_use = x"yes"; then -+ for ac_func in modff -+do : -+ ac_fn_c_check_func "$LINENO" "modff" "ac_cv_func_modff" -+if test "x$ac_cv_func_modff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modff declaration" >&5 -+$as_echo_n "checking for _modff declaration... " >&6; } -+ if test x${glibcxx_cv_func__modff_use+set} != xset; then -+ if ${glibcxx_cv_func__modff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modff(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modff_use=yes -+else -+ glibcxx_cv_func__modff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modff_use" >&5 -+$as_echo "$glibcxx_cv_func__modff_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modff_use = x"yes"; then -+ for ac_func in _modff -+do : -+ ac_fn_c_check_func "$LINENO" "_modff" "ac_cv_func__modff" -+if test "x$ac_cv_func__modff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODFF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modf declaration" >&5 -+$as_echo_n "checking for modf declaration... " >&6; } -+ if test x${glibcxx_cv_func_modf_use+set} != xset; then -+ if ${glibcxx_cv_func_modf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modf_use=yes -+else -+ glibcxx_cv_func_modf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modf_use" >&5 -+$as_echo "$glibcxx_cv_func_modf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modf_use = x"yes"; then -+ for ac_func in modf -+do : -+ ac_fn_c_check_func "$LINENO" "modf" "ac_cv_func_modf" -+if test "x$ac_cv_func_modf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modf declaration" >&5 -+$as_echo_n "checking for _modf declaration... " >&6; } -+ if test x${glibcxx_cv_func__modf_use+set} != xset; then -+ if ${glibcxx_cv_func__modf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modf_use=yes -+else -+ glibcxx_cv_func__modf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modf_use" >&5 -+$as_echo "$glibcxx_cv_func__modf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modf_use = x"yes"; then -+ for ac_func in _modf -+do : -+ ac_fn_c_check_func "$LINENO" "_modf" "ac_cv_func__modf" -+if test "x$ac_cv_func__modf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for powf declaration" >&5 -+$as_echo_n "checking for powf declaration... " >&6; } -+ if test x${glibcxx_cv_func_powf_use+set} != xset; then -+ if ${glibcxx_cv_func_powf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ powf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_powf_use=yes -+else -+ glibcxx_cv_func_powf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_powf_use" >&5 -+$as_echo "$glibcxx_cv_func_powf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_powf_use = x"yes"; then -+ for ac_func in powf -+do : -+ ac_fn_c_check_func "$LINENO" "powf" "ac_cv_func_powf" -+if test "x$ac_cv_func_powf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_POWF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powf declaration" >&5 -+$as_echo_n "checking for _powf declaration... " >&6; } -+ if test x${glibcxx_cv_func__powf_use+set} != xset; then -+ if ${glibcxx_cv_func__powf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _powf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__powf_use=yes -+else -+ glibcxx_cv_func__powf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__powf_use" >&5 -+$as_echo "$glibcxx_cv_func__powf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__powf_use = x"yes"; then -+ for ac_func in _powf -+do : -+ ac_fn_c_check_func "$LINENO" "_powf" "ac_cv_func__powf" -+if test "x$ac_cv_func__powf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__POWF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtf declaration" >&5 -+$as_echo_n "checking for sqrtf declaration... " >&6; } -+ if test x${glibcxx_cv_func_sqrtf_use+set} != xset; then -+ if ${glibcxx_cv_func_sqrtf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ sqrtf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sqrtf_use=yes -+else -+ glibcxx_cv_func_sqrtf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sqrtf_use" >&5 -+$as_echo "$glibcxx_cv_func_sqrtf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sqrtf_use = x"yes"; then -+ for ac_func in sqrtf -+do : -+ ac_fn_c_check_func "$LINENO" "sqrtf" "ac_cv_func_sqrtf" -+if test "x$ac_cv_func_sqrtf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SQRTF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtf declaration" >&5 -+$as_echo_n "checking for _sqrtf declaration... " >&6; } -+ if test x${glibcxx_cv_func__sqrtf_use+set} != xset; then -+ if ${glibcxx_cv_func__sqrtf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _sqrtf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sqrtf_use=yes -+else -+ glibcxx_cv_func__sqrtf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sqrtf_use" >&5 -+$as_echo "$glibcxx_cv_func__sqrtf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sqrtf_use = x"yes"; then -+ for ac_func in _sqrtf -+do : -+ ac_fn_c_check_func "$LINENO" "_sqrtf" "ac_cv_func__sqrtf" -+if test "x$ac_cv_func__sqrtf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SQRTF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosf declaration" >&5 -+$as_echo_n "checking for sincosf declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincosf_use+set} != xset; then -+ if ${glibcxx_cv_func_sincosf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincosf(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincosf_use=yes -+else -+ glibcxx_cv_func_sincosf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincosf_use" >&5 -+$as_echo "$glibcxx_cv_func_sincosf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincosf_use = x"yes"; then -+ for ac_func in sincosf -+do : -+ ac_fn_c_check_func "$LINENO" "sincosf" "ac_cv_func_sincosf" -+if test "x$ac_cv_func_sincosf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOSF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosf declaration" >&5 -+$as_echo_n "checking for _sincosf declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincosf_use+set} != xset; then -+ if ${glibcxx_cv_func__sincosf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincosf(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincosf_use=yes -+else -+ glibcxx_cv_func__sincosf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincosf_use" >&5 -+$as_echo "$glibcxx_cv_func__sincosf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincosf_use = x"yes"; then -+ for ac_func in _sincosf -+do : -+ ac_fn_c_check_func "$LINENO" "_sincosf" "ac_cv_func__sincosf" -+if test "x$ac_cv_func__sincosf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOSF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitef declaration" >&5 -+$as_echo_n "checking for finitef declaration... " >&6; } -+ if test x${glibcxx_cv_func_finitef_use+set} != xset; then -+ if ${glibcxx_cv_func_finitef_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finitef(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finitef_use=yes -+else -+ glibcxx_cv_func_finitef_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finitef_use" >&5 -+$as_echo "$glibcxx_cv_func_finitef_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finitef_use = x"yes"; then -+ for ac_func in finitef -+do : -+ ac_fn_c_check_func "$LINENO" "finitef" "ac_cv_func_finitef" -+if test "x$ac_cv_func_finitef" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITEF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitef declaration" >&5 -+$as_echo_n "checking for _finitef declaration... " >&6; } -+ if test x${glibcxx_cv_func__finitef_use+set} != xset; then -+ if ${glibcxx_cv_func__finitef_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finitef(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finitef_use=yes -+else -+ glibcxx_cv_func__finitef_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finitef_use" >&5 -+$as_echo "$glibcxx_cv_func__finitef_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finitef_use = x"yes"; then -+ for ac_func in _finitef -+do : -+ ac_fn_c_check_func "$LINENO" "_finitef" "ac_cv_func__finitef" -+if test "x$ac_cv_func__finitef" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITEF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double trig functions" >&5 -+$as_echo_n "checking for long double trig functions... " >&6; } -+ if ${glibcxx_cv_func_long_double_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+acosl (0); asinl (0); atanl (0); cosl (0); sinl (0); tanl (0); coshl (0); sinhl (0); tanhl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_long_double_trig_use=yes -+else -+ glibcxx_cv_func_long_double_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_long_double_trig_use" >&5 -+$as_echo "$glibcxx_cv_func_long_double_trig_use" >&6; } -+ if test x$glibcxx_cv_func_long_double_trig_use = x"yes"; then -+ for ac_func in acosl asinl atanl cosl sinl tanl coshl sinhl tanhl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double trig functions" >&5 -+$as_echo_n "checking for _long double trig functions... " >&6; } -+ if ${glibcxx_cv_func__long_double_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_acosl (0); _asinl (0); _atanl (0); _cosl (0); _sinl (0); _tanl (0); _coshl (0); _sinhl (0); _tanhl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__long_double_trig_use=yes -+else -+ glibcxx_cv_func__long_double_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__long_double_trig_use" >&5 -+$as_echo "$glibcxx_cv_func__long_double_trig_use" >&6; } -+ if test x$glibcxx_cv_func__long_double_trig_use = x"yes"; then -+ for ac_func in _acosl _asinl _atanl _cosl _sinl _tanl _coshl _sinhl _tanhl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double round functions" >&5 -+$as_echo_n "checking for long double round functions... " >&6; } -+ if ${glibcxx_cv_func_long_double_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ceill (0); floorl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_long_double_round_use=yes -+else -+ glibcxx_cv_func_long_double_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_long_double_round_use" >&5 -+$as_echo "$glibcxx_cv_func_long_double_round_use" >&6; } -+ if test x$glibcxx_cv_func_long_double_round_use = x"yes"; then -+ for ac_func in ceill floorl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double round functions" >&5 -+$as_echo_n "checking for _long double round functions... " >&6; } -+ if ${glibcxx_cv_func__long_double_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_ceill (0); _floorl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__long_double_round_use=yes -+else -+ glibcxx_cv_func__long_double_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__long_double_round_use" >&5 -+$as_echo "$glibcxx_cv_func__long_double_round_use" >&6; } -+ if test x$glibcxx_cv_func__long_double_round_use = x"yes"; then -+ for ac_func in _ceill _floorl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanl declaration" >&5 -+$as_echo_n "checking for isnanl declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnanl_use+set} != xset; then -+ if ${glibcxx_cv_func_isnanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnanl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnanl_use=yes -+else -+ glibcxx_cv_func_isnanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnanl_use" >&5 -+$as_echo "$glibcxx_cv_func_isnanl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnanl_use = x"yes"; then -+ for ac_func in isnanl -+do : -+ ac_fn_c_check_func "$LINENO" "isnanl" "ac_cv_func_isnanl" -+if test "x$ac_cv_func_isnanl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNANL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanl declaration" >&5 -+$as_echo_n "checking for _isnanl declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnanl_use+set} != xset; then -+ if ${glibcxx_cv_func__isnanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnanl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnanl_use=yes -+else -+ glibcxx_cv_func__isnanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnanl_use" >&5 -+$as_echo "$glibcxx_cv_func__isnanl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnanl_use = x"yes"; then -+ for ac_func in _isnanl -+do : -+ ac_fn_c_check_func "$LINENO" "_isnanl" "ac_cv_func__isnanl" -+if test "x$ac_cv_func__isnanl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNANL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinfl declaration" >&5 -+$as_echo_n "checking for isinfl declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinfl_use+set} != xset; then -+ if ${glibcxx_cv_func_isinfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinfl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinfl_use=yes -+else -+ glibcxx_cv_func_isinfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinfl_use" >&5 -+$as_echo "$glibcxx_cv_func_isinfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinfl_use = x"yes"; then -+ for ac_func in isinfl -+do : -+ ac_fn_c_check_func "$LINENO" "isinfl" "ac_cv_func_isinfl" -+if test "x$ac_cv_func_isinfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINFL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinfl declaration" >&5 -+$as_echo_n "checking for _isinfl declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinfl_use+set} != xset; then -+ if ${glibcxx_cv_func__isinfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinfl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinfl_use=yes -+else -+ glibcxx_cv_func__isinfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinfl_use" >&5 -+$as_echo "$glibcxx_cv_func__isinfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinfl_use = x"yes"; then -+ for ac_func in _isinfl -+do : -+ ac_fn_c_check_func "$LINENO" "_isinfl" "ac_cv_func__isinfl" -+if test "x$ac_cv_func__isinfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINFL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2l declaration" >&5 -+$as_echo_n "checking for atan2l declaration... " >&6; } -+ if test x${glibcxx_cv_func_atan2l_use+set} != xset; then -+ if ${glibcxx_cv_func_atan2l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ atan2l(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atan2l_use=yes -+else -+ glibcxx_cv_func_atan2l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atan2l_use" >&5 -+$as_echo "$glibcxx_cv_func_atan2l_use" >&6; } -+ -+ if test x$glibcxx_cv_func_atan2l_use = x"yes"; then -+ for ac_func in atan2l -+do : -+ ac_fn_c_check_func "$LINENO" "atan2l" "ac_cv_func_atan2l" -+if test "x$ac_cv_func_atan2l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATAN2L 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2l declaration" >&5 -+$as_echo_n "checking for _atan2l declaration... " >&6; } -+ if test x${glibcxx_cv_func__atan2l_use+set} != xset; then -+ if ${glibcxx_cv_func__atan2l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _atan2l(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__atan2l_use=yes -+else -+ glibcxx_cv_func__atan2l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__atan2l_use" >&5 -+$as_echo "$glibcxx_cv_func__atan2l_use" >&6; } -+ -+ if test x$glibcxx_cv_func__atan2l_use = x"yes"; then -+ for ac_func in _atan2l -+do : -+ ac_fn_c_check_func "$LINENO" "_atan2l" "ac_cv_func__atan2l" -+if test "x$ac_cv_func__atan2l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ATAN2L 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for expl declaration" >&5 -+$as_echo_n "checking for expl declaration... " >&6; } -+ if test x${glibcxx_cv_func_expl_use+set} != xset; then -+ if ${glibcxx_cv_func_expl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ expl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_expl_use=yes -+else -+ glibcxx_cv_func_expl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_expl_use" >&5 -+$as_echo "$glibcxx_cv_func_expl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_expl_use = x"yes"; then -+ for ac_func in expl -+do : -+ ac_fn_c_check_func "$LINENO" "expl" "ac_cv_func_expl" -+if test "x$ac_cv_func_expl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_EXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expl declaration" >&5 -+$as_echo_n "checking for _expl declaration... " >&6; } -+ if test x${glibcxx_cv_func__expl_use+set} != xset; then -+ if ${glibcxx_cv_func__expl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _expl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__expl_use=yes -+else -+ glibcxx_cv_func__expl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__expl_use" >&5 -+$as_echo "$glibcxx_cv_func__expl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__expl_use = x"yes"; then -+ for ac_func in _expl -+do : -+ ac_fn_c_check_func "$LINENO" "_expl" "ac_cv_func__expl" -+if test "x$ac_cv_func__expl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__EXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsl declaration" >&5 -+$as_echo_n "checking for fabsl declaration... " >&6; } -+ if test x${glibcxx_cv_func_fabsl_use+set} != xset; then -+ if ${glibcxx_cv_func_fabsl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fabsl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fabsl_use=yes -+else -+ glibcxx_cv_func_fabsl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fabsl_use" >&5 -+$as_echo "$glibcxx_cv_func_fabsl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fabsl_use = x"yes"; then -+ for ac_func in fabsl -+do : -+ ac_fn_c_check_func "$LINENO" "fabsl" "ac_cv_func_fabsl" -+if test "x$ac_cv_func_fabsl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FABSL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsl declaration" >&5 -+$as_echo_n "checking for _fabsl declaration... " >&6; } -+ if test x${glibcxx_cv_func__fabsl_use+set} != xset; then -+ if ${glibcxx_cv_func__fabsl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fabsl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fabsl_use=yes -+else -+ glibcxx_cv_func__fabsl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fabsl_use" >&5 -+$as_echo "$glibcxx_cv_func__fabsl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fabsl_use = x"yes"; then -+ for ac_func in _fabsl -+do : -+ ac_fn_c_check_func "$LINENO" "_fabsl" "ac_cv_func__fabsl" -+if test "x$ac_cv_func__fabsl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FABSL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodl declaration" >&5 -+$as_echo_n "checking for fmodl declaration... " >&6; } -+ if test x${glibcxx_cv_func_fmodl_use+set} != xset; then -+ if ${glibcxx_cv_func_fmodl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ fmodl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fmodl_use=yes -+else -+ glibcxx_cv_func_fmodl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fmodl_use" >&5 -+$as_echo "$glibcxx_cv_func_fmodl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fmodl_use = x"yes"; then -+ for ac_func in fmodl -+do : -+ ac_fn_c_check_func "$LINENO" "fmodl" "ac_cv_func_fmodl" -+if test "x$ac_cv_func_fmodl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FMODL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodl declaration" >&5 -+$as_echo_n "checking for _fmodl declaration... " >&6; } -+ if test x${glibcxx_cv_func__fmodl_use+set} != xset; then -+ if ${glibcxx_cv_func__fmodl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _fmodl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fmodl_use=yes -+else -+ glibcxx_cv_func__fmodl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fmodl_use" >&5 -+$as_echo "$glibcxx_cv_func__fmodl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fmodl_use = x"yes"; then -+ for ac_func in _fmodl -+do : -+ ac_fn_c_check_func "$LINENO" "_fmodl" "ac_cv_func__fmodl" -+if test "x$ac_cv_func__fmodl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FMODL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpl declaration" >&5 -+$as_echo_n "checking for frexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func_frexpl_use+set} != xset; then -+ if ${glibcxx_cv_func_frexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ frexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpl_use=yes -+else -+ glibcxx_cv_func_frexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_frexpl_use = x"yes"; then -+ for ac_func in frexpl -+do : -+ ac_fn_c_check_func "$LINENO" "frexpl" "ac_cv_func_frexpl" -+if test "x$ac_cv_func_frexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpl declaration" >&5 -+$as_echo_n "checking for _frexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func__frexpl_use+set} != xset; then -+ if ${glibcxx_cv_func__frexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _frexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__frexpl_use=yes -+else -+ glibcxx_cv_func__frexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__frexpl_use" >&5 -+$as_echo "$glibcxx_cv_func__frexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__frexpl_use = x"yes"; then -+ for ac_func in _frexpl -+do : -+ ac_fn_c_check_func "$LINENO" "_frexpl" "ac_cv_func__frexpl" -+if test "x$ac_cv_func__frexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FREXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotl declaration" >&5 -+$as_echo_n "checking for hypotl declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypotl_use+set} != xset; then -+ if ${glibcxx_cv_func_hypotl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypotl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotl_use=yes -+else -+ glibcxx_cv_func_hypotl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotl_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypotl_use = x"yes"; then -+ for ac_func in hypotl -+do : -+ ac_fn_c_check_func "$LINENO" "hypotl" "ac_cv_func_hypotl" -+if test "x$ac_cv_func_hypotl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotl declaration" >&5 -+$as_echo_n "checking for _hypotl declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypotl_use+set} != xset; then -+ if ${glibcxx_cv_func__hypotl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypotl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypotl_use=yes -+else -+ glibcxx_cv_func__hypotl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypotl_use" >&5 -+$as_echo "$glibcxx_cv_func__hypotl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypotl_use = x"yes"; then -+ for ac_func in _hypotl -+do : -+ ac_fn_c_check_func "$LINENO" "_hypotl" "ac_cv_func__hypotl" -+if test "x$ac_cv_func__hypotl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOTL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpl declaration" >&5 -+$as_echo_n "checking for ldexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func_ldexpl_use+set} != xset; then -+ if ${glibcxx_cv_func_ldexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ ldexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpl_use=yes -+else -+ glibcxx_cv_func_ldexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_ldexpl_use = x"yes"; then -+ for ac_func in ldexpl -+do : -+ ac_fn_c_check_func "$LINENO" "ldexpl" "ac_cv_func_ldexpl" -+if test "x$ac_cv_func_ldexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpl declaration" >&5 -+$as_echo_n "checking for _ldexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func__ldexpl_use+set} != xset; then -+ if ${glibcxx_cv_func__ldexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _ldexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__ldexpl_use=yes -+else -+ glibcxx_cv_func__ldexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__ldexpl_use" >&5 -+$as_echo "$glibcxx_cv_func__ldexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__ldexpl_use = x"yes"; then -+ for ac_func in _ldexpl -+do : -+ ac_fn_c_check_func "$LINENO" "_ldexpl" "ac_cv_func__ldexpl" -+if test "x$ac_cv_func__ldexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LDEXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for logl declaration" >&5 -+$as_echo_n "checking for logl declaration... " >&6; } -+ if test x${glibcxx_cv_func_logl_use+set} != xset; then -+ if ${glibcxx_cv_func_logl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ logl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_logl_use=yes -+else -+ glibcxx_cv_func_logl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_logl_use" >&5 -+$as_echo "$glibcxx_cv_func_logl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_logl_use = x"yes"; then -+ for ac_func in logl -+do : -+ ac_fn_c_check_func "$LINENO" "logl" "ac_cv_func_logl" -+if test "x$ac_cv_func_logl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOGL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logl declaration" >&5 -+$as_echo_n "checking for _logl declaration... " >&6; } -+ if test x${glibcxx_cv_func__logl_use+set} != xset; then -+ if ${glibcxx_cv_func__logl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _logl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__logl_use=yes -+else -+ glibcxx_cv_func__logl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__logl_use" >&5 -+$as_echo "$glibcxx_cv_func__logl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__logl_use = x"yes"; then -+ for ac_func in _logl -+do : -+ ac_fn_c_check_func "$LINENO" "_logl" "ac_cv_func__logl" -+if test "x$ac_cv_func__logl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOGL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10l declaration" >&5 -+$as_echo_n "checking for log10l declaration... " >&6; } -+ if test x${glibcxx_cv_func_log10l_use+set} != xset; then -+ if ${glibcxx_cv_func_log10l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ log10l(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_log10l_use=yes -+else -+ glibcxx_cv_func_log10l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_log10l_use" >&5 -+$as_echo "$glibcxx_cv_func_log10l_use" >&6; } -+ -+ if test x$glibcxx_cv_func_log10l_use = x"yes"; then -+ for ac_func in log10l -+do : -+ ac_fn_c_check_func "$LINENO" "log10l" "ac_cv_func_log10l" -+if test "x$ac_cv_func_log10l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOG10L 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10l declaration" >&5 -+$as_echo_n "checking for _log10l declaration... " >&6; } -+ if test x${glibcxx_cv_func__log10l_use+set} != xset; then -+ if ${glibcxx_cv_func__log10l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _log10l(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__log10l_use=yes -+else -+ glibcxx_cv_func__log10l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__log10l_use" >&5 -+$as_echo "$glibcxx_cv_func__log10l_use" >&6; } -+ -+ if test x$glibcxx_cv_func__log10l_use = x"yes"; then -+ for ac_func in _log10l -+do : -+ ac_fn_c_check_func "$LINENO" "_log10l" "ac_cv_func__log10l" -+if test "x$ac_cv_func__log10l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOG10L 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modfl declaration" >&5 -+$as_echo_n "checking for modfl declaration... " >&6; } -+ if test x${glibcxx_cv_func_modfl_use+set} != xset; then -+ if ${glibcxx_cv_func_modfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modfl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modfl_use=yes -+else -+ glibcxx_cv_func_modfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modfl_use" >&5 -+$as_echo "$glibcxx_cv_func_modfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modfl_use = x"yes"; then -+ for ac_func in modfl -+do : -+ ac_fn_c_check_func "$LINENO" "modfl" "ac_cv_func_modfl" -+if test "x$ac_cv_func_modfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modfl declaration" >&5 -+$as_echo_n "checking for _modfl declaration... " >&6; } -+ if test x${glibcxx_cv_func__modfl_use+set} != xset; then -+ if ${glibcxx_cv_func__modfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modfl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modfl_use=yes -+else -+ glibcxx_cv_func__modfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modfl_use" >&5 -+$as_echo "$glibcxx_cv_func__modfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modfl_use = x"yes"; then -+ for ac_func in _modfl -+do : -+ ac_fn_c_check_func "$LINENO" "_modfl" "ac_cv_func__modfl" -+if test "x$ac_cv_func__modfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODFL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for powl declaration" >&5 -+$as_echo_n "checking for powl declaration... " >&6; } -+ if test x${glibcxx_cv_func_powl_use+set} != xset; then -+ if ${glibcxx_cv_func_powl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ powl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_powl_use=yes -+else -+ glibcxx_cv_func_powl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_powl_use" >&5 -+$as_echo "$glibcxx_cv_func_powl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_powl_use = x"yes"; then -+ for ac_func in powl -+do : -+ ac_fn_c_check_func "$LINENO" "powl" "ac_cv_func_powl" -+if test "x$ac_cv_func_powl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_POWL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powl declaration" >&5 -+$as_echo_n "checking for _powl declaration... " >&6; } -+ if test x${glibcxx_cv_func__powl_use+set} != xset; then -+ if ${glibcxx_cv_func__powl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _powl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__powl_use=yes -+else -+ glibcxx_cv_func__powl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__powl_use" >&5 -+$as_echo "$glibcxx_cv_func__powl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__powl_use = x"yes"; then -+ for ac_func in _powl -+do : -+ ac_fn_c_check_func "$LINENO" "_powl" "ac_cv_func__powl" -+if test "x$ac_cv_func__powl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__POWL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtl declaration" >&5 -+$as_echo_n "checking for sqrtl declaration... " >&6; } -+ if test x${glibcxx_cv_func_sqrtl_use+set} != xset; then -+ if ${glibcxx_cv_func_sqrtl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ sqrtl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sqrtl_use=yes -+else -+ glibcxx_cv_func_sqrtl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sqrtl_use" >&5 -+$as_echo "$glibcxx_cv_func_sqrtl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sqrtl_use = x"yes"; then -+ for ac_func in sqrtl -+do : -+ ac_fn_c_check_func "$LINENO" "sqrtl" "ac_cv_func_sqrtl" -+if test "x$ac_cv_func_sqrtl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SQRTL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtl declaration" >&5 -+$as_echo_n "checking for _sqrtl declaration... " >&6; } -+ if test x${glibcxx_cv_func__sqrtl_use+set} != xset; then -+ if ${glibcxx_cv_func__sqrtl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _sqrtl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sqrtl_use=yes -+else -+ glibcxx_cv_func__sqrtl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sqrtl_use" >&5 -+$as_echo "$glibcxx_cv_func__sqrtl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sqrtl_use = x"yes"; then -+ for ac_func in _sqrtl -+do : -+ ac_fn_c_check_func "$LINENO" "_sqrtl" "ac_cv_func__sqrtl" -+if test "x$ac_cv_func__sqrtl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SQRTL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosl declaration" >&5 -+$as_echo_n "checking for sincosl declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincosl_use+set} != xset; then -+ if ${glibcxx_cv_func_sincosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincosl(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincosl_use=yes -+else -+ glibcxx_cv_func_sincosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincosl_use" >&5 -+$as_echo "$glibcxx_cv_func_sincosl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincosl_use = x"yes"; then -+ for ac_func in sincosl -+do : -+ ac_fn_c_check_func "$LINENO" "sincosl" "ac_cv_func_sincosl" -+if test "x$ac_cv_func_sincosl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOSL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosl declaration" >&5 -+$as_echo_n "checking for _sincosl declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincosl_use+set} != xset; then -+ if ${glibcxx_cv_func__sincosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincosl(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincosl_use=yes -+else -+ glibcxx_cv_func__sincosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincosl_use" >&5 -+$as_echo "$glibcxx_cv_func__sincosl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincosl_use = x"yes"; then -+ for ac_func in _sincosl -+do : -+ ac_fn_c_check_func "$LINENO" "_sincosl" "ac_cv_func__sincosl" -+if test "x$ac_cv_func__sincosl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOSL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitel declaration" >&5 -+$as_echo_n "checking for finitel declaration... " >&6; } -+ if test x${glibcxx_cv_func_finitel_use+set} != xset; then -+ if ${glibcxx_cv_func_finitel_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finitel(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finitel_use=yes -+else -+ glibcxx_cv_func_finitel_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finitel_use" >&5 -+$as_echo "$glibcxx_cv_func_finitel_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finitel_use = x"yes"; then -+ for ac_func in finitel -+do : -+ ac_fn_c_check_func "$LINENO" "finitel" "ac_cv_func_finitel" -+if test "x$ac_cv_func_finitel" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITEL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitel declaration" >&5 -+$as_echo_n "checking for _finitel declaration... " >&6; } -+ if test x${glibcxx_cv_func__finitel_use+set} != xset; then -+ if ${glibcxx_cv_func__finitel_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finitel(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finitel_use=yes -+else -+ glibcxx_cv_func__finitel_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finitel_use" >&5 -+$as_echo "$glibcxx_cv_func__finitel_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finitel_use = x"yes"; then -+ for ac_func in _finitel -+do : -+ ac_fn_c_check_func "$LINENO" "_finitel" "ac_cv_func__finitel" -+if test "x$ac_cv_func__finitel" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITEL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ LIBS="$ac_save_LIBS" -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS='-fno-builtin -D_GNU_SOURCE' -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for at_quick_exit declaration" >&5 -+$as_echo_n "checking for at_quick_exit declaration... " >&6; } -+ if test x${glibcxx_cv_func_at_quick_exit_use+set} != xset; then -+ if ${glibcxx_cv_func_at_quick_exit_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ at_quick_exit(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_at_quick_exit_use=yes -+else -+ glibcxx_cv_func_at_quick_exit_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_at_quick_exit_use" >&5 -+$as_echo "$glibcxx_cv_func_at_quick_exit_use" >&6; } -+ if test x$glibcxx_cv_func_at_quick_exit_use = x"yes"; then -+ for ac_func in at_quick_exit -+do : -+ ac_fn_c_check_func "$LINENO" "at_quick_exit" "ac_cv_func_at_quick_exit" -+if test "x$ac_cv_func_at_quick_exit" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_AT_QUICK_EXIT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for quick_exit declaration" >&5 -+$as_echo_n "checking for quick_exit declaration... " >&6; } -+ if test x${glibcxx_cv_func_quick_exit_use+set} != xset; then -+ if ${glibcxx_cv_func_quick_exit_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ quick_exit(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_quick_exit_use=yes -+else -+ glibcxx_cv_func_quick_exit_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_quick_exit_use" >&5 -+$as_echo "$glibcxx_cv_func_quick_exit_use" >&6; } -+ if test x$glibcxx_cv_func_quick_exit_use = x"yes"; then -+ for ac_func in quick_exit -+do : -+ ac_fn_c_check_func "$LINENO" "quick_exit" "ac_cv_func_quick_exit" -+if test "x$ac_cv_func_quick_exit" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_QUICK_EXIT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtold declaration" >&5 -+$as_echo_n "checking for strtold declaration... " >&6; } -+ if test x${glibcxx_cv_func_strtold_use+set} != xset; then -+ if ${glibcxx_cv_func_strtold_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ strtold(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_strtold_use=yes -+else -+ glibcxx_cv_func_strtold_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_strtold_use" >&5 -+$as_echo "$glibcxx_cv_func_strtold_use" >&6; } -+ if test x$glibcxx_cv_func_strtold_use = x"yes"; then -+ for ac_func in strtold -+do : -+ ac_fn_c_check_func "$LINENO" "strtold" "ac_cv_func_strtold" -+if test "x$ac_cv_func_strtold" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STRTOLD 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtof declaration" >&5 -+$as_echo_n "checking for strtof declaration... " >&6; } -+ if test x${glibcxx_cv_func_strtof_use+set} != xset; then -+ if ${glibcxx_cv_func_strtof_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ strtof(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_strtof_use=yes -+else -+ glibcxx_cv_func_strtof_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_strtof_use" >&5 -+$as_echo "$glibcxx_cv_func_strtof_use" >&6; } -+ if test x$glibcxx_cv_func_strtof_use = x"yes"; then -+ for ac_func in strtof -+do : -+ ac_fn_c_check_func "$LINENO" "strtof" "ac_cv_func_strtof" -+if test "x$ac_cv_func_strtof" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STRTOF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ -+ -+ for ac_func in uselocale -+do : -+ ac_fn_c_check_func "$LINENO" "uselocale" "ac_cv_func_uselocale" -+if test "x$ac_cv_func_uselocale" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_USELOCALE 1 -+_ACEOF -+ -+fi -+done -+ -+ ;; -+ -+ *djgpp) -+ # GLIBCXX_CHECK_MATH_SUPPORT -+ $as_echo "@%:@define HAVE_ISINF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISNAN 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FINITE 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINCOS 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_HYPOT 1" >>confdefs.h -+ -+ ;; -+ -+ *-freebsd*) -+ SECTION_FLAGS='-ffunction-sections -fdata-sections' -+ -+ -+ # If we're not using GNU ld, then there's no point in even trying these -+ # tests. Check for that first. We should have already tested for gld -+ # by now (in libtool), but require it now just to be safe... -+ test -z "$SECTION_LDFLAGS" && SECTION_LDFLAGS='' -+ test -z "$OPT_LDFLAGS" && OPT_LDFLAGS='' -+ -+ -+ -+ # The name set by libtool depends on the version of libtool. Shame on us -+ # for depending on an impl detail, but c'est la vie. Older versions used -+ # ac_cv_prog_gnu_ld, but now it's lt_cv_prog_gnu_ld, and is copied back on -+ # top of with_gnu_ld (which is also set by --with-gnu-ld, so that actually -+ # makes sense). We'll test with_gnu_ld everywhere else, so if that isn't -+ # set (hence we're using an older libtool), then set it. -+ if test x${with_gnu_ld+set} != xset; then -+ if test x${ac_cv_prog_gnu_ld+set} != xset; then -+ # We got through "ac_require(ac_prog_ld)" and still not set? Huh? -+ with_gnu_ld=no -+ else -+ with_gnu_ld=$ac_cv_prog_gnu_ld -+ fi -+ fi -+ -+ # Start by getting the version number. I think the libtool test already -+ # does some of this, but throws away the result. -+ glibcxx_ld_is_gold=no -+ glibcxx_ld_is_mold=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld version" >&5 -+$as_echo_n "checking for ld version... " >&6; } -+ -+ if $LD --version 2>/dev/null | grep 'GNU gold' >/dev/null 2>&1; then -+ glibcxx_ld_is_gold=yes -+ elif $LD --version 2>/dev/null | grep 'mold' >/dev/null 2>&1; then -+ glibcxx_ld_is_mold=yes -+ fi -+ ldver=`$LD --version 2>/dev/null | -+ sed -e 's/[. ][0-9]\{8\}$//;s/.* \([^ ]\{1,\}\)$/\1/; q'` -+ -+ glibcxx_gnu_ld_version=`echo $ldver | \ -+ $AWK -F. '{ if (NF<3) $3=0; print ($1*100+$2)*100+$3 }'` -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_gnu_ld_version" >&5 -+$as_echo "$glibcxx_gnu_ld_version" >&6; } -+ fi -+ -+ # Set --gc-sections. -+ glibcxx_have_gc_sections=no -+ if test "$glibcxx_ld_is_gold" = "yes" || test "$glibcxx_ld_is_mold" = "yes" ; then -+ if $LD --help 2>/dev/null | grep gc-sections >/dev/null 2>&1; then -+ glibcxx_have_gc_sections=yes -+ fi -+ else -+ glibcxx_gcsections_min_ld=21602 -+ if test x"$with_gnu_ld" = x"yes" && -+ test $glibcxx_gnu_ld_version -gt $glibcxx_gcsections_min_ld ; then -+ glibcxx_have_gc_sections=yes -+ fi -+ fi -+ if test "$glibcxx_have_gc_sections" = "yes"; then -+ # Sufficiently young GNU ld it is! Joy and bunny rabbits! -+ # NB: This flag only works reliably after 2.16.1. Configure tests -+ # for this are difficult, so hard wire a value that should work. -+ -+ ac_test_CFLAGS="${CFLAGS+set}" -+ ac_save_CFLAGS="$CFLAGS" -+ CFLAGS='-Wl,--gc-sections' -+ -+ # Check for -Wl,--gc-sections -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5 -+$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; } -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ int one(void) { return 1; } -+ int two(void) { return 2; } -+ -+int -+main () -+{ -+ two(); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_gcsections=yes -+else -+ ac_gcsections=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ if test "$ac_gcsections" = "yes"; then -+ rm -f conftest.c -+ touch conftest.c -+ if $CC -c conftest.c; then -+ if $LD --gc-sections -o conftest conftest.o 2>&1 | \ -+ grep "Warning: gc-sections option ignored" > /dev/null; then -+ ac_gcsections=no -+ fi -+ fi -+ rm -f conftest.c conftest.o conftest -+ fi -+ if test "$ac_gcsections" = "yes"; then -+ SECTION_LDFLAGS="-Wl,--gc-sections $SECTION_LDFLAGS" -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_gcsections" >&5 -+$as_echo "$ac_gcsections" >&6; } -+ -+ if test "$ac_test_CFLAGS" = set; then -+ CFLAGS="$ac_save_CFLAGS" -+ else -+ # this is the suspicious part -+ CFLAGS='' -+ fi -+ fi -+ -+ # Set -z,relro. -+ # Note this is only for shared objects. -+ ac_ld_relro=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ # cygwin and mingw uses PE, which has no ELF relro support, -+ # multi target ld may confuse configure machinery -+ case "$host" in -+ *-*-cygwin*) -+ ;; -+ *-*-mingw*) -+ ;; -+ *) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,-z,relro" >&5 -+$as_echo_n "checking for ld that supports -Wl,-z,relro... " >&6; } -+ cxx_z_relo=`$LD -v --help 2>/dev/null | grep "z relro"` -+ if test -n "$cxx_z_relo"; then -+ OPT_LDFLAGS="-Wl,-z,relro" -+ ac_ld_relro=yes -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ld_relro" >&5 -+$as_echo "$ac_ld_relro" >&6; } -+ esac -+ fi -+ -+ # Set linker optimization flags. -+ if test x"$with_gnu_ld" = x"yes"; then -+ OPT_LDFLAGS="-Wl,-O1 $OPT_LDFLAGS" -+ fi -+ -+ -+ -+ -+ $as_echo "@%:@define HAVE_SETENV 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FINITEF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FINITE 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FREXPF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_HYPOT 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_HYPOTF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISINF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISNAN 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISNANF 1" >>confdefs.h -+ -+ -+ $as_echo "@%:@define HAVE_ACOSF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ASINF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ATAN2F 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ATANF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_CEILF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_COSF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_COSHF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_EXPF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FABSF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FLOORF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FMODF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FREXPF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LDEXPF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LOG10F 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LOGF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_MODFF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_POWF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINHF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SQRTF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_TANF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_TANHF 1" >>confdefs.h -+ -+ if test x"long_double_math_on_this_cpu" = x"yes"; then -+ $as_echo "@%:@define HAVE_FINITEL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISINFL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISNANL 1" >>confdefs.h -+ -+ fi -+ for ac_func in __cxa_thread_atexit -+do : -+ ac_fn_c_check_func "$LINENO" "__cxa_thread_atexit" "ac_cv_func___cxa_thread_atexit" -+if test "x$ac_cv_func___cxa_thread_atexit" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE___CXA_THREAD_ATEXIT 1 -+_ACEOF -+ -+fi -+done -+ -+ for ac_func in aligned_alloc posix_memalign memalign _aligned_malloc -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ for ac_func in timespec_get -+do : -+ ac_fn_c_check_func "$LINENO" "timespec_get" "ac_cv_func_timespec_get" -+if test "x$ac_cv_func_timespec_get" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_TIMESPEC_GET 1 -+_ACEOF -+ -+fi -+done -+ -+ for ac_func in sockatmark -+do : -+ ac_fn_c_check_func "$LINENO" "sockatmark" "ac_cv_func_sockatmark" -+if test "x$ac_cv_func_sockatmark" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SOCKATMARK 1 -+_ACEOF -+ -+fi -+done -+ -+ for ac_func in uselocale -+do : -+ ac_fn_c_check_func "$LINENO" "uselocale" "ac_cv_func_uselocale" -+if test "x$ac_cv_func_uselocale" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_USELOCALE 1 -+_ACEOF -+ -+fi -+done -+ -+ ;; -+ -+ *-fuchsia*) -+ SECTION_FLAGS='-ffunction-sections -fdata-sections' -+ -+ ;; -+ -+ *-hpux*) -+ SECTION_FLAGS='-ffunction-sections -fdata-sections' -+ -+ -+ # If we're not using GNU ld, then there's no point in even trying these -+ # tests. Check for that first. We should have already tested for gld -+ # by now (in libtool), but require it now just to be safe... -+ test -z "$SECTION_LDFLAGS" && SECTION_LDFLAGS='' -+ test -z "$OPT_LDFLAGS" && OPT_LDFLAGS='' -+ -+ -+ -+ # The name set by libtool depends on the version of libtool. Shame on us -+ # for depending on an impl detail, but c'est la vie. Older versions used -+ # ac_cv_prog_gnu_ld, but now it's lt_cv_prog_gnu_ld, and is copied back on -+ # top of with_gnu_ld (which is also set by --with-gnu-ld, so that actually -+ # makes sense). We'll test with_gnu_ld everywhere else, so if that isn't -+ # set (hence we're using an older libtool), then set it. -+ if test x${with_gnu_ld+set} != xset; then -+ if test x${ac_cv_prog_gnu_ld+set} != xset; then -+ # We got through "ac_require(ac_prog_ld)" and still not set? Huh? -+ with_gnu_ld=no -+ else -+ with_gnu_ld=$ac_cv_prog_gnu_ld -+ fi -+ fi -+ -+ # Start by getting the version number. I think the libtool test already -+ # does some of this, but throws away the result. -+ glibcxx_ld_is_gold=no -+ glibcxx_ld_is_mold=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld version" >&5 -+$as_echo_n "checking for ld version... " >&6; } -+ -+ if $LD --version 2>/dev/null | grep 'GNU gold' >/dev/null 2>&1; then -+ glibcxx_ld_is_gold=yes -+ elif $LD --version 2>/dev/null | grep 'mold' >/dev/null 2>&1; then -+ glibcxx_ld_is_mold=yes -+ fi -+ ldver=`$LD --version 2>/dev/null | -+ sed -e 's/[. ][0-9]\{8\}$//;s/.* \([^ ]\{1,\}\)$/\1/; q'` -+ -+ glibcxx_gnu_ld_version=`echo $ldver | \ -+ $AWK -F. '{ if (NF<3) $3=0; print ($1*100+$2)*100+$3 }'` -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_gnu_ld_version" >&5 -+$as_echo "$glibcxx_gnu_ld_version" >&6; } -+ fi -+ -+ # Set --gc-sections. -+ glibcxx_have_gc_sections=no -+ if test "$glibcxx_ld_is_gold" = "yes" || test "$glibcxx_ld_is_mold" = "yes" ; then -+ if $LD --help 2>/dev/null | grep gc-sections >/dev/null 2>&1; then -+ glibcxx_have_gc_sections=yes -+ fi -+ else -+ glibcxx_gcsections_min_ld=21602 -+ if test x"$with_gnu_ld" = x"yes" && -+ test $glibcxx_gnu_ld_version -gt $glibcxx_gcsections_min_ld ; then -+ glibcxx_have_gc_sections=yes -+ fi -+ fi -+ if test "$glibcxx_have_gc_sections" = "yes"; then -+ # Sufficiently young GNU ld it is! Joy and bunny rabbits! -+ # NB: This flag only works reliably after 2.16.1. Configure tests -+ # for this are difficult, so hard wire a value that should work. -+ -+ ac_test_CFLAGS="${CFLAGS+set}" -+ ac_save_CFLAGS="$CFLAGS" -+ CFLAGS='-Wl,--gc-sections' -+ -+ # Check for -Wl,--gc-sections -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5 -+$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; } -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ int one(void) { return 1; } -+ int two(void) { return 2; } -+ -+int -+main () -+{ -+ two(); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_gcsections=yes -+else -+ ac_gcsections=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ if test "$ac_gcsections" = "yes"; then -+ rm -f conftest.c -+ touch conftest.c -+ if $CC -c conftest.c; then -+ if $LD --gc-sections -o conftest conftest.o 2>&1 | \ -+ grep "Warning: gc-sections option ignored" > /dev/null; then -+ ac_gcsections=no -+ fi -+ fi -+ rm -f conftest.c conftest.o conftest -+ fi -+ if test "$ac_gcsections" = "yes"; then -+ SECTION_LDFLAGS="-Wl,--gc-sections $SECTION_LDFLAGS" -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_gcsections" >&5 -+$as_echo "$ac_gcsections" >&6; } -+ -+ if test "$ac_test_CFLAGS" = set; then -+ CFLAGS="$ac_save_CFLAGS" -+ else -+ # this is the suspicious part -+ CFLAGS='' -+ fi -+ fi -+ -+ # Set -z,relro. -+ # Note this is only for shared objects. -+ ac_ld_relro=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ # cygwin and mingw uses PE, which has no ELF relro support, -+ # multi target ld may confuse configure machinery -+ case "$host" in -+ *-*-cygwin*) -+ ;; -+ *-*-mingw*) -+ ;; -+ *) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,-z,relro" >&5 -+$as_echo_n "checking for ld that supports -Wl,-z,relro... " >&6; } -+ cxx_z_relo=`$LD -v --help 2>/dev/null | grep "z relro"` -+ if test -n "$cxx_z_relo"; then -+ OPT_LDFLAGS="-Wl,-z,relro" -+ ac_ld_relro=yes -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ld_relro" >&5 -+$as_echo "$ac_ld_relro" >&6; } -+ esac -+ fi -+ -+ # Set linker optimization flags. -+ if test x"$with_gnu_ld" = x"yes"; then -+ OPT_LDFLAGS="-Wl,-O1 $OPT_LDFLAGS" -+ fi -+ -+ -+ -+ -+ -+ # GLIBCXX_CHECK_MATH_SUPPORT -+ $as_echo "@%:@define HAVE_ISNAN 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_HYPOT 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ACOSF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ASINF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ATANF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_COSF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_COSHF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINHF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_TANF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_TANHF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_EXPF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ATAN2F 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FABSF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FMODF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FREXPF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LOGF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LOG10F 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_MODF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_POWF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SQRTF 1" >>confdefs.h -+ -+ -+ # GLIBCXX_CHECK_STDLIB_SUPPORT -+ $as_echo "@%:@define HAVE_STRTOLD 1" >>confdefs.h -+ -+ -+ -+ -+ @%:@ Check whether --enable-tls was given. -+if test "${enable_tls+set}" = set; then : -+ enableval=$enable_tls; -+ case "$enableval" in -+ yes|no) ;; -+ *) as_fn_error $? "Argument to enable/disable tls must be yes or no" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_tls=yes -+fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the target supports thread-local storage" >&5 -+$as_echo_n "checking whether the target supports thread-local storage... " >&6; } -+if ${gcc_cv_have_tls+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test "$cross_compiling" = yes; then : -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__thread int a; int b; int main() { return a = b; } -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ chktls_save_LDFLAGS="$LDFLAGS" -+ case $host in -+ *-*-linux* | -*-uclinuxfdpic*) -+ LDFLAGS="-shared -Wl,--no-undefined $LDFLAGS" -+ ;; -+ esac -+ chktls_save_CFLAGS="$CFLAGS" -+ CFLAGS="-fPIC $CFLAGS" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+int f() { return 0; } -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__thread int a; int b; int f() { return a = b; } -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ gcc_cv_have_tls=yes -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+else -+ gcc_cv_have_tls=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ CFLAGS="$chktls_save_CFLAGS" -+ LDFLAGS="$chktls_save_LDFLAGS" -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ -+ -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__thread int a; int b; int main() { return a = b; } -+_ACEOF -+if ac_fn_c_try_run "$LINENO"; then : -+ chktls_save_LDFLAGS="$LDFLAGS" -+ LDFLAGS="-static $LDFLAGS" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+int main() { return 0; } -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ if test "$cross_compiling" = yes; then : -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "cannot run test program while cross compiling -+See \`config.log' for more details" "$LINENO" 5; } -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__thread int a; int b; int main() { return a = b; } -+_ACEOF -+if ac_fn_c_try_run "$LINENO"; then : -+ gcc_cv_have_tls=yes -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ -+ conftest.$ac_objext conftest.beam conftest.$ac_ext -+fi -+ -+else -+ gcc_cv_have_tls=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ LDFLAGS="$chktls_save_LDFLAGS" -+ if test $gcc_cv_have_tls = yes; then -+ chktls_save_CFLAGS="$CFLAGS" -+ thread_CFLAGS=failed -+ for flag in '' '-pthread' '-lpthread'; do -+ CFLAGS="$flag $chktls_save_CFLAGS" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ void *g(void *d) { return NULL; } -+int -+main () -+{ -+pthread_t t; pthread_create(&t,NULL,g,NULL); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ thread_CFLAGS="$flag" -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ if test "X$thread_CFLAGS" != Xfailed; then -+ break -+ fi -+ done -+ CFLAGS="$chktls_save_CFLAGS" -+ if test "X$thread_CFLAGS" != Xfailed; then -+ CFLAGS="$thread_CFLAGS $chktls_save_CFLAGS" -+ if test "$cross_compiling" = yes; then : -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "cannot run test program while cross compiling -+See \`config.log' for more details" "$LINENO" 5; } -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ __thread int a; -+ static int *volatile a_in_other_thread; -+ static void * -+ thread_func (void *arg) -+ { -+ a_in_other_thread = &a; -+ return (void *)0; -+ } -+int -+main () -+{ -+pthread_t thread; -+ void *thread_retval; -+ int *volatile a_in_main_thread; -+ a_in_main_thread = &a; -+ if (pthread_create (&thread, (pthread_attr_t *)0, -+ thread_func, (void *)0)) -+ return 0; -+ if (pthread_join (thread, &thread_retval)) -+ return 0; -+ return (a_in_other_thread == a_in_main_thread); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_run "$LINENO"; then : -+ gcc_cv_have_tls=yes -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ -+ conftest.$ac_objext conftest.beam conftest.$ac_ext -+fi -+ -+ CFLAGS="$chktls_save_CFLAGS" -+ fi -+ fi -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ -+ conftest.$ac_objext conftest.beam conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gcc_cv_have_tls" >&5 -+$as_echo "$gcc_cv_have_tls" >&6; } -+ if test "$enable_tls $gcc_cv_have_tls" = "yes yes"; then -+ -+$as_echo "@%:@define HAVE_TLS 1" >>confdefs.h -+ -+ fi -+ case "$target" in -+ *-hpux10*) -+ $as_echo "@%:@define HAVE_ISINF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISINFF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISNANF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FINITE 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FINITEF 1" >>confdefs.h -+ -+ ;; -+ esac -+ ;; -+ *-linux* | *-uclinux* | *-gnu* | *-kfreebsd*-gnu | *-cygwin* | *-solaris*) -+ -+ # All these tests are for C++; save the language and the compiler flags. -+ # The CXXFLAGS thing is suspicious, but based on similar bits previously -+ # found in GLIBCXX_CONFIGURE. -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ -+ # Check for -ffunction-sections -fdata-sections -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for g++ that supports -ffunction-sections -fdata-sections" >&5 -+$as_echo_n "checking for g++ that supports -ffunction-sections -fdata-sections... " >&6; } -+ CXXFLAGS='-g -Werror -ffunction-sections -fdata-sections' -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+int foo; void bar() { }; -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_fdsections=yes -+else -+ ac_fdsections=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ if test "$ac_test_CXXFLAGS" = set; then -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ else -+ # this is the suspicious part -+ CXXFLAGS='' -+ fi -+ if test x"$ac_fdsections" = x"yes"; then -+ SECTION_FLAGS='-ffunction-sections -fdata-sections' -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_fdsections" >&5 -+$as_echo "$ac_fdsections" >&6; } -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ -+ # If we're not using GNU ld, then there's no point in even trying these -+ # tests. Check for that first. We should have already tested for gld -+ # by now (in libtool), but require it now just to be safe... -+ test -z "$SECTION_LDFLAGS" && SECTION_LDFLAGS='' -+ test -z "$OPT_LDFLAGS" && OPT_LDFLAGS='' -+ -+ -+ -+ # The name set by libtool depends on the version of libtool. Shame on us -+ # for depending on an impl detail, but c'est la vie. Older versions used -+ # ac_cv_prog_gnu_ld, but now it's lt_cv_prog_gnu_ld, and is copied back on -+ # top of with_gnu_ld (which is also set by --with-gnu-ld, so that actually -+ # makes sense). We'll test with_gnu_ld everywhere else, so if that isn't -+ # set (hence we're using an older libtool), then set it. -+ if test x${with_gnu_ld+set} != xset; then -+ if test x${ac_cv_prog_gnu_ld+set} != xset; then -+ # We got through "ac_require(ac_prog_ld)" and still not set? Huh? -+ with_gnu_ld=no -+ else -+ with_gnu_ld=$ac_cv_prog_gnu_ld -+ fi -+ fi -+ -+ # Start by getting the version number. I think the libtool test already -+ # does some of this, but throws away the result. -+ glibcxx_ld_is_gold=no -+ glibcxx_ld_is_mold=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld version" >&5 -+$as_echo_n "checking for ld version... " >&6; } -+ -+ if $LD --version 2>/dev/null | grep 'GNU gold' >/dev/null 2>&1; then -+ glibcxx_ld_is_gold=yes -+ elif $LD --version 2>/dev/null | grep 'mold' >/dev/null 2>&1; then -+ glibcxx_ld_is_mold=yes -+ fi -+ ldver=`$LD --version 2>/dev/null | -+ sed -e 's/[. ][0-9]\{8\}$//;s/.* \([^ ]\{1,\}\)$/\1/; q'` -+ -+ glibcxx_gnu_ld_version=`echo $ldver | \ -+ $AWK -F. '{ if (NF<3) $3=0; print ($1*100+$2)*100+$3 }'` -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_gnu_ld_version" >&5 -+$as_echo "$glibcxx_gnu_ld_version" >&6; } -+ fi -+ -+ # Set --gc-sections. -+ glibcxx_have_gc_sections=no -+ if test "$glibcxx_ld_is_gold" = "yes" || test "$glibcxx_ld_is_mold" = "yes" ; then -+ if $LD --help 2>/dev/null | grep gc-sections >/dev/null 2>&1; then -+ glibcxx_have_gc_sections=yes -+ fi -+ else -+ glibcxx_gcsections_min_ld=21602 -+ if test x"$with_gnu_ld" = x"yes" && -+ test $glibcxx_gnu_ld_version -gt $glibcxx_gcsections_min_ld ; then -+ glibcxx_have_gc_sections=yes -+ fi -+ fi -+ if test "$glibcxx_have_gc_sections" = "yes"; then -+ # Sufficiently young GNU ld it is! Joy and bunny rabbits! -+ # NB: This flag only works reliably after 2.16.1. Configure tests -+ # for this are difficult, so hard wire a value that should work. -+ -+ ac_test_CFLAGS="${CFLAGS+set}" -+ ac_save_CFLAGS="$CFLAGS" -+ CFLAGS='-Wl,--gc-sections' -+ -+ # Check for -Wl,--gc-sections -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5 -+$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; } -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ int one(void) { return 1; } -+ int two(void) { return 2; } -+ -+int -+main () -+{ -+ two(); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_gcsections=yes -+else -+ ac_gcsections=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ if test "$ac_gcsections" = "yes"; then -+ rm -f conftest.c -+ touch conftest.c -+ if $CC -c conftest.c; then -+ if $LD --gc-sections -o conftest conftest.o 2>&1 | \ -+ grep "Warning: gc-sections option ignored" > /dev/null; then -+ ac_gcsections=no -+ fi -+ fi -+ rm -f conftest.c conftest.o conftest -+ fi -+ if test "$ac_gcsections" = "yes"; then -+ SECTION_LDFLAGS="-Wl,--gc-sections $SECTION_LDFLAGS" -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_gcsections" >&5 -+$as_echo "$ac_gcsections" >&6; } -+ -+ if test "$ac_test_CFLAGS" = set; then -+ CFLAGS="$ac_save_CFLAGS" -+ else -+ # this is the suspicious part -+ CFLAGS='' -+ fi -+ fi -+ -+ # Set -z,relro. -+ # Note this is only for shared objects. -+ ac_ld_relro=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ # cygwin and mingw uses PE, which has no ELF relro support, -+ # multi target ld may confuse configure machinery -+ case "$host" in -+ *-*-cygwin*) -+ ;; -+ *-*-mingw*) -+ ;; -+ *) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,-z,relro" >&5 -+$as_echo_n "checking for ld that supports -Wl,-z,relro... " >&6; } -+ cxx_z_relo=`$LD -v --help 2>/dev/null | grep "z relro"` -+ if test -n "$cxx_z_relo"; then -+ OPT_LDFLAGS="-Wl,-z,relro" -+ ac_ld_relro=yes -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ld_relro" >&5 -+$as_echo "$ac_ld_relro" >&6; } -+ esac -+ fi -+ -+ # Set linker optimization flags. -+ if test x"$with_gnu_ld" = x"yes"; then -+ OPT_LDFLAGS="-Wl,-O1 $OPT_LDFLAGS" -+ fi -+ -+ -+ -+ -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS='-fno-builtin -D_GNU_SOURCE' -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5 -+$as_echo_n "checking for sin in -lm... " >&6; } -+if ${ac_cv_lib_m_sin+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lm $LIBS" -+if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char sin (); -+int -+main () -+{ -+return sin (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_m_sin=yes -+else -+ ac_cv_lib_m_sin=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5 -+$as_echo "$ac_cv_lib_m_sin" >&6; } -+if test "x$ac_cv_lib_m_sin" = xyes; then : -+ libm="-lm" -+fi -+ -+ ac_save_LIBS="$LIBS" -+ LIBS="$LIBS $libm" -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf declaration" >&5 -+$as_echo_n "checking for isinf declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinf_use+set} != xset; then -+ if ${glibcxx_cv_func_isinf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinf_use=yes -+else -+ glibcxx_cv_func_isinf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinf_use" >&5 -+$as_echo "$glibcxx_cv_func_isinf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinf_use = x"yes"; then -+ for ac_func in isinf -+do : -+ ac_fn_c_check_func "$LINENO" "isinf" "ac_cv_func_isinf" -+if test "x$ac_cv_func_isinf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinf declaration" >&5 -+$as_echo_n "checking for _isinf declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinf_use+set} != xset; then -+ if ${glibcxx_cv_func__isinf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinf_use=yes -+else -+ glibcxx_cv_func__isinf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinf_use" >&5 -+$as_echo "$glibcxx_cv_func__isinf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinf_use = x"yes"; then -+ for ac_func in _isinf -+do : -+ ac_fn_c_check_func "$LINENO" "_isinf" "ac_cv_func__isinf" -+if test "x$ac_cv_func__isinf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan declaration" >&5 -+$as_echo_n "checking for isnan declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnan_use+set} != xset; then -+ if ${glibcxx_cv_func_isnan_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnan(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnan_use=yes -+else -+ glibcxx_cv_func_isnan_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnan_use" >&5 -+$as_echo "$glibcxx_cv_func_isnan_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnan_use = x"yes"; then -+ for ac_func in isnan -+do : -+ ac_fn_c_check_func "$LINENO" "isnan" "ac_cv_func_isnan" -+if test "x$ac_cv_func_isnan" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNAN 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnan declaration" >&5 -+$as_echo_n "checking for _isnan declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnan_use+set} != xset; then -+ if ${glibcxx_cv_func__isnan_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnan(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnan_use=yes -+else -+ glibcxx_cv_func__isnan_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnan_use" >&5 -+$as_echo "$glibcxx_cv_func__isnan_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnan_use = x"yes"; then -+ for ac_func in _isnan -+do : -+ ac_fn_c_check_func "$LINENO" "_isnan" "ac_cv_func__isnan" -+if test "x$ac_cv_func__isnan" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNAN 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finite declaration" >&5 -+$as_echo_n "checking for finite declaration... " >&6; } -+ if test x${glibcxx_cv_func_finite_use+set} != xset; then -+ if ${glibcxx_cv_func_finite_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finite(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finite_use=yes -+else -+ glibcxx_cv_func_finite_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finite_use" >&5 -+$as_echo "$glibcxx_cv_func_finite_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finite_use = x"yes"; then -+ for ac_func in finite -+do : -+ ac_fn_c_check_func "$LINENO" "finite" "ac_cv_func_finite" -+if test "x$ac_cv_func_finite" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITE 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finite declaration" >&5 -+$as_echo_n "checking for _finite declaration... " >&6; } -+ if test x${glibcxx_cv_func__finite_use+set} != xset; then -+ if ${glibcxx_cv_func__finite_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finite(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finite_use=yes -+else -+ glibcxx_cv_func__finite_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finite_use" >&5 -+$as_echo "$glibcxx_cv_func__finite_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finite_use = x"yes"; then -+ for ac_func in _finite -+do : -+ ac_fn_c_check_func "$LINENO" "_finite" "ac_cv_func__finite" -+if test "x$ac_cv_func__finite" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITE 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincos declaration" >&5 -+$as_echo_n "checking for sincos declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincos_use+set} != xset; then -+ if ${glibcxx_cv_func_sincos_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincos(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincos_use=yes -+else -+ glibcxx_cv_func_sincos_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincos_use" >&5 -+$as_echo "$glibcxx_cv_func_sincos_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincos_use = x"yes"; then -+ for ac_func in sincos -+do : -+ ac_fn_c_check_func "$LINENO" "sincos" "ac_cv_func_sincos" -+if test "x$ac_cv_func_sincos" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincos declaration" >&5 -+$as_echo_n "checking for _sincos declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincos_use+set} != xset; then -+ if ${glibcxx_cv_func__sincos_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincos(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincos_use=yes -+else -+ glibcxx_cv_func__sincos_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincos_use" >&5 -+$as_echo "$glibcxx_cv_func__sincos_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincos_use = x"yes"; then -+ for ac_func in _sincos -+do : -+ ac_fn_c_check_func "$LINENO" "_sincos" "ac_cv_func__sincos" -+if test "x$ac_cv_func__sincos" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fpclass declaration" >&5 -+$as_echo_n "checking for fpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func_fpclass_use+set} != xset; then -+ if ${glibcxx_cv_func_fpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fpclass_use=yes -+else -+ glibcxx_cv_func_fpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fpclass_use" >&5 -+$as_echo "$glibcxx_cv_func_fpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fpclass_use = x"yes"; then -+ for ac_func in fpclass -+do : -+ ac_fn_c_check_func "$LINENO" "fpclass" "ac_cv_func_fpclass" -+if test "x$ac_cv_func_fpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fpclass declaration" >&5 -+$as_echo_n "checking for _fpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func__fpclass_use+set} != xset; then -+ if ${glibcxx_cv_func__fpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fpclass_use=yes -+else -+ glibcxx_cv_func__fpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fpclass_use" >&5 -+$as_echo "$glibcxx_cv_func__fpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fpclass_use = x"yes"; then -+ for ac_func in _fpclass -+do : -+ ac_fn_c_check_func "$LINENO" "_fpclass" "ac_cv_func__fpclass" -+if test "x$ac_cv_func__fpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for qfpclass declaration" >&5 -+$as_echo_n "checking for qfpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func_qfpclass_use+set} != xset; then -+ if ${glibcxx_cv_func_qfpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ qfpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_qfpclass_use=yes -+else -+ glibcxx_cv_func_qfpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_qfpclass_use" >&5 -+$as_echo "$glibcxx_cv_func_qfpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func_qfpclass_use = x"yes"; then -+ for ac_func in qfpclass -+do : -+ ac_fn_c_check_func "$LINENO" "qfpclass" "ac_cv_func_qfpclass" -+if test "x$ac_cv_func_qfpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_QFPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _qfpclass declaration" >&5 -+$as_echo_n "checking for _qfpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func__qfpclass_use+set} != xset; then -+ if ${glibcxx_cv_func__qfpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _qfpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__qfpclass_use=yes -+else -+ glibcxx_cv_func__qfpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__qfpclass_use" >&5 -+$as_echo "$glibcxx_cv_func__qfpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func__qfpclass_use = x"yes"; then -+ for ac_func in _qfpclass -+do : -+ ac_fn_c_check_func "$LINENO" "_qfpclass" "ac_cv_func__qfpclass" -+if test "x$ac_cv_func__qfpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__QFPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypot declaration" >&5 -+$as_echo_n "checking for hypot declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypot_use+set} != xset; then -+ if ${glibcxx_cv_func_hypot_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypot(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypot_use=yes -+else -+ glibcxx_cv_func_hypot_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypot_use" >&5 -+$as_echo "$glibcxx_cv_func_hypot_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypot_use = x"yes"; then -+ for ac_func in hypot -+do : -+ ac_fn_c_check_func "$LINENO" "hypot" "ac_cv_func_hypot" -+if test "x$ac_cv_func_hypot" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOT 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypot declaration" >&5 -+$as_echo_n "checking for _hypot declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypot_use+set} != xset; then -+ if ${glibcxx_cv_func__hypot_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypot(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypot_use=yes -+else -+ glibcxx_cv_func__hypot_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypot_use" >&5 -+$as_echo "$glibcxx_cv_func__hypot_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypot_use = x"yes"; then -+ for ac_func in _hypot -+do : -+ ac_fn_c_check_func "$LINENO" "_hypot" "ac_cv_func__hypot" -+if test "x$ac_cv_func__hypot" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for float trig functions" >&5 -+$as_echo_n "checking for float trig functions... " >&6; } -+ if ${glibcxx_cv_func_float_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+acosf (0); asinf (0); atanf (0); cosf (0); sinf (0); tanf (0); coshf (0); sinhf (0); tanhf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_float_trig_use=yes -+else -+ glibcxx_cv_func_float_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_float_trig_use" >&5 -+$as_echo "$glibcxx_cv_func_float_trig_use" >&6; } -+ if test x$glibcxx_cv_func_float_trig_use = x"yes"; then -+ for ac_func in acosf asinf atanf cosf sinf tanf coshf sinhf tanhf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float trig functions" >&5 -+$as_echo_n "checking for _float trig functions... " >&6; } -+ if ${glibcxx_cv_func__float_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_acosf (0); _asinf (0); _atanf (0); _cosf (0); _sinf (0); _tanf (0); _coshf (0); _sinhf (0); _tanhf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__float_trig_use=yes -+else -+ glibcxx_cv_func__float_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__float_trig_use" >&5 -+$as_echo "$glibcxx_cv_func__float_trig_use" >&6; } -+ if test x$glibcxx_cv_func__float_trig_use = x"yes"; then -+ for ac_func in _acosf _asinf _atanf _cosf _sinf _tanf _coshf _sinhf _tanhf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for float round functions" >&5 -+$as_echo_n "checking for float round functions... " >&6; } -+ if ${glibcxx_cv_func_float_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ceilf (0); floorf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_float_round_use=yes -+else -+ glibcxx_cv_func_float_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_float_round_use" >&5 -+$as_echo "$glibcxx_cv_func_float_round_use" >&6; } -+ if test x$glibcxx_cv_func_float_round_use = x"yes"; then -+ for ac_func in ceilf floorf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float round functions" >&5 -+$as_echo_n "checking for _float round functions... " >&6; } -+ if ${glibcxx_cv_func__float_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_ceilf (0); _floorf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__float_round_use=yes -+else -+ glibcxx_cv_func__float_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__float_round_use" >&5 -+$as_echo "$glibcxx_cv_func__float_round_use" >&6; } -+ if test x$glibcxx_cv_func__float_round_use = x"yes"; then -+ for ac_func in _ceilf _floorf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for expf declaration" >&5 -+$as_echo_n "checking for expf declaration... " >&6; } -+ if test x${glibcxx_cv_func_expf_use+set} != xset; then -+ if ${glibcxx_cv_func_expf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ expf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_expf_use=yes -+else -+ glibcxx_cv_func_expf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_expf_use" >&5 -+$as_echo "$glibcxx_cv_func_expf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_expf_use = x"yes"; then -+ for ac_func in expf -+do : -+ ac_fn_c_check_func "$LINENO" "expf" "ac_cv_func_expf" -+if test "x$ac_cv_func_expf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_EXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expf declaration" >&5 -+$as_echo_n "checking for _expf declaration... " >&6; } -+ if test x${glibcxx_cv_func__expf_use+set} != xset; then -+ if ${glibcxx_cv_func__expf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _expf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__expf_use=yes -+else -+ glibcxx_cv_func__expf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__expf_use" >&5 -+$as_echo "$glibcxx_cv_func__expf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__expf_use = x"yes"; then -+ for ac_func in _expf -+do : -+ ac_fn_c_check_func "$LINENO" "_expf" "ac_cv_func__expf" -+if test "x$ac_cv_func__expf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__EXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanf declaration" >&5 -+$as_echo_n "checking for isnanf declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnanf_use+set} != xset; then -+ if ${glibcxx_cv_func_isnanf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnanf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnanf_use=yes -+else -+ glibcxx_cv_func_isnanf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnanf_use" >&5 -+$as_echo "$glibcxx_cv_func_isnanf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnanf_use = x"yes"; then -+ for ac_func in isnanf -+do : -+ ac_fn_c_check_func "$LINENO" "isnanf" "ac_cv_func_isnanf" -+if test "x$ac_cv_func_isnanf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNANF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanf declaration" >&5 -+$as_echo_n "checking for _isnanf declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnanf_use+set} != xset; then -+ if ${glibcxx_cv_func__isnanf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnanf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnanf_use=yes -+else -+ glibcxx_cv_func__isnanf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnanf_use" >&5 -+$as_echo "$glibcxx_cv_func__isnanf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnanf_use = x"yes"; then -+ for ac_func in _isnanf -+do : -+ ac_fn_c_check_func "$LINENO" "_isnanf" "ac_cv_func__isnanf" -+if test "x$ac_cv_func__isnanf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNANF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinff declaration" >&5 -+$as_echo_n "checking for isinff declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinff_use+set} != xset; then -+ if ${glibcxx_cv_func_isinff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinff(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinff_use=yes -+else -+ glibcxx_cv_func_isinff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinff_use" >&5 -+$as_echo "$glibcxx_cv_func_isinff_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinff_use = x"yes"; then -+ for ac_func in isinff -+do : -+ ac_fn_c_check_func "$LINENO" "isinff" "ac_cv_func_isinff" -+if test "x$ac_cv_func_isinff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINFF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinff declaration" >&5 -+$as_echo_n "checking for _isinff declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinff_use+set} != xset; then -+ if ${glibcxx_cv_func__isinff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinff(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinff_use=yes -+else -+ glibcxx_cv_func__isinff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinff_use" >&5 -+$as_echo "$glibcxx_cv_func__isinff_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinff_use = x"yes"; then -+ for ac_func in _isinff -+do : -+ ac_fn_c_check_func "$LINENO" "_isinff" "ac_cv_func__isinff" -+if test "x$ac_cv_func__isinff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINFF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2f declaration" >&5 -+$as_echo_n "checking for atan2f declaration... " >&6; } -+ if test x${glibcxx_cv_func_atan2f_use+set} != xset; then -+ if ${glibcxx_cv_func_atan2f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ atan2f(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atan2f_use=yes -+else -+ glibcxx_cv_func_atan2f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atan2f_use" >&5 -+$as_echo "$glibcxx_cv_func_atan2f_use" >&6; } -+ -+ if test x$glibcxx_cv_func_atan2f_use = x"yes"; then -+ for ac_func in atan2f -+do : -+ ac_fn_c_check_func "$LINENO" "atan2f" "ac_cv_func_atan2f" -+if test "x$ac_cv_func_atan2f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATAN2F 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2f declaration" >&5 -+$as_echo_n "checking for _atan2f declaration... " >&6; } -+ if test x${glibcxx_cv_func__atan2f_use+set} != xset; then -+ if ${glibcxx_cv_func__atan2f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _atan2f(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__atan2f_use=yes -+else -+ glibcxx_cv_func__atan2f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__atan2f_use" >&5 -+$as_echo "$glibcxx_cv_func__atan2f_use" >&6; } -+ -+ if test x$glibcxx_cv_func__atan2f_use = x"yes"; then -+ for ac_func in _atan2f -+do : -+ ac_fn_c_check_func "$LINENO" "_atan2f" "ac_cv_func__atan2f" -+if test "x$ac_cv_func__atan2f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ATAN2F 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsf declaration" >&5 -+$as_echo_n "checking for fabsf declaration... " >&6; } -+ if test x${glibcxx_cv_func_fabsf_use+set} != xset; then -+ if ${glibcxx_cv_func_fabsf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fabsf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fabsf_use=yes -+else -+ glibcxx_cv_func_fabsf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fabsf_use" >&5 -+$as_echo "$glibcxx_cv_func_fabsf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fabsf_use = x"yes"; then -+ for ac_func in fabsf -+do : -+ ac_fn_c_check_func "$LINENO" "fabsf" "ac_cv_func_fabsf" -+if test "x$ac_cv_func_fabsf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FABSF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsf declaration" >&5 -+$as_echo_n "checking for _fabsf declaration... " >&6; } -+ if test x${glibcxx_cv_func__fabsf_use+set} != xset; then -+ if ${glibcxx_cv_func__fabsf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fabsf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fabsf_use=yes -+else -+ glibcxx_cv_func__fabsf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fabsf_use" >&5 -+$as_echo "$glibcxx_cv_func__fabsf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fabsf_use = x"yes"; then -+ for ac_func in _fabsf -+do : -+ ac_fn_c_check_func "$LINENO" "_fabsf" "ac_cv_func__fabsf" -+if test "x$ac_cv_func__fabsf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FABSF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodf declaration" >&5 -+$as_echo_n "checking for fmodf declaration... " >&6; } -+ if test x${glibcxx_cv_func_fmodf_use+set} != xset; then -+ if ${glibcxx_cv_func_fmodf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ fmodf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fmodf_use=yes -+else -+ glibcxx_cv_func_fmodf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fmodf_use" >&5 -+$as_echo "$glibcxx_cv_func_fmodf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fmodf_use = x"yes"; then -+ for ac_func in fmodf -+do : -+ ac_fn_c_check_func "$LINENO" "fmodf" "ac_cv_func_fmodf" -+if test "x$ac_cv_func_fmodf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FMODF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodf declaration" >&5 -+$as_echo_n "checking for _fmodf declaration... " >&6; } -+ if test x${glibcxx_cv_func__fmodf_use+set} != xset; then -+ if ${glibcxx_cv_func__fmodf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _fmodf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fmodf_use=yes -+else -+ glibcxx_cv_func__fmodf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fmodf_use" >&5 -+$as_echo "$glibcxx_cv_func__fmodf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fmodf_use = x"yes"; then -+ for ac_func in _fmodf -+do : -+ ac_fn_c_check_func "$LINENO" "_fmodf" "ac_cv_func__fmodf" -+if test "x$ac_cv_func__fmodf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FMODF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpf declaration" >&5 -+$as_echo_n "checking for frexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func_frexpf_use+set} != xset; then -+ if ${glibcxx_cv_func_frexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ frexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpf_use=yes -+else -+ glibcxx_cv_func_frexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_frexpf_use = x"yes"; then -+ for ac_func in frexpf -+do : -+ ac_fn_c_check_func "$LINENO" "frexpf" "ac_cv_func_frexpf" -+if test "x$ac_cv_func_frexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpf declaration" >&5 -+$as_echo_n "checking for _frexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func__frexpf_use+set} != xset; then -+ if ${glibcxx_cv_func__frexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _frexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__frexpf_use=yes -+else -+ glibcxx_cv_func__frexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__frexpf_use" >&5 -+$as_echo "$glibcxx_cv_func__frexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__frexpf_use = x"yes"; then -+ for ac_func in _frexpf -+do : -+ ac_fn_c_check_func "$LINENO" "_frexpf" "ac_cv_func__frexpf" -+if test "x$ac_cv_func__frexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FREXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotf declaration" >&5 -+$as_echo_n "checking for hypotf declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypotf_use+set} != xset; then -+ if ${glibcxx_cv_func_hypotf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypotf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotf_use=yes -+else -+ glibcxx_cv_func_hypotf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotf_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypotf_use = x"yes"; then -+ for ac_func in hypotf -+do : -+ ac_fn_c_check_func "$LINENO" "hypotf" "ac_cv_func_hypotf" -+if test "x$ac_cv_func_hypotf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotf declaration" >&5 -+$as_echo_n "checking for _hypotf declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypotf_use+set} != xset; then -+ if ${glibcxx_cv_func__hypotf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypotf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypotf_use=yes -+else -+ glibcxx_cv_func__hypotf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypotf_use" >&5 -+$as_echo "$glibcxx_cv_func__hypotf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypotf_use = x"yes"; then -+ for ac_func in _hypotf -+do : -+ ac_fn_c_check_func "$LINENO" "_hypotf" "ac_cv_func__hypotf" -+if test "x$ac_cv_func__hypotf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOTF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpf declaration" >&5 -+$as_echo_n "checking for ldexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func_ldexpf_use+set} != xset; then -+ if ${glibcxx_cv_func_ldexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ ldexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpf_use=yes -+else -+ glibcxx_cv_func_ldexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_ldexpf_use = x"yes"; then -+ for ac_func in ldexpf -+do : -+ ac_fn_c_check_func "$LINENO" "ldexpf" "ac_cv_func_ldexpf" -+if test "x$ac_cv_func_ldexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpf declaration" >&5 -+$as_echo_n "checking for _ldexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func__ldexpf_use+set} != xset; then -+ if ${glibcxx_cv_func__ldexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _ldexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__ldexpf_use=yes -+else -+ glibcxx_cv_func__ldexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__ldexpf_use" >&5 -+$as_echo "$glibcxx_cv_func__ldexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__ldexpf_use = x"yes"; then -+ for ac_func in _ldexpf -+do : -+ ac_fn_c_check_func "$LINENO" "_ldexpf" "ac_cv_func__ldexpf" -+if test "x$ac_cv_func__ldexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LDEXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for logf declaration" >&5 -+$as_echo_n "checking for logf declaration... " >&6; } -+ if test x${glibcxx_cv_func_logf_use+set} != xset; then -+ if ${glibcxx_cv_func_logf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ logf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_logf_use=yes -+else -+ glibcxx_cv_func_logf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_logf_use" >&5 -+$as_echo "$glibcxx_cv_func_logf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_logf_use = x"yes"; then -+ for ac_func in logf -+do : -+ ac_fn_c_check_func "$LINENO" "logf" "ac_cv_func_logf" -+if test "x$ac_cv_func_logf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOGF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logf declaration" >&5 -+$as_echo_n "checking for _logf declaration... " >&6; } -+ if test x${glibcxx_cv_func__logf_use+set} != xset; then -+ if ${glibcxx_cv_func__logf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _logf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__logf_use=yes -+else -+ glibcxx_cv_func__logf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__logf_use" >&5 -+$as_echo "$glibcxx_cv_func__logf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__logf_use = x"yes"; then -+ for ac_func in _logf -+do : -+ ac_fn_c_check_func "$LINENO" "_logf" "ac_cv_func__logf" -+if test "x$ac_cv_func__logf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOGF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10f declaration" >&5 -+$as_echo_n "checking for log10f declaration... " >&6; } -+ if test x${glibcxx_cv_func_log10f_use+set} != xset; then -+ if ${glibcxx_cv_func_log10f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ log10f(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_log10f_use=yes -+else -+ glibcxx_cv_func_log10f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_log10f_use" >&5 -+$as_echo "$glibcxx_cv_func_log10f_use" >&6; } -+ -+ if test x$glibcxx_cv_func_log10f_use = x"yes"; then -+ for ac_func in log10f -+do : -+ ac_fn_c_check_func "$LINENO" "log10f" "ac_cv_func_log10f" -+if test "x$ac_cv_func_log10f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOG10F 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10f declaration" >&5 -+$as_echo_n "checking for _log10f declaration... " >&6; } -+ if test x${glibcxx_cv_func__log10f_use+set} != xset; then -+ if ${glibcxx_cv_func__log10f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _log10f(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__log10f_use=yes -+else -+ glibcxx_cv_func__log10f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__log10f_use" >&5 -+$as_echo "$glibcxx_cv_func__log10f_use" >&6; } -+ -+ if test x$glibcxx_cv_func__log10f_use = x"yes"; then -+ for ac_func in _log10f -+do : -+ ac_fn_c_check_func "$LINENO" "_log10f" "ac_cv_func__log10f" -+if test "x$ac_cv_func__log10f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOG10F 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modff declaration" >&5 -+$as_echo_n "checking for modff declaration... " >&6; } -+ if test x${glibcxx_cv_func_modff_use+set} != xset; then -+ if ${glibcxx_cv_func_modff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modff(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modff_use=yes -+else -+ glibcxx_cv_func_modff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modff_use" >&5 -+$as_echo "$glibcxx_cv_func_modff_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modff_use = x"yes"; then -+ for ac_func in modff -+do : -+ ac_fn_c_check_func "$LINENO" "modff" "ac_cv_func_modff" -+if test "x$ac_cv_func_modff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modff declaration" >&5 -+$as_echo_n "checking for _modff declaration... " >&6; } -+ if test x${glibcxx_cv_func__modff_use+set} != xset; then -+ if ${glibcxx_cv_func__modff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modff(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modff_use=yes -+else -+ glibcxx_cv_func__modff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modff_use" >&5 -+$as_echo "$glibcxx_cv_func__modff_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modff_use = x"yes"; then -+ for ac_func in _modff -+do : -+ ac_fn_c_check_func "$LINENO" "_modff" "ac_cv_func__modff" -+if test "x$ac_cv_func__modff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODFF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modf declaration" >&5 -+$as_echo_n "checking for modf declaration... " >&6; } -+ if test x${glibcxx_cv_func_modf_use+set} != xset; then -+ if ${glibcxx_cv_func_modf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modf_use=yes -+else -+ glibcxx_cv_func_modf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modf_use" >&5 -+$as_echo "$glibcxx_cv_func_modf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modf_use = x"yes"; then -+ for ac_func in modf -+do : -+ ac_fn_c_check_func "$LINENO" "modf" "ac_cv_func_modf" -+if test "x$ac_cv_func_modf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modf declaration" >&5 -+$as_echo_n "checking for _modf declaration... " >&6; } -+ if test x${glibcxx_cv_func__modf_use+set} != xset; then -+ if ${glibcxx_cv_func__modf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modf_use=yes -+else -+ glibcxx_cv_func__modf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modf_use" >&5 -+$as_echo "$glibcxx_cv_func__modf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modf_use = x"yes"; then -+ for ac_func in _modf -+do : -+ ac_fn_c_check_func "$LINENO" "_modf" "ac_cv_func__modf" -+if test "x$ac_cv_func__modf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for powf declaration" >&5 -+$as_echo_n "checking for powf declaration... " >&6; } -+ if test x${glibcxx_cv_func_powf_use+set} != xset; then -+ if ${glibcxx_cv_func_powf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ powf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_powf_use=yes -+else -+ glibcxx_cv_func_powf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_powf_use" >&5 -+$as_echo "$glibcxx_cv_func_powf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_powf_use = x"yes"; then -+ for ac_func in powf -+do : -+ ac_fn_c_check_func "$LINENO" "powf" "ac_cv_func_powf" -+if test "x$ac_cv_func_powf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_POWF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powf declaration" >&5 -+$as_echo_n "checking for _powf declaration... " >&6; } -+ if test x${glibcxx_cv_func__powf_use+set} != xset; then -+ if ${glibcxx_cv_func__powf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _powf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__powf_use=yes -+else -+ glibcxx_cv_func__powf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__powf_use" >&5 -+$as_echo "$glibcxx_cv_func__powf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__powf_use = x"yes"; then -+ for ac_func in _powf -+do : -+ ac_fn_c_check_func "$LINENO" "_powf" "ac_cv_func__powf" -+if test "x$ac_cv_func__powf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__POWF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtf declaration" >&5 -+$as_echo_n "checking for sqrtf declaration... " >&6; } -+ if test x${glibcxx_cv_func_sqrtf_use+set} != xset; then -+ if ${glibcxx_cv_func_sqrtf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ sqrtf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sqrtf_use=yes -+else -+ glibcxx_cv_func_sqrtf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sqrtf_use" >&5 -+$as_echo "$glibcxx_cv_func_sqrtf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sqrtf_use = x"yes"; then -+ for ac_func in sqrtf -+do : -+ ac_fn_c_check_func "$LINENO" "sqrtf" "ac_cv_func_sqrtf" -+if test "x$ac_cv_func_sqrtf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SQRTF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtf declaration" >&5 -+$as_echo_n "checking for _sqrtf declaration... " >&6; } -+ if test x${glibcxx_cv_func__sqrtf_use+set} != xset; then -+ if ${glibcxx_cv_func__sqrtf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _sqrtf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sqrtf_use=yes -+else -+ glibcxx_cv_func__sqrtf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sqrtf_use" >&5 -+$as_echo "$glibcxx_cv_func__sqrtf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sqrtf_use = x"yes"; then -+ for ac_func in _sqrtf -+do : -+ ac_fn_c_check_func "$LINENO" "_sqrtf" "ac_cv_func__sqrtf" -+if test "x$ac_cv_func__sqrtf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SQRTF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosf declaration" >&5 -+$as_echo_n "checking for sincosf declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincosf_use+set} != xset; then -+ if ${glibcxx_cv_func_sincosf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincosf(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincosf_use=yes -+else -+ glibcxx_cv_func_sincosf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincosf_use" >&5 -+$as_echo "$glibcxx_cv_func_sincosf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincosf_use = x"yes"; then -+ for ac_func in sincosf -+do : -+ ac_fn_c_check_func "$LINENO" "sincosf" "ac_cv_func_sincosf" -+if test "x$ac_cv_func_sincosf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOSF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosf declaration" >&5 -+$as_echo_n "checking for _sincosf declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincosf_use+set} != xset; then -+ if ${glibcxx_cv_func__sincosf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincosf(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincosf_use=yes -+else -+ glibcxx_cv_func__sincosf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincosf_use" >&5 -+$as_echo "$glibcxx_cv_func__sincosf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincosf_use = x"yes"; then -+ for ac_func in _sincosf -+do : -+ ac_fn_c_check_func "$LINENO" "_sincosf" "ac_cv_func__sincosf" -+if test "x$ac_cv_func__sincosf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOSF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitef declaration" >&5 -+$as_echo_n "checking for finitef declaration... " >&6; } -+ if test x${glibcxx_cv_func_finitef_use+set} != xset; then -+ if ${glibcxx_cv_func_finitef_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finitef(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finitef_use=yes -+else -+ glibcxx_cv_func_finitef_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finitef_use" >&5 -+$as_echo "$glibcxx_cv_func_finitef_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finitef_use = x"yes"; then -+ for ac_func in finitef -+do : -+ ac_fn_c_check_func "$LINENO" "finitef" "ac_cv_func_finitef" -+if test "x$ac_cv_func_finitef" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITEF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitef declaration" >&5 -+$as_echo_n "checking for _finitef declaration... " >&6; } -+ if test x${glibcxx_cv_func__finitef_use+set} != xset; then -+ if ${glibcxx_cv_func__finitef_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finitef(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finitef_use=yes -+else -+ glibcxx_cv_func__finitef_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finitef_use" >&5 -+$as_echo "$glibcxx_cv_func__finitef_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finitef_use = x"yes"; then -+ for ac_func in _finitef -+do : -+ ac_fn_c_check_func "$LINENO" "_finitef" "ac_cv_func__finitef" -+if test "x$ac_cv_func__finitef" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITEF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double trig functions" >&5 -+$as_echo_n "checking for long double trig functions... " >&6; } -+ if ${glibcxx_cv_func_long_double_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+acosl (0); asinl (0); atanl (0); cosl (0); sinl (0); tanl (0); coshl (0); sinhl (0); tanhl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_long_double_trig_use=yes -+else -+ glibcxx_cv_func_long_double_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_long_double_trig_use" >&5 -+$as_echo "$glibcxx_cv_func_long_double_trig_use" >&6; } -+ if test x$glibcxx_cv_func_long_double_trig_use = x"yes"; then -+ for ac_func in acosl asinl atanl cosl sinl tanl coshl sinhl tanhl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double trig functions" >&5 -+$as_echo_n "checking for _long double trig functions... " >&6; } -+ if ${glibcxx_cv_func__long_double_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_acosl (0); _asinl (0); _atanl (0); _cosl (0); _sinl (0); _tanl (0); _coshl (0); _sinhl (0); _tanhl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__long_double_trig_use=yes -+else -+ glibcxx_cv_func__long_double_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__long_double_trig_use" >&5 -+$as_echo "$glibcxx_cv_func__long_double_trig_use" >&6; } -+ if test x$glibcxx_cv_func__long_double_trig_use = x"yes"; then -+ for ac_func in _acosl _asinl _atanl _cosl _sinl _tanl _coshl _sinhl _tanhl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double round functions" >&5 -+$as_echo_n "checking for long double round functions... " >&6; } -+ if ${glibcxx_cv_func_long_double_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ceill (0); floorl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_long_double_round_use=yes -+else -+ glibcxx_cv_func_long_double_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_long_double_round_use" >&5 -+$as_echo "$glibcxx_cv_func_long_double_round_use" >&6; } -+ if test x$glibcxx_cv_func_long_double_round_use = x"yes"; then -+ for ac_func in ceill floorl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double round functions" >&5 -+$as_echo_n "checking for _long double round functions... " >&6; } -+ if ${glibcxx_cv_func__long_double_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_ceill (0); _floorl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__long_double_round_use=yes -+else -+ glibcxx_cv_func__long_double_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__long_double_round_use" >&5 -+$as_echo "$glibcxx_cv_func__long_double_round_use" >&6; } -+ if test x$glibcxx_cv_func__long_double_round_use = x"yes"; then -+ for ac_func in _ceill _floorl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanl declaration" >&5 -+$as_echo_n "checking for isnanl declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnanl_use+set} != xset; then -+ if ${glibcxx_cv_func_isnanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnanl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnanl_use=yes -+else -+ glibcxx_cv_func_isnanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnanl_use" >&5 -+$as_echo "$glibcxx_cv_func_isnanl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnanl_use = x"yes"; then -+ for ac_func in isnanl -+do : -+ ac_fn_c_check_func "$LINENO" "isnanl" "ac_cv_func_isnanl" -+if test "x$ac_cv_func_isnanl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNANL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanl declaration" >&5 -+$as_echo_n "checking for _isnanl declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnanl_use+set} != xset; then -+ if ${glibcxx_cv_func__isnanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnanl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnanl_use=yes -+else -+ glibcxx_cv_func__isnanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnanl_use" >&5 -+$as_echo "$glibcxx_cv_func__isnanl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnanl_use = x"yes"; then -+ for ac_func in _isnanl -+do : -+ ac_fn_c_check_func "$LINENO" "_isnanl" "ac_cv_func__isnanl" -+if test "x$ac_cv_func__isnanl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNANL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinfl declaration" >&5 -+$as_echo_n "checking for isinfl declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinfl_use+set} != xset; then -+ if ${glibcxx_cv_func_isinfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinfl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinfl_use=yes -+else -+ glibcxx_cv_func_isinfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinfl_use" >&5 -+$as_echo "$glibcxx_cv_func_isinfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinfl_use = x"yes"; then -+ for ac_func in isinfl -+do : -+ ac_fn_c_check_func "$LINENO" "isinfl" "ac_cv_func_isinfl" -+if test "x$ac_cv_func_isinfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINFL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinfl declaration" >&5 -+$as_echo_n "checking for _isinfl declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinfl_use+set} != xset; then -+ if ${glibcxx_cv_func__isinfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinfl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinfl_use=yes -+else -+ glibcxx_cv_func__isinfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinfl_use" >&5 -+$as_echo "$glibcxx_cv_func__isinfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinfl_use = x"yes"; then -+ for ac_func in _isinfl -+do : -+ ac_fn_c_check_func "$LINENO" "_isinfl" "ac_cv_func__isinfl" -+if test "x$ac_cv_func__isinfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINFL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2l declaration" >&5 -+$as_echo_n "checking for atan2l declaration... " >&6; } -+ if test x${glibcxx_cv_func_atan2l_use+set} != xset; then -+ if ${glibcxx_cv_func_atan2l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ atan2l(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atan2l_use=yes -+else -+ glibcxx_cv_func_atan2l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atan2l_use" >&5 -+$as_echo "$glibcxx_cv_func_atan2l_use" >&6; } -+ -+ if test x$glibcxx_cv_func_atan2l_use = x"yes"; then -+ for ac_func in atan2l -+do : -+ ac_fn_c_check_func "$LINENO" "atan2l" "ac_cv_func_atan2l" -+if test "x$ac_cv_func_atan2l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATAN2L 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2l declaration" >&5 -+$as_echo_n "checking for _atan2l declaration... " >&6; } -+ if test x${glibcxx_cv_func__atan2l_use+set} != xset; then -+ if ${glibcxx_cv_func__atan2l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _atan2l(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__atan2l_use=yes -+else -+ glibcxx_cv_func__atan2l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__atan2l_use" >&5 -+$as_echo "$glibcxx_cv_func__atan2l_use" >&6; } -+ -+ if test x$glibcxx_cv_func__atan2l_use = x"yes"; then -+ for ac_func in _atan2l -+do : -+ ac_fn_c_check_func "$LINENO" "_atan2l" "ac_cv_func__atan2l" -+if test "x$ac_cv_func__atan2l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ATAN2L 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for expl declaration" >&5 -+$as_echo_n "checking for expl declaration... " >&6; } -+ if test x${glibcxx_cv_func_expl_use+set} != xset; then -+ if ${glibcxx_cv_func_expl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ expl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_expl_use=yes -+else -+ glibcxx_cv_func_expl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_expl_use" >&5 -+$as_echo "$glibcxx_cv_func_expl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_expl_use = x"yes"; then -+ for ac_func in expl -+do : -+ ac_fn_c_check_func "$LINENO" "expl" "ac_cv_func_expl" -+if test "x$ac_cv_func_expl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_EXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expl declaration" >&5 -+$as_echo_n "checking for _expl declaration... " >&6; } -+ if test x${glibcxx_cv_func__expl_use+set} != xset; then -+ if ${glibcxx_cv_func__expl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _expl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__expl_use=yes -+else -+ glibcxx_cv_func__expl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__expl_use" >&5 -+$as_echo "$glibcxx_cv_func__expl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__expl_use = x"yes"; then -+ for ac_func in _expl -+do : -+ ac_fn_c_check_func "$LINENO" "_expl" "ac_cv_func__expl" -+if test "x$ac_cv_func__expl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__EXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsl declaration" >&5 -+$as_echo_n "checking for fabsl declaration... " >&6; } -+ if test x${glibcxx_cv_func_fabsl_use+set} != xset; then -+ if ${glibcxx_cv_func_fabsl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fabsl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fabsl_use=yes -+else -+ glibcxx_cv_func_fabsl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fabsl_use" >&5 -+$as_echo "$glibcxx_cv_func_fabsl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fabsl_use = x"yes"; then -+ for ac_func in fabsl -+do : -+ ac_fn_c_check_func "$LINENO" "fabsl" "ac_cv_func_fabsl" -+if test "x$ac_cv_func_fabsl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FABSL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsl declaration" >&5 -+$as_echo_n "checking for _fabsl declaration... " >&6; } -+ if test x${glibcxx_cv_func__fabsl_use+set} != xset; then -+ if ${glibcxx_cv_func__fabsl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fabsl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fabsl_use=yes -+else -+ glibcxx_cv_func__fabsl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fabsl_use" >&5 -+$as_echo "$glibcxx_cv_func__fabsl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fabsl_use = x"yes"; then -+ for ac_func in _fabsl -+do : -+ ac_fn_c_check_func "$LINENO" "_fabsl" "ac_cv_func__fabsl" -+if test "x$ac_cv_func__fabsl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FABSL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodl declaration" >&5 -+$as_echo_n "checking for fmodl declaration... " >&6; } -+ if test x${glibcxx_cv_func_fmodl_use+set} != xset; then -+ if ${glibcxx_cv_func_fmodl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ fmodl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fmodl_use=yes -+else -+ glibcxx_cv_func_fmodl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fmodl_use" >&5 -+$as_echo "$glibcxx_cv_func_fmodl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fmodl_use = x"yes"; then -+ for ac_func in fmodl -+do : -+ ac_fn_c_check_func "$LINENO" "fmodl" "ac_cv_func_fmodl" -+if test "x$ac_cv_func_fmodl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FMODL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodl declaration" >&5 -+$as_echo_n "checking for _fmodl declaration... " >&6; } -+ if test x${glibcxx_cv_func__fmodl_use+set} != xset; then -+ if ${glibcxx_cv_func__fmodl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _fmodl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fmodl_use=yes -+else -+ glibcxx_cv_func__fmodl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fmodl_use" >&5 -+$as_echo "$glibcxx_cv_func__fmodl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fmodl_use = x"yes"; then -+ for ac_func in _fmodl -+do : -+ ac_fn_c_check_func "$LINENO" "_fmodl" "ac_cv_func__fmodl" -+if test "x$ac_cv_func__fmodl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FMODL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpl declaration" >&5 -+$as_echo_n "checking for frexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func_frexpl_use+set} != xset; then -+ if ${glibcxx_cv_func_frexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ frexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpl_use=yes -+else -+ glibcxx_cv_func_frexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_frexpl_use = x"yes"; then -+ for ac_func in frexpl -+do : -+ ac_fn_c_check_func "$LINENO" "frexpl" "ac_cv_func_frexpl" -+if test "x$ac_cv_func_frexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpl declaration" >&5 -+$as_echo_n "checking for _frexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func__frexpl_use+set} != xset; then -+ if ${glibcxx_cv_func__frexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _frexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__frexpl_use=yes -+else -+ glibcxx_cv_func__frexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__frexpl_use" >&5 -+$as_echo "$glibcxx_cv_func__frexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__frexpl_use = x"yes"; then -+ for ac_func in _frexpl -+do : -+ ac_fn_c_check_func "$LINENO" "_frexpl" "ac_cv_func__frexpl" -+if test "x$ac_cv_func__frexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FREXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotl declaration" >&5 -+$as_echo_n "checking for hypotl declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypotl_use+set} != xset; then -+ if ${glibcxx_cv_func_hypotl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypotl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotl_use=yes -+else -+ glibcxx_cv_func_hypotl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotl_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypotl_use = x"yes"; then -+ for ac_func in hypotl -+do : -+ ac_fn_c_check_func "$LINENO" "hypotl" "ac_cv_func_hypotl" -+if test "x$ac_cv_func_hypotl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotl declaration" >&5 -+$as_echo_n "checking for _hypotl declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypotl_use+set} != xset; then -+ if ${glibcxx_cv_func__hypotl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypotl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypotl_use=yes -+else -+ glibcxx_cv_func__hypotl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypotl_use" >&5 -+$as_echo "$glibcxx_cv_func__hypotl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypotl_use = x"yes"; then -+ for ac_func in _hypotl -+do : -+ ac_fn_c_check_func "$LINENO" "_hypotl" "ac_cv_func__hypotl" -+if test "x$ac_cv_func__hypotl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOTL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpl declaration" >&5 -+$as_echo_n "checking for ldexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func_ldexpl_use+set} != xset; then -+ if ${glibcxx_cv_func_ldexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ ldexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpl_use=yes -+else -+ glibcxx_cv_func_ldexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_ldexpl_use = x"yes"; then -+ for ac_func in ldexpl -+do : -+ ac_fn_c_check_func "$LINENO" "ldexpl" "ac_cv_func_ldexpl" -+if test "x$ac_cv_func_ldexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpl declaration" >&5 -+$as_echo_n "checking for _ldexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func__ldexpl_use+set} != xset; then -+ if ${glibcxx_cv_func__ldexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _ldexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__ldexpl_use=yes -+else -+ glibcxx_cv_func__ldexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__ldexpl_use" >&5 -+$as_echo "$glibcxx_cv_func__ldexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__ldexpl_use = x"yes"; then -+ for ac_func in _ldexpl -+do : -+ ac_fn_c_check_func "$LINENO" "_ldexpl" "ac_cv_func__ldexpl" -+if test "x$ac_cv_func__ldexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LDEXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for logl declaration" >&5 -+$as_echo_n "checking for logl declaration... " >&6; } -+ if test x${glibcxx_cv_func_logl_use+set} != xset; then -+ if ${glibcxx_cv_func_logl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ logl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_logl_use=yes -+else -+ glibcxx_cv_func_logl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_logl_use" >&5 -+$as_echo "$glibcxx_cv_func_logl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_logl_use = x"yes"; then -+ for ac_func in logl -+do : -+ ac_fn_c_check_func "$LINENO" "logl" "ac_cv_func_logl" -+if test "x$ac_cv_func_logl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOGL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logl declaration" >&5 -+$as_echo_n "checking for _logl declaration... " >&6; } -+ if test x${glibcxx_cv_func__logl_use+set} != xset; then -+ if ${glibcxx_cv_func__logl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _logl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__logl_use=yes -+else -+ glibcxx_cv_func__logl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__logl_use" >&5 -+$as_echo "$glibcxx_cv_func__logl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__logl_use = x"yes"; then -+ for ac_func in _logl -+do : -+ ac_fn_c_check_func "$LINENO" "_logl" "ac_cv_func__logl" -+if test "x$ac_cv_func__logl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOGL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10l declaration" >&5 -+$as_echo_n "checking for log10l declaration... " >&6; } -+ if test x${glibcxx_cv_func_log10l_use+set} != xset; then -+ if ${glibcxx_cv_func_log10l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ log10l(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_log10l_use=yes -+else -+ glibcxx_cv_func_log10l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_log10l_use" >&5 -+$as_echo "$glibcxx_cv_func_log10l_use" >&6; } -+ -+ if test x$glibcxx_cv_func_log10l_use = x"yes"; then -+ for ac_func in log10l -+do : -+ ac_fn_c_check_func "$LINENO" "log10l" "ac_cv_func_log10l" -+if test "x$ac_cv_func_log10l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOG10L 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10l declaration" >&5 -+$as_echo_n "checking for _log10l declaration... " >&6; } -+ if test x${glibcxx_cv_func__log10l_use+set} != xset; then -+ if ${glibcxx_cv_func__log10l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _log10l(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__log10l_use=yes -+else -+ glibcxx_cv_func__log10l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__log10l_use" >&5 -+$as_echo "$glibcxx_cv_func__log10l_use" >&6; } -+ -+ if test x$glibcxx_cv_func__log10l_use = x"yes"; then -+ for ac_func in _log10l -+do : -+ ac_fn_c_check_func "$LINENO" "_log10l" "ac_cv_func__log10l" -+if test "x$ac_cv_func__log10l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOG10L 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modfl declaration" >&5 -+$as_echo_n "checking for modfl declaration... " >&6; } -+ if test x${glibcxx_cv_func_modfl_use+set} != xset; then -+ if ${glibcxx_cv_func_modfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modfl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modfl_use=yes -+else -+ glibcxx_cv_func_modfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modfl_use" >&5 -+$as_echo "$glibcxx_cv_func_modfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modfl_use = x"yes"; then -+ for ac_func in modfl -+do : -+ ac_fn_c_check_func "$LINENO" "modfl" "ac_cv_func_modfl" -+if test "x$ac_cv_func_modfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modfl declaration" >&5 -+$as_echo_n "checking for _modfl declaration... " >&6; } -+ if test x${glibcxx_cv_func__modfl_use+set} != xset; then -+ if ${glibcxx_cv_func__modfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modfl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modfl_use=yes -+else -+ glibcxx_cv_func__modfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modfl_use" >&5 -+$as_echo "$glibcxx_cv_func__modfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modfl_use = x"yes"; then -+ for ac_func in _modfl -+do : -+ ac_fn_c_check_func "$LINENO" "_modfl" "ac_cv_func__modfl" -+if test "x$ac_cv_func__modfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODFL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for powl declaration" >&5 -+$as_echo_n "checking for powl declaration... " >&6; } -+ if test x${glibcxx_cv_func_powl_use+set} != xset; then -+ if ${glibcxx_cv_func_powl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ powl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_powl_use=yes -+else -+ glibcxx_cv_func_powl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_powl_use" >&5 -+$as_echo "$glibcxx_cv_func_powl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_powl_use = x"yes"; then -+ for ac_func in powl -+do : -+ ac_fn_c_check_func "$LINENO" "powl" "ac_cv_func_powl" -+if test "x$ac_cv_func_powl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_POWL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powl declaration" >&5 -+$as_echo_n "checking for _powl declaration... " >&6; } -+ if test x${glibcxx_cv_func__powl_use+set} != xset; then -+ if ${glibcxx_cv_func__powl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _powl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__powl_use=yes -+else -+ glibcxx_cv_func__powl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__powl_use" >&5 -+$as_echo "$glibcxx_cv_func__powl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__powl_use = x"yes"; then -+ for ac_func in _powl -+do : -+ ac_fn_c_check_func "$LINENO" "_powl" "ac_cv_func__powl" -+if test "x$ac_cv_func__powl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__POWL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtl declaration" >&5 -+$as_echo_n "checking for sqrtl declaration... " >&6; } -+ if test x${glibcxx_cv_func_sqrtl_use+set} != xset; then -+ if ${glibcxx_cv_func_sqrtl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ sqrtl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sqrtl_use=yes -+else -+ glibcxx_cv_func_sqrtl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sqrtl_use" >&5 -+$as_echo "$glibcxx_cv_func_sqrtl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sqrtl_use = x"yes"; then -+ for ac_func in sqrtl -+do : -+ ac_fn_c_check_func "$LINENO" "sqrtl" "ac_cv_func_sqrtl" -+if test "x$ac_cv_func_sqrtl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SQRTL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtl declaration" >&5 -+$as_echo_n "checking for _sqrtl declaration... " >&6; } -+ if test x${glibcxx_cv_func__sqrtl_use+set} != xset; then -+ if ${glibcxx_cv_func__sqrtl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _sqrtl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sqrtl_use=yes -+else -+ glibcxx_cv_func__sqrtl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sqrtl_use" >&5 -+$as_echo "$glibcxx_cv_func__sqrtl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sqrtl_use = x"yes"; then -+ for ac_func in _sqrtl -+do : -+ ac_fn_c_check_func "$LINENO" "_sqrtl" "ac_cv_func__sqrtl" -+if test "x$ac_cv_func__sqrtl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SQRTL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosl declaration" >&5 -+$as_echo_n "checking for sincosl declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincosl_use+set} != xset; then -+ if ${glibcxx_cv_func_sincosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincosl(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincosl_use=yes -+else -+ glibcxx_cv_func_sincosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincosl_use" >&5 -+$as_echo "$glibcxx_cv_func_sincosl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincosl_use = x"yes"; then -+ for ac_func in sincosl -+do : -+ ac_fn_c_check_func "$LINENO" "sincosl" "ac_cv_func_sincosl" -+if test "x$ac_cv_func_sincosl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOSL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosl declaration" >&5 -+$as_echo_n "checking for _sincosl declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincosl_use+set} != xset; then -+ if ${glibcxx_cv_func__sincosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincosl(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincosl_use=yes -+else -+ glibcxx_cv_func__sincosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincosl_use" >&5 -+$as_echo "$glibcxx_cv_func__sincosl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincosl_use = x"yes"; then -+ for ac_func in _sincosl -+do : -+ ac_fn_c_check_func "$LINENO" "_sincosl" "ac_cv_func__sincosl" -+if test "x$ac_cv_func__sincosl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOSL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitel declaration" >&5 -+$as_echo_n "checking for finitel declaration... " >&6; } -+ if test x${glibcxx_cv_func_finitel_use+set} != xset; then -+ if ${glibcxx_cv_func_finitel_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finitel(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finitel_use=yes -+else -+ glibcxx_cv_func_finitel_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finitel_use" >&5 -+$as_echo "$glibcxx_cv_func_finitel_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finitel_use = x"yes"; then -+ for ac_func in finitel -+do : -+ ac_fn_c_check_func "$LINENO" "finitel" "ac_cv_func_finitel" -+if test "x$ac_cv_func_finitel" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITEL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitel declaration" >&5 -+$as_echo_n "checking for _finitel declaration... " >&6; } -+ if test x${glibcxx_cv_func__finitel_use+set} != xset; then -+ if ${glibcxx_cv_func__finitel_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finitel(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finitel_use=yes -+else -+ glibcxx_cv_func__finitel_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finitel_use" >&5 -+$as_echo "$glibcxx_cv_func__finitel_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finitel_use = x"yes"; then -+ for ac_func in _finitel -+do : -+ ac_fn_c_check_func "$LINENO" "_finitel" "ac_cv_func__finitel" -+if test "x$ac_cv_func__finitel" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITEL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ LIBS="$ac_save_LIBS" -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS='-fno-builtin -D_GNU_SOURCE' -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for at_quick_exit declaration" >&5 -+$as_echo_n "checking for at_quick_exit declaration... " >&6; } -+ if test x${glibcxx_cv_func_at_quick_exit_use+set} != xset; then -+ if ${glibcxx_cv_func_at_quick_exit_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ at_quick_exit(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_at_quick_exit_use=yes -+else -+ glibcxx_cv_func_at_quick_exit_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_at_quick_exit_use" >&5 -+$as_echo "$glibcxx_cv_func_at_quick_exit_use" >&6; } -+ if test x$glibcxx_cv_func_at_quick_exit_use = x"yes"; then -+ for ac_func in at_quick_exit -+do : -+ ac_fn_c_check_func "$LINENO" "at_quick_exit" "ac_cv_func_at_quick_exit" -+if test "x$ac_cv_func_at_quick_exit" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_AT_QUICK_EXIT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for quick_exit declaration" >&5 -+$as_echo_n "checking for quick_exit declaration... " >&6; } -+ if test x${glibcxx_cv_func_quick_exit_use+set} != xset; then -+ if ${glibcxx_cv_func_quick_exit_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ quick_exit(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_quick_exit_use=yes -+else -+ glibcxx_cv_func_quick_exit_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_quick_exit_use" >&5 -+$as_echo "$glibcxx_cv_func_quick_exit_use" >&6; } -+ if test x$glibcxx_cv_func_quick_exit_use = x"yes"; then -+ for ac_func in quick_exit -+do : -+ ac_fn_c_check_func "$LINENO" "quick_exit" "ac_cv_func_quick_exit" -+if test "x$ac_cv_func_quick_exit" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_QUICK_EXIT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtold declaration" >&5 -+$as_echo_n "checking for strtold declaration... " >&6; } -+ if test x${glibcxx_cv_func_strtold_use+set} != xset; then -+ if ${glibcxx_cv_func_strtold_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ strtold(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_strtold_use=yes -+else -+ glibcxx_cv_func_strtold_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_strtold_use" >&5 -+$as_echo "$glibcxx_cv_func_strtold_use" >&6; } -+ if test x$glibcxx_cv_func_strtold_use = x"yes"; then -+ for ac_func in strtold -+do : -+ ac_fn_c_check_func "$LINENO" "strtold" "ac_cv_func_strtold" -+if test "x$ac_cv_func_strtold" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STRTOLD 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtof declaration" >&5 -+$as_echo_n "checking for strtof declaration... " >&6; } -+ if test x${glibcxx_cv_func_strtof_use+set} != xset; then -+ if ${glibcxx_cv_func_strtof_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ strtof(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_strtof_use=yes -+else -+ glibcxx_cv_func_strtof_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_strtof_use" >&5 -+$as_echo "$glibcxx_cv_func_strtof_use" >&6; } -+ if test x$glibcxx_cv_func_strtof_use = x"yes"; then -+ for ac_func in strtof -+do : -+ ac_fn_c_check_func "$LINENO" "strtof" "ac_cv_func_strtof" -+if test "x$ac_cv_func_strtof" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STRTOF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ -+ $as_echo "@%:@define _GLIBCXX_USE_DEV_RANDOM 1" >>confdefs.h -+ -+ $as_echo "@%:@define _GLIBCXX_USE_RANDOM_TR1 1" >>confdefs.h -+ -+ -+ -+ @%:@ Check whether --enable-tls was given. -+if test "${enable_tls+set}" = set; then : -+ enableval=$enable_tls; -+ case "$enableval" in -+ yes|no) ;; -+ *) as_fn_error $? "Argument to enable/disable tls must be yes or no" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_tls=yes -+fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the target supports thread-local storage" >&5 -+$as_echo_n "checking whether the target supports thread-local storage... " >&6; } -+if ${gcc_cv_have_tls+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test "$cross_compiling" = yes; then : -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__thread int a; int b; int main() { return a = b; } -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ chktls_save_LDFLAGS="$LDFLAGS" -+ case $host in -+ *-*-linux* | -*-uclinuxfdpic*) -+ LDFLAGS="-shared -Wl,--no-undefined $LDFLAGS" -+ ;; -+ esac -+ chktls_save_CFLAGS="$CFLAGS" -+ CFLAGS="-fPIC $CFLAGS" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+int f() { return 0; } -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__thread int a; int b; int f() { return a = b; } -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ gcc_cv_have_tls=yes -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+else -+ gcc_cv_have_tls=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ CFLAGS="$chktls_save_CFLAGS" -+ LDFLAGS="$chktls_save_LDFLAGS" -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ -+ -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__thread int a; int b; int main() { return a = b; } -+_ACEOF -+if ac_fn_c_try_run "$LINENO"; then : -+ chktls_save_LDFLAGS="$LDFLAGS" -+ LDFLAGS="-static $LDFLAGS" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+int main() { return 0; } -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ if test "$cross_compiling" = yes; then : -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "cannot run test program while cross compiling -+See \`config.log' for more details" "$LINENO" 5; } -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__thread int a; int b; int main() { return a = b; } -+_ACEOF -+if ac_fn_c_try_run "$LINENO"; then : -+ gcc_cv_have_tls=yes -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ -+ conftest.$ac_objext conftest.beam conftest.$ac_ext -+fi -+ -+else -+ gcc_cv_have_tls=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ LDFLAGS="$chktls_save_LDFLAGS" -+ if test $gcc_cv_have_tls = yes; then -+ chktls_save_CFLAGS="$CFLAGS" -+ thread_CFLAGS=failed -+ for flag in '' '-pthread' '-lpthread'; do -+ CFLAGS="$flag $chktls_save_CFLAGS" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ void *g(void *d) { return NULL; } -+int -+main () -+{ -+pthread_t t; pthread_create(&t,NULL,g,NULL); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ thread_CFLAGS="$flag" -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ if test "X$thread_CFLAGS" != Xfailed; then -+ break -+ fi -+ done -+ CFLAGS="$chktls_save_CFLAGS" -+ if test "X$thread_CFLAGS" != Xfailed; then -+ CFLAGS="$thread_CFLAGS $chktls_save_CFLAGS" -+ if test "$cross_compiling" = yes; then : -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "cannot run test program while cross compiling -+See \`config.log' for more details" "$LINENO" 5; } -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ __thread int a; -+ static int *volatile a_in_other_thread; -+ static void * -+ thread_func (void *arg) -+ { -+ a_in_other_thread = &a; -+ return (void *)0; -+ } -+int -+main () -+{ -+pthread_t thread; -+ void *thread_retval; -+ int *volatile a_in_main_thread; -+ a_in_main_thread = &a; -+ if (pthread_create (&thread, (pthread_attr_t *)0, -+ thread_func, (void *)0)) -+ return 0; -+ if (pthread_join (thread, &thread_retval)) -+ return 0; -+ return (a_in_other_thread == a_in_main_thread); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_run "$LINENO"; then : -+ gcc_cv_have_tls=yes -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ -+ conftest.$ac_objext conftest.beam conftest.$ac_ext -+fi -+ -+ CFLAGS="$chktls_save_CFLAGS" -+ fi -+ fi -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ -+ conftest.$ac_objext conftest.beam conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gcc_cv_have_tls" >&5 -+$as_echo "$gcc_cv_have_tls" >&6; } -+ if test "$enable_tls $gcc_cv_have_tls" = "yes yes"; then -+ -+$as_echo "@%:@define HAVE_TLS 1" >>confdefs.h -+ -+ fi -+ for ac_func in __cxa_thread_atexit_impl -+do : -+ ac_fn_c_check_func "$LINENO" "__cxa_thread_atexit_impl" "ac_cv_func___cxa_thread_atexit_impl" -+if test "x$ac_cv_func___cxa_thread_atexit_impl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE___CXA_THREAD_ATEXIT_IMPL 1 -+_ACEOF -+ -+fi -+done -+ -+ for ac_func in aligned_alloc posix_memalign memalign _aligned_malloc -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ for ac_func in timespec_get -+do : -+ ac_fn_c_check_func "$LINENO" "timespec_get" "ac_cv_func_timespec_get" -+if test "x$ac_cv_func_timespec_get" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_TIMESPEC_GET 1 -+_ACEOF -+ -+fi -+done -+ -+ for ac_func in sockatmark -+do : -+ ac_fn_c_check_func "$LINENO" "sockatmark" "ac_cv_func_sockatmark" -+if test "x$ac_cv_func_sockatmark" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SOCKATMARK 1 -+_ACEOF -+ -+fi -+done -+ -+ for ac_func in uselocale -+do : -+ ac_fn_c_check_func "$LINENO" "uselocale" "ac_cv_func_uselocale" -+if test "x$ac_cv_func_uselocale" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_USELOCALE 1 -+_ACEOF -+ -+fi -+done -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5 -+$as_echo_n "checking for iconv... " >&6; } -+if ${am_cv_func_iconv+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ am_cv_func_iconv="no, consider installing GNU libiconv" -+ am_cv_lib_iconv=no -+ am_save_CPPFLAGS="$CPPFLAGS" -+ CPPFLAGS="$CPPFLAGS $INCICONV" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+#include -+int -+main () -+{ -+iconv_t cd = iconv_open("",""); -+ iconv(cd,NULL,NULL,NULL,NULL); -+ iconv_close(cd); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ am_cv_func_iconv=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ CPPFLAGS="$am_save_CPPFLAGS" -+ -+ if test "$am_cv_func_iconv" != yes && test -d ../libiconv; then -+ for _libs in .libs _libs; do -+ am_save_CPPFLAGS="$CPPFLAGS" -+ am_save_LIBS="$LIBS" -+ CPPFLAGS="$CPPFLAGS -I../libiconv/include" -+ LIBS="$LIBS ../libiconv/lib/$_libs/libiconv.a" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+#include -+int -+main () -+{ -+iconv_t cd = iconv_open("",""); -+ iconv(cd,NULL,NULL,NULL,NULL); -+ iconv_close(cd); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ INCICONV="-I../libiconv/include" -+ LIBICONV='${top_builddir}'/../libiconv/lib/$_libs/libiconv.a -+ LTLIBICONV='${top_builddir}'/../libiconv/lib/libiconv.la -+ am_cv_lib_iconv=yes -+ am_cv_func_iconv=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ CPPFLAGS="$am_save_CPPFLAGS" -+ LIBS="$am_save_LIBS" -+ if test "$am_cv_func_iconv" = "yes"; then -+ break -+ fi -+ done -+ fi -+ -+ if test "$am_cv_func_iconv" != yes; then -+ am_save_CPPFLAGS="$CPPFLAGS" -+ am_save_LIBS="$LIBS" -+ CPPFLAGS="$CPPFLAGS $INCICONV" -+ LIBS="$LIBS $LIBICONV" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+#include -+int -+main () -+{ -+iconv_t cd = iconv_open("",""); -+ iconv(cd,NULL,NULL,NULL,NULL); -+ iconv_close(cd); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ am_cv_lib_iconv=yes -+ am_cv_func_iconv=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ CPPFLAGS="$am_save_CPPFLAGS" -+ LIBS="$am_save_LIBS" -+ fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5 -+$as_echo "$am_cv_func_iconv" >&6; } -+ if test "$am_cv_func_iconv" = yes; then -+ -+$as_echo "@%:@define HAVE_ICONV 1" >>confdefs.h -+ -+ fi -+ if test "$am_cv_lib_iconv" = yes; then -+ -+ for element in $INCICONV; do -+ haveit= -+ for x in $CPPFLAGS; do -+ -+ acl_save_prefix="$prefix" -+ prefix="$acl_final_prefix" -+ acl_save_exec_prefix="$exec_prefix" -+ exec_prefix="$acl_final_exec_prefix" -+ eval x=\"$x\" -+ exec_prefix="$acl_save_exec_prefix" -+ prefix="$acl_save_prefix" -+ -+ if test "X$x" = "X$element"; then -+ haveit=yes -+ break -+ fi -+ done -+ if test -z "$haveit"; then -+ CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" -+ fi -+ done -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5 -+$as_echo_n "checking how to link with libiconv... " >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5 -+$as_echo "$LIBICONV" >&6; } -+ else -+ LIBICONV= -+ LTLIBICONV= -+ fi -+ -+ -+ -+ if test "$am_cv_func_iconv" = yes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv declaration" >&5 -+$as_echo_n "checking for iconv declaration... " >&6; } -+ if ${am_cv_proto_iconv+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#include -+extern -+#ifdef __cplusplus -+"C" -+#endif -+#if defined(__STDC__) || defined(__cplusplus) -+size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); -+#else -+size_t iconv(); -+#endif -+ -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ am_cv_proto_iconv_arg1="" -+else -+ am_cv_proto_iconv_arg1="const" -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);" -+fi -+ -+ am_cv_proto_iconv=`echo "$am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${ac_t:- -+ }$am_cv_proto_iconv" >&5 -+$as_echo "${ac_t:- -+ }$am_cv_proto_iconv" >&6; } -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define ICONV_CONST $am_cv_proto_iconv_arg1 -+_ACEOF -+ -+ fi -+ -+ ;; -+ *-mingw32*) -+ -+ # If we're not using GNU ld, then there's no point in even trying these -+ # tests. Check for that first. We should have already tested for gld -+ # by now (in libtool), but require it now just to be safe... -+ test -z "$SECTION_LDFLAGS" && SECTION_LDFLAGS='' -+ test -z "$OPT_LDFLAGS" && OPT_LDFLAGS='' -+ -+ -+ -+ # The name set by libtool depends on the version of libtool. Shame on us -+ # for depending on an impl detail, but c'est la vie. Older versions used -+ # ac_cv_prog_gnu_ld, but now it's lt_cv_prog_gnu_ld, and is copied back on -+ # top of with_gnu_ld (which is also set by --with-gnu-ld, so that actually -+ # makes sense). We'll test with_gnu_ld everywhere else, so if that isn't -+ # set (hence we're using an older libtool), then set it. -+ if test x${with_gnu_ld+set} != xset; then -+ if test x${ac_cv_prog_gnu_ld+set} != xset; then -+ # We got through "ac_require(ac_prog_ld)" and still not set? Huh? -+ with_gnu_ld=no -+ else -+ with_gnu_ld=$ac_cv_prog_gnu_ld -+ fi -+ fi -+ -+ # Start by getting the version number. I think the libtool test already -+ # does some of this, but throws away the result. -+ glibcxx_ld_is_gold=no -+ glibcxx_ld_is_mold=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld version" >&5 -+$as_echo_n "checking for ld version... " >&6; } -+ -+ if $LD --version 2>/dev/null | grep 'GNU gold' >/dev/null 2>&1; then -+ glibcxx_ld_is_gold=yes -+ elif $LD --version 2>/dev/null | grep 'mold' >/dev/null 2>&1; then -+ glibcxx_ld_is_mold=yes -+ fi -+ ldver=`$LD --version 2>/dev/null | -+ sed -e 's/[. ][0-9]\{8\}$//;s/.* \([^ ]\{1,\}\)$/\1/; q'` -+ -+ glibcxx_gnu_ld_version=`echo $ldver | \ -+ $AWK -F. '{ if (NF<3) $3=0; print ($1*100+$2)*100+$3 }'` -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_gnu_ld_version" >&5 -+$as_echo "$glibcxx_gnu_ld_version" >&6; } -+ fi -+ -+ # Set --gc-sections. -+ glibcxx_have_gc_sections=no -+ if test "$glibcxx_ld_is_gold" = "yes" || test "$glibcxx_ld_is_mold" = "yes" ; then -+ if $LD --help 2>/dev/null | grep gc-sections >/dev/null 2>&1; then -+ glibcxx_have_gc_sections=yes -+ fi -+ else -+ glibcxx_gcsections_min_ld=21602 -+ if test x"$with_gnu_ld" = x"yes" && -+ test $glibcxx_gnu_ld_version -gt $glibcxx_gcsections_min_ld ; then -+ glibcxx_have_gc_sections=yes -+ fi -+ fi -+ if test "$glibcxx_have_gc_sections" = "yes"; then -+ # Sufficiently young GNU ld it is! Joy and bunny rabbits! -+ # NB: This flag only works reliably after 2.16.1. Configure tests -+ # for this are difficult, so hard wire a value that should work. -+ -+ ac_test_CFLAGS="${CFLAGS+set}" -+ ac_save_CFLAGS="$CFLAGS" -+ CFLAGS='-Wl,--gc-sections' -+ -+ # Check for -Wl,--gc-sections -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5 -+$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; } -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ int one(void) { return 1; } -+ int two(void) { return 2; } -+ -+int -+main () -+{ -+ two(); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_gcsections=yes -+else -+ ac_gcsections=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ if test "$ac_gcsections" = "yes"; then -+ rm -f conftest.c -+ touch conftest.c -+ if $CC -c conftest.c; then -+ if $LD --gc-sections -o conftest conftest.o 2>&1 | \ -+ grep "Warning: gc-sections option ignored" > /dev/null; then -+ ac_gcsections=no -+ fi -+ fi -+ rm -f conftest.c conftest.o conftest -+ fi -+ if test "$ac_gcsections" = "yes"; then -+ SECTION_LDFLAGS="-Wl,--gc-sections $SECTION_LDFLAGS" -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_gcsections" >&5 -+$as_echo "$ac_gcsections" >&6; } -+ -+ if test "$ac_test_CFLAGS" = set; then -+ CFLAGS="$ac_save_CFLAGS" -+ else -+ # this is the suspicious part -+ CFLAGS='' -+ fi -+ fi -+ -+ # Set -z,relro. -+ # Note this is only for shared objects. -+ ac_ld_relro=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ # cygwin and mingw uses PE, which has no ELF relro support, -+ # multi target ld may confuse configure machinery -+ case "$host" in -+ *-*-cygwin*) -+ ;; -+ *-*-mingw*) -+ ;; -+ *) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,-z,relro" >&5 -+$as_echo_n "checking for ld that supports -Wl,-z,relro... " >&6; } -+ cxx_z_relo=`$LD -v --help 2>/dev/null | grep "z relro"` -+ if test -n "$cxx_z_relo"; then -+ OPT_LDFLAGS="-Wl,-z,relro" -+ ac_ld_relro=yes -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ld_relro" >&5 -+$as_echo "$ac_ld_relro" >&6; } -+ esac -+ fi -+ -+ # Set linker optimization flags. -+ if test x"$with_gnu_ld" = x"yes"; then -+ OPT_LDFLAGS="-Wl,-O1 $OPT_LDFLAGS" -+ fi -+ -+ -+ -+ -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS='-fno-builtin -D_GNU_SOURCE' -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5 -+$as_echo_n "checking for sin in -lm... " >&6; } -+if ${ac_cv_lib_m_sin+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lm $LIBS" -+if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char sin (); -+int -+main () -+{ -+return sin (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_m_sin=yes -+else -+ ac_cv_lib_m_sin=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5 -+$as_echo "$ac_cv_lib_m_sin" >&6; } -+if test "x$ac_cv_lib_m_sin" = xyes; then : -+ libm="-lm" -+fi -+ -+ ac_save_LIBS="$LIBS" -+ LIBS="$LIBS $libm" -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf declaration" >&5 -+$as_echo_n "checking for isinf declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinf_use+set} != xset; then -+ if ${glibcxx_cv_func_isinf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinf_use=yes -+else -+ glibcxx_cv_func_isinf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinf_use" >&5 -+$as_echo "$glibcxx_cv_func_isinf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinf_use = x"yes"; then -+ for ac_func in isinf -+do : -+ ac_fn_c_check_func "$LINENO" "isinf" "ac_cv_func_isinf" -+if test "x$ac_cv_func_isinf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinf declaration" >&5 -+$as_echo_n "checking for _isinf declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinf_use+set} != xset; then -+ if ${glibcxx_cv_func__isinf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinf_use=yes -+else -+ glibcxx_cv_func__isinf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinf_use" >&5 -+$as_echo "$glibcxx_cv_func__isinf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinf_use = x"yes"; then -+ for ac_func in _isinf -+do : -+ ac_fn_c_check_func "$LINENO" "_isinf" "ac_cv_func__isinf" -+if test "x$ac_cv_func__isinf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan declaration" >&5 -+$as_echo_n "checking for isnan declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnan_use+set} != xset; then -+ if ${glibcxx_cv_func_isnan_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnan(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnan_use=yes -+else -+ glibcxx_cv_func_isnan_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnan_use" >&5 -+$as_echo "$glibcxx_cv_func_isnan_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnan_use = x"yes"; then -+ for ac_func in isnan -+do : -+ ac_fn_c_check_func "$LINENO" "isnan" "ac_cv_func_isnan" -+if test "x$ac_cv_func_isnan" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNAN 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnan declaration" >&5 -+$as_echo_n "checking for _isnan declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnan_use+set} != xset; then -+ if ${glibcxx_cv_func__isnan_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnan(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnan_use=yes -+else -+ glibcxx_cv_func__isnan_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnan_use" >&5 -+$as_echo "$glibcxx_cv_func__isnan_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnan_use = x"yes"; then -+ for ac_func in _isnan -+do : -+ ac_fn_c_check_func "$LINENO" "_isnan" "ac_cv_func__isnan" -+if test "x$ac_cv_func__isnan" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNAN 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finite declaration" >&5 -+$as_echo_n "checking for finite declaration... " >&6; } -+ if test x${glibcxx_cv_func_finite_use+set} != xset; then -+ if ${glibcxx_cv_func_finite_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finite(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finite_use=yes -+else -+ glibcxx_cv_func_finite_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finite_use" >&5 -+$as_echo "$glibcxx_cv_func_finite_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finite_use = x"yes"; then -+ for ac_func in finite -+do : -+ ac_fn_c_check_func "$LINENO" "finite" "ac_cv_func_finite" -+if test "x$ac_cv_func_finite" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITE 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finite declaration" >&5 -+$as_echo_n "checking for _finite declaration... " >&6; } -+ if test x${glibcxx_cv_func__finite_use+set} != xset; then -+ if ${glibcxx_cv_func__finite_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finite(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finite_use=yes -+else -+ glibcxx_cv_func__finite_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finite_use" >&5 -+$as_echo "$glibcxx_cv_func__finite_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finite_use = x"yes"; then -+ for ac_func in _finite -+do : -+ ac_fn_c_check_func "$LINENO" "_finite" "ac_cv_func__finite" -+if test "x$ac_cv_func__finite" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITE 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincos declaration" >&5 -+$as_echo_n "checking for sincos declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincos_use+set} != xset; then -+ if ${glibcxx_cv_func_sincos_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincos(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincos_use=yes -+else -+ glibcxx_cv_func_sincos_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincos_use" >&5 -+$as_echo "$glibcxx_cv_func_sincos_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincos_use = x"yes"; then -+ for ac_func in sincos -+do : -+ ac_fn_c_check_func "$LINENO" "sincos" "ac_cv_func_sincos" -+if test "x$ac_cv_func_sincos" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincos declaration" >&5 -+$as_echo_n "checking for _sincos declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincos_use+set} != xset; then -+ if ${glibcxx_cv_func__sincos_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincos(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincos_use=yes -+else -+ glibcxx_cv_func__sincos_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincos_use" >&5 -+$as_echo "$glibcxx_cv_func__sincos_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincos_use = x"yes"; then -+ for ac_func in _sincos -+do : -+ ac_fn_c_check_func "$LINENO" "_sincos" "ac_cv_func__sincos" -+if test "x$ac_cv_func__sincos" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fpclass declaration" >&5 -+$as_echo_n "checking for fpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func_fpclass_use+set} != xset; then -+ if ${glibcxx_cv_func_fpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fpclass_use=yes -+else -+ glibcxx_cv_func_fpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fpclass_use" >&5 -+$as_echo "$glibcxx_cv_func_fpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fpclass_use = x"yes"; then -+ for ac_func in fpclass -+do : -+ ac_fn_c_check_func "$LINENO" "fpclass" "ac_cv_func_fpclass" -+if test "x$ac_cv_func_fpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fpclass declaration" >&5 -+$as_echo_n "checking for _fpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func__fpclass_use+set} != xset; then -+ if ${glibcxx_cv_func__fpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fpclass_use=yes -+else -+ glibcxx_cv_func__fpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fpclass_use" >&5 -+$as_echo "$glibcxx_cv_func__fpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fpclass_use = x"yes"; then -+ for ac_func in _fpclass -+do : -+ ac_fn_c_check_func "$LINENO" "_fpclass" "ac_cv_func__fpclass" -+if test "x$ac_cv_func__fpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for qfpclass declaration" >&5 -+$as_echo_n "checking for qfpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func_qfpclass_use+set} != xset; then -+ if ${glibcxx_cv_func_qfpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ qfpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_qfpclass_use=yes -+else -+ glibcxx_cv_func_qfpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_qfpclass_use" >&5 -+$as_echo "$glibcxx_cv_func_qfpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func_qfpclass_use = x"yes"; then -+ for ac_func in qfpclass -+do : -+ ac_fn_c_check_func "$LINENO" "qfpclass" "ac_cv_func_qfpclass" -+if test "x$ac_cv_func_qfpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_QFPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _qfpclass declaration" >&5 -+$as_echo_n "checking for _qfpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func__qfpclass_use+set} != xset; then -+ if ${glibcxx_cv_func__qfpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _qfpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__qfpclass_use=yes -+else -+ glibcxx_cv_func__qfpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__qfpclass_use" >&5 -+$as_echo "$glibcxx_cv_func__qfpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func__qfpclass_use = x"yes"; then -+ for ac_func in _qfpclass -+do : -+ ac_fn_c_check_func "$LINENO" "_qfpclass" "ac_cv_func__qfpclass" -+if test "x$ac_cv_func__qfpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__QFPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypot declaration" >&5 -+$as_echo_n "checking for hypot declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypot_use+set} != xset; then -+ if ${glibcxx_cv_func_hypot_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypot(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypot_use=yes -+else -+ glibcxx_cv_func_hypot_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypot_use" >&5 -+$as_echo "$glibcxx_cv_func_hypot_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypot_use = x"yes"; then -+ for ac_func in hypot -+do : -+ ac_fn_c_check_func "$LINENO" "hypot" "ac_cv_func_hypot" -+if test "x$ac_cv_func_hypot" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOT 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypot declaration" >&5 -+$as_echo_n "checking for _hypot declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypot_use+set} != xset; then -+ if ${glibcxx_cv_func__hypot_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypot(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypot_use=yes -+else -+ glibcxx_cv_func__hypot_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypot_use" >&5 -+$as_echo "$glibcxx_cv_func__hypot_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypot_use = x"yes"; then -+ for ac_func in _hypot -+do : -+ ac_fn_c_check_func "$LINENO" "_hypot" "ac_cv_func__hypot" -+if test "x$ac_cv_func__hypot" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for float trig functions" >&5 -+$as_echo_n "checking for float trig functions... " >&6; } -+ if ${glibcxx_cv_func_float_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+acosf (0); asinf (0); atanf (0); cosf (0); sinf (0); tanf (0); coshf (0); sinhf (0); tanhf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_float_trig_use=yes -+else -+ glibcxx_cv_func_float_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_float_trig_use" >&5 -+$as_echo "$glibcxx_cv_func_float_trig_use" >&6; } -+ if test x$glibcxx_cv_func_float_trig_use = x"yes"; then -+ for ac_func in acosf asinf atanf cosf sinf tanf coshf sinhf tanhf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float trig functions" >&5 -+$as_echo_n "checking for _float trig functions... " >&6; } -+ if ${glibcxx_cv_func__float_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_acosf (0); _asinf (0); _atanf (0); _cosf (0); _sinf (0); _tanf (0); _coshf (0); _sinhf (0); _tanhf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__float_trig_use=yes -+else -+ glibcxx_cv_func__float_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__float_trig_use" >&5 -+$as_echo "$glibcxx_cv_func__float_trig_use" >&6; } -+ if test x$glibcxx_cv_func__float_trig_use = x"yes"; then -+ for ac_func in _acosf _asinf _atanf _cosf _sinf _tanf _coshf _sinhf _tanhf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for float round functions" >&5 -+$as_echo_n "checking for float round functions... " >&6; } -+ if ${glibcxx_cv_func_float_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ceilf (0); floorf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_float_round_use=yes -+else -+ glibcxx_cv_func_float_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_float_round_use" >&5 -+$as_echo "$glibcxx_cv_func_float_round_use" >&6; } -+ if test x$glibcxx_cv_func_float_round_use = x"yes"; then -+ for ac_func in ceilf floorf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float round functions" >&5 -+$as_echo_n "checking for _float round functions... " >&6; } -+ if ${glibcxx_cv_func__float_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_ceilf (0); _floorf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__float_round_use=yes -+else -+ glibcxx_cv_func__float_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__float_round_use" >&5 -+$as_echo "$glibcxx_cv_func__float_round_use" >&6; } -+ if test x$glibcxx_cv_func__float_round_use = x"yes"; then -+ for ac_func in _ceilf _floorf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for expf declaration" >&5 -+$as_echo_n "checking for expf declaration... " >&6; } -+ if test x${glibcxx_cv_func_expf_use+set} != xset; then -+ if ${glibcxx_cv_func_expf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ expf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_expf_use=yes -+else -+ glibcxx_cv_func_expf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_expf_use" >&5 -+$as_echo "$glibcxx_cv_func_expf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_expf_use = x"yes"; then -+ for ac_func in expf -+do : -+ ac_fn_c_check_func "$LINENO" "expf" "ac_cv_func_expf" -+if test "x$ac_cv_func_expf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_EXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expf declaration" >&5 -+$as_echo_n "checking for _expf declaration... " >&6; } -+ if test x${glibcxx_cv_func__expf_use+set} != xset; then -+ if ${glibcxx_cv_func__expf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _expf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__expf_use=yes -+else -+ glibcxx_cv_func__expf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__expf_use" >&5 -+$as_echo "$glibcxx_cv_func__expf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__expf_use = x"yes"; then -+ for ac_func in _expf -+do : -+ ac_fn_c_check_func "$LINENO" "_expf" "ac_cv_func__expf" -+if test "x$ac_cv_func__expf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__EXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanf declaration" >&5 -+$as_echo_n "checking for isnanf declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnanf_use+set} != xset; then -+ if ${glibcxx_cv_func_isnanf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnanf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnanf_use=yes -+else -+ glibcxx_cv_func_isnanf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnanf_use" >&5 -+$as_echo "$glibcxx_cv_func_isnanf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnanf_use = x"yes"; then -+ for ac_func in isnanf -+do : -+ ac_fn_c_check_func "$LINENO" "isnanf" "ac_cv_func_isnanf" -+if test "x$ac_cv_func_isnanf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNANF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanf declaration" >&5 -+$as_echo_n "checking for _isnanf declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnanf_use+set} != xset; then -+ if ${glibcxx_cv_func__isnanf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnanf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnanf_use=yes -+else -+ glibcxx_cv_func__isnanf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnanf_use" >&5 -+$as_echo "$glibcxx_cv_func__isnanf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnanf_use = x"yes"; then -+ for ac_func in _isnanf -+do : -+ ac_fn_c_check_func "$LINENO" "_isnanf" "ac_cv_func__isnanf" -+if test "x$ac_cv_func__isnanf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNANF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinff declaration" >&5 -+$as_echo_n "checking for isinff declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinff_use+set} != xset; then -+ if ${glibcxx_cv_func_isinff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinff(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinff_use=yes -+else -+ glibcxx_cv_func_isinff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinff_use" >&5 -+$as_echo "$glibcxx_cv_func_isinff_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinff_use = x"yes"; then -+ for ac_func in isinff -+do : -+ ac_fn_c_check_func "$LINENO" "isinff" "ac_cv_func_isinff" -+if test "x$ac_cv_func_isinff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINFF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinff declaration" >&5 -+$as_echo_n "checking for _isinff declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinff_use+set} != xset; then -+ if ${glibcxx_cv_func__isinff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinff(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinff_use=yes -+else -+ glibcxx_cv_func__isinff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinff_use" >&5 -+$as_echo "$glibcxx_cv_func__isinff_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinff_use = x"yes"; then -+ for ac_func in _isinff -+do : -+ ac_fn_c_check_func "$LINENO" "_isinff" "ac_cv_func__isinff" -+if test "x$ac_cv_func__isinff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINFF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2f declaration" >&5 -+$as_echo_n "checking for atan2f declaration... " >&6; } -+ if test x${glibcxx_cv_func_atan2f_use+set} != xset; then -+ if ${glibcxx_cv_func_atan2f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ atan2f(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atan2f_use=yes -+else -+ glibcxx_cv_func_atan2f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atan2f_use" >&5 -+$as_echo "$glibcxx_cv_func_atan2f_use" >&6; } -+ -+ if test x$glibcxx_cv_func_atan2f_use = x"yes"; then -+ for ac_func in atan2f -+do : -+ ac_fn_c_check_func "$LINENO" "atan2f" "ac_cv_func_atan2f" -+if test "x$ac_cv_func_atan2f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATAN2F 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2f declaration" >&5 -+$as_echo_n "checking for _atan2f declaration... " >&6; } -+ if test x${glibcxx_cv_func__atan2f_use+set} != xset; then -+ if ${glibcxx_cv_func__atan2f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _atan2f(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__atan2f_use=yes -+else -+ glibcxx_cv_func__atan2f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__atan2f_use" >&5 -+$as_echo "$glibcxx_cv_func__atan2f_use" >&6; } -+ -+ if test x$glibcxx_cv_func__atan2f_use = x"yes"; then -+ for ac_func in _atan2f -+do : -+ ac_fn_c_check_func "$LINENO" "_atan2f" "ac_cv_func__atan2f" -+if test "x$ac_cv_func__atan2f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ATAN2F 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsf declaration" >&5 -+$as_echo_n "checking for fabsf declaration... " >&6; } -+ if test x${glibcxx_cv_func_fabsf_use+set} != xset; then -+ if ${glibcxx_cv_func_fabsf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fabsf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fabsf_use=yes -+else -+ glibcxx_cv_func_fabsf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fabsf_use" >&5 -+$as_echo "$glibcxx_cv_func_fabsf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fabsf_use = x"yes"; then -+ for ac_func in fabsf -+do : -+ ac_fn_c_check_func "$LINENO" "fabsf" "ac_cv_func_fabsf" -+if test "x$ac_cv_func_fabsf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FABSF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsf declaration" >&5 -+$as_echo_n "checking for _fabsf declaration... " >&6; } -+ if test x${glibcxx_cv_func__fabsf_use+set} != xset; then -+ if ${glibcxx_cv_func__fabsf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fabsf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fabsf_use=yes -+else -+ glibcxx_cv_func__fabsf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fabsf_use" >&5 -+$as_echo "$glibcxx_cv_func__fabsf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fabsf_use = x"yes"; then -+ for ac_func in _fabsf -+do : -+ ac_fn_c_check_func "$LINENO" "_fabsf" "ac_cv_func__fabsf" -+if test "x$ac_cv_func__fabsf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FABSF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodf declaration" >&5 -+$as_echo_n "checking for fmodf declaration... " >&6; } -+ if test x${glibcxx_cv_func_fmodf_use+set} != xset; then -+ if ${glibcxx_cv_func_fmodf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ fmodf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fmodf_use=yes -+else -+ glibcxx_cv_func_fmodf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fmodf_use" >&5 -+$as_echo "$glibcxx_cv_func_fmodf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fmodf_use = x"yes"; then -+ for ac_func in fmodf -+do : -+ ac_fn_c_check_func "$LINENO" "fmodf" "ac_cv_func_fmodf" -+if test "x$ac_cv_func_fmodf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FMODF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodf declaration" >&5 -+$as_echo_n "checking for _fmodf declaration... " >&6; } -+ if test x${glibcxx_cv_func__fmodf_use+set} != xset; then -+ if ${glibcxx_cv_func__fmodf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _fmodf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fmodf_use=yes -+else -+ glibcxx_cv_func__fmodf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fmodf_use" >&5 -+$as_echo "$glibcxx_cv_func__fmodf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fmodf_use = x"yes"; then -+ for ac_func in _fmodf -+do : -+ ac_fn_c_check_func "$LINENO" "_fmodf" "ac_cv_func__fmodf" -+if test "x$ac_cv_func__fmodf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FMODF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpf declaration" >&5 -+$as_echo_n "checking for frexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func_frexpf_use+set} != xset; then -+ if ${glibcxx_cv_func_frexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ frexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpf_use=yes -+else -+ glibcxx_cv_func_frexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_frexpf_use = x"yes"; then -+ for ac_func in frexpf -+do : -+ ac_fn_c_check_func "$LINENO" "frexpf" "ac_cv_func_frexpf" -+if test "x$ac_cv_func_frexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpf declaration" >&5 -+$as_echo_n "checking for _frexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func__frexpf_use+set} != xset; then -+ if ${glibcxx_cv_func__frexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _frexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__frexpf_use=yes -+else -+ glibcxx_cv_func__frexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__frexpf_use" >&5 -+$as_echo "$glibcxx_cv_func__frexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__frexpf_use = x"yes"; then -+ for ac_func in _frexpf -+do : -+ ac_fn_c_check_func "$LINENO" "_frexpf" "ac_cv_func__frexpf" -+if test "x$ac_cv_func__frexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FREXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotf declaration" >&5 -+$as_echo_n "checking for hypotf declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypotf_use+set} != xset; then -+ if ${glibcxx_cv_func_hypotf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypotf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotf_use=yes -+else -+ glibcxx_cv_func_hypotf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotf_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypotf_use = x"yes"; then -+ for ac_func in hypotf -+do : -+ ac_fn_c_check_func "$LINENO" "hypotf" "ac_cv_func_hypotf" -+if test "x$ac_cv_func_hypotf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotf declaration" >&5 -+$as_echo_n "checking for _hypotf declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypotf_use+set} != xset; then -+ if ${glibcxx_cv_func__hypotf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypotf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypotf_use=yes -+else -+ glibcxx_cv_func__hypotf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypotf_use" >&5 -+$as_echo "$glibcxx_cv_func__hypotf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypotf_use = x"yes"; then -+ for ac_func in _hypotf -+do : -+ ac_fn_c_check_func "$LINENO" "_hypotf" "ac_cv_func__hypotf" -+if test "x$ac_cv_func__hypotf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOTF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpf declaration" >&5 -+$as_echo_n "checking for ldexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func_ldexpf_use+set} != xset; then -+ if ${glibcxx_cv_func_ldexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ ldexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpf_use=yes -+else -+ glibcxx_cv_func_ldexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_ldexpf_use = x"yes"; then -+ for ac_func in ldexpf -+do : -+ ac_fn_c_check_func "$LINENO" "ldexpf" "ac_cv_func_ldexpf" -+if test "x$ac_cv_func_ldexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpf declaration" >&5 -+$as_echo_n "checking for _ldexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func__ldexpf_use+set} != xset; then -+ if ${glibcxx_cv_func__ldexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _ldexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__ldexpf_use=yes -+else -+ glibcxx_cv_func__ldexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__ldexpf_use" >&5 -+$as_echo "$glibcxx_cv_func__ldexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__ldexpf_use = x"yes"; then -+ for ac_func in _ldexpf -+do : -+ ac_fn_c_check_func "$LINENO" "_ldexpf" "ac_cv_func__ldexpf" -+if test "x$ac_cv_func__ldexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LDEXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for logf declaration" >&5 -+$as_echo_n "checking for logf declaration... " >&6; } -+ if test x${glibcxx_cv_func_logf_use+set} != xset; then -+ if ${glibcxx_cv_func_logf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ logf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_logf_use=yes -+else -+ glibcxx_cv_func_logf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_logf_use" >&5 -+$as_echo "$glibcxx_cv_func_logf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_logf_use = x"yes"; then -+ for ac_func in logf -+do : -+ ac_fn_c_check_func "$LINENO" "logf" "ac_cv_func_logf" -+if test "x$ac_cv_func_logf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOGF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logf declaration" >&5 -+$as_echo_n "checking for _logf declaration... " >&6; } -+ if test x${glibcxx_cv_func__logf_use+set} != xset; then -+ if ${glibcxx_cv_func__logf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _logf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__logf_use=yes -+else -+ glibcxx_cv_func__logf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__logf_use" >&5 -+$as_echo "$glibcxx_cv_func__logf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__logf_use = x"yes"; then -+ for ac_func in _logf -+do : -+ ac_fn_c_check_func "$LINENO" "_logf" "ac_cv_func__logf" -+if test "x$ac_cv_func__logf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOGF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10f declaration" >&5 -+$as_echo_n "checking for log10f declaration... " >&6; } -+ if test x${glibcxx_cv_func_log10f_use+set} != xset; then -+ if ${glibcxx_cv_func_log10f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ log10f(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_log10f_use=yes -+else -+ glibcxx_cv_func_log10f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_log10f_use" >&5 -+$as_echo "$glibcxx_cv_func_log10f_use" >&6; } -+ -+ if test x$glibcxx_cv_func_log10f_use = x"yes"; then -+ for ac_func in log10f -+do : -+ ac_fn_c_check_func "$LINENO" "log10f" "ac_cv_func_log10f" -+if test "x$ac_cv_func_log10f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOG10F 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10f declaration" >&5 -+$as_echo_n "checking for _log10f declaration... " >&6; } -+ if test x${glibcxx_cv_func__log10f_use+set} != xset; then -+ if ${glibcxx_cv_func__log10f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _log10f(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__log10f_use=yes -+else -+ glibcxx_cv_func__log10f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__log10f_use" >&5 -+$as_echo "$glibcxx_cv_func__log10f_use" >&6; } -+ -+ if test x$glibcxx_cv_func__log10f_use = x"yes"; then -+ for ac_func in _log10f -+do : -+ ac_fn_c_check_func "$LINENO" "_log10f" "ac_cv_func__log10f" -+if test "x$ac_cv_func__log10f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOG10F 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modff declaration" >&5 -+$as_echo_n "checking for modff declaration... " >&6; } -+ if test x${glibcxx_cv_func_modff_use+set} != xset; then -+ if ${glibcxx_cv_func_modff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modff(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modff_use=yes -+else -+ glibcxx_cv_func_modff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modff_use" >&5 -+$as_echo "$glibcxx_cv_func_modff_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modff_use = x"yes"; then -+ for ac_func in modff -+do : -+ ac_fn_c_check_func "$LINENO" "modff" "ac_cv_func_modff" -+if test "x$ac_cv_func_modff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modff declaration" >&5 -+$as_echo_n "checking for _modff declaration... " >&6; } -+ if test x${glibcxx_cv_func__modff_use+set} != xset; then -+ if ${glibcxx_cv_func__modff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modff(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modff_use=yes -+else -+ glibcxx_cv_func__modff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modff_use" >&5 -+$as_echo "$glibcxx_cv_func__modff_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modff_use = x"yes"; then -+ for ac_func in _modff -+do : -+ ac_fn_c_check_func "$LINENO" "_modff" "ac_cv_func__modff" -+if test "x$ac_cv_func__modff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODFF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modf declaration" >&5 -+$as_echo_n "checking for modf declaration... " >&6; } -+ if test x${glibcxx_cv_func_modf_use+set} != xset; then -+ if ${glibcxx_cv_func_modf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modf_use=yes -+else -+ glibcxx_cv_func_modf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modf_use" >&5 -+$as_echo "$glibcxx_cv_func_modf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modf_use = x"yes"; then -+ for ac_func in modf -+do : -+ ac_fn_c_check_func "$LINENO" "modf" "ac_cv_func_modf" -+if test "x$ac_cv_func_modf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modf declaration" >&5 -+$as_echo_n "checking for _modf declaration... " >&6; } -+ if test x${glibcxx_cv_func__modf_use+set} != xset; then -+ if ${glibcxx_cv_func__modf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modf_use=yes -+else -+ glibcxx_cv_func__modf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modf_use" >&5 -+$as_echo "$glibcxx_cv_func__modf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modf_use = x"yes"; then -+ for ac_func in _modf -+do : -+ ac_fn_c_check_func "$LINENO" "_modf" "ac_cv_func__modf" -+if test "x$ac_cv_func__modf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for powf declaration" >&5 -+$as_echo_n "checking for powf declaration... " >&6; } -+ if test x${glibcxx_cv_func_powf_use+set} != xset; then -+ if ${glibcxx_cv_func_powf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ powf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_powf_use=yes -+else -+ glibcxx_cv_func_powf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_powf_use" >&5 -+$as_echo "$glibcxx_cv_func_powf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_powf_use = x"yes"; then -+ for ac_func in powf -+do : -+ ac_fn_c_check_func "$LINENO" "powf" "ac_cv_func_powf" -+if test "x$ac_cv_func_powf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_POWF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powf declaration" >&5 -+$as_echo_n "checking for _powf declaration... " >&6; } -+ if test x${glibcxx_cv_func__powf_use+set} != xset; then -+ if ${glibcxx_cv_func__powf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _powf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__powf_use=yes -+else -+ glibcxx_cv_func__powf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__powf_use" >&5 -+$as_echo "$glibcxx_cv_func__powf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__powf_use = x"yes"; then -+ for ac_func in _powf -+do : -+ ac_fn_c_check_func "$LINENO" "_powf" "ac_cv_func__powf" -+if test "x$ac_cv_func__powf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__POWF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtf declaration" >&5 -+$as_echo_n "checking for sqrtf declaration... " >&6; } -+ if test x${glibcxx_cv_func_sqrtf_use+set} != xset; then -+ if ${glibcxx_cv_func_sqrtf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ sqrtf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sqrtf_use=yes -+else -+ glibcxx_cv_func_sqrtf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sqrtf_use" >&5 -+$as_echo "$glibcxx_cv_func_sqrtf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sqrtf_use = x"yes"; then -+ for ac_func in sqrtf -+do : -+ ac_fn_c_check_func "$LINENO" "sqrtf" "ac_cv_func_sqrtf" -+if test "x$ac_cv_func_sqrtf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SQRTF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtf declaration" >&5 -+$as_echo_n "checking for _sqrtf declaration... " >&6; } -+ if test x${glibcxx_cv_func__sqrtf_use+set} != xset; then -+ if ${glibcxx_cv_func__sqrtf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _sqrtf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sqrtf_use=yes -+else -+ glibcxx_cv_func__sqrtf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sqrtf_use" >&5 -+$as_echo "$glibcxx_cv_func__sqrtf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sqrtf_use = x"yes"; then -+ for ac_func in _sqrtf -+do : -+ ac_fn_c_check_func "$LINENO" "_sqrtf" "ac_cv_func__sqrtf" -+if test "x$ac_cv_func__sqrtf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SQRTF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosf declaration" >&5 -+$as_echo_n "checking for sincosf declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincosf_use+set} != xset; then -+ if ${glibcxx_cv_func_sincosf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincosf(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincosf_use=yes -+else -+ glibcxx_cv_func_sincosf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincosf_use" >&5 -+$as_echo "$glibcxx_cv_func_sincosf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincosf_use = x"yes"; then -+ for ac_func in sincosf -+do : -+ ac_fn_c_check_func "$LINENO" "sincosf" "ac_cv_func_sincosf" -+if test "x$ac_cv_func_sincosf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOSF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosf declaration" >&5 -+$as_echo_n "checking for _sincosf declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincosf_use+set} != xset; then -+ if ${glibcxx_cv_func__sincosf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincosf(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincosf_use=yes -+else -+ glibcxx_cv_func__sincosf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincosf_use" >&5 -+$as_echo "$glibcxx_cv_func__sincosf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincosf_use = x"yes"; then -+ for ac_func in _sincosf -+do : -+ ac_fn_c_check_func "$LINENO" "_sincosf" "ac_cv_func__sincosf" -+if test "x$ac_cv_func__sincosf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOSF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitef declaration" >&5 -+$as_echo_n "checking for finitef declaration... " >&6; } -+ if test x${glibcxx_cv_func_finitef_use+set} != xset; then -+ if ${glibcxx_cv_func_finitef_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finitef(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finitef_use=yes -+else -+ glibcxx_cv_func_finitef_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finitef_use" >&5 -+$as_echo "$glibcxx_cv_func_finitef_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finitef_use = x"yes"; then -+ for ac_func in finitef -+do : -+ ac_fn_c_check_func "$LINENO" "finitef" "ac_cv_func_finitef" -+if test "x$ac_cv_func_finitef" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITEF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitef declaration" >&5 -+$as_echo_n "checking for _finitef declaration... " >&6; } -+ if test x${glibcxx_cv_func__finitef_use+set} != xset; then -+ if ${glibcxx_cv_func__finitef_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finitef(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finitef_use=yes -+else -+ glibcxx_cv_func__finitef_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finitef_use" >&5 -+$as_echo "$glibcxx_cv_func__finitef_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finitef_use = x"yes"; then -+ for ac_func in _finitef -+do : -+ ac_fn_c_check_func "$LINENO" "_finitef" "ac_cv_func__finitef" -+if test "x$ac_cv_func__finitef" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITEF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double trig functions" >&5 -+$as_echo_n "checking for long double trig functions... " >&6; } -+ if ${glibcxx_cv_func_long_double_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+acosl (0); asinl (0); atanl (0); cosl (0); sinl (0); tanl (0); coshl (0); sinhl (0); tanhl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_long_double_trig_use=yes -+else -+ glibcxx_cv_func_long_double_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_long_double_trig_use" >&5 -+$as_echo "$glibcxx_cv_func_long_double_trig_use" >&6; } -+ if test x$glibcxx_cv_func_long_double_trig_use = x"yes"; then -+ for ac_func in acosl asinl atanl cosl sinl tanl coshl sinhl tanhl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double trig functions" >&5 -+$as_echo_n "checking for _long double trig functions... " >&6; } -+ if ${glibcxx_cv_func__long_double_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_acosl (0); _asinl (0); _atanl (0); _cosl (0); _sinl (0); _tanl (0); _coshl (0); _sinhl (0); _tanhl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__long_double_trig_use=yes -+else -+ glibcxx_cv_func__long_double_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__long_double_trig_use" >&5 -+$as_echo "$glibcxx_cv_func__long_double_trig_use" >&6; } -+ if test x$glibcxx_cv_func__long_double_trig_use = x"yes"; then -+ for ac_func in _acosl _asinl _atanl _cosl _sinl _tanl _coshl _sinhl _tanhl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double round functions" >&5 -+$as_echo_n "checking for long double round functions... " >&6; } -+ if ${glibcxx_cv_func_long_double_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ceill (0); floorl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_long_double_round_use=yes -+else -+ glibcxx_cv_func_long_double_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_long_double_round_use" >&5 -+$as_echo "$glibcxx_cv_func_long_double_round_use" >&6; } -+ if test x$glibcxx_cv_func_long_double_round_use = x"yes"; then -+ for ac_func in ceill floorl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double round functions" >&5 -+$as_echo_n "checking for _long double round functions... " >&6; } -+ if ${glibcxx_cv_func__long_double_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_ceill (0); _floorl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__long_double_round_use=yes -+else -+ glibcxx_cv_func__long_double_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__long_double_round_use" >&5 -+$as_echo "$glibcxx_cv_func__long_double_round_use" >&6; } -+ if test x$glibcxx_cv_func__long_double_round_use = x"yes"; then -+ for ac_func in _ceill _floorl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanl declaration" >&5 -+$as_echo_n "checking for isnanl declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnanl_use+set} != xset; then -+ if ${glibcxx_cv_func_isnanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnanl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnanl_use=yes -+else -+ glibcxx_cv_func_isnanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnanl_use" >&5 -+$as_echo "$glibcxx_cv_func_isnanl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnanl_use = x"yes"; then -+ for ac_func in isnanl -+do : -+ ac_fn_c_check_func "$LINENO" "isnanl" "ac_cv_func_isnanl" -+if test "x$ac_cv_func_isnanl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNANL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanl declaration" >&5 -+$as_echo_n "checking for _isnanl declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnanl_use+set} != xset; then -+ if ${glibcxx_cv_func__isnanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnanl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnanl_use=yes -+else -+ glibcxx_cv_func__isnanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnanl_use" >&5 -+$as_echo "$glibcxx_cv_func__isnanl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnanl_use = x"yes"; then -+ for ac_func in _isnanl -+do : -+ ac_fn_c_check_func "$LINENO" "_isnanl" "ac_cv_func__isnanl" -+if test "x$ac_cv_func__isnanl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNANL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinfl declaration" >&5 -+$as_echo_n "checking for isinfl declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinfl_use+set} != xset; then -+ if ${glibcxx_cv_func_isinfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinfl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinfl_use=yes -+else -+ glibcxx_cv_func_isinfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinfl_use" >&5 -+$as_echo "$glibcxx_cv_func_isinfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinfl_use = x"yes"; then -+ for ac_func in isinfl -+do : -+ ac_fn_c_check_func "$LINENO" "isinfl" "ac_cv_func_isinfl" -+if test "x$ac_cv_func_isinfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINFL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinfl declaration" >&5 -+$as_echo_n "checking for _isinfl declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinfl_use+set} != xset; then -+ if ${glibcxx_cv_func__isinfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinfl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinfl_use=yes -+else -+ glibcxx_cv_func__isinfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinfl_use" >&5 -+$as_echo "$glibcxx_cv_func__isinfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinfl_use = x"yes"; then -+ for ac_func in _isinfl -+do : -+ ac_fn_c_check_func "$LINENO" "_isinfl" "ac_cv_func__isinfl" -+if test "x$ac_cv_func__isinfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINFL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2l declaration" >&5 -+$as_echo_n "checking for atan2l declaration... " >&6; } -+ if test x${glibcxx_cv_func_atan2l_use+set} != xset; then -+ if ${glibcxx_cv_func_atan2l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ atan2l(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atan2l_use=yes -+else -+ glibcxx_cv_func_atan2l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atan2l_use" >&5 -+$as_echo "$glibcxx_cv_func_atan2l_use" >&6; } -+ -+ if test x$glibcxx_cv_func_atan2l_use = x"yes"; then -+ for ac_func in atan2l -+do : -+ ac_fn_c_check_func "$LINENO" "atan2l" "ac_cv_func_atan2l" -+if test "x$ac_cv_func_atan2l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATAN2L 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2l declaration" >&5 -+$as_echo_n "checking for _atan2l declaration... " >&6; } -+ if test x${glibcxx_cv_func__atan2l_use+set} != xset; then -+ if ${glibcxx_cv_func__atan2l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _atan2l(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__atan2l_use=yes -+else -+ glibcxx_cv_func__atan2l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__atan2l_use" >&5 -+$as_echo "$glibcxx_cv_func__atan2l_use" >&6; } -+ -+ if test x$glibcxx_cv_func__atan2l_use = x"yes"; then -+ for ac_func in _atan2l -+do : -+ ac_fn_c_check_func "$LINENO" "_atan2l" "ac_cv_func__atan2l" -+if test "x$ac_cv_func__atan2l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ATAN2L 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for expl declaration" >&5 -+$as_echo_n "checking for expl declaration... " >&6; } -+ if test x${glibcxx_cv_func_expl_use+set} != xset; then -+ if ${glibcxx_cv_func_expl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ expl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_expl_use=yes -+else -+ glibcxx_cv_func_expl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_expl_use" >&5 -+$as_echo "$glibcxx_cv_func_expl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_expl_use = x"yes"; then -+ for ac_func in expl -+do : -+ ac_fn_c_check_func "$LINENO" "expl" "ac_cv_func_expl" -+if test "x$ac_cv_func_expl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_EXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expl declaration" >&5 -+$as_echo_n "checking for _expl declaration... " >&6; } -+ if test x${glibcxx_cv_func__expl_use+set} != xset; then -+ if ${glibcxx_cv_func__expl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _expl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__expl_use=yes -+else -+ glibcxx_cv_func__expl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__expl_use" >&5 -+$as_echo "$glibcxx_cv_func__expl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__expl_use = x"yes"; then -+ for ac_func in _expl -+do : -+ ac_fn_c_check_func "$LINENO" "_expl" "ac_cv_func__expl" -+if test "x$ac_cv_func__expl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__EXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsl declaration" >&5 -+$as_echo_n "checking for fabsl declaration... " >&6; } -+ if test x${glibcxx_cv_func_fabsl_use+set} != xset; then -+ if ${glibcxx_cv_func_fabsl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fabsl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fabsl_use=yes -+else -+ glibcxx_cv_func_fabsl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fabsl_use" >&5 -+$as_echo "$glibcxx_cv_func_fabsl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fabsl_use = x"yes"; then -+ for ac_func in fabsl -+do : -+ ac_fn_c_check_func "$LINENO" "fabsl" "ac_cv_func_fabsl" -+if test "x$ac_cv_func_fabsl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FABSL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsl declaration" >&5 -+$as_echo_n "checking for _fabsl declaration... " >&6; } -+ if test x${glibcxx_cv_func__fabsl_use+set} != xset; then -+ if ${glibcxx_cv_func__fabsl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fabsl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fabsl_use=yes -+else -+ glibcxx_cv_func__fabsl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fabsl_use" >&5 -+$as_echo "$glibcxx_cv_func__fabsl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fabsl_use = x"yes"; then -+ for ac_func in _fabsl -+do : -+ ac_fn_c_check_func "$LINENO" "_fabsl" "ac_cv_func__fabsl" -+if test "x$ac_cv_func__fabsl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FABSL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodl declaration" >&5 -+$as_echo_n "checking for fmodl declaration... " >&6; } -+ if test x${glibcxx_cv_func_fmodl_use+set} != xset; then -+ if ${glibcxx_cv_func_fmodl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ fmodl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fmodl_use=yes -+else -+ glibcxx_cv_func_fmodl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fmodl_use" >&5 -+$as_echo "$glibcxx_cv_func_fmodl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fmodl_use = x"yes"; then -+ for ac_func in fmodl -+do : -+ ac_fn_c_check_func "$LINENO" "fmodl" "ac_cv_func_fmodl" -+if test "x$ac_cv_func_fmodl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FMODL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodl declaration" >&5 -+$as_echo_n "checking for _fmodl declaration... " >&6; } -+ if test x${glibcxx_cv_func__fmodl_use+set} != xset; then -+ if ${glibcxx_cv_func__fmodl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _fmodl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fmodl_use=yes -+else -+ glibcxx_cv_func__fmodl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fmodl_use" >&5 -+$as_echo "$glibcxx_cv_func__fmodl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fmodl_use = x"yes"; then -+ for ac_func in _fmodl -+do : -+ ac_fn_c_check_func "$LINENO" "_fmodl" "ac_cv_func__fmodl" -+if test "x$ac_cv_func__fmodl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FMODL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpl declaration" >&5 -+$as_echo_n "checking for frexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func_frexpl_use+set} != xset; then -+ if ${glibcxx_cv_func_frexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ frexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpl_use=yes -+else -+ glibcxx_cv_func_frexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_frexpl_use = x"yes"; then -+ for ac_func in frexpl -+do : -+ ac_fn_c_check_func "$LINENO" "frexpl" "ac_cv_func_frexpl" -+if test "x$ac_cv_func_frexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpl declaration" >&5 -+$as_echo_n "checking for _frexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func__frexpl_use+set} != xset; then -+ if ${glibcxx_cv_func__frexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _frexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__frexpl_use=yes -+else -+ glibcxx_cv_func__frexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__frexpl_use" >&5 -+$as_echo "$glibcxx_cv_func__frexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__frexpl_use = x"yes"; then -+ for ac_func in _frexpl -+do : -+ ac_fn_c_check_func "$LINENO" "_frexpl" "ac_cv_func__frexpl" -+if test "x$ac_cv_func__frexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FREXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotl declaration" >&5 -+$as_echo_n "checking for hypotl declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypotl_use+set} != xset; then -+ if ${glibcxx_cv_func_hypotl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypotl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotl_use=yes -+else -+ glibcxx_cv_func_hypotl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotl_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypotl_use = x"yes"; then -+ for ac_func in hypotl -+do : -+ ac_fn_c_check_func "$LINENO" "hypotl" "ac_cv_func_hypotl" -+if test "x$ac_cv_func_hypotl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotl declaration" >&5 -+$as_echo_n "checking for _hypotl declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypotl_use+set} != xset; then -+ if ${glibcxx_cv_func__hypotl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypotl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypotl_use=yes -+else -+ glibcxx_cv_func__hypotl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypotl_use" >&5 -+$as_echo "$glibcxx_cv_func__hypotl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypotl_use = x"yes"; then -+ for ac_func in _hypotl -+do : -+ ac_fn_c_check_func "$LINENO" "_hypotl" "ac_cv_func__hypotl" -+if test "x$ac_cv_func__hypotl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOTL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpl declaration" >&5 -+$as_echo_n "checking for ldexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func_ldexpl_use+set} != xset; then -+ if ${glibcxx_cv_func_ldexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ ldexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpl_use=yes -+else -+ glibcxx_cv_func_ldexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_ldexpl_use = x"yes"; then -+ for ac_func in ldexpl -+do : -+ ac_fn_c_check_func "$LINENO" "ldexpl" "ac_cv_func_ldexpl" -+if test "x$ac_cv_func_ldexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpl declaration" >&5 -+$as_echo_n "checking for _ldexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func__ldexpl_use+set} != xset; then -+ if ${glibcxx_cv_func__ldexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _ldexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__ldexpl_use=yes -+else -+ glibcxx_cv_func__ldexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__ldexpl_use" >&5 -+$as_echo "$glibcxx_cv_func__ldexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__ldexpl_use = x"yes"; then -+ for ac_func in _ldexpl -+do : -+ ac_fn_c_check_func "$LINENO" "_ldexpl" "ac_cv_func__ldexpl" -+if test "x$ac_cv_func__ldexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LDEXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for logl declaration" >&5 -+$as_echo_n "checking for logl declaration... " >&6; } -+ if test x${glibcxx_cv_func_logl_use+set} != xset; then -+ if ${glibcxx_cv_func_logl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ logl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_logl_use=yes -+else -+ glibcxx_cv_func_logl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_logl_use" >&5 -+$as_echo "$glibcxx_cv_func_logl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_logl_use = x"yes"; then -+ for ac_func in logl -+do : -+ ac_fn_c_check_func "$LINENO" "logl" "ac_cv_func_logl" -+if test "x$ac_cv_func_logl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOGL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logl declaration" >&5 -+$as_echo_n "checking for _logl declaration... " >&6; } -+ if test x${glibcxx_cv_func__logl_use+set} != xset; then -+ if ${glibcxx_cv_func__logl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _logl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__logl_use=yes -+else -+ glibcxx_cv_func__logl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__logl_use" >&5 -+$as_echo "$glibcxx_cv_func__logl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__logl_use = x"yes"; then -+ for ac_func in _logl -+do : -+ ac_fn_c_check_func "$LINENO" "_logl" "ac_cv_func__logl" -+if test "x$ac_cv_func__logl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOGL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10l declaration" >&5 -+$as_echo_n "checking for log10l declaration... " >&6; } -+ if test x${glibcxx_cv_func_log10l_use+set} != xset; then -+ if ${glibcxx_cv_func_log10l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ log10l(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_log10l_use=yes -+else -+ glibcxx_cv_func_log10l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_log10l_use" >&5 -+$as_echo "$glibcxx_cv_func_log10l_use" >&6; } -+ -+ if test x$glibcxx_cv_func_log10l_use = x"yes"; then -+ for ac_func in log10l -+do : -+ ac_fn_c_check_func "$LINENO" "log10l" "ac_cv_func_log10l" -+if test "x$ac_cv_func_log10l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOG10L 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10l declaration" >&5 -+$as_echo_n "checking for _log10l declaration... " >&6; } -+ if test x${glibcxx_cv_func__log10l_use+set} != xset; then -+ if ${glibcxx_cv_func__log10l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _log10l(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__log10l_use=yes -+else -+ glibcxx_cv_func__log10l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__log10l_use" >&5 -+$as_echo "$glibcxx_cv_func__log10l_use" >&6; } -+ -+ if test x$glibcxx_cv_func__log10l_use = x"yes"; then -+ for ac_func in _log10l -+do : -+ ac_fn_c_check_func "$LINENO" "_log10l" "ac_cv_func__log10l" -+if test "x$ac_cv_func__log10l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOG10L 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modfl declaration" >&5 -+$as_echo_n "checking for modfl declaration... " >&6; } -+ if test x${glibcxx_cv_func_modfl_use+set} != xset; then -+ if ${glibcxx_cv_func_modfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modfl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modfl_use=yes -+else -+ glibcxx_cv_func_modfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modfl_use" >&5 -+$as_echo "$glibcxx_cv_func_modfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modfl_use = x"yes"; then -+ for ac_func in modfl -+do : -+ ac_fn_c_check_func "$LINENO" "modfl" "ac_cv_func_modfl" -+if test "x$ac_cv_func_modfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modfl declaration" >&5 -+$as_echo_n "checking for _modfl declaration... " >&6; } -+ if test x${glibcxx_cv_func__modfl_use+set} != xset; then -+ if ${glibcxx_cv_func__modfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modfl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modfl_use=yes -+else -+ glibcxx_cv_func__modfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modfl_use" >&5 -+$as_echo "$glibcxx_cv_func__modfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modfl_use = x"yes"; then -+ for ac_func in _modfl -+do : -+ ac_fn_c_check_func "$LINENO" "_modfl" "ac_cv_func__modfl" -+if test "x$ac_cv_func__modfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODFL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for powl declaration" >&5 -+$as_echo_n "checking for powl declaration... " >&6; } -+ if test x${glibcxx_cv_func_powl_use+set} != xset; then -+ if ${glibcxx_cv_func_powl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ powl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_powl_use=yes -+else -+ glibcxx_cv_func_powl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_powl_use" >&5 -+$as_echo "$glibcxx_cv_func_powl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_powl_use = x"yes"; then -+ for ac_func in powl -+do : -+ ac_fn_c_check_func "$LINENO" "powl" "ac_cv_func_powl" -+if test "x$ac_cv_func_powl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_POWL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powl declaration" >&5 -+$as_echo_n "checking for _powl declaration... " >&6; } -+ if test x${glibcxx_cv_func__powl_use+set} != xset; then -+ if ${glibcxx_cv_func__powl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _powl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__powl_use=yes -+else -+ glibcxx_cv_func__powl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__powl_use" >&5 -+$as_echo "$glibcxx_cv_func__powl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__powl_use = x"yes"; then -+ for ac_func in _powl -+do : -+ ac_fn_c_check_func "$LINENO" "_powl" "ac_cv_func__powl" -+if test "x$ac_cv_func__powl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__POWL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtl declaration" >&5 -+$as_echo_n "checking for sqrtl declaration... " >&6; } -+ if test x${glibcxx_cv_func_sqrtl_use+set} != xset; then -+ if ${glibcxx_cv_func_sqrtl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ sqrtl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sqrtl_use=yes -+else -+ glibcxx_cv_func_sqrtl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sqrtl_use" >&5 -+$as_echo "$glibcxx_cv_func_sqrtl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sqrtl_use = x"yes"; then -+ for ac_func in sqrtl -+do : -+ ac_fn_c_check_func "$LINENO" "sqrtl" "ac_cv_func_sqrtl" -+if test "x$ac_cv_func_sqrtl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SQRTL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtl declaration" >&5 -+$as_echo_n "checking for _sqrtl declaration... " >&6; } -+ if test x${glibcxx_cv_func__sqrtl_use+set} != xset; then -+ if ${glibcxx_cv_func__sqrtl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _sqrtl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sqrtl_use=yes -+else -+ glibcxx_cv_func__sqrtl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sqrtl_use" >&5 -+$as_echo "$glibcxx_cv_func__sqrtl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sqrtl_use = x"yes"; then -+ for ac_func in _sqrtl -+do : -+ ac_fn_c_check_func "$LINENO" "_sqrtl" "ac_cv_func__sqrtl" -+if test "x$ac_cv_func__sqrtl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SQRTL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosl declaration" >&5 -+$as_echo_n "checking for sincosl declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincosl_use+set} != xset; then -+ if ${glibcxx_cv_func_sincosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincosl(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincosl_use=yes -+else -+ glibcxx_cv_func_sincosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincosl_use" >&5 -+$as_echo "$glibcxx_cv_func_sincosl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincosl_use = x"yes"; then -+ for ac_func in sincosl -+do : -+ ac_fn_c_check_func "$LINENO" "sincosl" "ac_cv_func_sincosl" -+if test "x$ac_cv_func_sincosl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOSL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosl declaration" >&5 -+$as_echo_n "checking for _sincosl declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincosl_use+set} != xset; then -+ if ${glibcxx_cv_func__sincosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincosl(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincosl_use=yes -+else -+ glibcxx_cv_func__sincosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincosl_use" >&5 -+$as_echo "$glibcxx_cv_func__sincosl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincosl_use = x"yes"; then -+ for ac_func in _sincosl -+do : -+ ac_fn_c_check_func "$LINENO" "_sincosl" "ac_cv_func__sincosl" -+if test "x$ac_cv_func__sincosl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOSL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitel declaration" >&5 -+$as_echo_n "checking for finitel declaration... " >&6; } -+ if test x${glibcxx_cv_func_finitel_use+set} != xset; then -+ if ${glibcxx_cv_func_finitel_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finitel(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finitel_use=yes -+else -+ glibcxx_cv_func_finitel_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finitel_use" >&5 -+$as_echo "$glibcxx_cv_func_finitel_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finitel_use = x"yes"; then -+ for ac_func in finitel -+do : -+ ac_fn_c_check_func "$LINENO" "finitel" "ac_cv_func_finitel" -+if test "x$ac_cv_func_finitel" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITEL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitel declaration" >&5 -+$as_echo_n "checking for _finitel declaration... " >&6; } -+ if test x${glibcxx_cv_func__finitel_use+set} != xset; then -+ if ${glibcxx_cv_func__finitel_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finitel(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finitel_use=yes -+else -+ glibcxx_cv_func__finitel_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finitel_use" >&5 -+$as_echo "$glibcxx_cv_func__finitel_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finitel_use = x"yes"; then -+ for ac_func in _finitel -+do : -+ ac_fn_c_check_func "$LINENO" "_finitel" "ac_cv_func__finitel" -+if test "x$ac_cv_func__finitel" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITEL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ LIBS="$ac_save_LIBS" -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS='-fno-builtin -D_GNU_SOURCE' -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for at_quick_exit declaration" >&5 -+$as_echo_n "checking for at_quick_exit declaration... " >&6; } -+ if test x${glibcxx_cv_func_at_quick_exit_use+set} != xset; then -+ if ${glibcxx_cv_func_at_quick_exit_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ at_quick_exit(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_at_quick_exit_use=yes -+else -+ glibcxx_cv_func_at_quick_exit_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_at_quick_exit_use" >&5 -+$as_echo "$glibcxx_cv_func_at_quick_exit_use" >&6; } -+ if test x$glibcxx_cv_func_at_quick_exit_use = x"yes"; then -+ for ac_func in at_quick_exit -+do : -+ ac_fn_c_check_func "$LINENO" "at_quick_exit" "ac_cv_func_at_quick_exit" -+if test "x$ac_cv_func_at_quick_exit" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_AT_QUICK_EXIT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for quick_exit declaration" >&5 -+$as_echo_n "checking for quick_exit declaration... " >&6; } -+ if test x${glibcxx_cv_func_quick_exit_use+set} != xset; then -+ if ${glibcxx_cv_func_quick_exit_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ quick_exit(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_quick_exit_use=yes -+else -+ glibcxx_cv_func_quick_exit_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_quick_exit_use" >&5 -+$as_echo "$glibcxx_cv_func_quick_exit_use" >&6; } -+ if test x$glibcxx_cv_func_quick_exit_use = x"yes"; then -+ for ac_func in quick_exit -+do : -+ ac_fn_c_check_func "$LINENO" "quick_exit" "ac_cv_func_quick_exit" -+if test "x$ac_cv_func_quick_exit" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_QUICK_EXIT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtold declaration" >&5 -+$as_echo_n "checking for strtold declaration... " >&6; } -+ if test x${glibcxx_cv_func_strtold_use+set} != xset; then -+ if ${glibcxx_cv_func_strtold_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ strtold(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_strtold_use=yes -+else -+ glibcxx_cv_func_strtold_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_strtold_use" >&5 -+$as_echo "$glibcxx_cv_func_strtold_use" >&6; } -+ if test x$glibcxx_cv_func_strtold_use = x"yes"; then -+ for ac_func in strtold -+do : -+ ac_fn_c_check_func "$LINENO" "strtold" "ac_cv_func_strtold" -+if test "x$ac_cv_func_strtold" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STRTOLD 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtof declaration" >&5 -+$as_echo_n "checking for strtof declaration... " >&6; } -+ if test x${glibcxx_cv_func_strtof_use+set} != xset; then -+ if ${glibcxx_cv_func_strtof_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ strtof(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_strtof_use=yes -+else -+ glibcxx_cv_func_strtof_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_strtof_use" >&5 -+$as_echo "$glibcxx_cv_func_strtof_use" >&6; } -+ if test x$glibcxx_cv_func_strtof_use = x"yes"; then -+ for ac_func in strtof -+do : -+ ac_fn_c_check_func "$LINENO" "strtof" "ac_cv_func_strtof" -+if test "x$ac_cv_func_strtof" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STRTOF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ -+ for ac_func in aligned_alloc posix_memalign memalign _aligned_malloc -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ for ac_func in _wfopen -+do : -+ ac_fn_c_check_func "$LINENO" "_wfopen" "ac_cv_func__wfopen" -+if test "x$ac_cv_func__wfopen" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__WFOPEN 1 -+_ACEOF -+ -+fi -+done -+ -+ -+ -+ @%:@ Check whether --enable-tls was given. -+if test "${enable_tls+set}" = set; then : -+ enableval=$enable_tls; -+ case "$enableval" in -+ yes|no) ;; -+ *) as_fn_error $? "Argument to enable/disable tls must be yes or no" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_tls=yes -+fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the target supports thread-local storage" >&5 -+$as_echo_n "checking whether the target supports thread-local storage... " >&6; } -+if ${gcc_cv_have_tls+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test "$cross_compiling" = yes; then : -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__thread int a; int b; int main() { return a = b; } -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ chktls_save_LDFLAGS="$LDFLAGS" -+ case $host in -+ *-*-linux* | -*-uclinuxfdpic*) -+ LDFLAGS="-shared -Wl,--no-undefined $LDFLAGS" -+ ;; -+ esac -+ chktls_save_CFLAGS="$CFLAGS" -+ CFLAGS="-fPIC $CFLAGS" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+int f() { return 0; } -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__thread int a; int b; int f() { return a = b; } -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ gcc_cv_have_tls=yes -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+else -+ gcc_cv_have_tls=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ CFLAGS="$chktls_save_CFLAGS" -+ LDFLAGS="$chktls_save_LDFLAGS" -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ -+ -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__thread int a; int b; int main() { return a = b; } -+_ACEOF -+if ac_fn_c_try_run "$LINENO"; then : -+ chktls_save_LDFLAGS="$LDFLAGS" -+ LDFLAGS="-static $LDFLAGS" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+int main() { return 0; } -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ if test "$cross_compiling" = yes; then : -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "cannot run test program while cross compiling -+See \`config.log' for more details" "$LINENO" 5; } -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+__thread int a; int b; int main() { return a = b; } -+_ACEOF -+if ac_fn_c_try_run "$LINENO"; then : -+ gcc_cv_have_tls=yes -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ -+ conftest.$ac_objext conftest.beam conftest.$ac_ext -+fi -+ -+else -+ gcc_cv_have_tls=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ LDFLAGS="$chktls_save_LDFLAGS" -+ if test $gcc_cv_have_tls = yes; then -+ chktls_save_CFLAGS="$CFLAGS" -+ thread_CFLAGS=failed -+ for flag in '' '-pthread' '-lpthread'; do -+ CFLAGS="$flag $chktls_save_CFLAGS" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ void *g(void *d) { return NULL; } -+int -+main () -+{ -+pthread_t t; pthread_create(&t,NULL,g,NULL); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ thread_CFLAGS="$flag" -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ if test "X$thread_CFLAGS" != Xfailed; then -+ break -+ fi -+ done -+ CFLAGS="$chktls_save_CFLAGS" -+ if test "X$thread_CFLAGS" != Xfailed; then -+ CFLAGS="$thread_CFLAGS $chktls_save_CFLAGS" -+ if test "$cross_compiling" = yes; then : -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "cannot run test program while cross compiling -+See \`config.log' for more details" "$LINENO" 5; } -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ __thread int a; -+ static int *volatile a_in_other_thread; -+ static void * -+ thread_func (void *arg) -+ { -+ a_in_other_thread = &a; -+ return (void *)0; -+ } -+int -+main () -+{ -+pthread_t thread; -+ void *thread_retval; -+ int *volatile a_in_main_thread; -+ a_in_main_thread = &a; -+ if (pthread_create (&thread, (pthread_attr_t *)0, -+ thread_func, (void *)0)) -+ return 0; -+ if (pthread_join (thread, &thread_retval)) -+ return 0; -+ return (a_in_other_thread == a_in_main_thread); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_run "$LINENO"; then : -+ gcc_cv_have_tls=yes -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ -+ conftest.$ac_objext conftest.beam conftest.$ac_ext -+fi -+ -+ CFLAGS="$chktls_save_CFLAGS" -+ fi -+ fi -+else -+ gcc_cv_have_tls=no -+fi -+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ -+ conftest.$ac_objext conftest.beam conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gcc_cv_have_tls" >&5 -+$as_echo "$gcc_cv_have_tls" >&6; } -+ if test "$enable_tls $gcc_cv_have_tls" = "yes yes"; then -+ -+$as_echo "@%:@define HAVE_TLS 1" >>confdefs.h -+ -+ fi -+ ;; -+ *-netbsd* | *-openbsd*) -+ SECTION_FLAGS='-ffunction-sections -fdata-sections' -+ -+ -+ # If we're not using GNU ld, then there's no point in even trying these -+ # tests. Check for that first. We should have already tested for gld -+ # by now (in libtool), but require it now just to be safe... -+ test -z "$SECTION_LDFLAGS" && SECTION_LDFLAGS='' -+ test -z "$OPT_LDFLAGS" && OPT_LDFLAGS='' -+ -+ -+ -+ # The name set by libtool depends on the version of libtool. Shame on us -+ # for depending on an impl detail, but c'est la vie. Older versions used -+ # ac_cv_prog_gnu_ld, but now it's lt_cv_prog_gnu_ld, and is copied back on -+ # top of with_gnu_ld (which is also set by --with-gnu-ld, so that actually -+ # makes sense). We'll test with_gnu_ld everywhere else, so if that isn't -+ # set (hence we're using an older libtool), then set it. -+ if test x${with_gnu_ld+set} != xset; then -+ if test x${ac_cv_prog_gnu_ld+set} != xset; then -+ # We got through "ac_require(ac_prog_ld)" and still not set? Huh? -+ with_gnu_ld=no -+ else -+ with_gnu_ld=$ac_cv_prog_gnu_ld -+ fi -+ fi -+ -+ # Start by getting the version number. I think the libtool test already -+ # does some of this, but throws away the result. -+ glibcxx_ld_is_gold=no -+ glibcxx_ld_is_mold=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld version" >&5 -+$as_echo_n "checking for ld version... " >&6; } -+ -+ if $LD --version 2>/dev/null | grep 'GNU gold' >/dev/null 2>&1; then -+ glibcxx_ld_is_gold=yes -+ elif $LD --version 2>/dev/null | grep 'mold' >/dev/null 2>&1; then -+ glibcxx_ld_is_mold=yes -+ fi -+ ldver=`$LD --version 2>/dev/null | -+ sed -e 's/[. ][0-9]\{8\}$//;s/.* \([^ ]\{1,\}\)$/\1/; q'` -+ -+ glibcxx_gnu_ld_version=`echo $ldver | \ -+ $AWK -F. '{ if (NF<3) $3=0; print ($1*100+$2)*100+$3 }'` -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_gnu_ld_version" >&5 -+$as_echo "$glibcxx_gnu_ld_version" >&6; } -+ fi -+ -+ # Set --gc-sections. -+ glibcxx_have_gc_sections=no -+ if test "$glibcxx_ld_is_gold" = "yes" || test "$glibcxx_ld_is_mold" = "yes" ; then -+ if $LD --help 2>/dev/null | grep gc-sections >/dev/null 2>&1; then -+ glibcxx_have_gc_sections=yes -+ fi -+ else -+ glibcxx_gcsections_min_ld=21602 -+ if test x"$with_gnu_ld" = x"yes" && -+ test $glibcxx_gnu_ld_version -gt $glibcxx_gcsections_min_ld ; then -+ glibcxx_have_gc_sections=yes -+ fi -+ fi -+ if test "$glibcxx_have_gc_sections" = "yes"; then -+ # Sufficiently young GNU ld it is! Joy and bunny rabbits! -+ # NB: This flag only works reliably after 2.16.1. Configure tests -+ # for this are difficult, so hard wire a value that should work. -+ -+ ac_test_CFLAGS="${CFLAGS+set}" -+ ac_save_CFLAGS="$CFLAGS" -+ CFLAGS='-Wl,--gc-sections' -+ -+ # Check for -Wl,--gc-sections -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5 -+$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; } -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ int one(void) { return 1; } -+ int two(void) { return 2; } -+ -+int -+main () -+{ -+ two(); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_gcsections=yes -+else -+ ac_gcsections=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ if test "$ac_gcsections" = "yes"; then -+ rm -f conftest.c -+ touch conftest.c -+ if $CC -c conftest.c; then -+ if $LD --gc-sections -o conftest conftest.o 2>&1 | \ -+ grep "Warning: gc-sections option ignored" > /dev/null; then -+ ac_gcsections=no -+ fi -+ fi -+ rm -f conftest.c conftest.o conftest -+ fi -+ if test "$ac_gcsections" = "yes"; then -+ SECTION_LDFLAGS="-Wl,--gc-sections $SECTION_LDFLAGS" -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_gcsections" >&5 -+$as_echo "$ac_gcsections" >&6; } -+ -+ if test "$ac_test_CFLAGS" = set; then -+ CFLAGS="$ac_save_CFLAGS" -+ else -+ # this is the suspicious part -+ CFLAGS='' -+ fi -+ fi -+ -+ # Set -z,relro. -+ # Note this is only for shared objects. -+ ac_ld_relro=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ # cygwin and mingw uses PE, which has no ELF relro support, -+ # multi target ld may confuse configure machinery -+ case "$host" in -+ *-*-cygwin*) -+ ;; -+ *-*-mingw*) -+ ;; -+ *) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,-z,relro" >&5 -+$as_echo_n "checking for ld that supports -Wl,-z,relro... " >&6; } -+ cxx_z_relo=`$LD -v --help 2>/dev/null | grep "z relro"` -+ if test -n "$cxx_z_relo"; then -+ OPT_LDFLAGS="-Wl,-z,relro" -+ ac_ld_relro=yes -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ld_relro" >&5 -+$as_echo "$ac_ld_relro" >&6; } -+ esac -+ fi -+ -+ # Set linker optimization flags. -+ if test x"$with_gnu_ld" = x"yes"; then -+ OPT_LDFLAGS="-Wl,-O1 $OPT_LDFLAGS" -+ fi -+ -+ -+ -+ -+ $as_echo "@%:@define HAVE_FINITEF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FINITE 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FREXPF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_HYPOTF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISINF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISINFF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISNAN 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISNANF 1" >>confdefs.h -+ -+ if test x"long_double_math_on_this_cpu" = x"yes"; then -+ $as_echo "@%:@define HAVE_FINITEL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISINFL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISNANL 1" >>confdefs.h -+ -+ fi -+ for ac_func in aligned_alloc posix_memalign memalign _aligned_malloc -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ for ac_func in timespec_get -+do : -+ ac_fn_c_check_func "$LINENO" "timespec_get" "ac_cv_func_timespec_get" -+if test "x$ac_cv_func_timespec_get" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_TIMESPEC_GET 1 -+_ACEOF -+ -+fi -+done -+ -+ for ac_func in sockatmark -+do : -+ ac_fn_c_check_func "$LINENO" "sockatmark" "ac_cv_func_sockatmark" -+if test "x$ac_cv_func_sockatmark" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SOCKATMARK 1 -+_ACEOF -+ -+fi -+done -+ -+ ;; -+ *-qnx6.1* | *-qnx6.2*) -+ SECTION_FLAGS='-ffunction-sections -fdata-sections' -+ -+ -+ # If we're not using GNU ld, then there's no point in even trying these -+ # tests. Check for that first. We should have already tested for gld -+ # by now (in libtool), but require it now just to be safe... -+ test -z "$SECTION_LDFLAGS" && SECTION_LDFLAGS='' -+ test -z "$OPT_LDFLAGS" && OPT_LDFLAGS='' -+ -+ -+ -+ # The name set by libtool depends on the version of libtool. Shame on us -+ # for depending on an impl detail, but c'est la vie. Older versions used -+ # ac_cv_prog_gnu_ld, but now it's lt_cv_prog_gnu_ld, and is copied back on -+ # top of with_gnu_ld (which is also set by --with-gnu-ld, so that actually -+ # makes sense). We'll test with_gnu_ld everywhere else, so if that isn't -+ # set (hence we're using an older libtool), then set it. -+ if test x${with_gnu_ld+set} != xset; then -+ if test x${ac_cv_prog_gnu_ld+set} != xset; then -+ # We got through "ac_require(ac_prog_ld)" and still not set? Huh? -+ with_gnu_ld=no -+ else -+ with_gnu_ld=$ac_cv_prog_gnu_ld -+ fi -+ fi -+ -+ # Start by getting the version number. I think the libtool test already -+ # does some of this, but throws away the result. -+ glibcxx_ld_is_gold=no -+ glibcxx_ld_is_mold=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld version" >&5 -+$as_echo_n "checking for ld version... " >&6; } -+ -+ if $LD --version 2>/dev/null | grep 'GNU gold' >/dev/null 2>&1; then -+ glibcxx_ld_is_gold=yes -+ elif $LD --version 2>/dev/null | grep 'mold' >/dev/null 2>&1; then -+ glibcxx_ld_is_mold=yes -+ fi -+ ldver=`$LD --version 2>/dev/null | -+ sed -e 's/[. ][0-9]\{8\}$//;s/.* \([^ ]\{1,\}\)$/\1/; q'` -+ -+ glibcxx_gnu_ld_version=`echo $ldver | \ -+ $AWK -F. '{ if (NF<3) $3=0; print ($1*100+$2)*100+$3 }'` -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_gnu_ld_version" >&5 -+$as_echo "$glibcxx_gnu_ld_version" >&6; } -+ fi -+ -+ # Set --gc-sections. -+ glibcxx_have_gc_sections=no -+ if test "$glibcxx_ld_is_gold" = "yes" || test "$glibcxx_ld_is_mold" = "yes" ; then -+ if $LD --help 2>/dev/null | grep gc-sections >/dev/null 2>&1; then -+ glibcxx_have_gc_sections=yes -+ fi -+ else -+ glibcxx_gcsections_min_ld=21602 -+ if test x"$with_gnu_ld" = x"yes" && -+ test $glibcxx_gnu_ld_version -gt $glibcxx_gcsections_min_ld ; then -+ glibcxx_have_gc_sections=yes -+ fi -+ fi -+ if test "$glibcxx_have_gc_sections" = "yes"; then -+ # Sufficiently young GNU ld it is! Joy and bunny rabbits! -+ # NB: This flag only works reliably after 2.16.1. Configure tests -+ # for this are difficult, so hard wire a value that should work. -+ -+ ac_test_CFLAGS="${CFLAGS+set}" -+ ac_save_CFLAGS="$CFLAGS" -+ CFLAGS='-Wl,--gc-sections' -+ -+ # Check for -Wl,--gc-sections -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5 -+$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; } -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ int one(void) { return 1; } -+ int two(void) { return 2; } -+ -+int -+main () -+{ -+ two(); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_gcsections=yes -+else -+ ac_gcsections=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ if test "$ac_gcsections" = "yes"; then -+ rm -f conftest.c -+ touch conftest.c -+ if $CC -c conftest.c; then -+ if $LD --gc-sections -o conftest conftest.o 2>&1 | \ -+ grep "Warning: gc-sections option ignored" > /dev/null; then -+ ac_gcsections=no -+ fi -+ fi -+ rm -f conftest.c conftest.o conftest -+ fi -+ if test "$ac_gcsections" = "yes"; then -+ SECTION_LDFLAGS="-Wl,--gc-sections $SECTION_LDFLAGS" -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_gcsections" >&5 -+$as_echo "$ac_gcsections" >&6; } -+ -+ if test "$ac_test_CFLAGS" = set; then -+ CFLAGS="$ac_save_CFLAGS" -+ else -+ # this is the suspicious part -+ CFLAGS='' -+ fi -+ fi -+ -+ # Set -z,relro. -+ # Note this is only for shared objects. -+ ac_ld_relro=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ # cygwin and mingw uses PE, which has no ELF relro support, -+ # multi target ld may confuse configure machinery -+ case "$host" in -+ *-*-cygwin*) -+ ;; -+ *-*-mingw*) -+ ;; -+ *) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,-z,relro" >&5 -+$as_echo_n "checking for ld that supports -Wl,-z,relro... " >&6; } -+ cxx_z_relo=`$LD -v --help 2>/dev/null | grep "z relro"` -+ if test -n "$cxx_z_relo"; then -+ OPT_LDFLAGS="-Wl,-z,relro" -+ ac_ld_relro=yes -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ld_relro" >&5 -+$as_echo "$ac_ld_relro" >&6; } -+ esac -+ fi -+ -+ # Set linker optimization flags. -+ if test x"$with_gnu_ld" = x"yes"; then -+ OPT_LDFLAGS="-Wl,-O1 $OPT_LDFLAGS" -+ fi -+ -+ -+ -+ -+ $as_echo "@%:@define HAVE_COSF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_COSL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_COSHF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_COSHL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LOGF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LOGL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LOG10F 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LOG10L 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINHF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINHL 1" >>confdefs.h -+ -+ ;; -+ *-rtems*) -+ -+ # All these tests are for C++; save the language and the compiler flags. -+ # The CXXFLAGS thing is suspicious, but based on similar bits previously -+ # found in GLIBCXX_CONFIGURE. -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ -+ # Check for -ffunction-sections -fdata-sections -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for g++ that supports -ffunction-sections -fdata-sections" >&5 -+$as_echo_n "checking for g++ that supports -ffunction-sections -fdata-sections... " >&6; } -+ CXXFLAGS='-g -Werror -ffunction-sections -fdata-sections' -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+int foo; void bar() { }; -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_fdsections=yes -+else -+ ac_fdsections=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ if test "$ac_test_CXXFLAGS" = set; then -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ else -+ # this is the suspicious part -+ CXXFLAGS='' -+ fi -+ if test x"$ac_fdsections" = x"yes"; then -+ SECTION_FLAGS='-ffunction-sections -fdata-sections' -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_fdsections" >&5 -+$as_echo "$ac_fdsections" >&6; } -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ -+ # If we're not using GNU ld, then there's no point in even trying these -+ # tests. Check for that first. We should have already tested for gld -+ # by now (in libtool), but require it now just to be safe... -+ test -z "$SECTION_LDFLAGS" && SECTION_LDFLAGS='' -+ test -z "$OPT_LDFLAGS" && OPT_LDFLAGS='' -+ -+ -+ -+ # The name set by libtool depends on the version of libtool. Shame on us -+ # for depending on an impl detail, but c'est la vie. Older versions used -+ # ac_cv_prog_gnu_ld, but now it's lt_cv_prog_gnu_ld, and is copied back on -+ # top of with_gnu_ld (which is also set by --with-gnu-ld, so that actually -+ # makes sense). We'll test with_gnu_ld everywhere else, so if that isn't -+ # set (hence we're using an older libtool), then set it. -+ if test x${with_gnu_ld+set} != xset; then -+ if test x${ac_cv_prog_gnu_ld+set} != xset; then -+ # We got through "ac_require(ac_prog_ld)" and still not set? Huh? -+ with_gnu_ld=no -+ else -+ with_gnu_ld=$ac_cv_prog_gnu_ld -+ fi -+ fi -+ -+ # Start by getting the version number. I think the libtool test already -+ # does some of this, but throws away the result. -+ glibcxx_ld_is_gold=no -+ glibcxx_ld_is_mold=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld version" >&5 -+$as_echo_n "checking for ld version... " >&6; } -+ -+ if $LD --version 2>/dev/null | grep 'GNU gold' >/dev/null 2>&1; then -+ glibcxx_ld_is_gold=yes -+ elif $LD --version 2>/dev/null | grep 'mold' >/dev/null 2>&1; then -+ glibcxx_ld_is_mold=yes -+ fi -+ ldver=`$LD --version 2>/dev/null | -+ sed -e 's/[. ][0-9]\{8\}$//;s/.* \([^ ]\{1,\}\)$/\1/; q'` -+ -+ glibcxx_gnu_ld_version=`echo $ldver | \ -+ $AWK -F. '{ if (NF<3) $3=0; print ($1*100+$2)*100+$3 }'` -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_gnu_ld_version" >&5 -+$as_echo "$glibcxx_gnu_ld_version" >&6; } -+ fi -+ -+ # Set --gc-sections. -+ glibcxx_have_gc_sections=no -+ if test "$glibcxx_ld_is_gold" = "yes" || test "$glibcxx_ld_is_mold" = "yes" ; then -+ if $LD --help 2>/dev/null | grep gc-sections >/dev/null 2>&1; then -+ glibcxx_have_gc_sections=yes -+ fi -+ else -+ glibcxx_gcsections_min_ld=21602 -+ if test x"$with_gnu_ld" = x"yes" && -+ test $glibcxx_gnu_ld_version -gt $glibcxx_gcsections_min_ld ; then -+ glibcxx_have_gc_sections=yes -+ fi -+ fi -+ if test "$glibcxx_have_gc_sections" = "yes"; then -+ # Sufficiently young GNU ld it is! Joy and bunny rabbits! -+ # NB: This flag only works reliably after 2.16.1. Configure tests -+ # for this are difficult, so hard wire a value that should work. -+ -+ ac_test_CFLAGS="${CFLAGS+set}" -+ ac_save_CFLAGS="$CFLAGS" -+ CFLAGS='-Wl,--gc-sections' -+ -+ # Check for -Wl,--gc-sections -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,--gc-sections" >&5 -+$as_echo_n "checking for ld that supports -Wl,--gc-sections... " >&6; } -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ int one(void) { return 1; } -+ int two(void) { return 2; } -+ -+int -+main () -+{ -+ two(); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_gcsections=yes -+else -+ ac_gcsections=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ if test "$ac_gcsections" = "yes"; then -+ rm -f conftest.c -+ touch conftest.c -+ if $CC -c conftest.c; then -+ if $LD --gc-sections -o conftest conftest.o 2>&1 | \ -+ grep "Warning: gc-sections option ignored" > /dev/null; then -+ ac_gcsections=no -+ fi -+ fi -+ rm -f conftest.c conftest.o conftest -+ fi -+ if test "$ac_gcsections" = "yes"; then -+ SECTION_LDFLAGS="-Wl,--gc-sections $SECTION_LDFLAGS" -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_gcsections" >&5 -+$as_echo "$ac_gcsections" >&6; } -+ -+ if test "$ac_test_CFLAGS" = set; then -+ CFLAGS="$ac_save_CFLAGS" -+ else -+ # this is the suspicious part -+ CFLAGS='' -+ fi -+ fi -+ -+ # Set -z,relro. -+ # Note this is only for shared objects. -+ ac_ld_relro=no -+ if test x"$with_gnu_ld" = x"yes"; then -+ # cygwin and mingw uses PE, which has no ELF relro support, -+ # multi target ld may confuse configure machinery -+ case "$host" in -+ *-*-cygwin*) -+ ;; -+ *-*-mingw*) -+ ;; -+ *) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld that supports -Wl,-z,relro" >&5 -+$as_echo_n "checking for ld that supports -Wl,-z,relro... " >&6; } -+ cxx_z_relo=`$LD -v --help 2>/dev/null | grep "z relro"` -+ if test -n "$cxx_z_relo"; then -+ OPT_LDFLAGS="-Wl,-z,relro" -+ ac_ld_relro=yes -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ld_relro" >&5 -+$as_echo "$ac_ld_relro" >&6; } -+ esac -+ fi -+ -+ # Set linker optimization flags. -+ if test x"$with_gnu_ld" = x"yes"; then -+ OPT_LDFLAGS="-Wl,-O1 $OPT_LDFLAGS" -+ fi -+ -+ -+ -+ -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS='-fno-builtin -D_GNU_SOURCE' -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5 -+$as_echo_n "checking for sin in -lm... " >&6; } -+if ${ac_cv_lib_m_sin+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lm $LIBS" -+if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char sin (); -+int -+main () -+{ -+return sin (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_m_sin=yes -+else -+ ac_cv_lib_m_sin=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5 -+$as_echo "$ac_cv_lib_m_sin" >&6; } -+if test "x$ac_cv_lib_m_sin" = xyes; then : -+ libm="-lm" -+fi -+ -+ ac_save_LIBS="$LIBS" -+ LIBS="$LIBS $libm" -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf declaration" >&5 -+$as_echo_n "checking for isinf declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinf_use+set} != xset; then -+ if ${glibcxx_cv_func_isinf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinf_use=yes -+else -+ glibcxx_cv_func_isinf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinf_use" >&5 -+$as_echo "$glibcxx_cv_func_isinf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinf_use = x"yes"; then -+ for ac_func in isinf -+do : -+ ac_fn_c_check_func "$LINENO" "isinf" "ac_cv_func_isinf" -+if test "x$ac_cv_func_isinf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinf declaration" >&5 -+$as_echo_n "checking for _isinf declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinf_use+set} != xset; then -+ if ${glibcxx_cv_func__isinf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinf_use=yes -+else -+ glibcxx_cv_func__isinf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinf_use" >&5 -+$as_echo "$glibcxx_cv_func__isinf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinf_use = x"yes"; then -+ for ac_func in _isinf -+do : -+ ac_fn_c_check_func "$LINENO" "_isinf" "ac_cv_func__isinf" -+if test "x$ac_cv_func__isinf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan declaration" >&5 -+$as_echo_n "checking for isnan declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnan_use+set} != xset; then -+ if ${glibcxx_cv_func_isnan_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnan(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnan_use=yes -+else -+ glibcxx_cv_func_isnan_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnan_use" >&5 -+$as_echo "$glibcxx_cv_func_isnan_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnan_use = x"yes"; then -+ for ac_func in isnan -+do : -+ ac_fn_c_check_func "$LINENO" "isnan" "ac_cv_func_isnan" -+if test "x$ac_cv_func_isnan" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNAN 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnan declaration" >&5 -+$as_echo_n "checking for _isnan declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnan_use+set} != xset; then -+ if ${glibcxx_cv_func__isnan_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnan(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnan_use=yes -+else -+ glibcxx_cv_func__isnan_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnan_use" >&5 -+$as_echo "$glibcxx_cv_func__isnan_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnan_use = x"yes"; then -+ for ac_func in _isnan -+do : -+ ac_fn_c_check_func "$LINENO" "_isnan" "ac_cv_func__isnan" -+if test "x$ac_cv_func__isnan" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNAN 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finite declaration" >&5 -+$as_echo_n "checking for finite declaration... " >&6; } -+ if test x${glibcxx_cv_func_finite_use+set} != xset; then -+ if ${glibcxx_cv_func_finite_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finite(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finite_use=yes -+else -+ glibcxx_cv_func_finite_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finite_use" >&5 -+$as_echo "$glibcxx_cv_func_finite_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finite_use = x"yes"; then -+ for ac_func in finite -+do : -+ ac_fn_c_check_func "$LINENO" "finite" "ac_cv_func_finite" -+if test "x$ac_cv_func_finite" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITE 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finite declaration" >&5 -+$as_echo_n "checking for _finite declaration... " >&6; } -+ if test x${glibcxx_cv_func__finite_use+set} != xset; then -+ if ${glibcxx_cv_func__finite_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finite(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finite_use=yes -+else -+ glibcxx_cv_func__finite_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finite_use" >&5 -+$as_echo "$glibcxx_cv_func__finite_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finite_use = x"yes"; then -+ for ac_func in _finite -+do : -+ ac_fn_c_check_func "$LINENO" "_finite" "ac_cv_func__finite" -+if test "x$ac_cv_func__finite" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITE 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincos declaration" >&5 -+$as_echo_n "checking for sincos declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincos_use+set} != xset; then -+ if ${glibcxx_cv_func_sincos_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincos(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincos_use=yes -+else -+ glibcxx_cv_func_sincos_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincos_use" >&5 -+$as_echo "$glibcxx_cv_func_sincos_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincos_use = x"yes"; then -+ for ac_func in sincos -+do : -+ ac_fn_c_check_func "$LINENO" "sincos" "ac_cv_func_sincos" -+if test "x$ac_cv_func_sincos" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincos declaration" >&5 -+$as_echo_n "checking for _sincos declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincos_use+set} != xset; then -+ if ${glibcxx_cv_func__sincos_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincos(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincos_use=yes -+else -+ glibcxx_cv_func__sincos_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincos_use" >&5 -+$as_echo "$glibcxx_cv_func__sincos_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincos_use = x"yes"; then -+ for ac_func in _sincos -+do : -+ ac_fn_c_check_func "$LINENO" "_sincos" "ac_cv_func__sincos" -+if test "x$ac_cv_func__sincos" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fpclass declaration" >&5 -+$as_echo_n "checking for fpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func_fpclass_use+set} != xset; then -+ if ${glibcxx_cv_func_fpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fpclass_use=yes -+else -+ glibcxx_cv_func_fpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fpclass_use" >&5 -+$as_echo "$glibcxx_cv_func_fpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fpclass_use = x"yes"; then -+ for ac_func in fpclass -+do : -+ ac_fn_c_check_func "$LINENO" "fpclass" "ac_cv_func_fpclass" -+if test "x$ac_cv_func_fpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fpclass declaration" >&5 -+$as_echo_n "checking for _fpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func__fpclass_use+set} != xset; then -+ if ${glibcxx_cv_func__fpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fpclass_use=yes -+else -+ glibcxx_cv_func__fpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fpclass_use" >&5 -+$as_echo "$glibcxx_cv_func__fpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fpclass_use = x"yes"; then -+ for ac_func in _fpclass -+do : -+ ac_fn_c_check_func "$LINENO" "_fpclass" "ac_cv_func__fpclass" -+if test "x$ac_cv_func__fpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for qfpclass declaration" >&5 -+$as_echo_n "checking for qfpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func_qfpclass_use+set} != xset; then -+ if ${glibcxx_cv_func_qfpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ qfpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_qfpclass_use=yes -+else -+ glibcxx_cv_func_qfpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_qfpclass_use" >&5 -+$as_echo "$glibcxx_cv_func_qfpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func_qfpclass_use = x"yes"; then -+ for ac_func in qfpclass -+do : -+ ac_fn_c_check_func "$LINENO" "qfpclass" "ac_cv_func_qfpclass" -+if test "x$ac_cv_func_qfpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_QFPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _qfpclass declaration" >&5 -+$as_echo_n "checking for _qfpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func__qfpclass_use+set} != xset; then -+ if ${glibcxx_cv_func__qfpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _qfpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__qfpclass_use=yes -+else -+ glibcxx_cv_func__qfpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__qfpclass_use" >&5 -+$as_echo "$glibcxx_cv_func__qfpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func__qfpclass_use = x"yes"; then -+ for ac_func in _qfpclass -+do : -+ ac_fn_c_check_func "$LINENO" "_qfpclass" "ac_cv_func__qfpclass" -+if test "x$ac_cv_func__qfpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__QFPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypot declaration" >&5 -+$as_echo_n "checking for hypot declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypot_use+set} != xset; then -+ if ${glibcxx_cv_func_hypot_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypot(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypot_use=yes -+else -+ glibcxx_cv_func_hypot_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypot_use" >&5 -+$as_echo "$glibcxx_cv_func_hypot_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypot_use = x"yes"; then -+ for ac_func in hypot -+do : -+ ac_fn_c_check_func "$LINENO" "hypot" "ac_cv_func_hypot" -+if test "x$ac_cv_func_hypot" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOT 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypot declaration" >&5 -+$as_echo_n "checking for _hypot declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypot_use+set} != xset; then -+ if ${glibcxx_cv_func__hypot_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypot(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypot_use=yes -+else -+ glibcxx_cv_func__hypot_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypot_use" >&5 -+$as_echo "$glibcxx_cv_func__hypot_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypot_use = x"yes"; then -+ for ac_func in _hypot -+do : -+ ac_fn_c_check_func "$LINENO" "_hypot" "ac_cv_func__hypot" -+if test "x$ac_cv_func__hypot" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for float trig functions" >&5 -+$as_echo_n "checking for float trig functions... " >&6; } -+ if ${glibcxx_cv_func_float_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+acosf (0); asinf (0); atanf (0); cosf (0); sinf (0); tanf (0); coshf (0); sinhf (0); tanhf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_float_trig_use=yes -+else -+ glibcxx_cv_func_float_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_float_trig_use" >&5 -+$as_echo "$glibcxx_cv_func_float_trig_use" >&6; } -+ if test x$glibcxx_cv_func_float_trig_use = x"yes"; then -+ for ac_func in acosf asinf atanf cosf sinf tanf coshf sinhf tanhf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float trig functions" >&5 -+$as_echo_n "checking for _float trig functions... " >&6; } -+ if ${glibcxx_cv_func__float_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_acosf (0); _asinf (0); _atanf (0); _cosf (0); _sinf (0); _tanf (0); _coshf (0); _sinhf (0); _tanhf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__float_trig_use=yes -+else -+ glibcxx_cv_func__float_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__float_trig_use" >&5 -+$as_echo "$glibcxx_cv_func__float_trig_use" >&6; } -+ if test x$glibcxx_cv_func__float_trig_use = x"yes"; then -+ for ac_func in _acosf _asinf _atanf _cosf _sinf _tanf _coshf _sinhf _tanhf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for float round functions" >&5 -+$as_echo_n "checking for float round functions... " >&6; } -+ if ${glibcxx_cv_func_float_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ceilf (0); floorf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_float_round_use=yes -+else -+ glibcxx_cv_func_float_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_float_round_use" >&5 -+$as_echo "$glibcxx_cv_func_float_round_use" >&6; } -+ if test x$glibcxx_cv_func_float_round_use = x"yes"; then -+ for ac_func in ceilf floorf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float round functions" >&5 -+$as_echo_n "checking for _float round functions... " >&6; } -+ if ${glibcxx_cv_func__float_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_ceilf (0); _floorf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__float_round_use=yes -+else -+ glibcxx_cv_func__float_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__float_round_use" >&5 -+$as_echo "$glibcxx_cv_func__float_round_use" >&6; } -+ if test x$glibcxx_cv_func__float_round_use = x"yes"; then -+ for ac_func in _ceilf _floorf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for expf declaration" >&5 -+$as_echo_n "checking for expf declaration... " >&6; } -+ if test x${glibcxx_cv_func_expf_use+set} != xset; then -+ if ${glibcxx_cv_func_expf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ expf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_expf_use=yes -+else -+ glibcxx_cv_func_expf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_expf_use" >&5 -+$as_echo "$glibcxx_cv_func_expf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_expf_use = x"yes"; then -+ for ac_func in expf -+do : -+ ac_fn_c_check_func "$LINENO" "expf" "ac_cv_func_expf" -+if test "x$ac_cv_func_expf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_EXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expf declaration" >&5 -+$as_echo_n "checking for _expf declaration... " >&6; } -+ if test x${glibcxx_cv_func__expf_use+set} != xset; then -+ if ${glibcxx_cv_func__expf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _expf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__expf_use=yes -+else -+ glibcxx_cv_func__expf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__expf_use" >&5 -+$as_echo "$glibcxx_cv_func__expf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__expf_use = x"yes"; then -+ for ac_func in _expf -+do : -+ ac_fn_c_check_func "$LINENO" "_expf" "ac_cv_func__expf" -+if test "x$ac_cv_func__expf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__EXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanf declaration" >&5 -+$as_echo_n "checking for isnanf declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnanf_use+set} != xset; then -+ if ${glibcxx_cv_func_isnanf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnanf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnanf_use=yes -+else -+ glibcxx_cv_func_isnanf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnanf_use" >&5 -+$as_echo "$glibcxx_cv_func_isnanf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnanf_use = x"yes"; then -+ for ac_func in isnanf -+do : -+ ac_fn_c_check_func "$LINENO" "isnanf" "ac_cv_func_isnanf" -+if test "x$ac_cv_func_isnanf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNANF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanf declaration" >&5 -+$as_echo_n "checking for _isnanf declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnanf_use+set} != xset; then -+ if ${glibcxx_cv_func__isnanf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnanf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnanf_use=yes -+else -+ glibcxx_cv_func__isnanf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnanf_use" >&5 -+$as_echo "$glibcxx_cv_func__isnanf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnanf_use = x"yes"; then -+ for ac_func in _isnanf -+do : -+ ac_fn_c_check_func "$LINENO" "_isnanf" "ac_cv_func__isnanf" -+if test "x$ac_cv_func__isnanf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNANF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinff declaration" >&5 -+$as_echo_n "checking for isinff declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinff_use+set} != xset; then -+ if ${glibcxx_cv_func_isinff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinff(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinff_use=yes -+else -+ glibcxx_cv_func_isinff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinff_use" >&5 -+$as_echo "$glibcxx_cv_func_isinff_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinff_use = x"yes"; then -+ for ac_func in isinff -+do : -+ ac_fn_c_check_func "$LINENO" "isinff" "ac_cv_func_isinff" -+if test "x$ac_cv_func_isinff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINFF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinff declaration" >&5 -+$as_echo_n "checking for _isinff declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinff_use+set} != xset; then -+ if ${glibcxx_cv_func__isinff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinff(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinff_use=yes -+else -+ glibcxx_cv_func__isinff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinff_use" >&5 -+$as_echo "$glibcxx_cv_func__isinff_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinff_use = x"yes"; then -+ for ac_func in _isinff -+do : -+ ac_fn_c_check_func "$LINENO" "_isinff" "ac_cv_func__isinff" -+if test "x$ac_cv_func__isinff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINFF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2f declaration" >&5 -+$as_echo_n "checking for atan2f declaration... " >&6; } -+ if test x${glibcxx_cv_func_atan2f_use+set} != xset; then -+ if ${glibcxx_cv_func_atan2f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ atan2f(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atan2f_use=yes -+else -+ glibcxx_cv_func_atan2f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atan2f_use" >&5 -+$as_echo "$glibcxx_cv_func_atan2f_use" >&6; } -+ -+ if test x$glibcxx_cv_func_atan2f_use = x"yes"; then -+ for ac_func in atan2f -+do : -+ ac_fn_c_check_func "$LINENO" "atan2f" "ac_cv_func_atan2f" -+if test "x$ac_cv_func_atan2f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATAN2F 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2f declaration" >&5 -+$as_echo_n "checking for _atan2f declaration... " >&6; } -+ if test x${glibcxx_cv_func__atan2f_use+set} != xset; then -+ if ${glibcxx_cv_func__atan2f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _atan2f(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__atan2f_use=yes -+else -+ glibcxx_cv_func__atan2f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__atan2f_use" >&5 -+$as_echo "$glibcxx_cv_func__atan2f_use" >&6; } -+ -+ if test x$glibcxx_cv_func__atan2f_use = x"yes"; then -+ for ac_func in _atan2f -+do : -+ ac_fn_c_check_func "$LINENO" "_atan2f" "ac_cv_func__atan2f" -+if test "x$ac_cv_func__atan2f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ATAN2F 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsf declaration" >&5 -+$as_echo_n "checking for fabsf declaration... " >&6; } -+ if test x${glibcxx_cv_func_fabsf_use+set} != xset; then -+ if ${glibcxx_cv_func_fabsf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fabsf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fabsf_use=yes -+else -+ glibcxx_cv_func_fabsf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fabsf_use" >&5 -+$as_echo "$glibcxx_cv_func_fabsf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fabsf_use = x"yes"; then -+ for ac_func in fabsf -+do : -+ ac_fn_c_check_func "$LINENO" "fabsf" "ac_cv_func_fabsf" -+if test "x$ac_cv_func_fabsf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FABSF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsf declaration" >&5 -+$as_echo_n "checking for _fabsf declaration... " >&6; } -+ if test x${glibcxx_cv_func__fabsf_use+set} != xset; then -+ if ${glibcxx_cv_func__fabsf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fabsf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fabsf_use=yes -+else -+ glibcxx_cv_func__fabsf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fabsf_use" >&5 -+$as_echo "$glibcxx_cv_func__fabsf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fabsf_use = x"yes"; then -+ for ac_func in _fabsf -+do : -+ ac_fn_c_check_func "$LINENO" "_fabsf" "ac_cv_func__fabsf" -+if test "x$ac_cv_func__fabsf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FABSF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodf declaration" >&5 -+$as_echo_n "checking for fmodf declaration... " >&6; } -+ if test x${glibcxx_cv_func_fmodf_use+set} != xset; then -+ if ${glibcxx_cv_func_fmodf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ fmodf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fmodf_use=yes -+else -+ glibcxx_cv_func_fmodf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fmodf_use" >&5 -+$as_echo "$glibcxx_cv_func_fmodf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fmodf_use = x"yes"; then -+ for ac_func in fmodf -+do : -+ ac_fn_c_check_func "$LINENO" "fmodf" "ac_cv_func_fmodf" -+if test "x$ac_cv_func_fmodf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FMODF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodf declaration" >&5 -+$as_echo_n "checking for _fmodf declaration... " >&6; } -+ if test x${glibcxx_cv_func__fmodf_use+set} != xset; then -+ if ${glibcxx_cv_func__fmodf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _fmodf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fmodf_use=yes -+else -+ glibcxx_cv_func__fmodf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fmodf_use" >&5 -+$as_echo "$glibcxx_cv_func__fmodf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fmodf_use = x"yes"; then -+ for ac_func in _fmodf -+do : -+ ac_fn_c_check_func "$LINENO" "_fmodf" "ac_cv_func__fmodf" -+if test "x$ac_cv_func__fmodf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FMODF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpf declaration" >&5 -+$as_echo_n "checking for frexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func_frexpf_use+set} != xset; then -+ if ${glibcxx_cv_func_frexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ frexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpf_use=yes -+else -+ glibcxx_cv_func_frexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_frexpf_use = x"yes"; then -+ for ac_func in frexpf -+do : -+ ac_fn_c_check_func "$LINENO" "frexpf" "ac_cv_func_frexpf" -+if test "x$ac_cv_func_frexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpf declaration" >&5 -+$as_echo_n "checking for _frexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func__frexpf_use+set} != xset; then -+ if ${glibcxx_cv_func__frexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _frexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__frexpf_use=yes -+else -+ glibcxx_cv_func__frexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__frexpf_use" >&5 -+$as_echo "$glibcxx_cv_func__frexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__frexpf_use = x"yes"; then -+ for ac_func in _frexpf -+do : -+ ac_fn_c_check_func "$LINENO" "_frexpf" "ac_cv_func__frexpf" -+if test "x$ac_cv_func__frexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FREXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotf declaration" >&5 -+$as_echo_n "checking for hypotf declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypotf_use+set} != xset; then -+ if ${glibcxx_cv_func_hypotf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypotf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotf_use=yes -+else -+ glibcxx_cv_func_hypotf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotf_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypotf_use = x"yes"; then -+ for ac_func in hypotf -+do : -+ ac_fn_c_check_func "$LINENO" "hypotf" "ac_cv_func_hypotf" -+if test "x$ac_cv_func_hypotf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotf declaration" >&5 -+$as_echo_n "checking for _hypotf declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypotf_use+set} != xset; then -+ if ${glibcxx_cv_func__hypotf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypotf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypotf_use=yes -+else -+ glibcxx_cv_func__hypotf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypotf_use" >&5 -+$as_echo "$glibcxx_cv_func__hypotf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypotf_use = x"yes"; then -+ for ac_func in _hypotf -+do : -+ ac_fn_c_check_func "$LINENO" "_hypotf" "ac_cv_func__hypotf" -+if test "x$ac_cv_func__hypotf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOTF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpf declaration" >&5 -+$as_echo_n "checking for ldexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func_ldexpf_use+set} != xset; then -+ if ${glibcxx_cv_func_ldexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ ldexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpf_use=yes -+else -+ glibcxx_cv_func_ldexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_ldexpf_use = x"yes"; then -+ for ac_func in ldexpf -+do : -+ ac_fn_c_check_func "$LINENO" "ldexpf" "ac_cv_func_ldexpf" -+if test "x$ac_cv_func_ldexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpf declaration" >&5 -+$as_echo_n "checking for _ldexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func__ldexpf_use+set} != xset; then -+ if ${glibcxx_cv_func__ldexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _ldexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__ldexpf_use=yes -+else -+ glibcxx_cv_func__ldexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__ldexpf_use" >&5 -+$as_echo "$glibcxx_cv_func__ldexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__ldexpf_use = x"yes"; then -+ for ac_func in _ldexpf -+do : -+ ac_fn_c_check_func "$LINENO" "_ldexpf" "ac_cv_func__ldexpf" -+if test "x$ac_cv_func__ldexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LDEXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for logf declaration" >&5 -+$as_echo_n "checking for logf declaration... " >&6; } -+ if test x${glibcxx_cv_func_logf_use+set} != xset; then -+ if ${glibcxx_cv_func_logf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ logf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_logf_use=yes -+else -+ glibcxx_cv_func_logf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_logf_use" >&5 -+$as_echo "$glibcxx_cv_func_logf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_logf_use = x"yes"; then -+ for ac_func in logf -+do : -+ ac_fn_c_check_func "$LINENO" "logf" "ac_cv_func_logf" -+if test "x$ac_cv_func_logf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOGF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logf declaration" >&5 -+$as_echo_n "checking for _logf declaration... " >&6; } -+ if test x${glibcxx_cv_func__logf_use+set} != xset; then -+ if ${glibcxx_cv_func__logf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _logf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__logf_use=yes -+else -+ glibcxx_cv_func__logf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__logf_use" >&5 -+$as_echo "$glibcxx_cv_func__logf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__logf_use = x"yes"; then -+ for ac_func in _logf -+do : -+ ac_fn_c_check_func "$LINENO" "_logf" "ac_cv_func__logf" -+if test "x$ac_cv_func__logf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOGF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10f declaration" >&5 -+$as_echo_n "checking for log10f declaration... " >&6; } -+ if test x${glibcxx_cv_func_log10f_use+set} != xset; then -+ if ${glibcxx_cv_func_log10f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ log10f(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_log10f_use=yes -+else -+ glibcxx_cv_func_log10f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_log10f_use" >&5 -+$as_echo "$glibcxx_cv_func_log10f_use" >&6; } -+ -+ if test x$glibcxx_cv_func_log10f_use = x"yes"; then -+ for ac_func in log10f -+do : -+ ac_fn_c_check_func "$LINENO" "log10f" "ac_cv_func_log10f" -+if test "x$ac_cv_func_log10f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOG10F 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10f declaration" >&5 -+$as_echo_n "checking for _log10f declaration... " >&6; } -+ if test x${glibcxx_cv_func__log10f_use+set} != xset; then -+ if ${glibcxx_cv_func__log10f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _log10f(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__log10f_use=yes -+else -+ glibcxx_cv_func__log10f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__log10f_use" >&5 -+$as_echo "$glibcxx_cv_func__log10f_use" >&6; } -+ -+ if test x$glibcxx_cv_func__log10f_use = x"yes"; then -+ for ac_func in _log10f -+do : -+ ac_fn_c_check_func "$LINENO" "_log10f" "ac_cv_func__log10f" -+if test "x$ac_cv_func__log10f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOG10F 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modff declaration" >&5 -+$as_echo_n "checking for modff declaration... " >&6; } -+ if test x${glibcxx_cv_func_modff_use+set} != xset; then -+ if ${glibcxx_cv_func_modff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modff(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modff_use=yes -+else -+ glibcxx_cv_func_modff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modff_use" >&5 -+$as_echo "$glibcxx_cv_func_modff_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modff_use = x"yes"; then -+ for ac_func in modff -+do : -+ ac_fn_c_check_func "$LINENO" "modff" "ac_cv_func_modff" -+if test "x$ac_cv_func_modff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modff declaration" >&5 -+$as_echo_n "checking for _modff declaration... " >&6; } -+ if test x${glibcxx_cv_func__modff_use+set} != xset; then -+ if ${glibcxx_cv_func__modff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modff(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modff_use=yes -+else -+ glibcxx_cv_func__modff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modff_use" >&5 -+$as_echo "$glibcxx_cv_func__modff_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modff_use = x"yes"; then -+ for ac_func in _modff -+do : -+ ac_fn_c_check_func "$LINENO" "_modff" "ac_cv_func__modff" -+if test "x$ac_cv_func__modff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODFF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modf declaration" >&5 -+$as_echo_n "checking for modf declaration... " >&6; } -+ if test x${glibcxx_cv_func_modf_use+set} != xset; then -+ if ${glibcxx_cv_func_modf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modf_use=yes -+else -+ glibcxx_cv_func_modf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modf_use" >&5 -+$as_echo "$glibcxx_cv_func_modf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modf_use = x"yes"; then -+ for ac_func in modf -+do : -+ ac_fn_c_check_func "$LINENO" "modf" "ac_cv_func_modf" -+if test "x$ac_cv_func_modf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modf declaration" >&5 -+$as_echo_n "checking for _modf declaration... " >&6; } -+ if test x${glibcxx_cv_func__modf_use+set} != xset; then -+ if ${glibcxx_cv_func__modf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modf_use=yes -+else -+ glibcxx_cv_func__modf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modf_use" >&5 -+$as_echo "$glibcxx_cv_func__modf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modf_use = x"yes"; then -+ for ac_func in _modf -+do : -+ ac_fn_c_check_func "$LINENO" "_modf" "ac_cv_func__modf" -+if test "x$ac_cv_func__modf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for powf declaration" >&5 -+$as_echo_n "checking for powf declaration... " >&6; } -+ if test x${glibcxx_cv_func_powf_use+set} != xset; then -+ if ${glibcxx_cv_func_powf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ powf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_powf_use=yes -+else -+ glibcxx_cv_func_powf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_powf_use" >&5 -+$as_echo "$glibcxx_cv_func_powf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_powf_use = x"yes"; then -+ for ac_func in powf -+do : -+ ac_fn_c_check_func "$LINENO" "powf" "ac_cv_func_powf" -+if test "x$ac_cv_func_powf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_POWF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powf declaration" >&5 -+$as_echo_n "checking for _powf declaration... " >&6; } -+ if test x${glibcxx_cv_func__powf_use+set} != xset; then -+ if ${glibcxx_cv_func__powf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _powf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__powf_use=yes -+else -+ glibcxx_cv_func__powf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__powf_use" >&5 -+$as_echo "$glibcxx_cv_func__powf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__powf_use = x"yes"; then -+ for ac_func in _powf -+do : -+ ac_fn_c_check_func "$LINENO" "_powf" "ac_cv_func__powf" -+if test "x$ac_cv_func__powf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__POWF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtf declaration" >&5 -+$as_echo_n "checking for sqrtf declaration... " >&6; } -+ if test x${glibcxx_cv_func_sqrtf_use+set} != xset; then -+ if ${glibcxx_cv_func_sqrtf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ sqrtf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sqrtf_use=yes -+else -+ glibcxx_cv_func_sqrtf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sqrtf_use" >&5 -+$as_echo "$glibcxx_cv_func_sqrtf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sqrtf_use = x"yes"; then -+ for ac_func in sqrtf -+do : -+ ac_fn_c_check_func "$LINENO" "sqrtf" "ac_cv_func_sqrtf" -+if test "x$ac_cv_func_sqrtf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SQRTF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtf declaration" >&5 -+$as_echo_n "checking for _sqrtf declaration... " >&6; } -+ if test x${glibcxx_cv_func__sqrtf_use+set} != xset; then -+ if ${glibcxx_cv_func__sqrtf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _sqrtf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sqrtf_use=yes -+else -+ glibcxx_cv_func__sqrtf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sqrtf_use" >&5 -+$as_echo "$glibcxx_cv_func__sqrtf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sqrtf_use = x"yes"; then -+ for ac_func in _sqrtf -+do : -+ ac_fn_c_check_func "$LINENO" "_sqrtf" "ac_cv_func__sqrtf" -+if test "x$ac_cv_func__sqrtf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SQRTF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosf declaration" >&5 -+$as_echo_n "checking for sincosf declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincosf_use+set} != xset; then -+ if ${glibcxx_cv_func_sincosf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincosf(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincosf_use=yes -+else -+ glibcxx_cv_func_sincosf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincosf_use" >&5 -+$as_echo "$glibcxx_cv_func_sincosf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincosf_use = x"yes"; then -+ for ac_func in sincosf -+do : -+ ac_fn_c_check_func "$LINENO" "sincosf" "ac_cv_func_sincosf" -+if test "x$ac_cv_func_sincosf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOSF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosf declaration" >&5 -+$as_echo_n "checking for _sincosf declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincosf_use+set} != xset; then -+ if ${glibcxx_cv_func__sincosf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincosf(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincosf_use=yes -+else -+ glibcxx_cv_func__sincosf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincosf_use" >&5 -+$as_echo "$glibcxx_cv_func__sincosf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincosf_use = x"yes"; then -+ for ac_func in _sincosf -+do : -+ ac_fn_c_check_func "$LINENO" "_sincosf" "ac_cv_func__sincosf" -+if test "x$ac_cv_func__sincosf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOSF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitef declaration" >&5 -+$as_echo_n "checking for finitef declaration... " >&6; } -+ if test x${glibcxx_cv_func_finitef_use+set} != xset; then -+ if ${glibcxx_cv_func_finitef_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finitef(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finitef_use=yes -+else -+ glibcxx_cv_func_finitef_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finitef_use" >&5 -+$as_echo "$glibcxx_cv_func_finitef_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finitef_use = x"yes"; then -+ for ac_func in finitef -+do : -+ ac_fn_c_check_func "$LINENO" "finitef" "ac_cv_func_finitef" -+if test "x$ac_cv_func_finitef" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITEF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitef declaration" >&5 -+$as_echo_n "checking for _finitef declaration... " >&6; } -+ if test x${glibcxx_cv_func__finitef_use+set} != xset; then -+ if ${glibcxx_cv_func__finitef_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finitef(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finitef_use=yes -+else -+ glibcxx_cv_func__finitef_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finitef_use" >&5 -+$as_echo "$glibcxx_cv_func__finitef_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finitef_use = x"yes"; then -+ for ac_func in _finitef -+do : -+ ac_fn_c_check_func "$LINENO" "_finitef" "ac_cv_func__finitef" -+if test "x$ac_cv_func__finitef" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITEF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double trig functions" >&5 -+$as_echo_n "checking for long double trig functions... " >&6; } -+ if ${glibcxx_cv_func_long_double_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+acosl (0); asinl (0); atanl (0); cosl (0); sinl (0); tanl (0); coshl (0); sinhl (0); tanhl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_long_double_trig_use=yes -+else -+ glibcxx_cv_func_long_double_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_long_double_trig_use" >&5 -+$as_echo "$glibcxx_cv_func_long_double_trig_use" >&6; } -+ if test x$glibcxx_cv_func_long_double_trig_use = x"yes"; then -+ for ac_func in acosl asinl atanl cosl sinl tanl coshl sinhl tanhl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double trig functions" >&5 -+$as_echo_n "checking for _long double trig functions... " >&6; } -+ if ${glibcxx_cv_func__long_double_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_acosl (0); _asinl (0); _atanl (0); _cosl (0); _sinl (0); _tanl (0); _coshl (0); _sinhl (0); _tanhl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__long_double_trig_use=yes -+else -+ glibcxx_cv_func__long_double_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__long_double_trig_use" >&5 -+$as_echo "$glibcxx_cv_func__long_double_trig_use" >&6; } -+ if test x$glibcxx_cv_func__long_double_trig_use = x"yes"; then -+ for ac_func in _acosl _asinl _atanl _cosl _sinl _tanl _coshl _sinhl _tanhl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double round functions" >&5 -+$as_echo_n "checking for long double round functions... " >&6; } -+ if ${glibcxx_cv_func_long_double_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ceill (0); floorl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_long_double_round_use=yes -+else -+ glibcxx_cv_func_long_double_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_long_double_round_use" >&5 -+$as_echo "$glibcxx_cv_func_long_double_round_use" >&6; } -+ if test x$glibcxx_cv_func_long_double_round_use = x"yes"; then -+ for ac_func in ceill floorl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double round functions" >&5 -+$as_echo_n "checking for _long double round functions... " >&6; } -+ if ${glibcxx_cv_func__long_double_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_ceill (0); _floorl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__long_double_round_use=yes -+else -+ glibcxx_cv_func__long_double_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__long_double_round_use" >&5 -+$as_echo "$glibcxx_cv_func__long_double_round_use" >&6; } -+ if test x$glibcxx_cv_func__long_double_round_use = x"yes"; then -+ for ac_func in _ceill _floorl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanl declaration" >&5 -+$as_echo_n "checking for isnanl declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnanl_use+set} != xset; then -+ if ${glibcxx_cv_func_isnanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnanl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnanl_use=yes -+else -+ glibcxx_cv_func_isnanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnanl_use" >&5 -+$as_echo "$glibcxx_cv_func_isnanl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnanl_use = x"yes"; then -+ for ac_func in isnanl -+do : -+ ac_fn_c_check_func "$LINENO" "isnanl" "ac_cv_func_isnanl" -+if test "x$ac_cv_func_isnanl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNANL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanl declaration" >&5 -+$as_echo_n "checking for _isnanl declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnanl_use+set} != xset; then -+ if ${glibcxx_cv_func__isnanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnanl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnanl_use=yes -+else -+ glibcxx_cv_func__isnanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnanl_use" >&5 -+$as_echo "$glibcxx_cv_func__isnanl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnanl_use = x"yes"; then -+ for ac_func in _isnanl -+do : -+ ac_fn_c_check_func "$LINENO" "_isnanl" "ac_cv_func__isnanl" -+if test "x$ac_cv_func__isnanl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNANL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinfl declaration" >&5 -+$as_echo_n "checking for isinfl declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinfl_use+set} != xset; then -+ if ${glibcxx_cv_func_isinfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinfl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinfl_use=yes -+else -+ glibcxx_cv_func_isinfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinfl_use" >&5 -+$as_echo "$glibcxx_cv_func_isinfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinfl_use = x"yes"; then -+ for ac_func in isinfl -+do : -+ ac_fn_c_check_func "$LINENO" "isinfl" "ac_cv_func_isinfl" -+if test "x$ac_cv_func_isinfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINFL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinfl declaration" >&5 -+$as_echo_n "checking for _isinfl declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinfl_use+set} != xset; then -+ if ${glibcxx_cv_func__isinfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinfl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinfl_use=yes -+else -+ glibcxx_cv_func__isinfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinfl_use" >&5 -+$as_echo "$glibcxx_cv_func__isinfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinfl_use = x"yes"; then -+ for ac_func in _isinfl -+do : -+ ac_fn_c_check_func "$LINENO" "_isinfl" "ac_cv_func__isinfl" -+if test "x$ac_cv_func__isinfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINFL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2l declaration" >&5 -+$as_echo_n "checking for atan2l declaration... " >&6; } -+ if test x${glibcxx_cv_func_atan2l_use+set} != xset; then -+ if ${glibcxx_cv_func_atan2l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ atan2l(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atan2l_use=yes -+else -+ glibcxx_cv_func_atan2l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atan2l_use" >&5 -+$as_echo "$glibcxx_cv_func_atan2l_use" >&6; } -+ -+ if test x$glibcxx_cv_func_atan2l_use = x"yes"; then -+ for ac_func in atan2l -+do : -+ ac_fn_c_check_func "$LINENO" "atan2l" "ac_cv_func_atan2l" -+if test "x$ac_cv_func_atan2l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATAN2L 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2l declaration" >&5 -+$as_echo_n "checking for _atan2l declaration... " >&6; } -+ if test x${glibcxx_cv_func__atan2l_use+set} != xset; then -+ if ${glibcxx_cv_func__atan2l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _atan2l(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__atan2l_use=yes -+else -+ glibcxx_cv_func__atan2l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__atan2l_use" >&5 -+$as_echo "$glibcxx_cv_func__atan2l_use" >&6; } -+ -+ if test x$glibcxx_cv_func__atan2l_use = x"yes"; then -+ for ac_func in _atan2l -+do : -+ ac_fn_c_check_func "$LINENO" "_atan2l" "ac_cv_func__atan2l" -+if test "x$ac_cv_func__atan2l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ATAN2L 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for expl declaration" >&5 -+$as_echo_n "checking for expl declaration... " >&6; } -+ if test x${glibcxx_cv_func_expl_use+set} != xset; then -+ if ${glibcxx_cv_func_expl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ expl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_expl_use=yes -+else -+ glibcxx_cv_func_expl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_expl_use" >&5 -+$as_echo "$glibcxx_cv_func_expl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_expl_use = x"yes"; then -+ for ac_func in expl -+do : -+ ac_fn_c_check_func "$LINENO" "expl" "ac_cv_func_expl" -+if test "x$ac_cv_func_expl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_EXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expl declaration" >&5 -+$as_echo_n "checking for _expl declaration... " >&6; } -+ if test x${glibcxx_cv_func__expl_use+set} != xset; then -+ if ${glibcxx_cv_func__expl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _expl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__expl_use=yes -+else -+ glibcxx_cv_func__expl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__expl_use" >&5 -+$as_echo "$glibcxx_cv_func__expl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__expl_use = x"yes"; then -+ for ac_func in _expl -+do : -+ ac_fn_c_check_func "$LINENO" "_expl" "ac_cv_func__expl" -+if test "x$ac_cv_func__expl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__EXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsl declaration" >&5 -+$as_echo_n "checking for fabsl declaration... " >&6; } -+ if test x${glibcxx_cv_func_fabsl_use+set} != xset; then -+ if ${glibcxx_cv_func_fabsl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fabsl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fabsl_use=yes -+else -+ glibcxx_cv_func_fabsl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fabsl_use" >&5 -+$as_echo "$glibcxx_cv_func_fabsl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fabsl_use = x"yes"; then -+ for ac_func in fabsl -+do : -+ ac_fn_c_check_func "$LINENO" "fabsl" "ac_cv_func_fabsl" -+if test "x$ac_cv_func_fabsl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FABSL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsl declaration" >&5 -+$as_echo_n "checking for _fabsl declaration... " >&6; } -+ if test x${glibcxx_cv_func__fabsl_use+set} != xset; then -+ if ${glibcxx_cv_func__fabsl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fabsl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fabsl_use=yes -+else -+ glibcxx_cv_func__fabsl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fabsl_use" >&5 -+$as_echo "$glibcxx_cv_func__fabsl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fabsl_use = x"yes"; then -+ for ac_func in _fabsl -+do : -+ ac_fn_c_check_func "$LINENO" "_fabsl" "ac_cv_func__fabsl" -+if test "x$ac_cv_func__fabsl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FABSL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodl declaration" >&5 -+$as_echo_n "checking for fmodl declaration... " >&6; } -+ if test x${glibcxx_cv_func_fmodl_use+set} != xset; then -+ if ${glibcxx_cv_func_fmodl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ fmodl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fmodl_use=yes -+else -+ glibcxx_cv_func_fmodl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fmodl_use" >&5 -+$as_echo "$glibcxx_cv_func_fmodl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fmodl_use = x"yes"; then -+ for ac_func in fmodl -+do : -+ ac_fn_c_check_func "$LINENO" "fmodl" "ac_cv_func_fmodl" -+if test "x$ac_cv_func_fmodl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FMODL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodl declaration" >&5 -+$as_echo_n "checking for _fmodl declaration... " >&6; } -+ if test x${glibcxx_cv_func__fmodl_use+set} != xset; then -+ if ${glibcxx_cv_func__fmodl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _fmodl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fmodl_use=yes -+else -+ glibcxx_cv_func__fmodl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fmodl_use" >&5 -+$as_echo "$glibcxx_cv_func__fmodl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fmodl_use = x"yes"; then -+ for ac_func in _fmodl -+do : -+ ac_fn_c_check_func "$LINENO" "_fmodl" "ac_cv_func__fmodl" -+if test "x$ac_cv_func__fmodl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FMODL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpl declaration" >&5 -+$as_echo_n "checking for frexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func_frexpl_use+set} != xset; then -+ if ${glibcxx_cv_func_frexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ frexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpl_use=yes -+else -+ glibcxx_cv_func_frexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_frexpl_use = x"yes"; then -+ for ac_func in frexpl -+do : -+ ac_fn_c_check_func "$LINENO" "frexpl" "ac_cv_func_frexpl" -+if test "x$ac_cv_func_frexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpl declaration" >&5 -+$as_echo_n "checking for _frexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func__frexpl_use+set} != xset; then -+ if ${glibcxx_cv_func__frexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _frexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__frexpl_use=yes -+else -+ glibcxx_cv_func__frexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__frexpl_use" >&5 -+$as_echo "$glibcxx_cv_func__frexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__frexpl_use = x"yes"; then -+ for ac_func in _frexpl -+do : -+ ac_fn_c_check_func "$LINENO" "_frexpl" "ac_cv_func__frexpl" -+if test "x$ac_cv_func__frexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FREXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotl declaration" >&5 -+$as_echo_n "checking for hypotl declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypotl_use+set} != xset; then -+ if ${glibcxx_cv_func_hypotl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypotl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotl_use=yes -+else -+ glibcxx_cv_func_hypotl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotl_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypotl_use = x"yes"; then -+ for ac_func in hypotl -+do : -+ ac_fn_c_check_func "$LINENO" "hypotl" "ac_cv_func_hypotl" -+if test "x$ac_cv_func_hypotl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotl declaration" >&5 -+$as_echo_n "checking for _hypotl declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypotl_use+set} != xset; then -+ if ${glibcxx_cv_func__hypotl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypotl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypotl_use=yes -+else -+ glibcxx_cv_func__hypotl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypotl_use" >&5 -+$as_echo "$glibcxx_cv_func__hypotl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypotl_use = x"yes"; then -+ for ac_func in _hypotl -+do : -+ ac_fn_c_check_func "$LINENO" "_hypotl" "ac_cv_func__hypotl" -+if test "x$ac_cv_func__hypotl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOTL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpl declaration" >&5 -+$as_echo_n "checking for ldexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func_ldexpl_use+set} != xset; then -+ if ${glibcxx_cv_func_ldexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ ldexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpl_use=yes -+else -+ glibcxx_cv_func_ldexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_ldexpl_use = x"yes"; then -+ for ac_func in ldexpl -+do : -+ ac_fn_c_check_func "$LINENO" "ldexpl" "ac_cv_func_ldexpl" -+if test "x$ac_cv_func_ldexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpl declaration" >&5 -+$as_echo_n "checking for _ldexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func__ldexpl_use+set} != xset; then -+ if ${glibcxx_cv_func__ldexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _ldexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__ldexpl_use=yes -+else -+ glibcxx_cv_func__ldexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__ldexpl_use" >&5 -+$as_echo "$glibcxx_cv_func__ldexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__ldexpl_use = x"yes"; then -+ for ac_func in _ldexpl -+do : -+ ac_fn_c_check_func "$LINENO" "_ldexpl" "ac_cv_func__ldexpl" -+if test "x$ac_cv_func__ldexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LDEXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for logl declaration" >&5 -+$as_echo_n "checking for logl declaration... " >&6; } -+ if test x${glibcxx_cv_func_logl_use+set} != xset; then -+ if ${glibcxx_cv_func_logl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ logl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_logl_use=yes -+else -+ glibcxx_cv_func_logl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_logl_use" >&5 -+$as_echo "$glibcxx_cv_func_logl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_logl_use = x"yes"; then -+ for ac_func in logl -+do : -+ ac_fn_c_check_func "$LINENO" "logl" "ac_cv_func_logl" -+if test "x$ac_cv_func_logl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOGL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logl declaration" >&5 -+$as_echo_n "checking for _logl declaration... " >&6; } -+ if test x${glibcxx_cv_func__logl_use+set} != xset; then -+ if ${glibcxx_cv_func__logl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _logl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__logl_use=yes -+else -+ glibcxx_cv_func__logl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__logl_use" >&5 -+$as_echo "$glibcxx_cv_func__logl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__logl_use = x"yes"; then -+ for ac_func in _logl -+do : -+ ac_fn_c_check_func "$LINENO" "_logl" "ac_cv_func__logl" -+if test "x$ac_cv_func__logl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOGL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10l declaration" >&5 -+$as_echo_n "checking for log10l declaration... " >&6; } -+ if test x${glibcxx_cv_func_log10l_use+set} != xset; then -+ if ${glibcxx_cv_func_log10l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ log10l(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_log10l_use=yes -+else -+ glibcxx_cv_func_log10l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_log10l_use" >&5 -+$as_echo "$glibcxx_cv_func_log10l_use" >&6; } -+ -+ if test x$glibcxx_cv_func_log10l_use = x"yes"; then -+ for ac_func in log10l -+do : -+ ac_fn_c_check_func "$LINENO" "log10l" "ac_cv_func_log10l" -+if test "x$ac_cv_func_log10l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOG10L 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10l declaration" >&5 -+$as_echo_n "checking for _log10l declaration... " >&6; } -+ if test x${glibcxx_cv_func__log10l_use+set} != xset; then -+ if ${glibcxx_cv_func__log10l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _log10l(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__log10l_use=yes -+else -+ glibcxx_cv_func__log10l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__log10l_use" >&5 -+$as_echo "$glibcxx_cv_func__log10l_use" >&6; } -+ -+ if test x$glibcxx_cv_func__log10l_use = x"yes"; then -+ for ac_func in _log10l -+do : -+ ac_fn_c_check_func "$LINENO" "_log10l" "ac_cv_func__log10l" -+if test "x$ac_cv_func__log10l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOG10L 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modfl declaration" >&5 -+$as_echo_n "checking for modfl declaration... " >&6; } -+ if test x${glibcxx_cv_func_modfl_use+set} != xset; then -+ if ${glibcxx_cv_func_modfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modfl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modfl_use=yes -+else -+ glibcxx_cv_func_modfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modfl_use" >&5 -+$as_echo "$glibcxx_cv_func_modfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modfl_use = x"yes"; then -+ for ac_func in modfl -+do : -+ ac_fn_c_check_func "$LINENO" "modfl" "ac_cv_func_modfl" -+if test "x$ac_cv_func_modfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modfl declaration" >&5 -+$as_echo_n "checking for _modfl declaration... " >&6; } -+ if test x${glibcxx_cv_func__modfl_use+set} != xset; then -+ if ${glibcxx_cv_func__modfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modfl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modfl_use=yes -+else -+ glibcxx_cv_func__modfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modfl_use" >&5 -+$as_echo "$glibcxx_cv_func__modfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modfl_use = x"yes"; then -+ for ac_func in _modfl -+do : -+ ac_fn_c_check_func "$LINENO" "_modfl" "ac_cv_func__modfl" -+if test "x$ac_cv_func__modfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODFL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for powl declaration" >&5 -+$as_echo_n "checking for powl declaration... " >&6; } -+ if test x${glibcxx_cv_func_powl_use+set} != xset; then -+ if ${glibcxx_cv_func_powl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ powl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_powl_use=yes -+else -+ glibcxx_cv_func_powl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_powl_use" >&5 -+$as_echo "$glibcxx_cv_func_powl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_powl_use = x"yes"; then -+ for ac_func in powl -+do : -+ ac_fn_c_check_func "$LINENO" "powl" "ac_cv_func_powl" -+if test "x$ac_cv_func_powl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_POWL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powl declaration" >&5 -+$as_echo_n "checking for _powl declaration... " >&6; } -+ if test x${glibcxx_cv_func__powl_use+set} != xset; then -+ if ${glibcxx_cv_func__powl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _powl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__powl_use=yes -+else -+ glibcxx_cv_func__powl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__powl_use" >&5 -+$as_echo "$glibcxx_cv_func__powl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__powl_use = x"yes"; then -+ for ac_func in _powl -+do : -+ ac_fn_c_check_func "$LINENO" "_powl" "ac_cv_func__powl" -+if test "x$ac_cv_func__powl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__POWL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtl declaration" >&5 -+$as_echo_n "checking for sqrtl declaration... " >&6; } -+ if test x${glibcxx_cv_func_sqrtl_use+set} != xset; then -+ if ${glibcxx_cv_func_sqrtl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ sqrtl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sqrtl_use=yes -+else -+ glibcxx_cv_func_sqrtl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sqrtl_use" >&5 -+$as_echo "$glibcxx_cv_func_sqrtl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sqrtl_use = x"yes"; then -+ for ac_func in sqrtl -+do : -+ ac_fn_c_check_func "$LINENO" "sqrtl" "ac_cv_func_sqrtl" -+if test "x$ac_cv_func_sqrtl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SQRTL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtl declaration" >&5 -+$as_echo_n "checking for _sqrtl declaration... " >&6; } -+ if test x${glibcxx_cv_func__sqrtl_use+set} != xset; then -+ if ${glibcxx_cv_func__sqrtl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _sqrtl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sqrtl_use=yes -+else -+ glibcxx_cv_func__sqrtl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sqrtl_use" >&5 -+$as_echo "$glibcxx_cv_func__sqrtl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sqrtl_use = x"yes"; then -+ for ac_func in _sqrtl -+do : -+ ac_fn_c_check_func "$LINENO" "_sqrtl" "ac_cv_func__sqrtl" -+if test "x$ac_cv_func__sqrtl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SQRTL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosl declaration" >&5 -+$as_echo_n "checking for sincosl declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincosl_use+set} != xset; then -+ if ${glibcxx_cv_func_sincosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincosl(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincosl_use=yes -+else -+ glibcxx_cv_func_sincosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincosl_use" >&5 -+$as_echo "$glibcxx_cv_func_sincosl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincosl_use = x"yes"; then -+ for ac_func in sincosl -+do : -+ ac_fn_c_check_func "$LINENO" "sincosl" "ac_cv_func_sincosl" -+if test "x$ac_cv_func_sincosl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOSL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosl declaration" >&5 -+$as_echo_n "checking for _sincosl declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincosl_use+set} != xset; then -+ if ${glibcxx_cv_func__sincosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincosl(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincosl_use=yes -+else -+ glibcxx_cv_func__sincosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincosl_use" >&5 -+$as_echo "$glibcxx_cv_func__sincosl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincosl_use = x"yes"; then -+ for ac_func in _sincosl -+do : -+ ac_fn_c_check_func "$LINENO" "_sincosl" "ac_cv_func__sincosl" -+if test "x$ac_cv_func__sincosl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOSL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitel declaration" >&5 -+$as_echo_n "checking for finitel declaration... " >&6; } -+ if test x${glibcxx_cv_func_finitel_use+set} != xset; then -+ if ${glibcxx_cv_func_finitel_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finitel(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finitel_use=yes -+else -+ glibcxx_cv_func_finitel_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finitel_use" >&5 -+$as_echo "$glibcxx_cv_func_finitel_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finitel_use = x"yes"; then -+ for ac_func in finitel -+do : -+ ac_fn_c_check_func "$LINENO" "finitel" "ac_cv_func_finitel" -+if test "x$ac_cv_func_finitel" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITEL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitel declaration" >&5 -+$as_echo_n "checking for _finitel declaration... " >&6; } -+ if test x${glibcxx_cv_func__finitel_use+set} != xset; then -+ if ${glibcxx_cv_func__finitel_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finitel(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finitel_use=yes -+else -+ glibcxx_cv_func__finitel_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finitel_use" >&5 -+$as_echo "$glibcxx_cv_func__finitel_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finitel_use = x"yes"; then -+ for ac_func in _finitel -+do : -+ ac_fn_c_check_func "$LINENO" "_finitel" "ac_cv_func__finitel" -+if test "x$ac_cv_func__finitel" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITEL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ LIBS="$ac_save_LIBS" -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS='-fno-builtin -D_GNU_SOURCE' -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for at_quick_exit declaration" >&5 -+$as_echo_n "checking for at_quick_exit declaration... " >&6; } -+ if test x${glibcxx_cv_func_at_quick_exit_use+set} != xset; then -+ if ${glibcxx_cv_func_at_quick_exit_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ at_quick_exit(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_at_quick_exit_use=yes -+else -+ glibcxx_cv_func_at_quick_exit_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_at_quick_exit_use" >&5 -+$as_echo "$glibcxx_cv_func_at_quick_exit_use" >&6; } -+ if test x$glibcxx_cv_func_at_quick_exit_use = x"yes"; then -+ for ac_func in at_quick_exit -+do : -+ ac_fn_c_check_func "$LINENO" "at_quick_exit" "ac_cv_func_at_quick_exit" -+if test "x$ac_cv_func_at_quick_exit" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_AT_QUICK_EXIT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for quick_exit declaration" >&5 -+$as_echo_n "checking for quick_exit declaration... " >&6; } -+ if test x${glibcxx_cv_func_quick_exit_use+set} != xset; then -+ if ${glibcxx_cv_func_quick_exit_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ quick_exit(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_quick_exit_use=yes -+else -+ glibcxx_cv_func_quick_exit_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_quick_exit_use" >&5 -+$as_echo "$glibcxx_cv_func_quick_exit_use" >&6; } -+ if test x$glibcxx_cv_func_quick_exit_use = x"yes"; then -+ for ac_func in quick_exit -+do : -+ ac_fn_c_check_func "$LINENO" "quick_exit" "ac_cv_func_quick_exit" -+if test "x$ac_cv_func_quick_exit" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_QUICK_EXIT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtold declaration" >&5 -+$as_echo_n "checking for strtold declaration... " >&6; } -+ if test x${glibcxx_cv_func_strtold_use+set} != xset; then -+ if ${glibcxx_cv_func_strtold_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ strtold(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_strtold_use=yes -+else -+ glibcxx_cv_func_strtold_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_strtold_use" >&5 -+$as_echo "$glibcxx_cv_func_strtold_use" >&6; } -+ if test x$glibcxx_cv_func_strtold_use = x"yes"; then -+ for ac_func in strtold -+do : -+ ac_fn_c_check_func "$LINENO" "strtold" "ac_cv_func_strtold" -+if test "x$ac_cv_func_strtold" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STRTOLD 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtof declaration" >&5 -+$as_echo_n "checking for strtof declaration... " >&6; } -+ if test x${glibcxx_cv_func_strtof_use+set} != xset; then -+ if ${glibcxx_cv_func_strtof_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ strtof(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_strtof_use=yes -+else -+ glibcxx_cv_func_strtof_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_strtof_use" >&5 -+$as_echo "$glibcxx_cv_func_strtof_use" >&6; } -+ if test x$glibcxx_cv_func_strtof_use = x"yes"; then -+ for ac_func in strtof -+do : -+ ac_fn_c_check_func "$LINENO" "strtof" "ac_cv_func_strtof" -+if test "x$ac_cv_func_strtof" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STRTOF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ -+ ;; -+ *-tpf) -+ SECTION_FLAGS='-ffunction-sections -fdata-sections' -+ SECTION_LDFLAGS='-Wl,--gc-sections $SECTION_LDFLAGS' -+ -+ $as_echo "@%:@define HAVE_FINITE 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FINITEF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FREXPF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_HYPOTF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISINF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISINFF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISNAN 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISNANF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINCOS 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINCOSF 1" >>confdefs.h -+ -+ if test x"long_double_math_on_this_cpu" = x"yes"; then -+ $as_echo "@%:@define HAVE_FINITEL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_HYPOTL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISINFL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ISNANL 1" >>confdefs.h -+ -+ fi -+ ;; -+ *-*vms*) -+ # Check for available headers. -+ # Don't call GLIBCXX_CHECK_LINKER_FEATURES, VMS doesn't have a GNU ld -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS='-fno-builtin -D_GNU_SOURCE' -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5 -+$as_echo_n "checking for sin in -lm... " >&6; } -+if ${ac_cv_lib_m_sin+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lm $LIBS" -+if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char sin (); -+int -+main () -+{ -+return sin (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_m_sin=yes -+else -+ ac_cv_lib_m_sin=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5 -+$as_echo "$ac_cv_lib_m_sin" >&6; } -+if test "x$ac_cv_lib_m_sin" = xyes; then : -+ libm="-lm" -+fi -+ -+ ac_save_LIBS="$LIBS" -+ LIBS="$LIBS $libm" -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf declaration" >&5 -+$as_echo_n "checking for isinf declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinf_use+set} != xset; then -+ if ${glibcxx_cv_func_isinf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinf_use=yes -+else -+ glibcxx_cv_func_isinf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinf_use" >&5 -+$as_echo "$glibcxx_cv_func_isinf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinf_use = x"yes"; then -+ for ac_func in isinf -+do : -+ ac_fn_c_check_func "$LINENO" "isinf" "ac_cv_func_isinf" -+if test "x$ac_cv_func_isinf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinf declaration" >&5 -+$as_echo_n "checking for _isinf declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinf_use+set} != xset; then -+ if ${glibcxx_cv_func__isinf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinf_use=yes -+else -+ glibcxx_cv_func__isinf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinf_use" >&5 -+$as_echo "$glibcxx_cv_func__isinf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinf_use = x"yes"; then -+ for ac_func in _isinf -+do : -+ ac_fn_c_check_func "$LINENO" "_isinf" "ac_cv_func__isinf" -+if test "x$ac_cv_func__isinf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan declaration" >&5 -+$as_echo_n "checking for isnan declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnan_use+set} != xset; then -+ if ${glibcxx_cv_func_isnan_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnan(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnan_use=yes -+else -+ glibcxx_cv_func_isnan_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnan_use" >&5 -+$as_echo "$glibcxx_cv_func_isnan_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnan_use = x"yes"; then -+ for ac_func in isnan -+do : -+ ac_fn_c_check_func "$LINENO" "isnan" "ac_cv_func_isnan" -+if test "x$ac_cv_func_isnan" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNAN 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnan declaration" >&5 -+$as_echo_n "checking for _isnan declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnan_use+set} != xset; then -+ if ${glibcxx_cv_func__isnan_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnan(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnan_use=yes -+else -+ glibcxx_cv_func__isnan_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnan_use" >&5 -+$as_echo "$glibcxx_cv_func__isnan_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnan_use = x"yes"; then -+ for ac_func in _isnan -+do : -+ ac_fn_c_check_func "$LINENO" "_isnan" "ac_cv_func__isnan" -+if test "x$ac_cv_func__isnan" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNAN 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finite declaration" >&5 -+$as_echo_n "checking for finite declaration... " >&6; } -+ if test x${glibcxx_cv_func_finite_use+set} != xset; then -+ if ${glibcxx_cv_func_finite_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finite(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finite_use=yes -+else -+ glibcxx_cv_func_finite_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finite_use" >&5 -+$as_echo "$glibcxx_cv_func_finite_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finite_use = x"yes"; then -+ for ac_func in finite -+do : -+ ac_fn_c_check_func "$LINENO" "finite" "ac_cv_func_finite" -+if test "x$ac_cv_func_finite" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITE 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finite declaration" >&5 -+$as_echo_n "checking for _finite declaration... " >&6; } -+ if test x${glibcxx_cv_func__finite_use+set} != xset; then -+ if ${glibcxx_cv_func__finite_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finite(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finite_use=yes -+else -+ glibcxx_cv_func__finite_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finite_use" >&5 -+$as_echo "$glibcxx_cv_func__finite_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finite_use = x"yes"; then -+ for ac_func in _finite -+do : -+ ac_fn_c_check_func "$LINENO" "_finite" "ac_cv_func__finite" -+if test "x$ac_cv_func__finite" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITE 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincos declaration" >&5 -+$as_echo_n "checking for sincos declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincos_use+set} != xset; then -+ if ${glibcxx_cv_func_sincos_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincos(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincos_use=yes -+else -+ glibcxx_cv_func_sincos_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincos_use" >&5 -+$as_echo "$glibcxx_cv_func_sincos_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincos_use = x"yes"; then -+ for ac_func in sincos -+do : -+ ac_fn_c_check_func "$LINENO" "sincos" "ac_cv_func_sincos" -+if test "x$ac_cv_func_sincos" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincos declaration" >&5 -+$as_echo_n "checking for _sincos declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincos_use+set} != xset; then -+ if ${glibcxx_cv_func__sincos_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincos(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincos_use=yes -+else -+ glibcxx_cv_func__sincos_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincos_use" >&5 -+$as_echo "$glibcxx_cv_func__sincos_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincos_use = x"yes"; then -+ for ac_func in _sincos -+do : -+ ac_fn_c_check_func "$LINENO" "_sincos" "ac_cv_func__sincos" -+if test "x$ac_cv_func__sincos" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fpclass declaration" >&5 -+$as_echo_n "checking for fpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func_fpclass_use+set} != xset; then -+ if ${glibcxx_cv_func_fpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fpclass_use=yes -+else -+ glibcxx_cv_func_fpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fpclass_use" >&5 -+$as_echo "$glibcxx_cv_func_fpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fpclass_use = x"yes"; then -+ for ac_func in fpclass -+do : -+ ac_fn_c_check_func "$LINENO" "fpclass" "ac_cv_func_fpclass" -+if test "x$ac_cv_func_fpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fpclass declaration" >&5 -+$as_echo_n "checking for _fpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func__fpclass_use+set} != xset; then -+ if ${glibcxx_cv_func__fpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fpclass_use=yes -+else -+ glibcxx_cv_func__fpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fpclass_use" >&5 -+$as_echo "$glibcxx_cv_func__fpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fpclass_use = x"yes"; then -+ for ac_func in _fpclass -+do : -+ ac_fn_c_check_func "$LINENO" "_fpclass" "ac_cv_func__fpclass" -+if test "x$ac_cv_func__fpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for qfpclass declaration" >&5 -+$as_echo_n "checking for qfpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func_qfpclass_use+set} != xset; then -+ if ${glibcxx_cv_func_qfpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ qfpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_qfpclass_use=yes -+else -+ glibcxx_cv_func_qfpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_qfpclass_use" >&5 -+$as_echo "$glibcxx_cv_func_qfpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func_qfpclass_use = x"yes"; then -+ for ac_func in qfpclass -+do : -+ ac_fn_c_check_func "$LINENO" "qfpclass" "ac_cv_func_qfpclass" -+if test "x$ac_cv_func_qfpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_QFPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _qfpclass declaration" >&5 -+$as_echo_n "checking for _qfpclass declaration... " >&6; } -+ if test x${glibcxx_cv_func__qfpclass_use+set} != xset; then -+ if ${glibcxx_cv_func__qfpclass_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _qfpclass(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__qfpclass_use=yes -+else -+ glibcxx_cv_func__qfpclass_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__qfpclass_use" >&5 -+$as_echo "$glibcxx_cv_func__qfpclass_use" >&6; } -+ -+ if test x$glibcxx_cv_func__qfpclass_use = x"yes"; then -+ for ac_func in _qfpclass -+do : -+ ac_fn_c_check_func "$LINENO" "_qfpclass" "ac_cv_func__qfpclass" -+if test "x$ac_cv_func__qfpclass" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__QFPCLASS 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypot declaration" >&5 -+$as_echo_n "checking for hypot declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypot_use+set} != xset; then -+ if ${glibcxx_cv_func_hypot_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypot(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypot_use=yes -+else -+ glibcxx_cv_func_hypot_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypot_use" >&5 -+$as_echo "$glibcxx_cv_func_hypot_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypot_use = x"yes"; then -+ for ac_func in hypot -+do : -+ ac_fn_c_check_func "$LINENO" "hypot" "ac_cv_func_hypot" -+if test "x$ac_cv_func_hypot" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOT 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypot declaration" >&5 -+$as_echo_n "checking for _hypot declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypot_use+set} != xset; then -+ if ${glibcxx_cv_func__hypot_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypot(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypot_use=yes -+else -+ glibcxx_cv_func__hypot_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypot_use" >&5 -+$as_echo "$glibcxx_cv_func__hypot_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypot_use = x"yes"; then -+ for ac_func in _hypot -+do : -+ ac_fn_c_check_func "$LINENO" "_hypot" "ac_cv_func__hypot" -+if test "x$ac_cv_func__hypot" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for float trig functions" >&5 -+$as_echo_n "checking for float trig functions... " >&6; } -+ if ${glibcxx_cv_func_float_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+acosf (0); asinf (0); atanf (0); cosf (0); sinf (0); tanf (0); coshf (0); sinhf (0); tanhf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_float_trig_use=yes -+else -+ glibcxx_cv_func_float_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_float_trig_use" >&5 -+$as_echo "$glibcxx_cv_func_float_trig_use" >&6; } -+ if test x$glibcxx_cv_func_float_trig_use = x"yes"; then -+ for ac_func in acosf asinf atanf cosf sinf tanf coshf sinhf tanhf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float trig functions" >&5 -+$as_echo_n "checking for _float trig functions... " >&6; } -+ if ${glibcxx_cv_func__float_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_acosf (0); _asinf (0); _atanf (0); _cosf (0); _sinf (0); _tanf (0); _coshf (0); _sinhf (0); _tanhf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__float_trig_use=yes -+else -+ glibcxx_cv_func__float_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__float_trig_use" >&5 -+$as_echo "$glibcxx_cv_func__float_trig_use" >&6; } -+ if test x$glibcxx_cv_func__float_trig_use = x"yes"; then -+ for ac_func in _acosf _asinf _atanf _cosf _sinf _tanf _coshf _sinhf _tanhf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for float round functions" >&5 -+$as_echo_n "checking for float round functions... " >&6; } -+ if ${glibcxx_cv_func_float_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ceilf (0); floorf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_float_round_use=yes -+else -+ glibcxx_cv_func_float_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_float_round_use" >&5 -+$as_echo "$glibcxx_cv_func_float_round_use" >&6; } -+ if test x$glibcxx_cv_func_float_round_use = x"yes"; then -+ for ac_func in ceilf floorf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _float round functions" >&5 -+$as_echo_n "checking for _float round functions... " >&6; } -+ if ${glibcxx_cv_func__float_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_ceilf (0); _floorf (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__float_round_use=yes -+else -+ glibcxx_cv_func__float_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__float_round_use" >&5 -+$as_echo "$glibcxx_cv_func__float_round_use" >&6; } -+ if test x$glibcxx_cv_func__float_round_use = x"yes"; then -+ for ac_func in _ceilf _floorf -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for expf declaration" >&5 -+$as_echo_n "checking for expf declaration... " >&6; } -+ if test x${glibcxx_cv_func_expf_use+set} != xset; then -+ if ${glibcxx_cv_func_expf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ expf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_expf_use=yes -+else -+ glibcxx_cv_func_expf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_expf_use" >&5 -+$as_echo "$glibcxx_cv_func_expf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_expf_use = x"yes"; then -+ for ac_func in expf -+do : -+ ac_fn_c_check_func "$LINENO" "expf" "ac_cv_func_expf" -+if test "x$ac_cv_func_expf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_EXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expf declaration" >&5 -+$as_echo_n "checking for _expf declaration... " >&6; } -+ if test x${glibcxx_cv_func__expf_use+set} != xset; then -+ if ${glibcxx_cv_func__expf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _expf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__expf_use=yes -+else -+ glibcxx_cv_func__expf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__expf_use" >&5 -+$as_echo "$glibcxx_cv_func__expf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__expf_use = x"yes"; then -+ for ac_func in _expf -+do : -+ ac_fn_c_check_func "$LINENO" "_expf" "ac_cv_func__expf" -+if test "x$ac_cv_func__expf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__EXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanf declaration" >&5 -+$as_echo_n "checking for isnanf declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnanf_use+set} != xset; then -+ if ${glibcxx_cv_func_isnanf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnanf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnanf_use=yes -+else -+ glibcxx_cv_func_isnanf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnanf_use" >&5 -+$as_echo "$glibcxx_cv_func_isnanf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnanf_use = x"yes"; then -+ for ac_func in isnanf -+do : -+ ac_fn_c_check_func "$LINENO" "isnanf" "ac_cv_func_isnanf" -+if test "x$ac_cv_func_isnanf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNANF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanf declaration" >&5 -+$as_echo_n "checking for _isnanf declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnanf_use+set} != xset; then -+ if ${glibcxx_cv_func__isnanf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnanf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnanf_use=yes -+else -+ glibcxx_cv_func__isnanf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnanf_use" >&5 -+$as_echo "$glibcxx_cv_func__isnanf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnanf_use = x"yes"; then -+ for ac_func in _isnanf -+do : -+ ac_fn_c_check_func "$LINENO" "_isnanf" "ac_cv_func__isnanf" -+if test "x$ac_cv_func__isnanf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNANF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinff declaration" >&5 -+$as_echo_n "checking for isinff declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinff_use+set} != xset; then -+ if ${glibcxx_cv_func_isinff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinff(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinff_use=yes -+else -+ glibcxx_cv_func_isinff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinff_use" >&5 -+$as_echo "$glibcxx_cv_func_isinff_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinff_use = x"yes"; then -+ for ac_func in isinff -+do : -+ ac_fn_c_check_func "$LINENO" "isinff" "ac_cv_func_isinff" -+if test "x$ac_cv_func_isinff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINFF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinff declaration" >&5 -+$as_echo_n "checking for _isinff declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinff_use+set} != xset; then -+ if ${glibcxx_cv_func__isinff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinff(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinff_use=yes -+else -+ glibcxx_cv_func__isinff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinff_use" >&5 -+$as_echo "$glibcxx_cv_func__isinff_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinff_use = x"yes"; then -+ for ac_func in _isinff -+do : -+ ac_fn_c_check_func "$LINENO" "_isinff" "ac_cv_func__isinff" -+if test "x$ac_cv_func__isinff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINFF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2f declaration" >&5 -+$as_echo_n "checking for atan2f declaration... " >&6; } -+ if test x${glibcxx_cv_func_atan2f_use+set} != xset; then -+ if ${glibcxx_cv_func_atan2f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ atan2f(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atan2f_use=yes -+else -+ glibcxx_cv_func_atan2f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atan2f_use" >&5 -+$as_echo "$glibcxx_cv_func_atan2f_use" >&6; } -+ -+ if test x$glibcxx_cv_func_atan2f_use = x"yes"; then -+ for ac_func in atan2f -+do : -+ ac_fn_c_check_func "$LINENO" "atan2f" "ac_cv_func_atan2f" -+if test "x$ac_cv_func_atan2f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATAN2F 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2f declaration" >&5 -+$as_echo_n "checking for _atan2f declaration... " >&6; } -+ if test x${glibcxx_cv_func__atan2f_use+set} != xset; then -+ if ${glibcxx_cv_func__atan2f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _atan2f(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__atan2f_use=yes -+else -+ glibcxx_cv_func__atan2f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__atan2f_use" >&5 -+$as_echo "$glibcxx_cv_func__atan2f_use" >&6; } -+ -+ if test x$glibcxx_cv_func__atan2f_use = x"yes"; then -+ for ac_func in _atan2f -+do : -+ ac_fn_c_check_func "$LINENO" "_atan2f" "ac_cv_func__atan2f" -+if test "x$ac_cv_func__atan2f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ATAN2F 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsf declaration" >&5 -+$as_echo_n "checking for fabsf declaration... " >&6; } -+ if test x${glibcxx_cv_func_fabsf_use+set} != xset; then -+ if ${glibcxx_cv_func_fabsf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fabsf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fabsf_use=yes -+else -+ glibcxx_cv_func_fabsf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fabsf_use" >&5 -+$as_echo "$glibcxx_cv_func_fabsf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fabsf_use = x"yes"; then -+ for ac_func in fabsf -+do : -+ ac_fn_c_check_func "$LINENO" "fabsf" "ac_cv_func_fabsf" -+if test "x$ac_cv_func_fabsf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FABSF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsf declaration" >&5 -+$as_echo_n "checking for _fabsf declaration... " >&6; } -+ if test x${glibcxx_cv_func__fabsf_use+set} != xset; then -+ if ${glibcxx_cv_func__fabsf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fabsf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fabsf_use=yes -+else -+ glibcxx_cv_func__fabsf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fabsf_use" >&5 -+$as_echo "$glibcxx_cv_func__fabsf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fabsf_use = x"yes"; then -+ for ac_func in _fabsf -+do : -+ ac_fn_c_check_func "$LINENO" "_fabsf" "ac_cv_func__fabsf" -+if test "x$ac_cv_func__fabsf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FABSF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodf declaration" >&5 -+$as_echo_n "checking for fmodf declaration... " >&6; } -+ if test x${glibcxx_cv_func_fmodf_use+set} != xset; then -+ if ${glibcxx_cv_func_fmodf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ fmodf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fmodf_use=yes -+else -+ glibcxx_cv_func_fmodf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fmodf_use" >&5 -+$as_echo "$glibcxx_cv_func_fmodf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fmodf_use = x"yes"; then -+ for ac_func in fmodf -+do : -+ ac_fn_c_check_func "$LINENO" "fmodf" "ac_cv_func_fmodf" -+if test "x$ac_cv_func_fmodf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FMODF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodf declaration" >&5 -+$as_echo_n "checking for _fmodf declaration... " >&6; } -+ if test x${glibcxx_cv_func__fmodf_use+set} != xset; then -+ if ${glibcxx_cv_func__fmodf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _fmodf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fmodf_use=yes -+else -+ glibcxx_cv_func__fmodf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fmodf_use" >&5 -+$as_echo "$glibcxx_cv_func__fmodf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fmodf_use = x"yes"; then -+ for ac_func in _fmodf -+do : -+ ac_fn_c_check_func "$LINENO" "_fmodf" "ac_cv_func__fmodf" -+if test "x$ac_cv_func__fmodf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FMODF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpf declaration" >&5 -+$as_echo_n "checking for frexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func_frexpf_use+set} != xset; then -+ if ${glibcxx_cv_func_frexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ frexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpf_use=yes -+else -+ glibcxx_cv_func_frexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_frexpf_use = x"yes"; then -+ for ac_func in frexpf -+do : -+ ac_fn_c_check_func "$LINENO" "frexpf" "ac_cv_func_frexpf" -+if test "x$ac_cv_func_frexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpf declaration" >&5 -+$as_echo_n "checking for _frexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func__frexpf_use+set} != xset; then -+ if ${glibcxx_cv_func__frexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _frexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__frexpf_use=yes -+else -+ glibcxx_cv_func__frexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__frexpf_use" >&5 -+$as_echo "$glibcxx_cv_func__frexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__frexpf_use = x"yes"; then -+ for ac_func in _frexpf -+do : -+ ac_fn_c_check_func "$LINENO" "_frexpf" "ac_cv_func__frexpf" -+if test "x$ac_cv_func__frexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FREXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotf declaration" >&5 -+$as_echo_n "checking for hypotf declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypotf_use+set} != xset; then -+ if ${glibcxx_cv_func_hypotf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypotf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotf_use=yes -+else -+ glibcxx_cv_func_hypotf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotf_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypotf_use = x"yes"; then -+ for ac_func in hypotf -+do : -+ ac_fn_c_check_func "$LINENO" "hypotf" "ac_cv_func_hypotf" -+if test "x$ac_cv_func_hypotf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotf declaration" >&5 -+$as_echo_n "checking for _hypotf declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypotf_use+set} != xset; then -+ if ${glibcxx_cv_func__hypotf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypotf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypotf_use=yes -+else -+ glibcxx_cv_func__hypotf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypotf_use" >&5 -+$as_echo "$glibcxx_cv_func__hypotf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypotf_use = x"yes"; then -+ for ac_func in _hypotf -+do : -+ ac_fn_c_check_func "$LINENO" "_hypotf" "ac_cv_func__hypotf" -+if test "x$ac_cv_func__hypotf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOTF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpf declaration" >&5 -+$as_echo_n "checking for ldexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func_ldexpf_use+set} != xset; then -+ if ${glibcxx_cv_func_ldexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ ldexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpf_use=yes -+else -+ glibcxx_cv_func_ldexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_ldexpf_use = x"yes"; then -+ for ac_func in ldexpf -+do : -+ ac_fn_c_check_func "$LINENO" "ldexpf" "ac_cv_func_ldexpf" -+if test "x$ac_cv_func_ldexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpf declaration" >&5 -+$as_echo_n "checking for _ldexpf declaration... " >&6; } -+ if test x${glibcxx_cv_func__ldexpf_use+set} != xset; then -+ if ${glibcxx_cv_func__ldexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _ldexpf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__ldexpf_use=yes -+else -+ glibcxx_cv_func__ldexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__ldexpf_use" >&5 -+$as_echo "$glibcxx_cv_func__ldexpf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__ldexpf_use = x"yes"; then -+ for ac_func in _ldexpf -+do : -+ ac_fn_c_check_func "$LINENO" "_ldexpf" "ac_cv_func__ldexpf" -+if test "x$ac_cv_func__ldexpf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LDEXPF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for logf declaration" >&5 -+$as_echo_n "checking for logf declaration... " >&6; } -+ if test x${glibcxx_cv_func_logf_use+set} != xset; then -+ if ${glibcxx_cv_func_logf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ logf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_logf_use=yes -+else -+ glibcxx_cv_func_logf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_logf_use" >&5 -+$as_echo "$glibcxx_cv_func_logf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_logf_use = x"yes"; then -+ for ac_func in logf -+do : -+ ac_fn_c_check_func "$LINENO" "logf" "ac_cv_func_logf" -+if test "x$ac_cv_func_logf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOGF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logf declaration" >&5 -+$as_echo_n "checking for _logf declaration... " >&6; } -+ if test x${glibcxx_cv_func__logf_use+set} != xset; then -+ if ${glibcxx_cv_func__logf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _logf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__logf_use=yes -+else -+ glibcxx_cv_func__logf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__logf_use" >&5 -+$as_echo "$glibcxx_cv_func__logf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__logf_use = x"yes"; then -+ for ac_func in _logf -+do : -+ ac_fn_c_check_func "$LINENO" "_logf" "ac_cv_func__logf" -+if test "x$ac_cv_func__logf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOGF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10f declaration" >&5 -+$as_echo_n "checking for log10f declaration... " >&6; } -+ if test x${glibcxx_cv_func_log10f_use+set} != xset; then -+ if ${glibcxx_cv_func_log10f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ log10f(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_log10f_use=yes -+else -+ glibcxx_cv_func_log10f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_log10f_use" >&5 -+$as_echo "$glibcxx_cv_func_log10f_use" >&6; } -+ -+ if test x$glibcxx_cv_func_log10f_use = x"yes"; then -+ for ac_func in log10f -+do : -+ ac_fn_c_check_func "$LINENO" "log10f" "ac_cv_func_log10f" -+if test "x$ac_cv_func_log10f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOG10F 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10f declaration" >&5 -+$as_echo_n "checking for _log10f declaration... " >&6; } -+ if test x${glibcxx_cv_func__log10f_use+set} != xset; then -+ if ${glibcxx_cv_func__log10f_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _log10f(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__log10f_use=yes -+else -+ glibcxx_cv_func__log10f_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__log10f_use" >&5 -+$as_echo "$glibcxx_cv_func__log10f_use" >&6; } -+ -+ if test x$glibcxx_cv_func__log10f_use = x"yes"; then -+ for ac_func in _log10f -+do : -+ ac_fn_c_check_func "$LINENO" "_log10f" "ac_cv_func__log10f" -+if test "x$ac_cv_func__log10f" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOG10F 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modff declaration" >&5 -+$as_echo_n "checking for modff declaration... " >&6; } -+ if test x${glibcxx_cv_func_modff_use+set} != xset; then -+ if ${glibcxx_cv_func_modff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modff(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modff_use=yes -+else -+ glibcxx_cv_func_modff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modff_use" >&5 -+$as_echo "$glibcxx_cv_func_modff_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modff_use = x"yes"; then -+ for ac_func in modff -+do : -+ ac_fn_c_check_func "$LINENO" "modff" "ac_cv_func_modff" -+if test "x$ac_cv_func_modff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modff declaration" >&5 -+$as_echo_n "checking for _modff declaration... " >&6; } -+ if test x${glibcxx_cv_func__modff_use+set} != xset; then -+ if ${glibcxx_cv_func__modff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modff(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modff_use=yes -+else -+ glibcxx_cv_func__modff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modff_use" >&5 -+$as_echo "$glibcxx_cv_func__modff_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modff_use = x"yes"; then -+ for ac_func in _modff -+do : -+ ac_fn_c_check_func "$LINENO" "_modff" "ac_cv_func__modff" -+if test "x$ac_cv_func__modff" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODFF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modf declaration" >&5 -+$as_echo_n "checking for modf declaration... " >&6; } -+ if test x${glibcxx_cv_func_modf_use+set} != xset; then -+ if ${glibcxx_cv_func_modf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modf_use=yes -+else -+ glibcxx_cv_func_modf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modf_use" >&5 -+$as_echo "$glibcxx_cv_func_modf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modf_use = x"yes"; then -+ for ac_func in modf -+do : -+ ac_fn_c_check_func "$LINENO" "modf" "ac_cv_func_modf" -+if test "x$ac_cv_func_modf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modf declaration" >&5 -+$as_echo_n "checking for _modf declaration... " >&6; } -+ if test x${glibcxx_cv_func__modf_use+set} != xset; then -+ if ${glibcxx_cv_func__modf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modf_use=yes -+else -+ glibcxx_cv_func__modf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modf_use" >&5 -+$as_echo "$glibcxx_cv_func__modf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modf_use = x"yes"; then -+ for ac_func in _modf -+do : -+ ac_fn_c_check_func "$LINENO" "_modf" "ac_cv_func__modf" -+if test "x$ac_cv_func__modf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for powf declaration" >&5 -+$as_echo_n "checking for powf declaration... " >&6; } -+ if test x${glibcxx_cv_func_powf_use+set} != xset; then -+ if ${glibcxx_cv_func_powf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ powf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_powf_use=yes -+else -+ glibcxx_cv_func_powf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_powf_use" >&5 -+$as_echo "$glibcxx_cv_func_powf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_powf_use = x"yes"; then -+ for ac_func in powf -+do : -+ ac_fn_c_check_func "$LINENO" "powf" "ac_cv_func_powf" -+if test "x$ac_cv_func_powf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_POWF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powf declaration" >&5 -+$as_echo_n "checking for _powf declaration... " >&6; } -+ if test x${glibcxx_cv_func__powf_use+set} != xset; then -+ if ${glibcxx_cv_func__powf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _powf(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__powf_use=yes -+else -+ glibcxx_cv_func__powf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__powf_use" >&5 -+$as_echo "$glibcxx_cv_func__powf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__powf_use = x"yes"; then -+ for ac_func in _powf -+do : -+ ac_fn_c_check_func "$LINENO" "_powf" "ac_cv_func__powf" -+if test "x$ac_cv_func__powf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__POWF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtf declaration" >&5 -+$as_echo_n "checking for sqrtf declaration... " >&6; } -+ if test x${glibcxx_cv_func_sqrtf_use+set} != xset; then -+ if ${glibcxx_cv_func_sqrtf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ sqrtf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sqrtf_use=yes -+else -+ glibcxx_cv_func_sqrtf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sqrtf_use" >&5 -+$as_echo "$glibcxx_cv_func_sqrtf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sqrtf_use = x"yes"; then -+ for ac_func in sqrtf -+do : -+ ac_fn_c_check_func "$LINENO" "sqrtf" "ac_cv_func_sqrtf" -+if test "x$ac_cv_func_sqrtf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SQRTF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtf declaration" >&5 -+$as_echo_n "checking for _sqrtf declaration... " >&6; } -+ if test x${glibcxx_cv_func__sqrtf_use+set} != xset; then -+ if ${glibcxx_cv_func__sqrtf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _sqrtf(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sqrtf_use=yes -+else -+ glibcxx_cv_func__sqrtf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sqrtf_use" >&5 -+$as_echo "$glibcxx_cv_func__sqrtf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sqrtf_use = x"yes"; then -+ for ac_func in _sqrtf -+do : -+ ac_fn_c_check_func "$LINENO" "_sqrtf" "ac_cv_func__sqrtf" -+if test "x$ac_cv_func__sqrtf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SQRTF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosf declaration" >&5 -+$as_echo_n "checking for sincosf declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincosf_use+set} != xset; then -+ if ${glibcxx_cv_func_sincosf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincosf(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincosf_use=yes -+else -+ glibcxx_cv_func_sincosf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincosf_use" >&5 -+$as_echo "$glibcxx_cv_func_sincosf_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincosf_use = x"yes"; then -+ for ac_func in sincosf -+do : -+ ac_fn_c_check_func "$LINENO" "sincosf" "ac_cv_func_sincosf" -+if test "x$ac_cv_func_sincosf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOSF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosf declaration" >&5 -+$as_echo_n "checking for _sincosf declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincosf_use+set} != xset; then -+ if ${glibcxx_cv_func__sincosf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincosf(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincosf_use=yes -+else -+ glibcxx_cv_func__sincosf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincosf_use" >&5 -+$as_echo "$glibcxx_cv_func__sincosf_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincosf_use = x"yes"; then -+ for ac_func in _sincosf -+do : -+ ac_fn_c_check_func "$LINENO" "_sincosf" "ac_cv_func__sincosf" -+if test "x$ac_cv_func__sincosf" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOSF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitef declaration" >&5 -+$as_echo_n "checking for finitef declaration... " >&6; } -+ if test x${glibcxx_cv_func_finitef_use+set} != xset; then -+ if ${glibcxx_cv_func_finitef_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finitef(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finitef_use=yes -+else -+ glibcxx_cv_func_finitef_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finitef_use" >&5 -+$as_echo "$glibcxx_cv_func_finitef_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finitef_use = x"yes"; then -+ for ac_func in finitef -+do : -+ ac_fn_c_check_func "$LINENO" "finitef" "ac_cv_func_finitef" -+if test "x$ac_cv_func_finitef" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITEF 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitef declaration" >&5 -+$as_echo_n "checking for _finitef declaration... " >&6; } -+ if test x${glibcxx_cv_func__finitef_use+set} != xset; then -+ if ${glibcxx_cv_func__finitef_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finitef(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finitef_use=yes -+else -+ glibcxx_cv_func__finitef_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finitef_use" >&5 -+$as_echo "$glibcxx_cv_func__finitef_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finitef_use = x"yes"; then -+ for ac_func in _finitef -+do : -+ ac_fn_c_check_func "$LINENO" "_finitef" "ac_cv_func__finitef" -+if test "x$ac_cv_func__finitef" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITEF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double trig functions" >&5 -+$as_echo_n "checking for long double trig functions... " >&6; } -+ if ${glibcxx_cv_func_long_double_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+acosl (0); asinl (0); atanl (0); cosl (0); sinl (0); tanl (0); coshl (0); sinhl (0); tanhl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_long_double_trig_use=yes -+else -+ glibcxx_cv_func_long_double_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_long_double_trig_use" >&5 -+$as_echo "$glibcxx_cv_func_long_double_trig_use" >&6; } -+ if test x$glibcxx_cv_func_long_double_trig_use = x"yes"; then -+ for ac_func in acosl asinl atanl cosl sinl tanl coshl sinhl tanhl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double trig functions" >&5 -+$as_echo_n "checking for _long double trig functions... " >&6; } -+ if ${glibcxx_cv_func__long_double_trig_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_acosl (0); _asinl (0); _atanl (0); _cosl (0); _sinl (0); _tanl (0); _coshl (0); _sinhl (0); _tanhl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__long_double_trig_use=yes -+else -+ glibcxx_cv_func__long_double_trig_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__long_double_trig_use" >&5 -+$as_echo "$glibcxx_cv_func__long_double_trig_use" >&6; } -+ if test x$glibcxx_cv_func__long_double_trig_use = x"yes"; then -+ for ac_func in _acosl _asinl _atanl _cosl _sinl _tanl _coshl _sinhl _tanhl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double round functions" >&5 -+$as_echo_n "checking for long double round functions... " >&6; } -+ if ${glibcxx_cv_func_long_double_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ceill (0); floorl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_long_double_round_use=yes -+else -+ glibcxx_cv_func_long_double_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_long_double_round_use" >&5 -+$as_echo "$glibcxx_cv_func_long_double_round_use" >&6; } -+ if test x$glibcxx_cv_func_long_double_round_use = x"yes"; then -+ for ac_func in ceill floorl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _long double round functions" >&5 -+$as_echo_n "checking for _long double round functions... " >&6; } -+ if ${glibcxx_cv_func__long_double_round_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+_ceill (0); _floorl (0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__long_double_round_use=yes -+else -+ glibcxx_cv_func__long_double_round_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__long_double_round_use" >&5 -+$as_echo "$glibcxx_cv_func__long_double_round_use" >&6; } -+ if test x$glibcxx_cv_func__long_double_round_use = x"yes"; then -+ for ac_func in _ceill _floorl -+do : -+ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -+ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -+if eval test \"x\$"$as_ac_var"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnanl declaration" >&5 -+$as_echo_n "checking for isnanl declaration... " >&6; } -+ if test x${glibcxx_cv_func_isnanl_use+set} != xset; then -+ if ${glibcxx_cv_func_isnanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isnanl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isnanl_use=yes -+else -+ glibcxx_cv_func_isnanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isnanl_use" >&5 -+$as_echo "$glibcxx_cv_func_isnanl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isnanl_use = x"yes"; then -+ for ac_func in isnanl -+do : -+ ac_fn_c_check_func "$LINENO" "isnanl" "ac_cv_func_isnanl" -+if test "x$ac_cv_func_isnanl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISNANL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isnanl declaration" >&5 -+$as_echo_n "checking for _isnanl declaration... " >&6; } -+ if test x${glibcxx_cv_func__isnanl_use+set} != xset; then -+ if ${glibcxx_cv_func__isnanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isnanl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isnanl_use=yes -+else -+ glibcxx_cv_func__isnanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isnanl_use" >&5 -+$as_echo "$glibcxx_cv_func__isnanl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isnanl_use = x"yes"; then -+ for ac_func in _isnanl -+do : -+ ac_fn_c_check_func "$LINENO" "_isnanl" "ac_cv_func__isnanl" -+if test "x$ac_cv_func__isnanl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISNANL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinfl declaration" >&5 -+$as_echo_n "checking for isinfl declaration... " >&6; } -+ if test x${glibcxx_cv_func_isinfl_use+set} != xset; then -+ if ${glibcxx_cv_func_isinfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ isinfl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_isinfl_use=yes -+else -+ glibcxx_cv_func_isinfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_isinfl_use" >&5 -+$as_echo "$glibcxx_cv_func_isinfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_isinfl_use = x"yes"; then -+ for ac_func in isinfl -+do : -+ ac_fn_c_check_func "$LINENO" "isinfl" "ac_cv_func_isinfl" -+if test "x$ac_cv_func_isinfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ISINFL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _isinfl declaration" >&5 -+$as_echo_n "checking for _isinfl declaration... " >&6; } -+ if test x${glibcxx_cv_func__isinfl_use+set} != xset; then -+ if ${glibcxx_cv_func__isinfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _isinfl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__isinfl_use=yes -+else -+ glibcxx_cv_func__isinfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__isinfl_use" >&5 -+$as_echo "$glibcxx_cv_func__isinfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__isinfl_use = x"yes"; then -+ for ac_func in _isinfl -+do : -+ ac_fn_c_check_func "$LINENO" "_isinfl" "ac_cv_func__isinfl" -+if test "x$ac_cv_func__isinfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ISINFL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2l declaration" >&5 -+$as_echo_n "checking for atan2l declaration... " >&6; } -+ if test x${glibcxx_cv_func_atan2l_use+set} != xset; then -+ if ${glibcxx_cv_func_atan2l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ atan2l(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atan2l_use=yes -+else -+ glibcxx_cv_func_atan2l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atan2l_use" >&5 -+$as_echo "$glibcxx_cv_func_atan2l_use" >&6; } -+ -+ if test x$glibcxx_cv_func_atan2l_use = x"yes"; then -+ for ac_func in atan2l -+do : -+ ac_fn_c_check_func "$LINENO" "atan2l" "ac_cv_func_atan2l" -+if test "x$ac_cv_func_atan2l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATAN2L 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _atan2l declaration" >&5 -+$as_echo_n "checking for _atan2l declaration... " >&6; } -+ if test x${glibcxx_cv_func__atan2l_use+set} != xset; then -+ if ${glibcxx_cv_func__atan2l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _atan2l(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__atan2l_use=yes -+else -+ glibcxx_cv_func__atan2l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__atan2l_use" >&5 -+$as_echo "$glibcxx_cv_func__atan2l_use" >&6; } -+ -+ if test x$glibcxx_cv_func__atan2l_use = x"yes"; then -+ for ac_func in _atan2l -+do : -+ ac_fn_c_check_func "$LINENO" "_atan2l" "ac_cv_func__atan2l" -+if test "x$ac_cv_func__atan2l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__ATAN2L 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for expl declaration" >&5 -+$as_echo_n "checking for expl declaration... " >&6; } -+ if test x${glibcxx_cv_func_expl_use+set} != xset; then -+ if ${glibcxx_cv_func_expl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ expl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_expl_use=yes -+else -+ glibcxx_cv_func_expl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_expl_use" >&5 -+$as_echo "$glibcxx_cv_func_expl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_expl_use = x"yes"; then -+ for ac_func in expl -+do : -+ ac_fn_c_check_func "$LINENO" "expl" "ac_cv_func_expl" -+if test "x$ac_cv_func_expl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_EXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _expl declaration" >&5 -+$as_echo_n "checking for _expl declaration... " >&6; } -+ if test x${glibcxx_cv_func__expl_use+set} != xset; then -+ if ${glibcxx_cv_func__expl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _expl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__expl_use=yes -+else -+ glibcxx_cv_func__expl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__expl_use" >&5 -+$as_echo "$glibcxx_cv_func__expl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__expl_use = x"yes"; then -+ for ac_func in _expl -+do : -+ ac_fn_c_check_func "$LINENO" "_expl" "ac_cv_func__expl" -+if test "x$ac_cv_func__expl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__EXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsl declaration" >&5 -+$as_echo_n "checking for fabsl declaration... " >&6; } -+ if test x${glibcxx_cv_func_fabsl_use+set} != xset; then -+ if ${glibcxx_cv_func_fabsl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ fabsl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fabsl_use=yes -+else -+ glibcxx_cv_func_fabsl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fabsl_use" >&5 -+$as_echo "$glibcxx_cv_func_fabsl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fabsl_use = x"yes"; then -+ for ac_func in fabsl -+do : -+ ac_fn_c_check_func "$LINENO" "fabsl" "ac_cv_func_fabsl" -+if test "x$ac_cv_func_fabsl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FABSL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fabsl declaration" >&5 -+$as_echo_n "checking for _fabsl declaration... " >&6; } -+ if test x${glibcxx_cv_func__fabsl_use+set} != xset; then -+ if ${glibcxx_cv_func__fabsl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _fabsl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fabsl_use=yes -+else -+ glibcxx_cv_func__fabsl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fabsl_use" >&5 -+$as_echo "$glibcxx_cv_func__fabsl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fabsl_use = x"yes"; then -+ for ac_func in _fabsl -+do : -+ ac_fn_c_check_func "$LINENO" "_fabsl" "ac_cv_func__fabsl" -+if test "x$ac_cv_func__fabsl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FABSL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodl declaration" >&5 -+$as_echo_n "checking for fmodl declaration... " >&6; } -+ if test x${glibcxx_cv_func_fmodl_use+set} != xset; then -+ if ${glibcxx_cv_func_fmodl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ fmodl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fmodl_use=yes -+else -+ glibcxx_cv_func_fmodl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fmodl_use" >&5 -+$as_echo "$glibcxx_cv_func_fmodl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_fmodl_use = x"yes"; then -+ for ac_func in fmodl -+do : -+ ac_fn_c_check_func "$LINENO" "fmodl" "ac_cv_func_fmodl" -+if test "x$ac_cv_func_fmodl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FMODL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _fmodl declaration" >&5 -+$as_echo_n "checking for _fmodl declaration... " >&6; } -+ if test x${glibcxx_cv_func__fmodl_use+set} != xset; then -+ if ${glibcxx_cv_func__fmodl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _fmodl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__fmodl_use=yes -+else -+ glibcxx_cv_func__fmodl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__fmodl_use" >&5 -+$as_echo "$glibcxx_cv_func__fmodl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__fmodl_use = x"yes"; then -+ for ac_func in _fmodl -+do : -+ ac_fn_c_check_func "$LINENO" "_fmodl" "ac_cv_func__fmodl" -+if test "x$ac_cv_func__fmodl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FMODL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpl declaration" >&5 -+$as_echo_n "checking for frexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func_frexpl_use+set} != xset; then -+ if ${glibcxx_cv_func_frexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ frexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpl_use=yes -+else -+ glibcxx_cv_func_frexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_frexpl_use = x"yes"; then -+ for ac_func in frexpl -+do : -+ ac_fn_c_check_func "$LINENO" "frexpl" "ac_cv_func_frexpl" -+if test "x$ac_cv_func_frexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _frexpl declaration" >&5 -+$as_echo_n "checking for _frexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func__frexpl_use+set} != xset; then -+ if ${glibcxx_cv_func__frexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _frexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__frexpl_use=yes -+else -+ glibcxx_cv_func__frexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__frexpl_use" >&5 -+$as_echo "$glibcxx_cv_func__frexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__frexpl_use = x"yes"; then -+ for ac_func in _frexpl -+do : -+ ac_fn_c_check_func "$LINENO" "_frexpl" "ac_cv_func__frexpl" -+if test "x$ac_cv_func__frexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FREXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotl declaration" >&5 -+$as_echo_n "checking for hypotl declaration... " >&6; } -+ if test x${glibcxx_cv_func_hypotl_use+set} != xset; then -+ if ${glibcxx_cv_func_hypotl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ hypotl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotl_use=yes -+else -+ glibcxx_cv_func_hypotl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotl_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_hypotl_use = x"yes"; then -+ for ac_func in hypotl -+do : -+ ac_fn_c_check_func "$LINENO" "hypotl" "ac_cv_func_hypotl" -+if test "x$ac_cv_func_hypotl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _hypotl declaration" >&5 -+$as_echo_n "checking for _hypotl declaration... " >&6; } -+ if test x${glibcxx_cv_func__hypotl_use+set} != xset; then -+ if ${glibcxx_cv_func__hypotl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _hypotl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__hypotl_use=yes -+else -+ glibcxx_cv_func__hypotl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__hypotl_use" >&5 -+$as_echo "$glibcxx_cv_func__hypotl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__hypotl_use = x"yes"; then -+ for ac_func in _hypotl -+do : -+ ac_fn_c_check_func "$LINENO" "_hypotl" "ac_cv_func__hypotl" -+if test "x$ac_cv_func__hypotl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__HYPOTL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpl declaration" >&5 -+$as_echo_n "checking for ldexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func_ldexpl_use+set} != xset; then -+ if ${glibcxx_cv_func_ldexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ ldexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpl_use=yes -+else -+ glibcxx_cv_func_ldexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_ldexpl_use = x"yes"; then -+ for ac_func in ldexpl -+do : -+ ac_fn_c_check_func "$LINENO" "ldexpl" "ac_cv_func_ldexpl" -+if test "x$ac_cv_func_ldexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _ldexpl declaration" >&5 -+$as_echo_n "checking for _ldexpl declaration... " >&6; } -+ if test x${glibcxx_cv_func__ldexpl_use+set} != xset; then -+ if ${glibcxx_cv_func__ldexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _ldexpl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__ldexpl_use=yes -+else -+ glibcxx_cv_func__ldexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__ldexpl_use" >&5 -+$as_echo "$glibcxx_cv_func__ldexpl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__ldexpl_use = x"yes"; then -+ for ac_func in _ldexpl -+do : -+ ac_fn_c_check_func "$LINENO" "_ldexpl" "ac_cv_func__ldexpl" -+if test "x$ac_cv_func__ldexpl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LDEXPL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for logl declaration" >&5 -+$as_echo_n "checking for logl declaration... " >&6; } -+ if test x${glibcxx_cv_func_logl_use+set} != xset; then -+ if ${glibcxx_cv_func_logl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ logl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_logl_use=yes -+else -+ glibcxx_cv_func_logl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_logl_use" >&5 -+$as_echo "$glibcxx_cv_func_logl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_logl_use = x"yes"; then -+ for ac_func in logl -+do : -+ ac_fn_c_check_func "$LINENO" "logl" "ac_cv_func_logl" -+if test "x$ac_cv_func_logl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOGL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _logl declaration" >&5 -+$as_echo_n "checking for _logl declaration... " >&6; } -+ if test x${glibcxx_cv_func__logl_use+set} != xset; then -+ if ${glibcxx_cv_func__logl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _logl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__logl_use=yes -+else -+ glibcxx_cv_func__logl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__logl_use" >&5 -+$as_echo "$glibcxx_cv_func__logl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__logl_use = x"yes"; then -+ for ac_func in _logl -+do : -+ ac_fn_c_check_func "$LINENO" "_logl" "ac_cv_func__logl" -+if test "x$ac_cv_func__logl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOGL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10l declaration" >&5 -+$as_echo_n "checking for log10l declaration... " >&6; } -+ if test x${glibcxx_cv_func_log10l_use+set} != xset; then -+ if ${glibcxx_cv_func_log10l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ log10l(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_log10l_use=yes -+else -+ glibcxx_cv_func_log10l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_log10l_use" >&5 -+$as_echo "$glibcxx_cv_func_log10l_use" >&6; } -+ -+ if test x$glibcxx_cv_func_log10l_use = x"yes"; then -+ for ac_func in log10l -+do : -+ ac_fn_c_check_func "$LINENO" "log10l" "ac_cv_func_log10l" -+if test "x$ac_cv_func_log10l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOG10L 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _log10l declaration" >&5 -+$as_echo_n "checking for _log10l declaration... " >&6; } -+ if test x${glibcxx_cv_func__log10l_use+set} != xset; then -+ if ${glibcxx_cv_func__log10l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _log10l(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__log10l_use=yes -+else -+ glibcxx_cv_func__log10l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__log10l_use" >&5 -+$as_echo "$glibcxx_cv_func__log10l_use" >&6; } -+ -+ if test x$glibcxx_cv_func__log10l_use = x"yes"; then -+ for ac_func in _log10l -+do : -+ ac_fn_c_check_func "$LINENO" "_log10l" "ac_cv_func__log10l" -+if test "x$ac_cv_func__log10l" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__LOG10L 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modfl declaration" >&5 -+$as_echo_n "checking for modfl declaration... " >&6; } -+ if test x${glibcxx_cv_func_modfl_use+set} != xset; then -+ if ${glibcxx_cv_func_modfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ modfl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modfl_use=yes -+else -+ glibcxx_cv_func_modfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modfl_use" >&5 -+$as_echo "$glibcxx_cv_func_modfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_modfl_use = x"yes"; then -+ for ac_func in modfl -+do : -+ ac_fn_c_check_func "$LINENO" "modfl" "ac_cv_func_modfl" -+if test "x$ac_cv_func_modfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _modfl declaration" >&5 -+$as_echo_n "checking for _modfl declaration... " >&6; } -+ if test x${glibcxx_cv_func__modfl_use+set} != xset; then -+ if ${glibcxx_cv_func__modfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _modfl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__modfl_use=yes -+else -+ glibcxx_cv_func__modfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__modfl_use" >&5 -+$as_echo "$glibcxx_cv_func__modfl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__modfl_use = x"yes"; then -+ for ac_func in _modfl -+do : -+ ac_fn_c_check_func "$LINENO" "_modfl" "ac_cv_func__modfl" -+if test "x$ac_cv_func__modfl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__MODFL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for powl declaration" >&5 -+$as_echo_n "checking for powl declaration... " >&6; } -+ if test x${glibcxx_cv_func_powl_use+set} != xset; then -+ if ${glibcxx_cv_func_powl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ powl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_powl_use=yes -+else -+ glibcxx_cv_func_powl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_powl_use" >&5 -+$as_echo "$glibcxx_cv_func_powl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_powl_use = x"yes"; then -+ for ac_func in powl -+do : -+ ac_fn_c_check_func "$LINENO" "powl" "ac_cv_func_powl" -+if test "x$ac_cv_func_powl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_POWL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _powl declaration" >&5 -+$as_echo_n "checking for _powl declaration... " >&6; } -+ if test x${glibcxx_cv_func__powl_use+set} != xset; then -+ if ${glibcxx_cv_func__powl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _powl(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__powl_use=yes -+else -+ glibcxx_cv_func__powl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__powl_use" >&5 -+$as_echo "$glibcxx_cv_func__powl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__powl_use = x"yes"; then -+ for ac_func in _powl -+do : -+ ac_fn_c_check_func "$LINENO" "_powl" "ac_cv_func__powl" -+if test "x$ac_cv_func__powl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__POWL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtl declaration" >&5 -+$as_echo_n "checking for sqrtl declaration... " >&6; } -+ if test x${glibcxx_cv_func_sqrtl_use+set} != xset; then -+ if ${glibcxx_cv_func_sqrtl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ sqrtl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sqrtl_use=yes -+else -+ glibcxx_cv_func_sqrtl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sqrtl_use" >&5 -+$as_echo "$glibcxx_cv_func_sqrtl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sqrtl_use = x"yes"; then -+ for ac_func in sqrtl -+do : -+ ac_fn_c_check_func "$LINENO" "sqrtl" "ac_cv_func_sqrtl" -+if test "x$ac_cv_func_sqrtl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SQRTL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sqrtl declaration" >&5 -+$as_echo_n "checking for _sqrtl declaration... " >&6; } -+ if test x${glibcxx_cv_func__sqrtl_use+set} != xset; then -+ if ${glibcxx_cv_func__sqrtl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _sqrtl(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sqrtl_use=yes -+else -+ glibcxx_cv_func__sqrtl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sqrtl_use" >&5 -+$as_echo "$glibcxx_cv_func__sqrtl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sqrtl_use = x"yes"; then -+ for ac_func in _sqrtl -+do : -+ ac_fn_c_check_func "$LINENO" "_sqrtl" "ac_cv_func__sqrtl" -+if test "x$ac_cv_func__sqrtl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SQRTL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sincosl declaration" >&5 -+$as_echo_n "checking for sincosl declaration... " >&6; } -+ if test x${glibcxx_cv_func_sincosl_use+set} != xset; then -+ if ${glibcxx_cv_func_sincosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ sincosl(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sincosl_use=yes -+else -+ glibcxx_cv_func_sincosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sincosl_use" >&5 -+$as_echo "$glibcxx_cv_func_sincosl_use" >&6; } -+ -+ if test x$glibcxx_cv_func_sincosl_use = x"yes"; then -+ for ac_func in sincosl -+do : -+ ac_fn_c_check_func "$LINENO" "sincosl" "ac_cv_func_sincosl" -+if test "x$ac_cv_func_sincosl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINCOSL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _sincosl declaration" >&5 -+$as_echo_n "checking for _sincosl declaration... " >&6; } -+ if test x${glibcxx_cv_func__sincosl_use+set} != xset; then -+ if ${glibcxx_cv_func__sincosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ _sincosl(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__sincosl_use=yes -+else -+ glibcxx_cv_func__sincosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__sincosl_use" >&5 -+$as_echo "$glibcxx_cv_func__sincosl_use" >&6; } -+ -+ if test x$glibcxx_cv_func__sincosl_use = x"yes"; then -+ for ac_func in _sincosl -+do : -+ ac_fn_c_check_func "$LINENO" "_sincosl" "ac_cv_func__sincosl" -+if test "x$ac_cv_func__sincosl" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__SINCOSL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for finitel declaration" >&5 -+$as_echo_n "checking for finitel declaration... " >&6; } -+ if test x${glibcxx_cv_func_finitel_use+set} != xset; then -+ if ${glibcxx_cv_func_finitel_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ finitel(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_finitel_use=yes -+else -+ glibcxx_cv_func_finitel_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_finitel_use" >&5 -+$as_echo "$glibcxx_cv_func_finitel_use" >&6; } -+ -+ if test x$glibcxx_cv_func_finitel_use = x"yes"; then -+ for ac_func in finitel -+do : -+ ac_fn_c_check_func "$LINENO" "finitel" "ac_cv_func_finitel" -+if test "x$ac_cv_func_finitel" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FINITEL 1 -+_ACEOF -+ -+fi -+done -+ -+ else -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _finitel declaration" >&5 -+$as_echo_n "checking for _finitel declaration... " >&6; } -+ if test x${glibcxx_cv_func__finitel_use+set} != xset; then -+ if ${glibcxx_cv_func__finitel_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #ifdef HAVE_IEEEFP_H -+ #include -+ #endif -+ -+int -+main () -+{ -+ _finitel(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func__finitel_use=yes -+else -+ glibcxx_cv_func__finitel_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func__finitel_use" >&5 -+$as_echo "$glibcxx_cv_func__finitel_use" >&6; } -+ -+ if test x$glibcxx_cv_func__finitel_use = x"yes"; then -+ for ac_func in _finitel -+do : -+ ac_fn_c_check_func "$LINENO" "_finitel" "ac_cv_func__finitel" -+if test "x$ac_cv_func__finitel" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE__FINITEL 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ fi -+ -+ -+ -+ -+ LIBS="$ac_save_LIBS" -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ -+ -+ ac_test_CXXFLAGS="${CXXFLAGS+set}" -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS='-fno-builtin -D_GNU_SOURCE' -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for at_quick_exit declaration" >&5 -+$as_echo_n "checking for at_quick_exit declaration... " >&6; } -+ if test x${glibcxx_cv_func_at_quick_exit_use+set} != xset; then -+ if ${glibcxx_cv_func_at_quick_exit_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ at_quick_exit(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_at_quick_exit_use=yes -+else -+ glibcxx_cv_func_at_quick_exit_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_at_quick_exit_use" >&5 -+$as_echo "$glibcxx_cv_func_at_quick_exit_use" >&6; } -+ if test x$glibcxx_cv_func_at_quick_exit_use = x"yes"; then -+ for ac_func in at_quick_exit -+do : -+ ac_fn_c_check_func "$LINENO" "at_quick_exit" "ac_cv_func_at_quick_exit" -+if test "x$ac_cv_func_at_quick_exit" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_AT_QUICK_EXIT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for quick_exit declaration" >&5 -+$as_echo_n "checking for quick_exit declaration... " >&6; } -+ if test x${glibcxx_cv_func_quick_exit_use+set} != xset; then -+ if ${glibcxx_cv_func_quick_exit_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ quick_exit(0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_quick_exit_use=yes -+else -+ glibcxx_cv_func_quick_exit_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_quick_exit_use" >&5 -+$as_echo "$glibcxx_cv_func_quick_exit_use" >&6; } -+ if test x$glibcxx_cv_func_quick_exit_use = x"yes"; then -+ for ac_func in quick_exit -+do : -+ ac_fn_c_check_func "$LINENO" "quick_exit" "ac_cv_func_quick_exit" -+if test "x$ac_cv_func_quick_exit" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_QUICK_EXIT 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtold declaration" >&5 -+$as_echo_n "checking for strtold declaration... " >&6; } -+ if test x${glibcxx_cv_func_strtold_use+set} != xset; then -+ if ${glibcxx_cv_func_strtold_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ strtold(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_strtold_use=yes -+else -+ glibcxx_cv_func_strtold_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_strtold_use" >&5 -+$as_echo "$glibcxx_cv_func_strtold_use" >&6; } -+ if test x$glibcxx_cv_func_strtold_use = x"yes"; then -+ for ac_func in strtold -+do : -+ ac_fn_c_check_func "$LINENO" "strtold" "ac_cv_func_strtold" -+if test "x$ac_cv_func_strtold" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STRTOLD 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtof declaration" >&5 -+$as_echo_n "checking for strtof declaration... " >&6; } -+ if test x${glibcxx_cv_func_strtof_use+set} != xset; then -+ if ${glibcxx_cv_func_strtof_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ strtof(0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_strtof_use=yes -+else -+ glibcxx_cv_func_strtof_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_strtof_use" >&5 -+$as_echo "$glibcxx_cv_func_strtof_use" >&6; } -+ if test x$glibcxx_cv_func_strtof_use = x"yes"; then -+ for ac_func in strtof -+do : -+ ac_fn_c_check_func "$LINENO" "strtof" "ac_cv_func_strtof" -+if test "x$ac_cv_func_strtof" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_STRTOF 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ -+ -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ -+ ;; -+ *-vxworks*) -+ $as_echo "@%:@define HAVE_ACOSF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ASINF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ATAN2F 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ATANF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_CEILF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_COSF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_COSHF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_EXPF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FABSF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FLOORF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FMODF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_HYPOT 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LOG10F 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LOGF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_POWF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINHF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SQRTF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_TANF 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_TANHF 1" >>confdefs.h -+ -+ -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for acosl declaration" >&5 -+$as_echo_n "checking for acosl declaration... " >&6; } -+if ${glibcxx_cv_func_acosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef acosl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))acosl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_acosl_use=yes -+ -+else -+ glibcxx_cv_func_acosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_acosl_use" >&5 -+$as_echo "$glibcxx_cv_func_acosl_use" >&6; } -+ if test "x$glibcxx_cv_func_acosl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ACOSL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for asinl declaration" >&5 -+$as_echo_n "checking for asinl declaration... " >&6; } -+if ${glibcxx_cv_func_asinl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef asinl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))asinl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_asinl_use=yes -+ -+else -+ glibcxx_cv_func_asinl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_asinl_use" >&5 -+$as_echo "$glibcxx_cv_func_asinl_use" >&6; } -+ if test "x$glibcxx_cv_func_asinl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ASINL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atan2l declaration" >&5 -+$as_echo_n "checking for atan2l declaration... " >&6; } -+if ${glibcxx_cv_func_atan2l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef atan2l -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))atan2l; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atan2l_use=yes -+ -+else -+ glibcxx_cv_func_atan2l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atan2l_use" >&5 -+$as_echo "$glibcxx_cv_func_atan2l_use" >&6; } -+ if test "x$glibcxx_cv_func_atan2l_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATAN2L 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for atanl declaration" >&5 -+$as_echo_n "checking for atanl declaration... " >&6; } -+if ${glibcxx_cv_func_atanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef atanl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))atanl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_atanl_use=yes -+ -+else -+ glibcxx_cv_func_atanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_atanl_use" >&5 -+$as_echo "$glibcxx_cv_func_atanl_use" >&6; } -+ if test "x$glibcxx_cv_func_atanl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_ATANL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ceill declaration" >&5 -+$as_echo_n "checking for ceill declaration... " >&6; } -+if ${glibcxx_cv_func_ceill_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef ceill -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))ceill; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ceill_use=yes -+ -+else -+ glibcxx_cv_func_ceill_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ceill_use" >&5 -+$as_echo "$glibcxx_cv_func_ceill_use" >&6; } -+ if test "x$glibcxx_cv_func_ceill_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_CEILL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for cosl declaration" >&5 -+$as_echo_n "checking for cosl declaration... " >&6; } -+if ${glibcxx_cv_func_cosl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef cosl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))cosl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_cosl_use=yes -+ -+else -+ glibcxx_cv_func_cosl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_cosl_use" >&5 -+$as_echo "$glibcxx_cv_func_cosl_use" >&6; } -+ if test "x$glibcxx_cv_func_cosl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_COSL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for coshl declaration" >&5 -+$as_echo_n "checking for coshl declaration... " >&6; } -+if ${glibcxx_cv_func_coshl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef coshl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))coshl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_coshl_use=yes -+ -+else -+ glibcxx_cv_func_coshl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_coshl_use" >&5 -+$as_echo "$glibcxx_cv_func_coshl_use" >&6; } -+ if test "x$glibcxx_cv_func_coshl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_COSHL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for expl declaration" >&5 -+$as_echo_n "checking for expl declaration... " >&6; } -+if ${glibcxx_cv_func_expl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef expl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))expl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_expl_use=yes -+ -+else -+ glibcxx_cv_func_expl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_expl_use" >&5 -+$as_echo "$glibcxx_cv_func_expl_use" >&6; } -+ if test "x$glibcxx_cv_func_expl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_EXPL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fabsl declaration" >&5 -+$as_echo_n "checking for fabsl declaration... " >&6; } -+if ${glibcxx_cv_func_fabsl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef fabsl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))fabsl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fabsl_use=yes -+ -+else -+ glibcxx_cv_func_fabsl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fabsl_use" >&5 -+$as_echo "$glibcxx_cv_func_fabsl_use" >&6; } -+ if test "x$glibcxx_cv_func_fabsl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FABSL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for floorl declaration" >&5 -+$as_echo_n "checking for floorl declaration... " >&6; } -+if ${glibcxx_cv_func_floorl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef floorl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))floorl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_floorl_use=yes -+ -+else -+ glibcxx_cv_func_floorl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_floorl_use" >&5 -+$as_echo "$glibcxx_cv_func_floorl_use" >&6; } -+ if test "x$glibcxx_cv_func_floorl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FLOORL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmodl declaration" >&5 -+$as_echo_n "checking for fmodl declaration... " >&6; } -+if ${glibcxx_cv_func_fmodl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef fmodl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))fmodl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_fmodl_use=yes -+ -+else -+ glibcxx_cv_func_fmodl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_fmodl_use" >&5 -+$as_echo "$glibcxx_cv_func_fmodl_use" >&6; } -+ if test "x$glibcxx_cv_func_fmodl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FMODL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpl declaration" >&5 -+$as_echo_n "checking for frexpl declaration... " >&6; } -+if ${glibcxx_cv_func_frexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef frexpl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))frexpl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpl_use=yes -+ -+else -+ glibcxx_cv_func_frexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpl_use" >&6; } -+ if test "x$glibcxx_cv_func_frexpl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpl declaration" >&5 -+$as_echo_n "checking for ldexpl declaration... " >&6; } -+if ${glibcxx_cv_func_ldexpl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef ldexpl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))ldexpl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpl_use=yes -+ -+else -+ glibcxx_cv_func_ldexpl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpl_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpl_use" >&6; } -+ if test "x$glibcxx_cv_func_ldexpl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for log10l declaration" >&5 -+$as_echo_n "checking for log10l declaration... " >&6; } -+if ${glibcxx_cv_func_log10l_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef log10l -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))log10l; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_log10l_use=yes -+ -+else -+ glibcxx_cv_func_log10l_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_log10l_use" >&5 -+$as_echo "$glibcxx_cv_func_log10l_use" >&6; } -+ if test "x$glibcxx_cv_func_log10l_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOG10L 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for logl declaration" >&5 -+$as_echo_n "checking for logl declaration... " >&6; } -+if ${glibcxx_cv_func_logl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef logl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))logl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_logl_use=yes -+ -+else -+ glibcxx_cv_func_logl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_logl_use" >&5 -+$as_echo "$glibcxx_cv_func_logl_use" >&6; } -+ if test "x$glibcxx_cv_func_logl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LOGL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modfl declaration" >&5 -+$as_echo_n "checking for modfl declaration... " >&6; } -+if ${glibcxx_cv_func_modfl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef modfl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))modfl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modfl_use=yes -+ -+else -+ glibcxx_cv_func_modfl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modfl_use" >&5 -+$as_echo "$glibcxx_cv_func_modfl_use" >&6; } -+ if test "x$glibcxx_cv_func_modfl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for powl declaration" >&5 -+$as_echo_n "checking for powl declaration... " >&6; } -+if ${glibcxx_cv_func_powl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef powl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))powl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_powl_use=yes -+ -+else -+ glibcxx_cv_func_powl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_powl_use" >&5 -+$as_echo "$glibcxx_cv_func_powl_use" >&6; } -+ if test "x$glibcxx_cv_func_powl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_POWL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sinl declaration" >&5 -+$as_echo_n "checking for sinl declaration... " >&6; } -+if ${glibcxx_cv_func_sinl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef sinl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))sinl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sinl_use=yes -+ -+else -+ glibcxx_cv_func_sinl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sinl_use" >&5 -+$as_echo "$glibcxx_cv_func_sinl_use" >&6; } -+ if test "x$glibcxx_cv_func_sinl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sinhl declaration" >&5 -+$as_echo_n "checking for sinhl declaration... " >&6; } -+if ${glibcxx_cv_func_sinhl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef sinhl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))sinhl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sinhl_use=yes -+ -+else -+ glibcxx_cv_func_sinhl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sinhl_use" >&5 -+$as_echo "$glibcxx_cv_func_sinhl_use" >&6; } -+ if test "x$glibcxx_cv_func_sinhl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SINHL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtl declaration" >&5 -+$as_echo_n "checking for sqrtl declaration... " >&6; } -+if ${glibcxx_cv_func_sqrtl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef sqrtl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))sqrtl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_sqrtl_use=yes -+ -+else -+ glibcxx_cv_func_sqrtl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_sqrtl_use" >&5 -+$as_echo "$glibcxx_cv_func_sqrtl_use" >&6; } -+ if test "x$glibcxx_cv_func_sqrtl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SQRTL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tanl declaration" >&5 -+$as_echo_n "checking for tanl declaration... " >&6; } -+if ${glibcxx_cv_func_tanl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef tanl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))tanl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_tanl_use=yes -+ -+else -+ glibcxx_cv_func_tanl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_tanl_use" >&5 -+$as_echo "$glibcxx_cv_func_tanl_use" >&6; } -+ if test "x$glibcxx_cv_func_tanl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_TANL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tanhl declaration" >&5 -+$as_echo_n "checking for tanhl declaration... " >&6; } -+if ${glibcxx_cv_func_tanhl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef tanhl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))tanhl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_tanhl_use=yes -+ -+else -+ glibcxx_cv_func_tanhl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_tanhl_use" >&5 -+$as_echo "$glibcxx_cv_func_tanhl_use" >&6; } -+ if test "x$glibcxx_cv_func_tanhl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_TANHL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotl declaration" >&5 -+$as_echo_n "checking for hypotl declaration... " >&6; } -+if ${glibcxx_cv_func_hypotl_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef hypotl -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))hypotl; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotl_use=yes -+ -+else -+ glibcxx_cv_func_hypotl_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotl_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotl_use" >&6; } -+ if test "x$glibcxx_cv_func_hypotl_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTL 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldexpf declaration" >&5 -+$as_echo_n "checking for ldexpf declaration... " >&6; } -+if ${glibcxx_cv_func_ldexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef ldexpf -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))ldexpf; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_ldexpf_use=yes -+ -+else -+ glibcxx_cv_func_ldexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_ldexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_ldexpf_use" >&6; } -+ if test "x$glibcxx_cv_func_ldexpf_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LDEXPF 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modff declaration" >&5 -+$as_echo_n "checking for modff declaration... " >&6; } -+if ${glibcxx_cv_func_modff_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef modff -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))modff; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_modff_use=yes -+ -+else -+ glibcxx_cv_func_modff_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_modff_use" >&5 -+$as_echo "$glibcxx_cv_func_modff_use" >&6; } -+ if test "x$glibcxx_cv_func_modff_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_MODFF 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hypotf declaration" >&5 -+$as_echo_n "checking for hypotf declaration... " >&6; } -+if ${glibcxx_cv_func_hypotf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef hypotf -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))hypotf; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_hypotf_use=yes -+ -+else -+ glibcxx_cv_func_hypotf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_hypotf_use" >&5 -+$as_echo "$glibcxx_cv_func_hypotf_use" >&6; } -+ if test "x$glibcxx_cv_func_hypotf_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_HYPOTF 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for frexpf declaration" >&5 -+$as_echo_n "checking for frexpf declaration... " >&6; } -+if ${glibcxx_cv_func_frexpf_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+#include -+#ifdef HAVE_IEEEFP_H -+# include -+#endif -+#undef frexpf -+ -+int -+main () -+{ -+ -+ void (*f)(void) = (void (*)(void))frexpf; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_func_frexpf_use=yes -+ -+else -+ glibcxx_cv_func_frexpf_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_frexpf_use" >&5 -+$as_echo "$glibcxx_cv_func_frexpf_use" >&6; } -+ if test "x$glibcxx_cv_func_frexpf_use" = xyes; then -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_FREXPF 1 -+_ACEOF -+ -+ fi -+ -+ -+ -+ ;; -+ *) -+ as_fn_error $? "No support for this host/target combination." "$LINENO" 5 -+ ;; -+esac -+ -+ fi -+ -+ # At some point, we should differentiate between architectures -+ # like x86, which have long double versions, and alpha/powerpc/etc., -+ # which don't. For the time being, punt. -+ if test x"long_double_math_on_this_cpu" = x"yes"; then -+ $as_echo "@%:@define HAVE_ACOSL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ASINL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ATAN2L 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_ATANL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_CEILL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_COSL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_COSHL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_EXPL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FABSL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FLOORL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FMODL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_FREXPL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LDEXPL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LOG10L 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_LOGL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_MODFL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_POWL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINCOSL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SINHL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_SQRTL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_TANL 1" >>confdefs.h -+ -+ $as_echo "@%:@define HAVE_TANHL 1" >>confdefs.h -+ -+ fi -+fi -+ -+# Check for _Unwind_GetIPInfo. -+ -+ -+@%:@ Check whether --with-system-libunwind was given. -+if test "${with_system_libunwind+set}" = set; then : -+ withval=$with_system_libunwind; -+fi -+ -+ # If system-libunwind was not specifically set, pick a default setting. -+ if test x$with_system_libunwind = x; then -+ case ${target} in -+ ia64-*-hpux*) with_system_libunwind=yes ;; -+ *) with_system_libunwind=no ;; -+ esac -+ fi -+ # Based on system-libunwind and target, do we have ipinfo? -+ if test x$with_system_libunwind = xyes; then -+ case ${target} in -+ ia64-*-*) have_unwind_getipinfo=no ;; -+ *) have_unwind_getipinfo=yes ;; -+ esac -+ else -+ # Darwin before version 9 does not have _Unwind_GetIPInfo. -+ -+ case ${target} in -+ *-*-darwin[3-8]|*-*-darwin[3-8].*) have_unwind_getipinfo=no ;; -+ *) have_unwind_getipinfo=yes ;; -+ esac -+ -+ fi -+ -+ if test x$have_unwind_getipinfo = xyes; then -+ -+$as_echo "@%:@define HAVE_GETIPINFO 1" >>confdefs.h -+ -+ fi -+ -+ -+ @%:@ Check whether --enable-linux-futex was given. -+if test "${enable_linux_futex+set}" = set; then : -+ enableval=$enable_linux_futex; -+ case "$enableval" in -+ yes|no|default) ;; -+ *) as_fn_error $? "Unknown argument to enable/disable linux-futex" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_linux_futex=default -+fi -+ -+ -+case "$target" in -+ *-linux* | *-uclinux*) -+ case "$enable_linux_futex" in -+ default) -+ # If headers don't have gettid/futex syscalls definition, then -+ # default to no, otherwise there will be compile time failures. -+ # Otherwise, default to yes. If we don't detect we are -+ # compiled/linked against NPTL and not cross-compiling, check -+ # if programs are run by default against NPTL and if not, issue -+ # a warning. -+ enable_linux_futex=no -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ int lk; -+int -+main () -+{ -+syscall (SYS_gettid); syscall (SYS_futex, &lk, 0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ save_LIBS="$LIBS" -+ LIBS="-lpthread $LIBS" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#ifndef _GNU_SOURCE -+ #define _GNU_SOURCE 1 -+ #endif -+ #include -+ pthread_t th; void *status; -+int -+main () -+{ -+pthread_tryjoin_np (th, &status); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ enable_linux_futex=yes -+else -+ if test x$cross_compiling = xno; then -+ if getconf GNU_LIBPTHREAD_VERSION 2>/dev/null \ -+ | LC_ALL=C grep -i NPTL > /dev/null 2>/dev/null; then :; else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: The kernel might not support futex or gettid syscalls. -+If so, please configure with --disable-linux-futex" >&5 -+$as_echo "$as_me: WARNING: The kernel might not support futex or gettid syscalls. -+If so, please configure with --disable-linux-futex" >&2;} -+ fi -+ fi -+ enable_linux_futex=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ LIBS="$save_LIBS" -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ ;; -+ yes) -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ int lk; -+int -+main () -+{ -+syscall (SYS_gettid); syscall (SYS_futex, &lk, 0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ -+else -+ as_fn_error $? "SYS_gettid and SYS_futex required for --enable-linux-futex" "$LINENO" 5 -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ ;; -+ esac -+ ;; -+ *) -+ enable_linux_futex=no -+ ;; -+esac -+if test x$enable_linux_futex = xyes; then -+ -+$as_echo "@%:@define HAVE_LINUX_FUTEX 1" >>confdefs.h -+ -+fi -+ -+ -+if test "$is_hosted" = yes; then -+# TODO: remove this and change src/c++11/compatibility-atomic-c++0x.cc to -+# use instead of . -+ -+ -+inttype_headers=`echo inttypes.h sys/inttypes.h | sed -e 's/,/ /g'` -+ -+acx_cv_header_stdint=stddef.h -+acx_cv_header_stdint_kind="(already complete)" -+for i in stdint.h $inttype_headers; do -+ unset ac_cv_type_uintptr_t -+ unset ac_cv_type_uintmax_t -+ unset ac_cv_type_int_least32_t -+ unset ac_cv_type_int_fast32_t -+ unset ac_cv_type_uint64_t -+ $as_echo_n "looking for a compliant stdint.h in $i, " >&6 -+ ac_fn_c_check_type "$LINENO" "uintmax_t" "ac_cv_type_uintmax_t" "#include -+#include <$i> -+" -+if test "x$ac_cv_type_uintmax_t" = xyes; then : -+ acx_cv_header_stdint=$i -+else -+ continue -+fi -+ -+ ac_fn_c_check_type "$LINENO" "uintptr_t" "ac_cv_type_uintptr_t" "#include -+#include <$i> -+" -+if test "x$ac_cv_type_uintptr_t" = xyes; then : -+ -+else -+ acx_cv_header_stdint_kind="(mostly complete)" -+fi -+ -+ ac_fn_c_check_type "$LINENO" "int_least32_t" "ac_cv_type_int_least32_t" "#include -+#include <$i> -+" -+if test "x$ac_cv_type_int_least32_t" = xyes; then : -+ -+else -+ acx_cv_header_stdint_kind="(mostly complete)" -+fi -+ -+ ac_fn_c_check_type "$LINENO" "int_fast32_t" "ac_cv_type_int_fast32_t" "#include -+#include <$i> -+" -+if test "x$ac_cv_type_int_fast32_t" = xyes; then : -+ -+else -+ acx_cv_header_stdint_kind="(mostly complete)" -+fi -+ -+ ac_fn_c_check_type "$LINENO" "uint64_t" "ac_cv_type_uint64_t" "#include -+#include <$i> -+" -+if test "x$ac_cv_type_uint64_t" = xyes; then : -+ -+else -+ acx_cv_header_stdint_kind="(lacks uint64_t)" -+fi -+ -+ break -+done -+if test "$acx_cv_header_stdint" = stddef.h; then -+ acx_cv_header_stdint_kind="(lacks uintmax_t)" -+ for i in stdint.h $inttype_headers; do -+ unset ac_cv_type_uintptr_t -+ unset ac_cv_type_uint32_t -+ unset ac_cv_type_uint64_t -+ $as_echo_n "looking for an incomplete stdint.h in $i, " >&6 -+ ac_fn_c_check_type "$LINENO" "uint32_t" "ac_cv_type_uint32_t" "#include -+#include <$i> -+" -+if test "x$ac_cv_type_uint32_t" = xyes; then : -+ acx_cv_header_stdint=$i -+else -+ continue -+fi -+ -+ ac_fn_c_check_type "$LINENO" "uint64_t" "ac_cv_type_uint64_t" "#include -+#include <$i> -+" -+if test "x$ac_cv_type_uint64_t" = xyes; then : -+ -+fi -+ -+ ac_fn_c_check_type "$LINENO" "uintptr_t" "ac_cv_type_uintptr_t" "#include -+#include <$i> -+" -+if test "x$ac_cv_type_uintptr_t" = xyes; then : -+ -+fi -+ -+ break -+ done -+fi -+if test "$acx_cv_header_stdint" = stddef.h; then -+ acx_cv_header_stdint_kind="(u_intXX_t style)" -+ for i in sys/types.h $inttype_headers; do -+ unset ac_cv_type_u_int32_t -+ unset ac_cv_type_u_int64_t -+ $as_echo_n "looking for u_intXX_t types in $i, " >&6 -+ ac_fn_c_check_type "$LINENO" "u_int32_t" "ac_cv_type_u_int32_t" "#include -+#include <$i> -+" -+if test "x$ac_cv_type_u_int32_t" = xyes; then : -+ acx_cv_header_stdint=$i -+else -+ continue -+fi -+ -+ ac_fn_c_check_type "$LINENO" "u_int64_t" "ac_cv_type_u_int64_t" "#include -+#include <$i> -+" -+if test "x$ac_cv_type_u_int64_t" = xyes; then : -+ -+fi -+ -+ break -+ done -+fi -+if test "$acx_cv_header_stdint" = stddef.h; then -+ acx_cv_header_stdint_kind="(using manual detection)" -+fi -+ -+test -z "$ac_cv_type_uintptr_t" && ac_cv_type_uintptr_t=no -+test -z "$ac_cv_type_uint64_t" && ac_cv_type_uint64_t=no -+test -z "$ac_cv_type_u_int64_t" && ac_cv_type_u_int64_t=no -+test -z "$ac_cv_type_int_least32_t" && ac_cv_type_int_least32_t=no -+test -z "$ac_cv_type_int_fast32_t" && ac_cv_type_int_fast32_t=no -+ -+# ----------------- Summarize what we found so far -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking what to include in include/gstdint.h" >&5 -+$as_echo_n "checking what to include in include/gstdint.h... " >&6; } -+ -+case `$as_basename -- include/gstdint.h || -+$as_expr X/include/gstdint.h : '.*/\([^/][^/]*\)/*$' \| \ -+ Xinclude/gstdint.h : 'X\(//\)$' \| \ -+ Xinclude/gstdint.h : 'X\(/\)' \| . 2>/dev/null || -+$as_echo X/include/gstdint.h | -+ sed '/^.*\/\([^/][^/]*\)\/*$/{ -+ s//\1/ -+ q -+ } -+ /^X\/\(\/\/\)$/{ -+ s//\1/ -+ q -+ } -+ /^X\/\(\/\).*/{ -+ s//\1/ -+ q -+ } -+ s/.*/./; q'` in -+ stdint.h) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: are you sure you want it there?" >&5 -+$as_echo "$as_me: WARNING: are you sure you want it there?" >&2;} ;; -+ inttypes.h) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: are you sure you want it there?" >&5 -+$as_echo "$as_me: WARNING: are you sure you want it there?" >&2;} ;; -+ *) ;; -+esac -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_cv_header_stdint $acx_cv_header_stdint_kind" >&5 -+$as_echo "$acx_cv_header_stdint $acx_cv_header_stdint_kind" >&6; } -+ -+# ----------------- done included file, check C basic types -------- -+ -+# Lacking an uintptr_t? Test size of void * -+case "$acx_cv_header_stdint:$ac_cv_type_uintptr_t" in -+ stddef.h:* | *:no) # The cast to long int works around a bug in the HP C Compiler -+# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects -+# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. -+# This bug is HP SR number 8606223364. -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of void *" >&5 -+$as_echo_n "checking size of void *... " >&6; } -+if ${ac_cv_sizeof_void_p+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (void *))" "ac_cv_sizeof_void_p" "$ac_includes_default"; then : -+ -+else -+ if test "$ac_cv_type_void_p" = yes; then -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error 77 "cannot compute sizeof (void *) -+See \`config.log' for more details" "$LINENO" 5; } -+ else -+ ac_cv_sizeof_void_p=0 -+ fi -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_void_p" >&5 -+$as_echo "$ac_cv_sizeof_void_p" >&6; } -+ -+ -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define SIZEOF_VOID_P $ac_cv_sizeof_void_p -+_ACEOF -+ -+ ;; -+esac -+ -+# Lacking an uint64_t? Test size of long -+case "$acx_cv_header_stdint:$ac_cv_type_uint64_t:$ac_cv_type_u_int64_t" in -+ stddef.h:*:* | *:no:no) # The cast to long int works around a bug in the HP C Compiler -+# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects -+# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. -+# This bug is HP SR number 8606223364. -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long" >&5 -+$as_echo_n "checking size of long... " >&6; } -+if ${ac_cv_sizeof_long+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long))" "ac_cv_sizeof_long" "$ac_includes_default"; then : -+ -+else -+ if test "$ac_cv_type_long" = yes; then -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error 77 "cannot compute sizeof (long) -+See \`config.log' for more details" "$LINENO" 5; } -+ else -+ ac_cv_sizeof_long=0 -+ fi -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_long" >&5 -+$as_echo "$ac_cv_sizeof_long" >&6; } -+ -+ -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define SIZEOF_LONG $ac_cv_sizeof_long -+_ACEOF -+ -+ ;; -+esac -+ -+if test $acx_cv_header_stdint = stddef.h; then -+ # Lacking a good header? Test size of everything and deduce all types. -+ # The cast to long int works around a bug in the HP C Compiler -+# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects -+# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. -+# This bug is HP SR number 8606223364. -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of int" >&5 -+$as_echo_n "checking size of int... " >&6; } -+if ${ac_cv_sizeof_int+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (int))" "ac_cv_sizeof_int" "$ac_includes_default"; then : -+ -+else -+ if test "$ac_cv_type_int" = yes; then -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error 77 "cannot compute sizeof (int) -+See \`config.log' for more details" "$LINENO" 5; } -+ else -+ ac_cv_sizeof_int=0 -+ fi -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_int" >&5 -+$as_echo "$ac_cv_sizeof_int" >&6; } -+ -+ -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define SIZEOF_INT $ac_cv_sizeof_int -+_ACEOF -+ -+ -+ # The cast to long int works around a bug in the HP C Compiler -+# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects -+# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. -+# This bug is HP SR number 8606223364. -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of short" >&5 -+$as_echo_n "checking size of short... " >&6; } -+if ${ac_cv_sizeof_short+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (short))" "ac_cv_sizeof_short" "$ac_includes_default"; then : -+ -+else -+ if test "$ac_cv_type_short" = yes; then -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error 77 "cannot compute sizeof (short) -+See \`config.log' for more details" "$LINENO" 5; } -+ else -+ ac_cv_sizeof_short=0 -+ fi -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_short" >&5 -+$as_echo "$ac_cv_sizeof_short" >&6; } -+ -+ -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define SIZEOF_SHORT $ac_cv_sizeof_short -+_ACEOF -+ -+ -+ # The cast to long int works around a bug in the HP C Compiler -+# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects -+# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. -+# This bug is HP SR number 8606223364. -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of char" >&5 -+$as_echo_n "checking size of char... " >&6; } -+if ${ac_cv_sizeof_char+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (char))" "ac_cv_sizeof_char" "$ac_includes_default"; then : -+ -+else -+ if test "$ac_cv_type_char" = yes; then -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error 77 "cannot compute sizeof (char) -+See \`config.log' for more details" "$LINENO" 5; } -+ else -+ ac_cv_sizeof_char=0 -+ fi -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_char" >&5 -+$as_echo "$ac_cv_sizeof_char" >&6; } -+ -+ -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define SIZEOF_CHAR $ac_cv_sizeof_char -+_ACEOF -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for type equivalent to int8_t" >&5 -+$as_echo_n "checking for type equivalent to int8_t... " >&6; } -+ case "$ac_cv_sizeof_char" in -+ 1) acx_cv_type_int8_t=char ;; -+ *) as_fn_error $? "no 8-bit type, please report a bug" "$LINENO" 5 -+ esac -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_cv_type_int8_t" >&5 -+$as_echo "$acx_cv_type_int8_t" >&6; } -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for type equivalent to int16_t" >&5 -+$as_echo_n "checking for type equivalent to int16_t... " >&6; } -+ case "$ac_cv_sizeof_int:$ac_cv_sizeof_short" in -+ 2:*) acx_cv_type_int16_t=int ;; -+ *:2) acx_cv_type_int16_t=short ;; -+ *) as_fn_error $? "no 16-bit type, please report a bug" "$LINENO" 5 -+ esac -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_cv_type_int16_t" >&5 -+$as_echo "$acx_cv_type_int16_t" >&6; } -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for type equivalent to int32_t" >&5 -+$as_echo_n "checking for type equivalent to int32_t... " >&6; } -+ case "$ac_cv_sizeof_int:$ac_cv_sizeof_long" in -+ 4:*) acx_cv_type_int32_t=int ;; -+ *:4) acx_cv_type_int32_t=long ;; -+ *) as_fn_error $? "no 32-bit type, please report a bug" "$LINENO" 5 -+ esac -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_cv_type_int32_t" >&5 -+$as_echo "$acx_cv_type_int32_t" >&6; } -+fi -+ -+# These tests are here to make the output prettier -+ -+if test "$ac_cv_type_uint64_t" != yes && test "$ac_cv_type_u_int64_t" != yes; then -+ case "$ac_cv_sizeof_long" in -+ 8) acx_cv_type_int64_t=long ;; -+ esac -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for type equivalent to int64_t" >&5 -+$as_echo_n "checking for type equivalent to int64_t... " >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${acx_cv_type_int64_t-'using preprocessor symbols'}" >&5 -+$as_echo "${acx_cv_type_int64_t-'using preprocessor symbols'}" >&6; } -+fi -+ -+# Now we can use the above types -+ -+if test "$ac_cv_type_uintptr_t" != yes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for type equivalent to intptr_t" >&5 -+$as_echo_n "checking for type equivalent to intptr_t... " >&6; } -+ case $ac_cv_sizeof_void_p in -+ 2) acx_cv_type_intptr_t=int16_t ;; -+ 4) acx_cv_type_intptr_t=int32_t ;; -+ 8) acx_cv_type_intptr_t=int64_t ;; -+ *) as_fn_error $? "no equivalent for intptr_t, please report a bug" "$LINENO" 5 -+ esac -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_cv_type_intptr_t" >&5 -+$as_echo "$acx_cv_type_intptr_t" >&6; } -+fi -+ -+# ----------------- done all checks, emit header ------------- -+ac_config_commands="$ac_config_commands include/gstdint.h" -+ -+ -+ -+fi -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU c++filt" >&5 -+$as_echo_n "checking for GNU c++filt... " >&6; } -+if ${ac_cv_path_CXXFILT+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -z "$CXXFILT"; then -+ ac_path_CXXFILT_found=false -+ # Loop through the user's path and test for each of PROGNAME-LIST -+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_prog in c++filt gc++filt; do -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ ac_path_CXXFILT="$as_dir/$ac_prog$ac_exec_ext" -+ as_fn_executable_p "$ac_path_CXXFILT" || continue -+# Check for GNU $ac_path_CXXFILT -+case `"$ac_path_CXXFILT" --version 2>&1` in -+*GNU*) -+ ac_cv_path_CXXFILT=$ac_path_CXXFILT && ac_path_CXXFILT_found=:;; -+esac -+ -+ $ac_path_CXXFILT_found && break 3 -+ done -+ done -+ done -+IFS=$as_save_IFS -+ if test -z "$ac_cv_path_CXXFILT"; then -+ : -+ fi -+else -+ ac_cv_path_CXXFILT=$CXXFILT -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_CXXFILT" >&5 -+$as_echo "$ac_cv_path_CXXFILT" >&6; } -+ CXXFILT=$ac_cv_path_CXXFILT -+ -+ -+ -+ @%:@ Check whether --enable-symvers was given. -+if test "${enable_symvers+set}" = set; then : -+ enableval=$enable_symvers; -+ case "$enableval" in -+ yes|no|gnu|gnu-versioned-namespace|darwin|darwin-export|sun) ;; -+ *) as_fn_error $? "Unknown argument to enable/disable symvers" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_symvers=yes -+fi -+ -+ -+ -+# If we never went through the GLIBCXX_CHECK_LINKER_FEATURES macro, then we -+# don't know enough about $LD to do tricks... -+ -+# Sun style symbol versions needs GNU c++filt for make_sunver.pl to work -+# with extern "C++" in version scripts. -+ -+ -+# Turn a 'yes' into a suitable default. -+if test x$enable_symvers = xyes ; then -+ if test $enable_shared = no || test "x$LD" = x || test x$gcc_no_link = xyes; then -+ enable_symvers=no -+ else -+ if test $with_gnu_ld = yes ; then -+ case ${target_os} in -+ hpux*) -+ enable_symvers=no ;; -+ *) -+ enable_symvers=gnu ;; -+ esac -+ else -+ case ${target_os} in -+ darwin*) -+ enable_symvers=darwin ;; -+ # Sun symbol versioning exists since Solaris 2.5. -+ solaris2.[5-9]* | solaris2.1[0-9]*) -+ # make_sunver.pl needs GNU c++filt to support extern "C++" in -+ # version scripts, so disable symbol versioning if none can be -+ # found. -+ if test -z "$ac_cv_path_CXXFILT"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: === You have requested Sun symbol versioning, but" >&5 -+$as_echo "$as_me: WARNING: === You have requested Sun symbol versioning, but" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: === no GNU c++filt could be found." >&5 -+$as_echo "$as_me: WARNING: === no GNU c++filt could be found." >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: === Symbol versioning will be disabled." >&5 -+$as_echo "$as_me: WARNING: === Symbol versioning will be disabled." >&2;} -+ enable_symvers=no -+ else -+ enable_symvers=sun -+ fi -+ ;; -+ *) -+ enable_symvers=no ;; -+ esac -+ fi -+ fi -+fi -+ -+# Check to see if 'darwin' or 'darwin-export' can win. -+if test x$enable_symvers = xdarwin-export ; then -+ enable_symvers=darwin -+fi -+ -+# Check if 'sun' was requested on non-Solaris 2 platforms. -+if test x$enable_symvers = xsun ; then -+ case ${target_os} in -+ solaris2*) -+ # All fine. -+ ;; -+ *) -+ # Unlikely to work. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: === You have requested Sun symbol versioning, but" >&5 -+$as_echo "$as_me: WARNING: === You have requested Sun symbol versioning, but" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: === you are not targetting Solaris 2." >&5 -+$as_echo "$as_me: WARNING: === you are not targetting Solaris 2." >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: === Symbol versioning will be disabled." >&5 -+$as_echo "$as_me: WARNING: === Symbol versioning will be disabled." >&2;} -+ enable_symvers=no -+ ;; -+ esac -+fi -+ -+# Check to see if 'gnu' can win. -+if test $enable_symvers = gnu || -+ test $enable_symvers = gnu-versioned-namespace || -+ test $enable_symvers = sun; then -+ # Check to see if libgcc_s exists, indicating that shared libgcc is possible. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared libgcc" >&5 -+$as_echo_n "checking for shared libgcc... " >&6; } -+ ac_save_CFLAGS="$CFLAGS" -+ CFLAGS=' -lgcc_s' -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+return 0; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ glibcxx_shared_libgcc=yes -+else -+ glibcxx_shared_libgcc=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ CFLAGS="$ac_save_CFLAGS" -+ if test $glibcxx_shared_libgcc = no; then -+ cat > conftest.c <&1 >/dev/null \ -+ | sed -n 's/^.* -lgcc_s\([^ ]*\) .*$/\1/p'` -+ rm -f conftest.c conftest.so -+ if test x${glibcxx_libgcc_s_suffix+set} = xset; then -+ CFLAGS=" -lgcc_s$glibcxx_libgcc_s_suffix" -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+return 0; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ glibcxx_shared_libgcc=yes -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+ CFLAGS="$ac_save_CFLAGS" -+ fi -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_shared_libgcc" >&5 -+$as_echo "$glibcxx_shared_libgcc" >&6; } -+ -+ # For GNU ld, we need at least this version. The format is described in -+ # GLIBCXX_CHECK_LINKER_FEATURES above. -+ glibcxx_min_gnu_ld_version=21400 -+ -+ # If no shared libgcc, can't win. -+ if test $glibcxx_shared_libgcc != yes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: === You have requested GNU symbol versioning, but" >&5 -+$as_echo "$as_me: WARNING: === You have requested GNU symbol versioning, but" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: === you are not building a shared libgcc_s." >&5 -+$as_echo "$as_me: WARNING: === you are not building a shared libgcc_s." >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: === Symbol versioning will be disabled." >&5 -+$as_echo "$as_me: WARNING: === Symbol versioning will be disabled." >&2;} -+ enable_symvers=no -+ elif test $with_gnu_ld != yes && test $enable_symvers = sun; then -+ : All interesting versions of Sun ld support sun style symbol versioning. -+ elif test $with_gnu_ld != yes ; then -+ # just fail for now -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: === You have requested GNU symbol versioning, but" >&5 -+$as_echo "$as_me: WARNING: === You have requested GNU symbol versioning, but" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: === you are not using the GNU linker." >&5 -+$as_echo "$as_me: WARNING: === you are not using the GNU linker." >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: === Symbol versioning will be disabled." >&5 -+$as_echo "$as_me: WARNING: === Symbol versioning will be disabled." >&2;} -+ enable_symvers=no -+ elif test $glibcxx_ld_is_gold = yes ; then -+ : All versions of gold support symbol versioning. -+ elif test $glibcxx_ld_is_mold = yes ; then -+ : All versions of mold support symbol versioning. -+ elif test $glibcxx_gnu_ld_version -lt $glibcxx_min_gnu_ld_version ; then -+ # The right tools, the right setup, but too old. Fallbacks? -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: === Linker version $glibcxx_gnu_ld_version is too old for" >&5 -+$as_echo "$as_me: WARNING: === Linker version $glibcxx_gnu_ld_version is too old for" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: === full symbol versioning support in this release of GCC." >&5 -+$as_echo "$as_me: WARNING: === full symbol versioning support in this release of GCC." >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: === You would need to upgrade your binutils to version" >&5 -+$as_echo "$as_me: WARNING: === You would need to upgrade your binutils to version" >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: === $glibcxx_min_gnu_ld_version or later and rebuild GCC." >&5 -+$as_echo "$as_me: WARNING: === $glibcxx_min_gnu_ld_version or later and rebuild GCC." >&2;} -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: === Symbol versioning will be disabled." >&5 -+$as_echo "$as_me: WARNING: === Symbol versioning will be disabled." >&2;} -+ enable_symvers=no -+ fi -+fi -+ -+# For libtool versioning info, format is CURRENT:REVISION:AGE -+libtool_VERSION=6:30:0 -+ -+# Everything parsed; figure out what files and settings to use. -+case $enable_symvers in -+ no) -+ SYMVER_FILE=config/abi/pre/none.ver -+ ;; -+ gnu) -+ SYMVER_FILE=config/abi/pre/gnu.ver -+ -+$as_echo "@%:@define _GLIBCXX_SYMVER_GNU 1" >>confdefs.h -+ -+ ;; -+ gnu-versioned-namespace) -+ libtool_VERSION=8:0:0 -+ SYMVER_FILE=config/abi/pre/gnu-versioned-namespace.ver -+ -+$as_echo "@%:@define _GLIBCXX_SYMVER_GNU_NAMESPACE 1" >>confdefs.h -+ -+ ;; -+ darwin) -+ SYMVER_FILE=config/abi/pre/gnu.ver -+ -+$as_echo "@%:@define _GLIBCXX_SYMVER_DARWIN 1" >>confdefs.h -+ -+ ;; -+ sun) -+ SYMVER_FILE=config/abi/pre/gnu.ver -+ -+$as_echo "@%:@define _GLIBCXX_SYMVER_SUN 1" >>confdefs.h -+ -+ ;; -+esac -+ -+if test x$enable_symvers != xno ; then -+ -+$as_echo "@%:@define _GLIBCXX_SYMVER 1" >>confdefs.h -+ -+fi -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the target supports .symver directive" >&5 -+$as_echo_n "checking whether the target supports .symver directive... " >&6; } -+if ${glibcxx_cv_have_as_symver_directive+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+void foo (void); __asm (".symver foo, bar@SYMVER"); -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_have_as_symver_directive=yes -+else -+ glibcxx_cv_have_as_symver_directive=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_have_as_symver_directive" >&5 -+$as_echo "$glibcxx_cv_have_as_symver_directive" >&6; } -+if test $glibcxx_cv_have_as_symver_directive = yes; then -+ -+$as_echo "@%:@define HAVE_AS_SYMVER_DIRECTIVE 1" >>confdefs.h -+ -+fi -+ -+ -+ -+ -+ -+ -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: versioning on shared library symbols is $enable_symvers" >&5 -+$as_echo "$as_me: versioning on shared library symbols is $enable_symvers" >&6;} -+ -+if test $enable_symvers != no ; then -+ case ${target_os} in -+ # The Solaris 2 runtime linker doesn't support the GNU extension of -+ # binding the same symbol to different versions -+ solaris2*) -+ ;; -+ # Other platforms with GNU symbol versioning (GNU/Linux, more?) do. -+ *) -+ -+$as_echo "@%:@define HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT 1" >>confdefs.h -+ -+ ;; -+ esac -+fi -+ -+# Now, set up compatibility support, if any. -+# In addition, need this to deal with std::size_t mangling in -+# src/compatibility.cc. In a perfect world, could use -+# typeid(std::size_t).name()[0] to do direct substitution. -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for size_t as unsigned int" >&5 -+$as_echo_n "checking for size_t as unsigned int... " >&6; } -+ac_save_CFLAGS="$CFLAGS" -+CFLAGS="-Werror" -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+__SIZE_TYPE__* stp; unsigned int* uip; stp = uip; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_size_t_is_i=yes -+else -+ glibcxx_size_t_is_i=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+CFLAGS=$ac_save_CFLAGS -+if test "$glibcxx_size_t_is_i" = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_SIZE_T_IS_UINT 1" >>confdefs.h -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_size_t_is_i" >&5 -+$as_echo "$glibcxx_size_t_is_i" >&6; } -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ptrdiff_t as int" >&5 -+$as_echo_n "checking for ptrdiff_t as int... " >&6; } -+ac_save_CFLAGS="$CFLAGS" -+CFLAGS="-Werror" -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+__PTRDIFF_TYPE__* ptp; int* ip; ptp = ip; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_ptrdiff_t_is_i=yes -+else -+ glibcxx_ptrdiff_t_is_i=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+CFLAGS=$ac_save_CFLAGS -+if test "$glibcxx_ptrdiff_t_is_i" = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_PTRDIFF_T_IS_INT 1" >>confdefs.h -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_ptrdiff_t_is_i" >&5 -+$as_echo "$glibcxx_ptrdiff_t_is_i" >&6; } -+ -+ -+ -+ -+ @%:@ Check whether --enable-libstdcxx-visibility was given. -+if test "${enable_libstdcxx_visibility+set}" = set; then : -+ enableval=$enable_libstdcxx_visibility; -+ case "$enableval" in -+ yes|no) ;; -+ *) as_fn_error $? "Argument to enable/disable libstdcxx-visibility must be yes or no" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_libstdcxx_visibility=yes -+fi -+ -+ -+ -+if test x$enable_libstdcxx_visibility = xyes ; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the target supports hidden visibility" >&5 -+$as_echo_n "checking whether the target supports hidden visibility... " >&6; } -+if ${glibcxx_cv_have_attribute_visibility+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ save_CFLAGS="$CFLAGS" -+ CFLAGS="$CFLAGS -Werror" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+void __attribute__((visibility("hidden"))) foo(void) { } -+int -+main () -+{ -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_have_attribute_visibility=yes -+else -+ glibcxx_cv_have_attribute_visibility=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ CFLAGS="$save_CFLAGS" -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_have_attribute_visibility" >&5 -+$as_echo "$glibcxx_cv_have_attribute_visibility" >&6; } -+ if test $glibcxx_cv_have_attribute_visibility = no; then -+ enable_libstdcxx_visibility=no -+ fi -+fi -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: visibility supported: $enable_libstdcxx_visibility" >&5 -+$as_echo "$as_me: visibility supported: $enable_libstdcxx_visibility" >&6;} -+ -+ -+ -+ @%:@ Check whether --enable-libstdcxx-dual-abi was given. -+if test "${enable_libstdcxx_dual_abi+set}" = set; then : -+ enableval=$enable_libstdcxx_dual_abi; -+ case "$enableval" in -+ yes|no) ;; -+ *) as_fn_error $? "Argument to enable/disable libstdcxx-dual-abi must be yes or no" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_libstdcxx_dual_abi=yes -+fi -+ -+ -+ if test x$enable_symvers = xgnu-versioned-namespace; then -+ # gnu-versioned-namespace is incompatible with the dual ABI. -+ enable_libstdcxx_dual_abi="no" -+ fi -+ if test x"$enable_libstdcxx_dual_abi" != xyes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: dual ABI is disabled" >&5 -+$as_echo "$as_me: dual ABI is disabled" >&6;} -+ default_libstdcxx_abi="gcc4-compatible" -+ fi -+ -+ -+ -+ if test x$enable_libstdcxx_dual_abi = xyes; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for default std::string ABI to use" >&5 -+$as_echo_n "checking for default std::string ABI to use... " >&6; } -+ -+@%:@ Check whether --with-default-libstdcxx-abi was given. -+if test "${with_default_libstdcxx_abi+set}" = set; then : -+ withval=$with_default_libstdcxx_abi; case "$withval" in -+ gcc4-compatible) default_libstdcxx_abi="gcc4-compatible" ;; -+ new|cxx11) default_libstdcxx_abi="new" ;; -+ c++*|gnu++*) as_fn_error $? "Supported arguments for --with-default-libstdcxx-abi have changed, use \"new\" or \"gcc4-compatible\"" "$LINENO" 5 ;; -+ *) as_fn_error $? "Invalid argument for --with-default-libstdcxx-abi" "$LINENO" 5 ;; -+ esac -+ -+else -+ default_libstdcxx_abi="new" -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${default_libstdcxx_abi}" >&5 -+$as_echo "${default_libstdcxx_abi}" >&6; } -+ fi -+ if test $default_libstdcxx_abi = "new"; then -+ glibcxx_cxx11_abi=1 -+ glibcxx_cxx98_abi=0 -+ else -+ glibcxx_cxx11_abi=0 -+ glibcxx_cxx98_abi=1 -+ fi -+ -+ -+ -+ -+ac_ldbl_compat=no -+ac_ldbl_alt128_compat=no -+ac_ldbl_ieee128_default=no -+LONG_DOUBLE_COMPAT_FLAGS="-mlong-double-64" -+LONG_DOUBLE_128_FLAGS= -+LONG_DOUBLE_ALT128_COMPAT_FLAGS= -+case "$target" in -+ powerpc*-*-linux* | \ -+ sparc*-*-linux* | \ -+ s390*-*-linux* | \ -+ alpha*-*-linux*) -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+#if !defined __LONG_DOUBLE_128__ || (defined(__sparc__) && defined(__arch64__)) -+#error no need for long double compatibility -+#endif -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_ldbl_compat=yes -+else -+ ac_ldbl_compat=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ if test "$ac_ldbl_compat" = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_LONG_DOUBLE_COMPAT 1" >>confdefs.h -+ -+ port_specific_symbol_files="\$(top_srcdir)/config/os/gnu-linux/ldbl-extra.ver" -+ case "$target" in -+ powerpc*-*-linux*) -+ LONG_DOUBLE_COMPAT_FLAGS="$LONG_DOUBLE_COMPAT_FLAGS -mno-gnu-attribute" -+ # Check for IEEE128 support in libm: -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __frexpieee128 in -lm" >&5 -+$as_echo_n "checking for __frexpieee128 in -lm... " >&6; } -+if ${ac_cv_lib_m___frexpieee128+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_check_lib_save_LIBS=$LIBS -+LIBS="-lm $LIBS" -+if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+/* Override any GCC internal prototype to avoid an error. -+ Use char because int might match the return type of a GCC -+ builtin and then its argument prototype would still apply. */ -+#ifdef __cplusplus -+extern "C" -+#endif -+char __frexpieee128 (); -+int -+main () -+{ -+return __frexpieee128 (); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ ac_cv_lib_m___frexpieee128=yes -+else -+ ac_cv_lib_m___frexpieee128=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+LIBS=$ac_check_lib_save_LIBS -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m___frexpieee128" >&5 -+$as_echo "$ac_cv_lib_m___frexpieee128" >&6; } -+if test "x$ac_cv_lib_m___frexpieee128" = xyes; then : -+ ac_ldbl_ieee128_in_libc=yes -+else -+ ac_ldbl_ieee128_in_libc=no -+fi -+ -+ if test $ac_ldbl_ieee128_in_libc = yes; then -+ # Determine which long double format is the compiler's default: -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ #ifndef __LONG_DOUBLE_IEEE128__ -+ #error compiler defaults to ibm128 -+ #endif -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_ldbl_ieee128_default=yes -+else -+ ac_ldbl_ieee128_default=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ # Library objects should use default long double format. -+ if test "$ac_ldbl_ieee128_default" = yes; then -+ LONG_DOUBLE_128_FLAGS="-mno-gnu-attribute" -+ # Except for the ones that explicitly use these flags: -+ LONG_DOUBLE_ALT128_COMPAT_FLAGS="-mabi=ibmlongdouble -mno-gnu-attribute -Wno-psabi" -+ else -+ LONG_DOUBLE_128_FLAGS="-mno-gnu-attribute" -+ LONG_DOUBLE_ALT128_COMPAT_FLAGS="-mabi=ieeelongdouble -mno-gnu-attribute -Wno-psabi" -+ fi -+ -+$as_echo "@%:@define _GLIBCXX_LONG_DOUBLE_ALT128_COMPAT 1" >>confdefs.h -+ -+ port_specific_symbol_files="$port_specific_symbol_files \$(top_srcdir)/config/os/gnu-linux/ldbl-ieee128-extra.ver" -+ ac_ldbl_alt128_compat=yes -+ else -+ ac_ldbl_alt128_compat=no -+ fi -+ ;; -+ esac -+ fi -+esac -+ -+ -+ -+ -+ -+ -+# Check if assembler supports disabling hardware capability support. -+ -+ test -z "$HWCAP_CFLAGS" && HWCAP_CFLAGS='' -+ -+ # Restrict the test to Solaris, other assemblers (e.g. AIX as) have -nH -+ # with a different meaning. -+ case ${target_os} in -+ solaris2*) -+ ac_save_CFLAGS="$CFLAGS" -+ CFLAGS="$CFLAGS -Wa,-nH" -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for as that supports -Wa,-nH" >&5 -+$as_echo_n "checking for as that supports -Wa,-nH... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+return 0; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_hwcap_flags=yes -+else -+ ac_hwcap_flags=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ if test "$ac_hwcap_flags" = "yes"; then -+ HWCAP_CFLAGS="-Wa,-nH $HWCAP_CFLAGS" -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_hwcap_flags" >&5 -+$as_echo "$ac_hwcap_flags" >&6; } -+ -+ CFLAGS="$ac_save_CFLAGS" -+ ;; -+ esac -+ -+ -+ -+ -+# Check if assembler supports rdrand opcode. -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for rdrand support in assembler" >&5 -+$as_echo_n "checking for rdrand support in assembler... " >&6; } -+if ${ac_cv_x86_rdrand+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ ac_cv_x86_rdrand=no -+ case "$target" in -+ i?86-*-* | \ -+ x86_64-*-*) -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+asm("rdrand %eax"); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_x86_rdrand=yes -+else -+ ac_cv_x86_rdrand=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ esac -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_x86_rdrand" >&5 -+$as_echo "$ac_cv_x86_rdrand" >&6; } -+ if test $ac_cv_x86_rdrand = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_X86_RDRAND 1" >>confdefs.h -+ -+ fi -+ -+# Check if assembler supports rdseed opcode. -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for rdseed support in assembler" >&5 -+$as_echo_n "checking for rdseed support in assembler... " >&6; } -+if ${ac_cv_x86_rdseed+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ ac_cv_x86_rdseed=no -+ case "$target" in -+ i?86-*-* | \ -+ x86_64-*-*) -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+asm("rdseed %eax"); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_cv_x86_rdseed=yes -+else -+ ac_cv_x86_rdseed=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ esac -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_x86_rdseed" >&5 -+$as_echo "$ac_cv_x86_rdseed" >&6; } -+ if test $ac_cv_x86_rdseed = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_X86_RDSEED 1" >>confdefs.h -+ -+ fi -+ -+ -+# Check for other random number APIs -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for getentropy" >&5 -+$as_echo_n "checking for getentropy... " >&6; } -+if ${glibcxx_cv_getentropy+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+unsigned i; -+ ::getentropy(&i, sizeof(i)); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_getentropy=yes -+else -+ glibcxx_cv_getentropy=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+unsigned i; -+ ::getentropy(&i, sizeof(i)); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_getentropy=yes -+else -+ glibcxx_cv_getentropy=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_getentropy" >&5 -+$as_echo "$glibcxx_cv_getentropy" >&6; } -+ -+ if test $glibcxx_cv_getentropy = yes; then -+ -+$as_echo "@%:@define HAVE_GETENTROPY 1" >>confdefs.h -+ -+ fi -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for arc4random" >&5 -+$as_echo_n "checking for arc4random... " >&6; } -+if ${glibcxx_cv_arc4random+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+unsigned i = ::arc4random(); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_arc4random=yes -+else -+ glibcxx_cv_arc4random=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+unsigned i = ::arc4random(); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_arc4random=yes -+else -+ glibcxx_cv_arc4random=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_arc4random" >&5 -+$as_echo "$glibcxx_cv_arc4random" >&6; } -+ -+ if test $glibcxx_cv_arc4random = yes; then -+ -+$as_echo "@%:@define HAVE_ARC4RANDOM 1" >>confdefs.h -+ -+ fi -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+# This depends on GLIBCXX_ENABLE_SYMVERS and GLIBCXX_IS_NATIVE. -+ -+ # Do checks for resource limit functions. -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ setrlimit_have_headers=yes -+ for ac_header in unistd.h sys/time.h sys/resource.h -+do : -+ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -+ac_fn_cxx_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -+_ACEOF -+ -+else -+ setrlimit_have_headers=no -+fi -+ -+done -+ -+ # If don't have the headers, then we can't run the tests now, and we -+ # won't be seeing any of these during testsuite compilation. -+ if test $setrlimit_have_headers = yes; then -+ # Can't do these in a loop, else the resulting syntax is wrong. -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for RLIMIT_DATA" >&5 -+$as_echo_n "checking for RLIMIT_DATA... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ #include -+ -+int -+main () -+{ -+ int f = RLIMIT_DATA ; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_mresult=1 -+else -+ glibcxx_mresult=0 -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LIMIT_DATA $glibcxx_mresult -+_ACEOF -+ -+ if test $glibcxx_mresult = 1 ; then res=yes ; else res=no ; fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $res" >&5 -+$as_echo "$res" >&6; } -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for RLIMIT_RSS" >&5 -+$as_echo_n "checking for RLIMIT_RSS... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ #include -+ -+int -+main () -+{ -+ int f = RLIMIT_RSS ; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_mresult=1 -+else -+ glibcxx_mresult=0 -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LIMIT_RSS $glibcxx_mresult -+_ACEOF -+ -+ if test $glibcxx_mresult = 1 ; then res=yes ; else res=no ; fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $res" >&5 -+$as_echo "$res" >&6; } -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for RLIMIT_VMEM" >&5 -+$as_echo_n "checking for RLIMIT_VMEM... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ #include -+ -+int -+main () -+{ -+ int f = RLIMIT_VMEM ; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_mresult=1 -+else -+ glibcxx_mresult=0 -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LIMIT_VMEM $glibcxx_mresult -+_ACEOF -+ -+ if test $glibcxx_mresult = 1 ; then res=yes ; else res=no ; fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $res" >&5 -+$as_echo "$res" >&6; } -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for RLIMIT_AS" >&5 -+$as_echo_n "checking for RLIMIT_AS... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ #include -+ -+int -+main () -+{ -+ int f = RLIMIT_AS ; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_mresult=1 -+else -+ glibcxx_mresult=0 -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LIMIT_AS $glibcxx_mresult -+_ACEOF -+ -+ if test $glibcxx_mresult = 1 ; then res=yes ; else res=no ; fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $res" >&5 -+$as_echo "$res" >&6; } -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for RLIMIT_FSIZE" >&5 -+$as_echo_n "checking for RLIMIT_FSIZE... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ #include -+ -+int -+main () -+{ -+ int f = RLIMIT_FSIZE ; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_mresult=1 -+else -+ glibcxx_mresult=0 -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LIMIT_FSIZE $glibcxx_mresult -+_ACEOF -+ -+ if test $glibcxx_mresult = 1 ; then res=yes ; else res=no ; fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $res" >&5 -+$as_echo "$res" >&6; } -+ -+ -+ # Check for rlimit, setrlimit. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for testsuite resource limits support" >&5 -+$as_echo_n "checking for testsuite resource limits support... " >&6; } -+if ${glibcxx_cv_setrlimit+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+ #include -+ -+int -+main () -+{ -+struct rlimit r; -+ setrlimit(0, &r); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_setrlimit=yes -+else -+ glibcxx_cv_setrlimit=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_setrlimit" >&5 -+$as_echo "$glibcxx_cv_setrlimit" >&6; } -+ -+ if test $glibcxx_cv_setrlimit = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_RES_LIMITS 1" >>confdefs.h -+ -+ fi -+ fi -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ if $GLIBCXX_IS_NATIVE ; then -+ # Look for setenv, so that extended locale tests can be performed. -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for setenv declaration" >&5 -+$as_echo_n "checking for setenv declaration... " >&6; } -+ if test x${glibcxx_cv_func_setenv_use+set} != xset; then -+ if ${glibcxx_cv_func_setenv_use+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ setenv(0, 0, 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_func_setenv_use=yes -+else -+ glibcxx_cv_func_setenv_use=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+fi -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_func_setenv_use" >&5 -+$as_echo "$glibcxx_cv_func_setenv_use" >&6; } -+ if test x$glibcxx_cv_func_setenv_use = x"yes"; then -+ for ac_func in setenv -+do : -+ ac_fn_c_check_func "$LINENO" "setenv" "ac_cv_func_setenv" -+if test "x$ac_cv_func_setenv" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SETENV 1 -+_ACEOF -+ -+fi -+done -+ -+ fi -+ -+ fi -+ -+ if $GLIBCXX_IS_NATIVE && test $is_hosted = yes && -+ test $enable_symvers != no; then -+ case "$host" in -+ *-*-cygwin*) -+ enable_abi_check=no ;; -+ *) -+ enable_abi_check=yes ;; -+ esac -+ else -+ # Only build this as native, since automake does not understand -+ # CXX_FOR_BUILD. -+ enable_abi_check=no -+ fi -+ -+ # Export file names for ABI checking. -+ baseline_dir="$glibcxx_srcdir/config/abi/post/${abi_baseline_pair}" -+ -+ baseline_subdir_switch="$abi_baseline_subdir_switch" -+ -+ -+ -+# For gthread support. Depends on GLIBCXX_ENABLE_SYMVERS. -+ -+ @%:@ Check whether --enable-libstdcxx-threads was given. -+if test "${enable_libstdcxx_threads+set}" = set; then : -+ enableval=$enable_libstdcxx_threads; -+ case "$enableval" in -+ yes|no) ;; -+ *) as_fn_error $? "Argument to enable/disable libstdcxx-threads must be yes or no" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_libstdcxx_threads=auto -+fi -+ -+ -+ -+ if test x$enable_libstdcxx_threads = xauto || -+ test x$enable_libstdcxx_threads = xyes; then -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -fno-exceptions \ -+ -I${toplevel_srcdir}/libgcc -I${toplevel_builddir}/libgcc" -+ -+ target_thread_file=`$CXX -v 2>&1 | sed -n 's/^Thread model: //p'` -+ case $target_thread_file in -+ posix) -+ CXXFLAGS="$CXXFLAGS -DSUPPORTS_WEAK -DGTHREAD_USE_WEAK -D_PTHREADS" -+ esac -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it can be safely assumed that mutex_timedlock is available" >&5 -+$as_echo_n "checking whether it can be safely assumed that mutex_timedlock is available... " >&6; } -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ -+ // In case of POSIX threads check _POSIX_TIMEOUTS. -+ #if (defined(_PTHREADS) \ -+ && (!defined(_POSIX_TIMEOUTS) || _POSIX_TIMEOUTS <= 0)) -+ #error -+ #endif -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_gthread_use_mutex_timedlock=1 -+else -+ ac_gthread_use_mutex_timedlock=0 -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define _GTHREAD_USE_MUTEX_TIMEDLOCK $ac_gthread_use_mutex_timedlock -+_ACEOF -+ -+ -+ if test $ac_gthread_use_mutex_timedlock = 1 ; then res_mutex_timedlock=yes ; -+ else res_mutex_timedlock=no ; fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $res_mutex_timedlock" >&5 -+$as_echo "$res_mutex_timedlock" >&6; } -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gthreads library" >&5 -+$as_echo_n "checking for gthreads library... " >&6; } -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include "gthr.h" -+int -+main () -+{ -+ -+ #ifndef __GTHREADS_CXX0X -+ #error -+ #endif -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_has_gthreads=yes -+else -+ ac_has_gthreads=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ else -+ ac_has_gthreads=no -+ fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_has_gthreads" >&5 -+$as_echo "$ac_has_gthreads" >&6; } -+ -+ if test x"$ac_has_gthreads" = x"yes"; then -+ -+$as_echo "@%:@define _GLIBCXX_HAS_GTHREADS 1" >>confdefs.h -+ -+ -+ # Also check for pthread_rwlock_t for std::shared_timed_mutex in C++14 -+ # but only do so if we're using pthread in the gthread library. -+ # On VxWorks for example, pthread_rwlock_t is defined in sys/types.h -+ # but the pthread library is not there by default and the gthread library -+ # does not use it. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include "gthr.h" -+int -+main () -+{ -+ -+ #if (!defined(_PTHREADS)) -+ #error -+ #endif -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_gthread_use_pthreads=yes -+else -+ ac_gthread_use_pthreads=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ if test x"$ac_gthread_use_pthreads" = x"yes"; then -+ ac_fn_cxx_check_type "$LINENO" "pthread_rwlock_t" "ac_cv_type_pthread_rwlock_t" "#include \"gthr.h\" -+" -+if test "x$ac_cv_type_pthread_rwlock_t" = xyes; then : -+ -+$as_echo "@%:@define _GLIBCXX_USE_PTHREAD_RWLOCK_T 1" >>confdefs.h -+ -+fi -+ -+ fi -+ fi -+ -+ ac_fn_cxx_check_header_mongrel "$LINENO" "semaphore.h" "ac_cv_header_semaphore_h" "$ac_includes_default" -+if test "x$ac_cv_header_semaphore_h" = xyes; then : -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for POSIX Semaphores and sem_timedwait" >&5 -+$as_echo_n "checking for POSIX Semaphores and sem_timedwait... " >&6; } -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+ #include -+ #include -+ #include -+ -+int -+main () -+{ -+ -+ #if !defined _POSIX_TIMEOUTS || _POSIX_TIMEOUTS <= 0 -+ # error "POSIX Timeouts option not supported" -+ #elif !defined _POSIX_SEMAPHORES || _POSIX_SEMAPHORES <= 0 -+ # error "POSIX Semaphores option not supported" -+ #else -+ #if defined SEM_VALUE_MAX -+ constexpr int sem_value_max = SEM_VALUE_MAX; -+ #elif defined _POSIX_SEM_VALUE_MAX -+ constexpr int sem_value_max = _POSIX_SEM_VALUE_MAX; -+ #else -+ # error "SEM_VALUE_MAX not available" -+ #endif -+ sem_t sem; -+ sem_init(&sem, 0, sem_value_max); -+ struct timespec ts = { 0 }; -+ sem_timedwait(&sem, &ts); -+ #endif -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ ac_have_posix_semaphore=yes -+else -+ ac_have_posix_semaphore=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ ac_have_posix_semaphore=no -+fi -+ -+ -+ -+ if test $ac_have_posix_semaphore = yes ; then -+ -+$as_echo "@%:@define HAVE_POSIX_SEMAPHORE 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_have_posix_semaphore" >&5 -+$as_echo "$ac_have_posix_semaphore" >&6; } -+ -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+# For Filesystem TS. -+for ac_header in fcntl.h dirent.h sys/statvfs.h utime.h -+do : -+ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -+ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ -+ @%:@ Check whether --enable-libstdcxx-filesystem-ts was given. -+if test "${enable_libstdcxx_filesystem_ts+set}" = set; then : -+ enableval=$enable_libstdcxx_filesystem_ts; -+ case "$enableval" in -+ yes|no|auto) ;; -+ *) as_fn_error $? "Unknown argument to enable/disable libstdcxx-filesystem-ts" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_libstdcxx_filesystem_ts=auto -+fi -+ -+ -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build Filesystem TS support" >&5 -+$as_echo_n "checking whether to build Filesystem TS support... " >&6; } -+ if test x"$ac_cv_header_dirent_h" != x"yes"; then -+ enable_libstdcxx_filesystem_ts=no -+ fi -+ if test x"$enable_libstdcxx_filesystem_ts" = x"auto"; then -+ case "${target_os}" in -+ freebsd*|netbsd*|openbsd*|dragonfly*|darwin*) -+ enable_libstdcxx_filesystem_ts=yes -+ ;; -+ gnu* | linux* | kfreebsd*-gnu | knetbsd*-gnu | uclinux*) -+ enable_libstdcxx_filesystem_ts=yes -+ ;; -+ rtems*) -+ enable_libstdcxx_filesystem_ts=yes -+ ;; -+ solaris*) -+ enable_libstdcxx_filesystem_ts=yes -+ ;; -+ mingw*) -+ enable_libstdcxx_filesystem_ts=yes -+ ;; -+ *) -+ enable_libstdcxx_filesystem_ts=no -+ ;; -+ esac -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_libstdcxx_filesystem_ts" >&5 -+$as_echo "$enable_libstdcxx_filesystem_ts" >&6; } -+ -+ -+ -+ ac_ext=cpp -+ac_cpp='$CXXCPP $CPPFLAGS' -+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -+ -+ ac_save_CXXFLAGS="$CXXFLAGS" -+ CXXFLAGS="$CXXFLAGS -fno-exceptions" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct dirent.d_type" >&5 -+$as_echo_n "checking for struct dirent.d_type... " >&6; } -+if ${glibcxx_cv_dirent_d_type+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ -+ struct dirent d; -+ if (sizeof d.d_type) return 0; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_dirent_d_type=yes -+else -+ glibcxx_cv_dirent_d_type=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+ -+ struct dirent d; -+ if (sizeof d.d_type) return 0; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_dirent_d_type=yes -+else -+ glibcxx_cv_dirent_d_type=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_dirent_d_type" >&5 -+$as_echo "$glibcxx_cv_dirent_d_type" >&6; } -+ if test $glibcxx_cv_dirent_d_type = yes; then -+ -+$as_echo "@%:@define HAVE_STRUCT_DIRENT_D_TYPE 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for realpath" >&5 -+$as_echo_n "checking for realpath... " >&6; } -+if ${glibcxx_cv_realpath+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+ #include -+ #include -+ #include -+ -+int -+main () -+{ -+ -+ #if _XOPEN_VERSION < 500 -+ #error -+ #elif _XOPEN_VERSION >= 700 || defined(PATH_MAX) -+ char *tmp = realpath((const char*)NULL, (char*)NULL); -+ #else -+ #error -+ #endif -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_realpath=yes -+else -+ glibcxx_cv_realpath=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+ #include -+ #include -+ #include -+ -+int -+main () -+{ -+ -+ #if _XOPEN_VERSION < 500 -+ #error -+ #elif _XOPEN_VERSION >= 700 || defined(PATH_MAX) -+ char *tmp = realpath((const char*)NULL, (char*)NULL); -+ #else -+ #error -+ #endif -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_realpath=yes -+else -+ glibcxx_cv_realpath=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_realpath" >&5 -+$as_echo "$glibcxx_cv_realpath" >&6; } -+ if test $glibcxx_cv_realpath = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_REALPATH 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for utimensat" >&5 -+$as_echo_n "checking for utimensat... " >&6; } -+if ${glibcxx_cv_utimensat+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+ #include -+ #include -+ -+int -+main () -+{ -+ -+ struct timespec ts[2] = { { 0, UTIME_OMIT }, { 1, 1 } }; -+ int i = utimensat(AT_FDCWD, "path", ts, 0); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_utimensat=yes -+else -+ glibcxx_cv_utimensat=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+ #include -+ #include -+ -+int -+main () -+{ -+ -+ struct timespec ts[2] = { { 0, UTIME_OMIT }, { 1, 1 } }; -+ int i = utimensat(AT_FDCWD, "path", ts, 0); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_utimensat=yes -+else -+ glibcxx_cv_utimensat=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_utimensat" >&5 -+$as_echo "$glibcxx_cv_utimensat" >&6; } -+ if test $glibcxx_cv_utimensat = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_UTIMENSAT 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for utime" >&5 -+$as_echo_n "checking for utime... " >&6; } -+if ${glibcxx_cv_utime+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+ #include -+ -+int -+main () -+{ -+ -+ struct utimbuf t = { 1, 1 }; -+ int i = utime("path", &t); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_utime=yes -+else -+ glibcxx_cv_utime=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+ #include -+ -+int -+main () -+{ -+ -+ struct utimbuf t = { 1, 1 }; -+ int i = utime("path", &t); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_utime=yes -+else -+ glibcxx_cv_utime=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_utime" >&5 -+$as_echo "$glibcxx_cv_utime" >&6; } -+ if test $glibcxx_cv_utime = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_UTIME 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for lstat" >&5 -+$as_echo_n "checking for lstat... " >&6; } -+if ${glibcxx_cv_lstat+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ #include -+int -+main () -+{ -+ -+ struct stat st; -+ int i = lstat("path", &st); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_lstat=yes -+else -+ glibcxx_cv_lstat=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ #include -+int -+main () -+{ -+ -+ struct stat st; -+ int i = lstat("path", &st); -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_lstat=yes -+else -+ glibcxx_cv_lstat=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_lstat" >&5 -+$as_echo "$glibcxx_cv_lstat" >&6; } -+ if test $glibcxx_cv_lstat = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_LSTAT 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct stat.st_mtim.tv_nsec" >&5 -+$as_echo_n "checking for struct stat.st_mtim.tv_nsec... " >&6; } -+if ${glibcxx_cv_st_mtim+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ #include -+int -+main () -+{ -+ -+ struct stat st; -+ return st.st_mtim.tv_nsec; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_st_mtim=yes -+else -+ glibcxx_cv_st_mtim=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ #include -+int -+main () -+{ -+ -+ struct stat st; -+ return st.st_mtim.tv_nsec; -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_st_mtim=yes -+else -+ glibcxx_cv_st_mtim=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_st_mtim" >&5 -+$as_echo "$glibcxx_cv_st_mtim" >&6; } -+ if test $glibcxx_cv_st_mtim = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_ST_MTIM 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fchmod" >&5 -+$as_echo_n "checking for fchmod... " >&6; } -+if ${glibcxx_cv_fchmod+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+fchmod(1, S_IWUSR); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_fchmod=yes -+else -+ glibcxx_cv_fchmod=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+fchmod(1, S_IWUSR); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_fchmod=yes -+else -+ glibcxx_cv_fchmod=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_fchmod" >&5 -+$as_echo "$glibcxx_cv_fchmod" >&6; } -+ if test $glibcxx_cv_fchmod = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_FCHMOD 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fchmodat" >&5 -+$as_echo_n "checking for fchmodat... " >&6; } -+if ${glibcxx_cv_fchmodat+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+ #include -+ #include -+ -+int -+main () -+{ -+fchmodat(AT_FDCWD, "", 0, AT_SYMLINK_NOFOLLOW); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_fchmodat=yes -+else -+ glibcxx_cv_fchmodat=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+ #include -+ #include -+ -+int -+main () -+{ -+fchmodat(AT_FDCWD, "", 0, AT_SYMLINK_NOFOLLOW); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_fchmodat=yes -+else -+ glibcxx_cv_fchmodat=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_fchmodat" >&5 -+$as_echo "$glibcxx_cv_fchmodat" >&6; } -+ if test $glibcxx_cv_fchmodat = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_FCHMODAT 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sendfile that can copy files" >&5 -+$as_echo_n "checking for sendfile that can copy files... " >&6; } -+if ${glibcxx_cv_sendfile+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ case "${target_os}" in -+ gnu* | linux* | solaris* | uclinux*) -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+sendfile(1, 2, (off_t*)0, sizeof 1); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_sendfile=yes -+else -+ glibcxx_cv_sendfile=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+sendfile(1, 2, (off_t*)0, sizeof 1); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_sendfile=yes -+else -+ glibcxx_cv_sendfile=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ ;; -+ *) -+ glibcxx_cv_sendfile=no -+ ;; -+ esac -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_sendfile" >&5 -+$as_echo "$glibcxx_cv_sendfile" >&6; } -+ if test $glibcxx_cv_sendfile = yes; then -+ -+$as_echo "@%:@define _GLIBCXX_USE_SENDFILE 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for link" >&5 -+$as_echo_n "checking for link... " >&6; } -+if ${glibcxx_cv_link+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+link("", ""); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_link=yes -+else -+ glibcxx_cv_link=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+link("", ""); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_link=yes -+else -+ glibcxx_cv_link=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_link" >&5 -+$as_echo "$glibcxx_cv_link" >&6; } -+ if test $glibcxx_cv_link = yes; then -+ -+$as_echo "@%:@define HAVE_LINK 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for readlink" >&5 -+$as_echo_n "checking for readlink... " >&6; } -+if ${glibcxx_cv_readlink+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+char buf[32]; readlink("", buf, sizeof(buf)); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_readlink=yes -+else -+ glibcxx_cv_readlink=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+char buf[32]; readlink("", buf, sizeof(buf)); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_readlink=yes -+else -+ glibcxx_cv_readlink=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_readlink" >&5 -+$as_echo "$glibcxx_cv_readlink" >&6; } -+ if test $glibcxx_cv_readlink = yes; then -+ -+$as_echo "@%:@define HAVE_READLINK 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for symlink" >&5 -+$as_echo_n "checking for symlink... " >&6; } -+if ${glibcxx_cv_symlink+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+symlink("", ""); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_symlink=yes -+else -+ glibcxx_cv_symlink=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+symlink("", ""); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_symlink=yes -+else -+ glibcxx_cv_symlink=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_symlink" >&5 -+$as_echo "$glibcxx_cv_symlink" >&6; } -+ if test $glibcxx_cv_symlink = yes; then -+ -+$as_echo "@%:@define HAVE_SYMLINK 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for truncate" >&5 -+$as_echo_n "checking for truncate... " >&6; } -+if ${glibcxx_cv_truncate+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+truncate("", 99); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_truncate=yes -+else -+ glibcxx_cv_truncate=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+truncate("", 99); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_truncate=yes -+else -+ glibcxx_cv_truncate=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_truncate" >&5 -+$as_echo "$glibcxx_cv_truncate" >&6; } -+ if test $glibcxx_cv_truncate = yes; then -+ -+$as_echo "@%:@define HAVE_TRUNCATE 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fdopendir" >&5 -+$as_echo_n "checking for fdopendir... " >&6; } -+if ${glibcxx_cv_fdopendir+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+::DIR* dir = ::fdopendir(1); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_fdopendir=yes -+else -+ glibcxx_cv_fdopendir=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+::DIR* dir = ::fdopendir(1); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_fdopendir=yes -+else -+ glibcxx_cv_fdopendir=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_fdopendir" >&5 -+$as_echo "$glibcxx_cv_fdopendir" >&6; } -+ if test $glibcxx_cv_fdopendir = yes; then -+ -+$as_echo "@%:@define HAVE_FDOPENDIR 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dirfd" >&5 -+$as_echo_n "checking for dirfd... " >&6; } -+if ${glibcxx_cv_dirfd+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+int fd = ::dirfd((::DIR*)0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_dirfd=yes -+else -+ glibcxx_cv_dirfd=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+int fd = ::dirfd((::DIR*)0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_dirfd=yes -+else -+ glibcxx_cv_dirfd=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_dirfd" >&5 -+$as_echo "$glibcxx_cv_dirfd" >&6; } -+ if test $glibcxx_cv_dirfd = yes; then -+ -+$as_echo "@%:@define HAVE_DIRFD 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for openat" >&5 -+$as_echo_n "checking for openat... " >&6; } -+if ${glibcxx_cv_openat+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+int fd = ::openat(AT_FDCWD, "", 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_openat=yes -+else -+ glibcxx_cv_openat=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+int -+main () -+{ -+int fd = ::openat(AT_FDCWD, "", 0); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_openat=yes -+else -+ glibcxx_cv_openat=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_openat" >&5 -+$as_echo "$glibcxx_cv_openat" >&6; } -+ if test $glibcxx_cv_openat = yes; then -+ -+$as_echo "@%:@define HAVE_OPENAT 1" >>confdefs.h -+ -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for unlinkat" >&5 -+$as_echo_n "checking for unlinkat... " >&6; } -+if ${glibcxx_cv_unlinkat+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+int -+main () -+{ -+::unlinkat(AT_FDCWD, "", AT_REMOVEDIR); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_compile "$LINENO"; then : -+ glibcxx_cv_unlinkat=yes -+else -+ glibcxx_cv_unlinkat=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ #include -+int -+main () -+{ -+::unlinkat(AT_FDCWD, "", AT_REMOVEDIR); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_cxx_try_link "$LINENO"; then : -+ glibcxx_cv_unlinkat=yes -+else -+ glibcxx_cv_unlinkat=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_unlinkat" >&5 -+$as_echo "$glibcxx_cv_unlinkat" >&6; } -+ if test $glibcxx_cv_unlinkat = yes; then -+ -+$as_echo "@%:@define HAVE_UNLINKAT 1" >>confdefs.h -+ -+ fi -+ CXXFLAGS="$ac_save_CXXFLAGS" -+ ac_ext=c -+ac_cpp='$CPP $CPPFLAGS' -+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -+ac_compiler_gnu=$ac_cv_c_compiler_gnu -+ -+ -+ -+ -+ @%:@ Check whether --enable-libstdcxx-backtrace was given. -+if test "${enable_libstdcxx_backtrace+set}" = set; then : -+ enableval=$enable_libstdcxx_backtrace; -+ case "$enableval" in -+ yes|no|auto) ;; -+ *) as_fn_error $? "Unknown argument to enable/disable libstdcxx-backtrace" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_libstdcxx_backtrace=auto -+fi -+ -+ -+ -+ # Most of this is adapted from libsanitizer/configure.ac -+ -+ BACKTRACE_CPPFLAGS= -+ -+ # libbacktrace only needs atomics for int, which we've already tested -+ if test "$glibcxx_cv_atomic_int" = "yes"; then -+ BACKTRACE_CPPFLAGS="$BACKTRACE_CPPFLAGS -DHAVE_ATOMIC_FUNCTIONS=1" -+ fi -+ -+ # Test for __sync support. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking __sync extensions" >&5 -+$as_echo_n "checking __sync extensions... " >&6; } -+if ${glibcxx_cv_sys_sync+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test x$gcc_no_link = xyes; then -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+int i; -+int -+main () -+{ -+__sync_bool_compare_and_swap (&i, i, i); -+ __sync_lock_test_and_set (&i, 1); -+ __sync_lock_release (&i); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_sys_sync=yes -+else -+ glibcxx_cv_sys_sync=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+else -+ if test x$gcc_no_link = xyes; then -+ as_fn_error $? "Link tests are not allowed after GCC_NO_EXECUTABLES." "$LINENO" 5 -+fi -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+int i; -+int -+main () -+{ -+__sync_bool_compare_and_swap (&i, i, i); -+ __sync_lock_test_and_set (&i, 1); -+ __sync_lock_release (&i); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_link "$LINENO"; then : -+ glibcxx_cv_sys_sync=yes -+else -+ glibcxx_cv_sys_sync=no -+fi -+rm -f core conftest.err conftest.$ac_objext \ -+ conftest$ac_exeext conftest.$ac_ext -+fi -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_sys_sync" >&5 -+$as_echo "$glibcxx_cv_sys_sync" >&6; } -+ if test "$glibcxx_cv_sys_sync" = "yes"; then -+ BACKTRACE_CPPFLAGS="$BACKTRACE_CPPFLAGS -DHAVE_SYNC_FUNCTIONS=1" -+ fi -+ -+ # Check for dl_iterate_phdr. -+ for ac_header in link.h -+do : -+ ac_fn_c_check_header_mongrel "$LINENO" "link.h" "ac_cv_header_link_h" "$ac_includes_default" -+if test "x$ac_cv_header_link_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_LINK_H 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ if test "$ac_cv_header_link_h" = "no"; then -+ have_dl_iterate_phdr=no -+ else -+ # When built as a GCC target library, we can't do a link test. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include -+ -+_ACEOF -+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | -+ $EGREP "dl_iterate_phdr" >/dev/null 2>&1; then : -+ have_dl_iterate_phdr=yes -+else -+ have_dl_iterate_phdr=no -+fi -+rm -f conftest* -+ -+ fi -+ if test "$have_dl_iterate_phdr" = "yes"; then -+ BACKTRACE_CPPFLAGS="$BACKTRACE_CPPFLAGS -DHAVE_DL_ITERATE_PHDR=1" -+ fi -+ -+ # Check for the fcntl function. -+ if test -n "${with_target_subdir}"; then -+ case "${host}" in -+ *-*-mingw*) have_fcntl=no ;; -+ *) have_fcntl=yes ;; -+ esac -+ else -+ ac_fn_c_check_func "$LINENO" "fcntl" "ac_cv_func_fcntl" -+if test "x$ac_cv_func_fcntl" = xyes; then : -+ have_fcntl=yes -+else -+ have_fcntl=no -+fi -+ -+ fi -+ if test "$have_fcntl" = "yes"; then -+ BACKTRACE_CPPFLAGS="$BACKTRACE_CPPFLAGS -DHAVE_FCNTL=1" -+ fi -+ -+ ac_fn_c_check_decl "$LINENO" "strnlen" "ac_cv_have_decl_strnlen" "$ac_includes_default" -+if test "x$ac_cv_have_decl_strnlen" = xyes; then : -+ ac_have_decl=1 -+else -+ ac_have_decl=0 -+fi -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_DECL_STRNLEN $ac_have_decl -+_ACEOF -+ -+ -+ # Check for getexecname function. -+ if test -n "${with_target_subdir}"; then -+ case "${host}" in -+ *-*-solaris2*) have_getexecname=yes ;; -+ *) have_getexecname=no ;; -+ esac -+ else -+ ac_fn_c_check_func "$LINENO" "getexecname" "ac_cv_func_getexecname" -+if test "x$ac_cv_func_getexecname" = xyes; then : -+ have_getexecname=yes -+else -+ have_getexecname=no -+fi -+ -+ fi -+ if test "$have_getexecname" = "yes"; then -+ BACKTRACE_CPPFLAGS="$BACKTRACE_CPPFLAGS -DHAVE_GETEXECNAME=1" -+ fi -+ -+# The library needs to be able to read the executable itself. Compile -+# a file to determine the executable format. The awk script -+# filetype.awk prints out the file type. -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking output filetype" >&5 -+$as_echo_n "checking output filetype... " >&6; } -+if ${glibcxx_cv_sys_filetype+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ filetype= -+cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+int i; -+int -+main () -+{ -+int j; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ filetype=`${AWK} -f $srcdir/../libbacktrace/filetype.awk conftest.$ac_objext` -+else -+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -+as_fn_error $? "compiler failed -+See \`config.log' for more details" "$LINENO" 5; } -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+glibcxx_cv_sys_filetype=$filetype -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_sys_filetype" >&5 -+$as_echo "$glibcxx_cv_sys_filetype" >&6; } -+ -+# Match the file type to decide what files to compile. -+FORMAT_FILE= -+case "$glibcxx_cv_sys_filetype" in -+elf*) FORMAT_FILE="elf.lo" ;; -+*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: could not determine output file type" >&5 -+$as_echo "$as_me: WARNING: could not determine output file type" >&2;} -+ FORMAT_FILE="unknown.lo" -+ enable_libstdcxx_backtrace=no -+ ;; -+esac -+ -+ -+# ELF defines. -+elfsize= -+case "$glibcxx_cv_sys_filetype" in -+elf32) elfsize=32 ;; -+elf64) elfsize=64 ;; -+esac -+BACKTRACE_CPPFLAGS="$BACKTRACE_CPPFLAGS -DBACKTRACE_ELF_SIZE=$elfsize" -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build libbacktrace support" >&5 -+$as_echo_n "checking whether to build libbacktrace support... " >&6; } -+ if test "$enable_libstdcxx_backtrace" = "auto"; then -+ enable_libstdcxx_backtrace=no -+ fi -+ if test "$enable_libstdcxx_backtrace" = "yes"; then -+ BACKTRACE_SUPPORTED=1 -+ -+ for ac_header in sys/mman.h -+do : -+ ac_fn_c_check_header_mongrel "$LINENO" "sys/mman.h" "ac_cv_header_sys_mman_h" "$ac_includes_default" -+if test "x$ac_cv_header_sys_mman_h" = xyes; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define HAVE_SYS_MMAN_H 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ case "${host}" in -+ *-*-msdosdjgpp) # DJGPP has sys/man.h, but no mmap -+ have_mmap=no ;; -+ *-*-*) -+ have_mmap="$ac_cv_header_sys_mman_h" ;; -+ esac -+ -+ if test "$have_mmap" = "no"; then -+ VIEW_FILE=read.lo -+ ALLOC_FILE=alloc.lo -+ else -+ VIEW_FILE=mmapio.lo -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+ #include -+ #if !defined(MAP_ANONYMOUS) && !defined(MAP_ANON) -+ #error no MAP_ANONYMOUS -+ #endif -+ -+_ACEOF -+if ac_fn_c_try_cpp "$LINENO"; then : -+ ALLOC_FILE=mmap.lo -+else -+ ALLOC_FILE=alloc.lo -+fi -+rm -f conftest.err conftest.i conftest.$ac_ext -+ fi -+ -+ -+ -+ BACKTRACE_USES_MALLOC=0 -+ if test "$ALLOC_FILE" = "alloc.lo"; then -+ BACKTRACE_USES_MALLOC=1 -+ fi -+ -+ if test "$ac_has_gthreads" = "yes"; then -+ BACKTRACE_SUPPORTS_THREADS=1 -+ else -+ BACKTRACE_SUPPORTS_THREADS=0 -+ fi -+ -+ -+ -+ -+ -+$as_echo "@%:@define HAVE_STACKTRACE 1" >>confdefs.h -+ -+ else -+ BACKTRACE_SUPPORTED=0 -+ BACKTRACE_USES_MALLOC=0 -+ BACKTRACE_SUPPORTS_THREADS=0 -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_libstdcxx_backtrace" >&5 -+$as_echo "$enable_libstdcxx_backtrace" >&6; } -+ -+ -+ -+# For Networking TS. -+for ac_header in fcntl.h sys/ioctl.h sys/socket.h sys/uio.h poll.h netdb.h arpa/inet.h netinet/in.h netinet/tcp.h -+do : -+ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -+ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -+if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : -+ cat >>confdefs.h <<_ACEOF -+@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -+_ACEOF -+ -+fi -+ -+done -+ -+ac_fn_c_check_decl "$LINENO" "F_GETFL" "ac_cv_have_decl_F_GETFL" "#include -+" -+if test "x$ac_cv_have_decl_F_GETFL" = xyes; then : -+ -+fi -+ -+ac_fn_c_check_decl "$LINENO" "F_SETFL" "ac_cv_have_decl_F_SETFL" "#include -+" -+if test "x$ac_cv_have_decl_F_SETFL" = xyes; then : -+ -+fi -+ -+if test "$ac_cv_have_decl_F_GETFL$ac_cv_have_decl_F_SETFL" = yesyes ; then -+ ac_fn_c_check_decl "$LINENO" "O_NONBLOCK" "ac_cv_have_decl_O_NONBLOCK" "#include -+" -+if test "x$ac_cv_have_decl_O_NONBLOCK" = xyes; then : -+ -+fi -+ -+fi -+ -+# For Transactional Memory TS -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how size_t is mangled" >&5 -+$as_echo_n "checking how size_t is mangled... " >&6; } -+if ${glibcxx_cv_size_t_mangling+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+extern __SIZE_TYPE__ x; extern unsigned long x; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_size_t_mangling=m -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+extern __SIZE_TYPE__ x; extern unsigned int x; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_size_t_mangling=j -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+extern __SIZE_TYPE__ x; extern unsigned long long x; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_size_t_mangling=y -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+extern __SIZE_TYPE__ x; extern unsigned short x; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_size_t_mangling=t -+else -+ -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+extern __SIZE_TYPE__ x; extern __int20 unsigned x; -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ glibcxx_cv_size_t_mangling=u6uint20 -+else -+ glibcxx_cv_size_t_mangling=x -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_size_t_mangling" >&5 -+$as_echo "$glibcxx_cv_size_t_mangling" >&6; } -+ if test $glibcxx_cv_size_t_mangling = x; then -+ as_fn_error $? "Unknown underlying type for size_t" "$LINENO" 5 -+ fi -+ -+cat >>confdefs.h <<_ACEOF -+@%:@define _GLIBCXX_MANGLE_SIZE_T $glibcxx_cv_size_t_mangling -+_ACEOF -+ -+ -+ -+# Check which release added std::exception_ptr for the target -+ -+ if test $enable_symvers != no; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for first version to support std::exception_ptr" >&5 -+$as_echo_n "checking for first version to support std::exception_ptr... " >&6; } -+ case ${target} in -+ aarch64-*-* | alpha-*-* | hppa*-*-* | i?86-*-* | x86_64-*-* | \ -+ m68k-*-* | powerpc*-*-* | s390*-*-* | *-*-solaris* ) -+ ac_exception_ptr_since_gcc46=yes -+ ;; -+ *) -+ # If the value of this macro changes then we will need to hardcode -+ # yes/no here for additional targets based on the original value. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+ #if __GCC_ATOMIC_INT_LOCK_FREE <= 1 -+ # error atomic int not always lock free -+ #endif -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ ac_exception_ptr_since_gcc46=yes -+else -+ ac_exception_ptr_since_gcc46=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ;; -+ esac -+ if test x"$ac_exception_ptr_since_gcc46" = x"yes" ; then -+ -+$as_echo "@%:@define HAVE_EXCEPTION_PTR_SINCE_GCC46 1" >>confdefs.h -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: 4.6.0" >&5 -+$as_echo "4.6.0" >&6; } -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: 7.1.0" >&5 -+$as_echo "7.1.0" >&6; } -+ fi -+ fi -+ -+ -+# Define documentation rules conditionally. -+ -+# See if makeinfo has been installed and is modern enough -+# that we can use it. -+ -+ # Extract the first word of "makeinfo", so it can be a program name with args. -+set dummy makeinfo; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_MAKEINFO+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$MAKEINFO"; then -+ ac_cv_prog_MAKEINFO="$MAKEINFO" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_MAKEINFO="makeinfo" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+fi -+fi -+MAKEINFO=$ac_cv_prog_MAKEINFO -+if test -n "$MAKEINFO"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAKEINFO" >&5 -+$as_echo "$MAKEINFO" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ if test -n "$MAKEINFO"; then -+ # Found it, now check the version. -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modern makeinfo" >&5 -+$as_echo_n "checking for modern makeinfo... " >&6; } -+if ${gcc_cv_prog_makeinfo_modern+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ ac_prog_version=`eval $MAKEINFO --version 2>&1 | -+ sed -n 's/^.*GNU texinfo.* \([0-9][0-9.]*\).*$/\1/p'` -+ -+ case $ac_prog_version in -+ '') gcc_cv_prog_makeinfo_modern=no;; -+ 4.[4-9]*|4.[1-9][0-9]*|[5-9]*|[1-9][0-9]*) gcc_cv_prog_makeinfo_modern=yes;; -+ *) gcc_cv_prog_makeinfo_modern=no;; -+ esac -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gcc_cv_prog_makeinfo_modern" >&5 -+$as_echo "$gcc_cv_prog_makeinfo_modern" >&6; } -+ else -+ gcc_cv_prog_makeinfo_modern=no -+ fi -+ if test $gcc_cv_prog_makeinfo_modern = no; then -+ MAKEINFO="${CONFIG_SHELL-/bin/sh} $ac_aux_dir/missing makeinfo" -+ fi -+ -+ if test $gcc_cv_prog_makeinfo_modern = "yes"; then -+ BUILD_INFO_TRUE= -+ BUILD_INFO_FALSE='#' -+else -+ BUILD_INFO_TRUE='#' -+ BUILD_INFO_FALSE= -+fi -+ -+ -+# Check for doxygen -+# Extract the first word of "doxygen", so it can be a program name with args. -+set dummy doxygen; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_DOXYGEN+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$DOXYGEN"; then -+ ac_cv_prog_DOXYGEN="$DOXYGEN" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_DOXYGEN="yes" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+ test -z "$ac_cv_prog_DOXYGEN" && ac_cv_prog_DOXYGEN="no" -+fi -+fi -+DOXYGEN=$ac_cv_prog_DOXYGEN -+if test -n "$DOXYGEN"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DOXYGEN" >&5 -+$as_echo "$DOXYGEN" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+# Extract the first word of "dot", so it can be a program name with args. -+set dummy dot; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_DOT+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$DOT"; then -+ ac_cv_prog_DOT="$DOT" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_DOT="yes" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+ test -z "$ac_cv_prog_DOT" && ac_cv_prog_DOT="no" -+fi -+fi -+DOT=$ac_cv_prog_DOT -+if test -n "$DOT"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DOT" >&5 -+$as_echo "$DOT" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ -+# Check for docbook -+# Extract the first word of "xmlcatalog", so it can be a program name with args. -+set dummy xmlcatalog; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_XMLCATALOG+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$XMLCATALOG"; then -+ ac_cv_prog_XMLCATALOG="$XMLCATALOG" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_XMLCATALOG="yes" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+ test -z "$ac_cv_prog_XMLCATALOG" && ac_cv_prog_XMLCATALOG="no" -+fi -+fi -+XMLCATALOG=$ac_cv_prog_XMLCATALOG -+if test -n "$XMLCATALOG"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XMLCATALOG" >&5 -+$as_echo "$XMLCATALOG" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+# Extract the first word of "xsltproc", so it can be a program name with args. -+set dummy xsltproc; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_XSLTPROC+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$XSLTPROC"; then -+ ac_cv_prog_XSLTPROC="$XSLTPROC" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_XSLTPROC="yes" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+ test -z "$ac_cv_prog_XSLTPROC" && ac_cv_prog_XSLTPROC="no" -+fi -+fi -+XSLTPROC=$ac_cv_prog_XSLTPROC -+if test -n "$XSLTPROC"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XSLTPROC" >&5 -+$as_echo "$XSLTPROC" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+# Extract the first word of "xmllint", so it can be a program name with args. -+set dummy xmllint; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_XMLLINT+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$XMLLINT"; then -+ ac_cv_prog_XMLLINT="$XMLLINT" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_XMLLINT="yes" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+ test -z "$ac_cv_prog_XMLLINT" && ac_cv_prog_XMLLINT="no" -+fi -+fi -+XMLLINT=$ac_cv_prog_XMLLINT -+if test -n "$XMLLINT"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XMLLINT" >&5 -+$as_echo "$XMLLINT" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ -+ -+glibcxx_docbook_url=http://docbook.sourceforge.net/release/xsl-ns/current/ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for local stylesheet directory" >&5 -+$as_echo_n "checking for local stylesheet directory... " >&6; } -+glibcxx_local_stylesheets=no -+if test x${XMLCATALOG} = xyes && xsl_style_dir=`xmlcatalog "" $glibcxx_docbook_url 2>/dev/null` -+then -+ XSL_STYLE_DIR=`echo $xsl_style_dir | sed -n 's;^file://;;p'` -+ glibcxx_local_stylesheets=yes -+else -+ for dir in \ -+ /usr/share/sgml/docbook/xsl-ns-stylesheets \ -+ /usr/share/xml/docbook/stylesheet/docbook-xsl-ns \ -+ /usr/share/xml/docbook/stylesheet/nwalsh5/current \ -+ /usr/share/xml/docbook/stylesheet/nwalsh/current -+ do -+ if test -d $dir; then -+ glibcxx_local_stylesheets=yes -+ XSL_STYLE_DIR=$dir -+ break -+ fi -+ done -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_local_stylesheets" >&5 -+$as_echo "$glibcxx_local_stylesheets" >&6; } -+ -+if test x"$glibcxx_local_stylesheets" = x"yes"; then -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: $XSL_STYLE_DIR" >&5 -+$as_echo "$as_me: $XSL_STYLE_DIR" >&6;} -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for docbook stylesheets for documentation creation" >&5 -+$as_echo_n "checking for docbook stylesheets for documentation creation... " >&6; } -+ glibcxx_stylesheets=no -+ if test x${XMLCATALOG} = xno || xmlcatalog "" $glibcxx_docbook_url/xhtml/docbook.xsl >/dev/null 2>&1; then -+ if test x${XSLTPROC} = xyes && echo '' | xsltproc --noout --nonet --xinclude $glibcxx_docbook_url/xhtml/docbook.xsl - 2>/dev/null; then -+ glibcxx_stylesheets=yes -+ fi -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_stylesheets" >&5 -+$as_echo "$glibcxx_stylesheets" >&6; } -+ -+else -+ glibcxx_stylesheets=no -+fi -+ -+# Check for epub3 dependencies. -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for epub3 stylesheets for documentation creation" >&5 -+$as_echo_n "checking for epub3 stylesheets for documentation creation... " >&6; } -+glibcxx_epub_stylesheets=no -+if test x"$glibcxx_local_stylesheets" = x"yes"; then -+ if test -f "$XSL_STYLE_DIR/epub3/chunk.xsl"; then -+ glibcxx_epub_stylesheets=yes -+ fi -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_epub_stylesheets" >&5 -+$as_echo "$glibcxx_epub_stylesheets" >&6; } -+ if test x"$glibcxx_epub_stylesheets" = x"yes"; then -+ BUILD_EPUB_TRUE= -+ BUILD_EPUB_FALSE='#' -+else -+ BUILD_EPUB_TRUE='#' -+ BUILD_EPUB_FALSE= -+fi -+ -+ -+ -+ -+# Check for xml/html dependencies. -+ if test $ac_cv_prog_DOXYGEN = "yes" && -+ test $ac_cv_prog_DOT = "yes" && -+ test $ac_cv_prog_XSLTPROC = "yes" && -+ test $ac_cv_prog_XMLLINT = "yes" && -+ test $glibcxx_stylesheets = "yes"; then -+ BUILD_XML_TRUE= -+ BUILD_XML_FALSE='#' -+else -+ BUILD_XML_TRUE='#' -+ BUILD_XML_FALSE= -+fi -+ -+ -+ if test $ac_cv_prog_DOXYGEN = "yes" && -+ test $ac_cv_prog_DOT = "yes" && -+ test $ac_cv_prog_XSLTPROC = "yes" && -+ test $ac_cv_prog_XMLLINT = "yes" && -+ test $glibcxx_stylesheets = "yes"; then -+ BUILD_HTML_TRUE= -+ BUILD_HTML_FALSE='#' -+else -+ BUILD_HTML_TRUE='#' -+ BUILD_HTML_FALSE= -+fi -+ -+ -+# Check for man dependencies. -+ if test $ac_cv_prog_DOXYGEN = "yes" && -+ test $ac_cv_prog_DOT = "yes"; then -+ BUILD_MAN_TRUE= -+ BUILD_MAN_FALSE='#' -+else -+ BUILD_MAN_TRUE='#' -+ BUILD_MAN_FALSE= -+fi -+ -+ -+# Check for pdf dependencies. -+# Extract the first word of "dblatex", so it can be a program name with args. -+set dummy dblatex; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_DBLATEX+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$DBLATEX"; then -+ ac_cv_prog_DBLATEX="$DBLATEX" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_DBLATEX="yes" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+ test -z "$ac_cv_prog_DBLATEX" && ac_cv_prog_DBLATEX="no" -+fi -+fi -+DBLATEX=$ac_cv_prog_DBLATEX -+if test -n "$DBLATEX"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DBLATEX" >&5 -+$as_echo "$DBLATEX" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+# Extract the first word of "pdflatex", so it can be a program name with args. -+set dummy pdflatex; ac_word=$2 -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -+$as_echo_n "checking for $ac_word... " >&6; } -+if ${ac_cv_prog_PDFLATEX+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ if test -n "$PDFLATEX"; then -+ ac_cv_prog_PDFLATEX="$PDFLATEX" # Let the user override the test. -+else -+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ for ac_exec_ext in '' $ac_executable_extensions; do -+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -+ ac_cv_prog_PDFLATEX="yes" -+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -+ break 2 -+ fi -+done -+ done -+IFS=$as_save_IFS -+ -+ test -z "$ac_cv_prog_PDFLATEX" && ac_cv_prog_PDFLATEX="no" -+fi -+fi -+PDFLATEX=$ac_cv_prog_PDFLATEX -+if test -n "$PDFLATEX"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PDFLATEX" >&5 -+$as_echo "$PDFLATEX" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+ -+ if test $ac_cv_prog_DOXYGEN = "yes" && -+ test $ac_cv_prog_DOT = "yes" && -+ test $ac_cv_prog_XSLTPROC = "yes" && -+ test $ac_cv_prog_XMLLINT = "yes" && -+ test $ac_cv_prog_DBLATEX = "yes" && -+ test $ac_cv_prog_PDFLATEX = "yes"; then -+ BUILD_PDF_TRUE= -+ BUILD_PDF_FALSE='#' -+else -+ BUILD_PDF_TRUE='#' -+ BUILD_PDF_FALSE= -+fi -+ -+ -+case "$build" in -+ *-*-darwin* ) glibcxx_include_dir_notparallel=yes ;; -+ * ) glibcxx_include_dir_notparallel=no ;; -+esac -+ if test $glibcxx_include_dir_notparallel = "yes"; then -+ INCLUDE_DIR_NOTPARALLEL_TRUE= -+ INCLUDE_DIR_NOTPARALLEL_FALSE='#' -+else -+ INCLUDE_DIR_NOTPARALLEL_TRUE='#' -+ INCLUDE_DIR_NOTPARALLEL_FALSE= -+fi -+ -+ -+# Propagate the target-specific source directories through the build chain. -+ATOMICITY_SRCDIR=config/${atomicity_dir} -+ATOMIC_WORD_SRCDIR=config/${atomic_word_dir} -+ATOMIC_FLAGS=${atomic_flags} -+CPU_DEFINES_SRCDIR=config/${cpu_defines_dir} -+OS_INC_SRCDIR=config/${os_include_dir} -+ERROR_CONSTANTS_SRCDIR=config/${error_constants_dir} -+ABI_TWEAKS_SRCDIR=config/${abi_tweaks_dir} -+CPU_OPT_EXT_RANDOM=config/${cpu_opt_ext_random} -+CPU_OPT_BITS_RANDOM=config/${cpu_opt_bits_random} -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+# Conditionalize the makefile for this target machine. -+tmake_file_= -+for f in ${tmake_file} -+do -+ if test -f ${srcdir}/config/$f -+ then -+ tmake_file_="${tmake_file_} \$(srcdir)/config/$f" -+ fi -+done -+tmake_file="${tmake_file_}" -+ -+ -+# Add CET specific flags if Intel CET is enabled. -+ @%:@ Check whether --enable-cet was given. -+if test "${enable_cet+set}" = set; then : -+ enableval=$enable_cet; -+ case "$enableval" in -+ yes|no|auto) ;; -+ *) as_fn_error $? "Unknown argument to enable/disable cet" "$LINENO" 5 ;; -+ esac -+ -+else -+ enable_cet=auto -+fi -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for CET support" >&5 -+$as_echo_n "checking for CET support... " >&6; } -+ -+# NB: Avoid nested save_CFLAGS and save_LDFLAGS. -+case "$host" in -+ i[34567]86-*-linux* | x86_64-*-linux*) -+ case "$enable_cet" in -+ auto) -+ # Check if target supports multi-byte NOPs -+ # and if compiler and assembler support CET insn. -+ cet_save_CFLAGS="$CFLAGS" -+ CFLAGS="$CFLAGS -fcf-protection" -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+ -+#if !defined(__SSE2__) -+#error target does not support multi-byte NOPs -+#else -+asm ("setssbsy"); -+#endif -+ -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ enable_cet=yes -+else -+ enable_cet=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ CFLAGS="$cet_save_CFLAGS" -+ ;; -+ yes) -+ # Check if assembler supports CET. -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+int -+main () -+{ -+asm ("setssbsy"); -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ -+else -+ as_fn_error $? "assembler with CET support is required for --enable-cet" "$LINENO" 5 -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+ ;; -+ esac -+ ;; -+ *) -+ enable_cet=no -+ ;; -+esac -+if test x$enable_cet = xyes; then -+ CET_FLAGS="-fcf-protection -mshstk" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -+$as_echo "yes" >&6; } -+else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -+$as_echo "no" >&6; } -+fi -+ -+EXTRA_CXX_FLAGS="$EXTRA_CXX_FLAGS $CET_FLAGS" -+EXTRA_CFLAGS="$EXTRA_CFLAGS $CET_FLAGS" -+ -+ -+ -+# Determine cross-compile flags and AM_CONDITIONALs. -+#AC_SUBST(GLIBCXX_IS_NATIVE) -+#AM_CONDITIONAL(CANADIAN, test $CANADIAN = yes) -+ if test $is_hosted = yes; then -+ GLIBCXX_HOSTED_TRUE= -+ GLIBCXX_HOSTED_FALSE='#' -+else -+ GLIBCXX_HOSTED_TRUE='#' -+ GLIBCXX_HOSTED_FALSE= -+fi -+ -+ -+ if test $enable_libstdcxx_pch = yes; then -+ GLIBCXX_BUILD_PCH_TRUE= -+ GLIBCXX_BUILD_PCH_FALSE='#' -+else -+ GLIBCXX_BUILD_PCH_TRUE='#' -+ GLIBCXX_BUILD_PCH_FALSE= -+fi -+ -+ -+ if test $enable_float128 = yes; then -+ ENABLE_FLOAT128_TRUE= -+ ENABLE_FLOAT128_FALSE='#' -+else -+ ENABLE_FLOAT128_TRUE='#' -+ ENABLE_FLOAT128_FALSE= -+fi -+ -+ -+ if test $enable_libstdcxx_allocator_flag = new; then -+ ENABLE_ALLOCATOR_NEW_TRUE= -+ ENABLE_ALLOCATOR_NEW_FALSE='#' -+else -+ ENABLE_ALLOCATOR_NEW_TRUE='#' -+ ENABLE_ALLOCATOR_NEW_FALSE= -+fi -+ -+ -+ if test $enable_cheaders = c; then -+ GLIBCXX_C_HEADERS_C_TRUE= -+ GLIBCXX_C_HEADERS_C_FALSE='#' -+else -+ GLIBCXX_C_HEADERS_C_TRUE='#' -+ GLIBCXX_C_HEADERS_C_FALSE= -+fi -+ -+ -+ if test $enable_cheaders = c_std; then -+ GLIBCXX_C_HEADERS_C_STD_TRUE= -+ GLIBCXX_C_HEADERS_C_STD_FALSE='#' -+else -+ GLIBCXX_C_HEADERS_C_STD_TRUE='#' -+ GLIBCXX_C_HEADERS_C_STD_FALSE= -+fi -+ -+ -+ if test $enable_cheaders = c_global; then -+ GLIBCXX_C_HEADERS_C_GLOBAL_TRUE= -+ GLIBCXX_C_HEADERS_C_GLOBAL_FALSE='#' -+else -+ GLIBCXX_C_HEADERS_C_GLOBAL_TRUE='#' -+ GLIBCXX_C_HEADERS_C_GLOBAL_FALSE= -+fi -+ -+ -+ if test $c_compatibility = yes; then -+ GLIBCXX_C_HEADERS_COMPATIBILITY_TRUE= -+ GLIBCXX_C_HEADERS_COMPATIBILITY_FALSE='#' -+else -+ GLIBCXX_C_HEADERS_COMPATIBILITY_TRUE='#' -+ GLIBCXX_C_HEADERS_COMPATIBILITY_FALSE= -+fi -+ -+ -+ if test $enable_libstdcxx_debug = yes; then -+ GLIBCXX_BUILD_DEBUG_TRUE= -+ GLIBCXX_BUILD_DEBUG_FALSE='#' -+else -+ GLIBCXX_BUILD_DEBUG_TRUE='#' -+ GLIBCXX_BUILD_DEBUG_FALSE= -+fi -+ -+ -+ if test $enable_extern_template = yes; then -+ ENABLE_EXTERN_TEMPLATE_TRUE= -+ ENABLE_EXTERN_TEMPLATE_FALSE='#' -+else -+ ENABLE_EXTERN_TEMPLATE_TRUE='#' -+ ENABLE_EXTERN_TEMPLATE_FALSE= -+fi -+ -+ -+ if test $python_mod_dir != no; then -+ ENABLE_PYTHONDIR_TRUE= -+ ENABLE_PYTHONDIR_FALSE='#' -+else -+ ENABLE_PYTHONDIR_TRUE='#' -+ ENABLE_PYTHONDIR_FALSE= -+fi -+ -+ -+ if test $enable_werror = yes; then -+ ENABLE_WERROR_TRUE= -+ ENABLE_WERROR_FALSE='#' -+else -+ ENABLE_WERROR_TRUE='#' -+ ENABLE_WERROR_FALSE= -+fi -+ -+ -+ if test $enable_vtable_verify = yes; then -+ ENABLE_VTABLE_VERIFY_TRUE= -+ ENABLE_VTABLE_VERIFY_FALSE='#' -+else -+ ENABLE_VTABLE_VERIFY_TRUE='#' -+ ENABLE_VTABLE_VERIFY_FALSE= -+fi -+ -+ -+ if test $enable_symvers != no; then -+ ENABLE_SYMVERS_TRUE= -+ ENABLE_SYMVERS_FALSE='#' -+else -+ ENABLE_SYMVERS_TRUE='#' -+ ENABLE_SYMVERS_FALSE= -+fi -+ -+ -+ if test $enable_symvers = gnu; then -+ ENABLE_SYMVERS_GNU_TRUE= -+ ENABLE_SYMVERS_GNU_FALSE='#' -+else -+ ENABLE_SYMVERS_GNU_TRUE='#' -+ ENABLE_SYMVERS_GNU_FALSE= -+fi -+ -+ -+ if test $enable_symvers = gnu-versioned-namespace; then -+ ENABLE_SYMVERS_GNU_NAMESPACE_TRUE= -+ ENABLE_SYMVERS_GNU_NAMESPACE_FALSE='#' -+else -+ ENABLE_SYMVERS_GNU_NAMESPACE_TRUE='#' -+ ENABLE_SYMVERS_GNU_NAMESPACE_FALSE= -+fi -+ -+ -+ if test $enable_symvers = darwin; then -+ ENABLE_SYMVERS_DARWIN_TRUE= -+ ENABLE_SYMVERS_DARWIN_FALSE='#' -+else -+ ENABLE_SYMVERS_DARWIN_TRUE='#' -+ ENABLE_SYMVERS_DARWIN_FALSE= -+fi -+ -+ -+ if test $enable_symvers = sun; then -+ ENABLE_SYMVERS_SUN_TRUE= -+ ENABLE_SYMVERS_SUN_FALSE='#' -+else -+ ENABLE_SYMVERS_SUN_TRUE='#' -+ ENABLE_SYMVERS_SUN_FALSE= -+fi -+ -+ -+ if test $enable_libstdcxx_visibility = yes; then -+ ENABLE_VISIBILITY_TRUE= -+ ENABLE_VISIBILITY_FALSE='#' -+else -+ ENABLE_VISIBILITY_TRUE='#' -+ ENABLE_VISIBILITY_FALSE= -+fi -+ -+ -+ if test $enable_libstdcxx_dual_abi = yes; then -+ ENABLE_DUAL_ABI_TRUE= -+ ENABLE_DUAL_ABI_FALSE='#' -+else -+ ENABLE_DUAL_ABI_TRUE='#' -+ ENABLE_DUAL_ABI_FALSE= -+fi -+ -+ -+ if test $glibcxx_cxx11_abi = 1; then -+ ENABLE_CXX11_ABI_TRUE= -+ ENABLE_CXX11_ABI_FALSE='#' -+else -+ ENABLE_CXX11_ABI_TRUE='#' -+ ENABLE_CXX11_ABI_FALSE= -+fi -+ -+ -+ if test $ac_ldbl_compat = yes; then -+ GLIBCXX_LDBL_COMPAT_TRUE= -+ GLIBCXX_LDBL_COMPAT_FALSE='#' -+else -+ GLIBCXX_LDBL_COMPAT_TRUE='#' -+ GLIBCXX_LDBL_COMPAT_FALSE= -+fi -+ -+ -+ if test $ac_ldbl_alt128_compat = yes; then -+ GLIBCXX_LDBL_ALT128_COMPAT_TRUE= -+ GLIBCXX_LDBL_ALT128_COMPAT_FALSE='#' -+else -+ GLIBCXX_LDBL_ALT128_COMPAT_TRUE='#' -+ GLIBCXX_LDBL_ALT128_COMPAT_FALSE= -+fi -+ -+ -+ if test $enable_libstdcxx_filesystem_ts = yes; then -+ ENABLE_FILESYSTEM_TS_TRUE= -+ ENABLE_FILESYSTEM_TS_FALSE='#' -+else -+ ENABLE_FILESYSTEM_TS_TRUE='#' -+ ENABLE_FILESYSTEM_TS_FALSE= -+fi -+ -+ -+ if test "$enable_libstdcxx_backtrace" = yes; then -+ ENABLE_BACKTRACE_TRUE= -+ ENABLE_BACKTRACE_FALSE='#' -+else -+ ENABLE_BACKTRACE_TRUE='#' -+ ENABLE_BACKTRACE_FALSE= -+fi -+ -+ -+ -+ -+cat >confcache <<\_ACEOF -+# This file is a shell script that caches the results of configure -+# tests run on this system so they can be shared between configure -+# scripts and configure runs, see configure's option --config-cache. -+# It is not useful on other systems. If it contains results you don't -+# want to keep, you may remove or edit it. -+# -+# config.status only pays attention to the cache file if you give it -+# the --recheck option to rerun configure. -+# -+# `ac_cv_env_foo' variables (set or unset) will be overridden when -+# loading this file, other *unset* `ac_cv_foo' will be assigned the -+# following values. -+ -+_ACEOF -+ -+# The following way of writing the cache mishandles newlines in values, -+# but we know of no workaround that is simple, portable, and efficient. -+# So, we kill variables containing newlines. -+# Ultrix sh set writes to stderr and can't be redirected directly, -+# and sets the high bit in the cache file unless we assign to the vars. -+( -+ for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do -+ eval ac_val=\$$ac_var -+ case $ac_val in #( -+ *${as_nl}*) -+ case $ac_var in #( -+ *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; -+ esac -+ case $ac_var in #( -+ _ | IFS | as_nl) ;; #( -+ BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( -+ *) { eval $ac_var=; unset $ac_var;} ;; -+ esac ;; -+ esac -+ done -+ -+ (set) 2>&1 | -+ case $as_nl`(ac_space=' '; set) 2>&1` in #( -+ *${as_nl}ac_space=\ *) -+ # `set' does not quote correctly, so add quotes: double-quote -+ # substitution turns \\\\ into \\, and sed turns \\ into \. -+ sed -n \ -+ "s/'/'\\\\''/g; -+ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" -+ ;; #( -+ *) -+ # `set' quotes correctly as required by POSIX, so do not add quotes. -+ sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" -+ ;; -+ esac | -+ sort -+) | -+ sed ' -+ /^ac_cv_env_/b end -+ t clear -+ :clear -+ s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ -+ t end -+ s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ -+ :end' >>confcache -+if diff "$cache_file" confcache >/dev/null 2>&1; then :; else -+ if test -w "$cache_file"; then -+ if test "x$cache_file" != "x/dev/null"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 -+$as_echo "$as_me: updating cache $cache_file" >&6;} -+ if test ! -f "$cache_file" || test -h "$cache_file"; then -+ cat confcache >"$cache_file" -+ else -+ case $cache_file in #( -+ */* | ?:*) -+ mv -f confcache "$cache_file"$$ && -+ mv -f "$cache_file"$$ "$cache_file" ;; #( -+ *) -+ mv -f confcache "$cache_file" ;; -+ esac -+ fi -+ fi -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 -+$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} -+ fi -+fi -+rm -f confcache -+ -+if test ${multilib} = yes; then -+ multilib_arg="--enable-multilib" -+else -+ multilib_arg= -+fi -+ -+# Export all the install information. -+ -+ glibcxx_toolexecdir=no -+ glibcxx_toolexeclibdir=no -+ glibcxx_prefixdir=$prefix -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gxx-include-dir" >&5 -+$as_echo_n "checking for gxx-include-dir... " >&6; } -+ -+@%:@ Check whether --with-gxx-include-dir was given. -+if test "${with_gxx_include_dir+set}" = set; then : -+ withval=$with_gxx_include_dir; case "$withval" in -+ yes) as_fn_error $? "Missing directory for --with-gxx-include-dir" "$LINENO" 5 ;; -+ no) gxx_include_dir=no ;; -+ *) gxx_include_dir=$withval ;; -+ esac -+else -+ gxx_include_dir=no -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gxx_include_dir" >&5 -+$as_echo "$gxx_include_dir" >&6; } -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for --enable-version-specific-runtime-libs" >&5 -+$as_echo_n "checking for --enable-version-specific-runtime-libs... " >&6; } -+ @%:@ Check whether --enable-version-specific-runtime-libs was given. -+if test "${enable_version_specific_runtime_libs+set}" = set; then : -+ enableval=$enable_version_specific_runtime_libs; case "$enableval" in -+ yes) version_specific_libs=yes ;; -+ no) version_specific_libs=no ;; -+ *) as_fn_error $? "Unknown argument to enable/disable version-specific libs" "$LINENO" 5;; -+ esac -+else -+ version_specific_libs=no -+fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $version_specific_libs" >&5 -+$as_echo "$version_specific_libs" >&6; } -+ -+ -+@%:@ Check whether --with-toolexeclibdir was given. -+if test "${with_toolexeclibdir+set}" = set; then : -+ withval=$with_toolexeclibdir; case ${with_toolexeclibdir} in -+ /) -+ ;; -+ */) -+ with_toolexeclibdir=`echo $with_toolexeclibdir | sed 's,/$,,'` -+ ;; -+esac -+else -+ with_toolexeclibdir=no -+fi -+ -+ -+ -+ # Default case for install directory for include files. -+ if test $version_specific_libs = no && test $gxx_include_dir = no; then -+ gxx_include_dir='include/c++/${gcc_version}' -+ if test -n "$with_cross_host" && -+ test x"$with_cross_host" != x"no"; then -+ gxx_include_dir='${prefix}/${target_alias}/'"$gxx_include_dir" -+ else -+ gxx_include_dir='${prefix}/'"$gxx_include_dir" -+ fi -+ fi -+ -+ # Version-specific runtime libs processing. -+ if test $version_specific_libs = yes; then -+ # Need the gcc compiler version to know where to install libraries -+ # and header files if --enable-version-specific-runtime-libs option -+ # is selected. FIXME: these variables are misnamed, there are -+ # no executables installed in _toolexecdir or _toolexeclibdir. -+ if test x"$gxx_include_dir" = x"no"; then -+ gxx_include_dir='${libdir}/gcc/${host_alias}/${gcc_version}/include/c++' -+ fi -+ glibcxx_toolexecdir='${libdir}/gcc/${host_alias}' -+ glibcxx_toolexeclibdir='${toolexecdir}/${gcc_version}$(MULTISUBDIR)' -+ fi -+ -+ # Calculate glibcxx_toolexecdir, glibcxx_toolexeclibdir -+ # Install a library built with a cross compiler in tooldir, not libdir. -+ if test x"$glibcxx_toolexecdir" = x"no"; then -+ if test -n "$with_cross_host" && -+ test x"$with_cross_host" != x"no"; then -+ glibcxx_toolexecdir='${exec_prefix}/${host_alias}' -+ case ${with_toolexeclibdir} in -+ no) -+ glibcxx_toolexeclibdir='${toolexecdir}/lib' -+ ;; -+ *) -+ glibcxx_toolexeclibdir=${with_toolexeclibdir} -+ ;; -+ esac -+ else -+ glibcxx_toolexecdir='${libdir}/gcc/${host_alias}' -+ glibcxx_toolexeclibdir='${libdir}' -+ fi -+ multi_os_directory=`$CXX -print-multi-os-directory` -+ case $multi_os_directory in -+ .) ;; # Avoid trailing /. -+ *) glibcxx_toolexeclibdir=$glibcxx_toolexeclibdir/$multi_os_directory ;; -+ esac -+ fi -+ -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for install location" >&5 -+$as_echo_n "checking for install location... " >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gxx_include_dir" >&5 -+$as_echo "$gxx_include_dir" >&6; } -+ -+ -+ -+ -+ -+ -+ -+# Export all the include and flag information to Makefiles. -+ -+ # Used for every C++ compile we perform. -+ GLIBCXX_INCLUDES="\ -+-I$glibcxx_builddir/include/$host_alias \ -+-I$glibcxx_builddir/include \ -+-I$glibcxx_srcdir/libsupc++" -+ -+ # For Canadian crosses, pick this up too. -+ if test $CANADIAN = yes; then -+ GLIBCXX_INCLUDES="$GLIBCXX_INCLUDES -I\${includedir}" -+ fi -+ -+ # Stuff in the actual top level. Currently only used by libsupc++ to -+ # get unwind* headers from the libgcc dir. -+ #TOPLEVEL_INCLUDES='-I$(toplevel_srcdir)/libgcc -I$(toplevel_srcdir)/include' -+ TOPLEVEL_INCLUDES='-I$(toplevel_srcdir)/libgcc' -+ -+ # Now, export this to all the little Makefiles.... -+ -+ -+ -+ -+ # Optimization flags that are probably a good idea for thrill-seekers. Just -+ # uncomment the lines below and make, everything else is ready to go... -+ # Alternatively OPTIMIZE_CXXFLAGS can be set in configure.host. -+ # OPTIMIZE_CXXFLAGS = -O3 -fstrict-aliasing -fvtable-gc -+ -+ -+ WARN_FLAGS="-Wall -Wextra -Wwrite-strings -Wcast-qual -Wabi=2" -+ -+ -+ -+# Determine what GCC version number to use in filesystem paths. -+ -+ get_gcc_base_ver="cat" -+ -+@%:@ Check whether --with-gcc-major-version-only was given. -+if test "${with_gcc_major_version_only+set}" = set; then : -+ withval=$with_gcc_major_version_only; if test x$with_gcc_major_version_only = xyes ; then -+ get_gcc_base_ver="sed -e 's/^\([0-9]*\).*/\1/'" -+ fi -+ -+fi -+ -+ -+ -+ -+ac_config_files="$ac_config_files Makefile" -+ -+ac_config_files="$ac_config_files scripts/testsuite_flags" -+ -+ac_config_files="$ac_config_files scripts/extract_symvers" -+ -+ac_config_files="$ac_config_files doc/xsl/customization.xsl" -+ -+ac_config_files="$ac_config_files src/libbacktrace/backtrace-supported.h" -+ -+ -+# Multilibs need MULTISUBDIR defined correctly in certain makefiles so -+# that multilib installs will end up installed in the correct place. -+# The testsuite needs it for multilib-aware ABI baseline files. -+# To work around this not being passed down from config-ml.in -> -+# srcdir/Makefile.am -> srcdir/{src,libsupc++,...}/Makefile.am, manually -+# append it here. Only modify Makefiles that have just been created. -+# -+# Also, get rid of this simulated-VPATH thing that automake does. -+ac_config_files="$ac_config_files include/Makefile libsupc++/Makefile src/Makefile src/c++98/Makefile src/c++11/Makefile src/c++17/Makefile src/c++20/Makefile src/filesystem/Makefile src/libbacktrace/Makefile doc/Makefile po/Makefile testsuite/Makefile python/Makefile" -+ -+ -+ac_config_commands="$ac_config_commands generate-headers" -+ -+ -+cat >confcache <<\_ACEOF -+# This file is a shell script that caches the results of configure -+# tests run on this system so they can be shared between configure -+# scripts and configure runs, see configure's option --config-cache. -+# It is not useful on other systems. If it contains results you don't -+# want to keep, you may remove or edit it. -+# -+# config.status only pays attention to the cache file if you give it -+# the --recheck option to rerun configure. -+# -+# `ac_cv_env_foo' variables (set or unset) will be overridden when -+# loading this file, other *unset* `ac_cv_foo' will be assigned the -+# following values. -+ -+_ACEOF -+ -+# The following way of writing the cache mishandles newlines in values, -+# but we know of no workaround that is simple, portable, and efficient. -+# So, we kill variables containing newlines. -+# Ultrix sh set writes to stderr and can't be redirected directly, -+# and sets the high bit in the cache file unless we assign to the vars. -+( -+ for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do -+ eval ac_val=\$$ac_var -+ case $ac_val in #( -+ *${as_nl}*) -+ case $ac_var in #( -+ *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; -+ esac -+ case $ac_var in #( -+ _ | IFS | as_nl) ;; #( -+ BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( -+ *) { eval $ac_var=; unset $ac_var;} ;; -+ esac ;; -+ esac -+ done -+ -+ (set) 2>&1 | -+ case $as_nl`(ac_space=' '; set) 2>&1` in #( -+ *${as_nl}ac_space=\ *) -+ # `set' does not quote correctly, so add quotes: double-quote -+ # substitution turns \\\\ into \\, and sed turns \\ into \. -+ sed -n \ -+ "s/'/'\\\\''/g; -+ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" -+ ;; #( -+ *) -+ # `set' quotes correctly as required by POSIX, so do not add quotes. -+ sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" -+ ;; -+ esac | -+ sort -+) | -+ sed ' -+ /^ac_cv_env_/b end -+ t clear -+ :clear -+ s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ -+ t end -+ s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ -+ :end' >>confcache -+if diff "$cache_file" confcache >/dev/null 2>&1; then :; else -+ if test -w "$cache_file"; then -+ if test "x$cache_file" != "x/dev/null"; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 -+$as_echo "$as_me: updating cache $cache_file" >&6;} -+ if test ! -f "$cache_file" || test -h "$cache_file"; then -+ cat confcache >"$cache_file" -+ else -+ case $cache_file in #( -+ */* | ?:*) -+ mv -f confcache "$cache_file"$$ && -+ mv -f "$cache_file"$$ "$cache_file" ;; #( -+ *) -+ mv -f confcache "$cache_file" ;; -+ esac -+ fi -+ fi -+ else -+ { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 -+$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} -+ fi -+fi -+rm -f confcache -+ -+test "x$prefix" = xNONE && prefix=$ac_default_prefix -+# Let make expand exec_prefix. -+test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' -+ -+DEFS=-DHAVE_CONFIG_H -+ -+ac_libobjs= -+ac_ltlibobjs= -+U= -+for ac_i in : $LIB@&t@OBJS; do test "x$ac_i" = x: && continue -+ # 1. Remove the extension, and $U if already installed. -+ ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' -+ ac_i=`$as_echo "$ac_i" | sed "$ac_script"` -+ # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR -+ # will be set to the directory where LIBOBJS objects are built. -+ as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" -+ as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' -+done -+LIB@&t@OBJS=$ac_libobjs -+ -+LTLIBOBJS=$ac_ltlibobjs -+ -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 -+$as_echo_n "checking that generated files are newer than configure... " >&6; } -+ if test -n "$am_sleep_pid"; then -+ # Hide warnings about reused PIDs. -+ wait $am_sleep_pid 2>/dev/null -+ fi -+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 -+$as_echo "done" >&6; } -+ if test -n "$EXEEXT"; then -+ am__EXEEXT_TRUE= -+ am__EXEEXT_FALSE='#' -+else -+ am__EXEEXT_TRUE='#' -+ am__EXEEXT_FALSE= -+fi -+ -+if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then -+ as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${GLIBCXX_HOSTED_TRUE}" && test -z "${GLIBCXX_HOSTED_FALSE}"; then -+ as_fn_error $? "conditional \"GLIBCXX_HOSTED\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${GLIBCXX_BUILD_PCH_TRUE}" && test -z "${GLIBCXX_BUILD_PCH_FALSE}"; then -+ as_fn_error $? "conditional \"GLIBCXX_BUILD_PCH\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${ENABLE_FLOAT128_TRUE}" && test -z "${ENABLE_FLOAT128_FALSE}"; then -+ as_fn_error $? "conditional \"ENABLE_FLOAT128\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${ENABLE_ALLOCATOR_NEW_TRUE}" && test -z "${ENABLE_ALLOCATOR_NEW_FALSE}"; then -+ as_fn_error $? "conditional \"ENABLE_ALLOCATOR_NEW\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${GLIBCXX_C_HEADERS_C_TRUE}" && test -z "${GLIBCXX_C_HEADERS_C_FALSE}"; then -+ as_fn_error $? "conditional \"GLIBCXX_C_HEADERS_C\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${GLIBCXX_C_HEADERS_C_STD_TRUE}" && test -z "${GLIBCXX_C_HEADERS_C_STD_FALSE}"; then -+ as_fn_error $? "conditional \"GLIBCXX_C_HEADERS_C_STD\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${GLIBCXX_C_HEADERS_C_GLOBAL_TRUE}" && test -z "${GLIBCXX_C_HEADERS_C_GLOBAL_FALSE}"; then -+ as_fn_error $? "conditional \"GLIBCXX_C_HEADERS_C_GLOBAL\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${GLIBCXX_C_HEADERS_COMPATIBILITY_TRUE}" && test -z "${GLIBCXX_C_HEADERS_COMPATIBILITY_FALSE}"; then -+ as_fn_error $? "conditional \"GLIBCXX_C_HEADERS_COMPATIBILITY\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${GLIBCXX_BUILD_DEBUG_TRUE}" && test -z "${GLIBCXX_BUILD_DEBUG_FALSE}"; then -+ as_fn_error $? "conditional \"GLIBCXX_BUILD_DEBUG\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${ENABLE_EXTERN_TEMPLATE_TRUE}" && test -z "${ENABLE_EXTERN_TEMPLATE_FALSE}"; then -+ as_fn_error $? "conditional \"ENABLE_EXTERN_TEMPLATE\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${ENABLE_PYTHONDIR_TRUE}" && test -z "${ENABLE_PYTHONDIR_FALSE}"; then -+ as_fn_error $? "conditional \"ENABLE_PYTHONDIR\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${ENABLE_WERROR_TRUE}" && test -z "${ENABLE_WERROR_FALSE}"; then -+ as_fn_error $? "conditional \"ENABLE_WERROR\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${VTV_CYGMIN_TRUE}" && test -z "${VTV_CYGMIN_FALSE}"; then -+ as_fn_error $? "conditional \"VTV_CYGMIN\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${ENABLE_VTABLE_VERIFY_TRUE}" && test -z "${ENABLE_VTABLE_VERIFY_FALSE}"; then -+ as_fn_error $? "conditional \"ENABLE_VTABLE_VERIFY\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${ENABLE_SYMVERS_TRUE}" && test -z "${ENABLE_SYMVERS_FALSE}"; then -+ as_fn_error $? "conditional \"ENABLE_SYMVERS\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${ENABLE_SYMVERS_GNU_TRUE}" && test -z "${ENABLE_SYMVERS_GNU_FALSE}"; then -+ as_fn_error $? "conditional \"ENABLE_SYMVERS_GNU\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${ENABLE_SYMVERS_GNU_NAMESPACE_TRUE}" && test -z "${ENABLE_SYMVERS_GNU_NAMESPACE_FALSE}"; then -+ as_fn_error $? "conditional \"ENABLE_SYMVERS_GNU_NAMESPACE\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${ENABLE_SYMVERS_DARWIN_TRUE}" && test -z "${ENABLE_SYMVERS_DARWIN_FALSE}"; then -+ as_fn_error $? "conditional \"ENABLE_SYMVERS_DARWIN\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${ENABLE_SYMVERS_SUN_TRUE}" && test -z "${ENABLE_SYMVERS_SUN_FALSE}"; then -+ as_fn_error $? "conditional \"ENABLE_SYMVERS_SUN\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${ENABLE_VISIBILITY_TRUE}" && test -z "${ENABLE_VISIBILITY_FALSE}"; then -+ as_fn_error $? "conditional \"ENABLE_VISIBILITY\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${ENABLE_DUAL_ABI_TRUE}" && test -z "${ENABLE_DUAL_ABI_FALSE}"; then -+ as_fn_error $? "conditional \"ENABLE_DUAL_ABI\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${ENABLE_CXX11_ABI_TRUE}" && test -z "${ENABLE_CXX11_ABI_FALSE}"; then -+ as_fn_error $? "conditional \"ENABLE_CXX11_ABI\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${GLIBCXX_LDBL_COMPAT_TRUE}" && test -z "${GLIBCXX_LDBL_COMPAT_FALSE}"; then -+ as_fn_error $? "conditional \"GLIBCXX_LDBL_COMPAT\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${GLIBCXX_LDBL_ALT128_COMPAT_TRUE}" && test -z "${GLIBCXX_LDBL_ALT128_COMPAT_FALSE}"; then -+ as_fn_error $? "conditional \"GLIBCXX_LDBL_ALT128_COMPAT\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${ENABLE_FILESYSTEM_TS_TRUE}" && test -z "${ENABLE_FILESYSTEM_TS_FALSE}"; then -+ as_fn_error $? "conditional \"ENABLE_FILESYSTEM_TS\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${ENABLE_BACKTRACE_TRUE}" && test -z "${ENABLE_BACKTRACE_FALSE}"; then -+ as_fn_error $? "conditional \"ENABLE_BACKTRACE\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${BUILD_INFO_TRUE}" && test -z "${BUILD_INFO_FALSE}"; then -+ as_fn_error $? "conditional \"BUILD_INFO\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${BUILD_EPUB_TRUE}" && test -z "${BUILD_EPUB_FALSE}"; then -+ as_fn_error $? "conditional \"BUILD_EPUB\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${BUILD_XML_TRUE}" && test -z "${BUILD_XML_FALSE}"; then -+ as_fn_error $? "conditional \"BUILD_XML\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${BUILD_HTML_TRUE}" && test -z "${BUILD_HTML_FALSE}"; then -+ as_fn_error $? "conditional \"BUILD_HTML\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${BUILD_MAN_TRUE}" && test -z "${BUILD_MAN_FALSE}"; then -+ as_fn_error $? "conditional \"BUILD_MAN\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${BUILD_PDF_TRUE}" && test -z "${BUILD_PDF_FALSE}"; then -+ as_fn_error $? "conditional \"BUILD_PDF\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+if test -z "${INCLUDE_DIR_NOTPARALLEL_TRUE}" && test -z "${INCLUDE_DIR_NOTPARALLEL_FALSE}"; then -+ as_fn_error $? "conditional \"INCLUDE_DIR_NOTPARALLEL\" was never defined. -+Usually this means the macro was only invoked conditionally." "$LINENO" 5 -+fi -+ -+: "${CONFIG_STATUS=./config.status}" -+ac_write_fail=0 -+ac_clean_files_save=$ac_clean_files -+ac_clean_files="$ac_clean_files $CONFIG_STATUS" -+{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 -+$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} -+as_write_fail=0 -+cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 -+#! $SHELL -+# Generated by $as_me. -+# Run this file to recreate the current configuration. -+# Compiler output produced by configure, useful for debugging -+# configure, is in config.log if it exists. -+ -+debug=false -+ac_cs_recheck=false -+ac_cs_silent=false -+ -+SHELL=\${CONFIG_SHELL-$SHELL} -+export SHELL -+_ASEOF -+cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 -+## -------------------- ## -+## M4sh Initialization. ## -+## -------------------- ## -+ -+# Be more Bourne compatible -+DUALCASE=1; export DUALCASE # for MKS sh -+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : -+ emulate sh -+ NULLCMD=: -+ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which -+ # is contrary to our usage. Disable this feature. -+ alias -g '${1+"$@"}'='"$@"' -+ setopt NO_GLOB_SUBST -+else -+ case `(set -o) 2>/dev/null` in @%:@( -+ *posix*) : -+ set -o posix ;; @%:@( -+ *) : -+ ;; -+esac -+fi -+ -+ -+as_nl=' -+' -+export as_nl -+# Printing a long string crashes Solaris 7 /usr/bin/printf. -+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -+# Prefer a ksh shell builtin over an external printf program on Solaris, -+# but without wasting forks for bash or zsh. -+if test -z "$BASH_VERSION$ZSH_VERSION" \ -+ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then -+ as_echo='print -r --' -+ as_echo_n='print -rn --' -+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then -+ as_echo='printf %s\n' -+ as_echo_n='printf %s' -+else -+ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then -+ as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' -+ as_echo_n='/usr/ucb/echo -n' -+ else -+ as_echo_body='eval expr "X$1" : "X\\(.*\\)"' -+ as_echo_n_body='eval -+ arg=$1; -+ case $arg in @%:@( -+ *"$as_nl"*) -+ expr "X$arg" : "X\\(.*\\)$as_nl"; -+ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; -+ esac; -+ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" -+ ' -+ export as_echo_n_body -+ as_echo_n='sh -c $as_echo_n_body as_echo' -+ fi -+ export as_echo_body -+ as_echo='sh -c $as_echo_body as_echo' -+fi -+ -+# The user is always right. -+if test "${PATH_SEPARATOR+set}" != set; then -+ PATH_SEPARATOR=: -+ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { -+ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || -+ PATH_SEPARATOR=';' -+ } -+fi -+ -+ -+# IFS -+# We need space, tab and new line, in precisely that order. Quoting is -+# there to prevent editors from complaining about space-tab. -+# (If _AS_PATH_WALK were called with IFS unset, it would disable word -+# splitting by setting IFS to empty value.) -+IFS=" "" $as_nl" -+ -+# Find who we are. Look in the path if we contain no directory separator. -+as_myself= -+case $0 in @%:@(( -+ *[\\/]* ) as_myself=$0 ;; -+ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -+for as_dir in $PATH -+do -+ IFS=$as_save_IFS -+ test -z "$as_dir" && as_dir=. -+ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -+ done -+IFS=$as_save_IFS -+ -+ ;; -+esac -+# We did not find ourselves, most probably we were run as `sh COMMAND' -+# in which case we are not to be found in the path. -+if test "x$as_myself" = x; then -+ as_myself=$0 -+fi -+if test ! -f "$as_myself"; then -+ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 -+ exit 1 -+fi -+ -+# Unset variables that we do not need and which cause bugs (e.g. in -+# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -+# suppresses any "Segmentation fault" message there. '((' could -+# trigger a bug in pdksh 5.2.14. -+for as_var in BASH_ENV ENV MAIL MAILPATH -+do eval test x\${$as_var+set} = xset \ -+ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -+done -+PS1='$ ' -+PS2='> ' -+PS4='+ ' -+ -+# NLS nuisances. -+LC_ALL=C -+export LC_ALL -+LANGUAGE=C -+export LANGUAGE -+ -+# CDPATH. -+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH -+ -+ -+@%:@ as_fn_error STATUS ERROR [LINENO LOG_FD] -+@%:@ ---------------------------------------- -+@%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are -+@%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the -+@%:@ script with STATUS, using 1 if that was 0. -+as_fn_error () -+{ -+ as_status=$1; test $as_status -eq 0 && as_status=1 -+ if test "$4"; then -+ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack -+ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 -+ fi -+ $as_echo "$as_me: error: $2" >&2 -+ as_fn_exit $as_status -+} @%:@ as_fn_error -+ -+ -+@%:@ as_fn_set_status STATUS -+@%:@ ----------------------- -+@%:@ Set @S|@? to STATUS, without forking. -+as_fn_set_status () -+{ -+ return $1 -+} @%:@ as_fn_set_status -+ -+@%:@ as_fn_exit STATUS -+@%:@ ----------------- -+@%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -+as_fn_exit () -+{ -+ set +e -+ as_fn_set_status $1 -+ exit $1 -+} @%:@ as_fn_exit -+ -+@%:@ as_fn_unset VAR -+@%:@ --------------- -+@%:@ Portably unset VAR. -+as_fn_unset () -+{ -+ { eval $1=; unset $1;} -+} -+as_unset=as_fn_unset -+@%:@ as_fn_append VAR VALUE -+@%:@ ---------------------- -+@%:@ Append the text in VALUE to the end of the definition contained in VAR. Take -+@%:@ advantage of any shell optimizations that allow amortized linear growth over -+@%:@ repeated appends, instead of the typical quadratic growth present in naive -+@%:@ implementations. -+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : -+ eval 'as_fn_append () -+ { -+ eval $1+=\$2 -+ }' -+else -+ as_fn_append () -+ { -+ eval $1=\$$1\$2 -+ } -+fi # as_fn_append -+ -+@%:@ as_fn_arith ARG... -+@%:@ ------------------ -+@%:@ Perform arithmetic evaluation on the ARGs, and store the result in the -+@%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments -+@%:@ must be portable across @S|@(()) and expr. -+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : -+ eval 'as_fn_arith () -+ { -+ as_val=$(( $* )) -+ }' -+else -+ as_fn_arith () -+ { -+ as_val=`expr "$@" || test $? -eq 1` -+ } -+fi # as_fn_arith -+ -+ -+if expr a : '\(a\)' >/dev/null 2>&1 && -+ test "X`expr 00001 : '.*\(...\)'`" = X001; then -+ as_expr=expr -+else -+ as_expr=false -+fi -+ -+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then -+ as_basename=basename -+else -+ as_basename=false -+fi -+ -+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then -+ as_dirname=dirname -+else -+ as_dirname=false -+fi -+ -+as_me=`$as_basename -- "$0" || -+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ -+ X"$0" : 'X\(//\)$' \| \ -+ X"$0" : 'X\(/\)' \| . 2>/dev/null || -+$as_echo X/"$0" | -+ sed '/^.*\/\([^/][^/]*\)\/*$/{ -+ s//\1/ -+ q -+ } -+ /^X\/\(\/\/\)$/{ -+ s//\1/ -+ q -+ } -+ /^X\/\(\/\).*/{ -+ s//\1/ -+ q -+ } -+ s/.*/./; q'` -+ -+# Avoid depending upon Character Ranges. -+as_cr_letters='abcdefghijklmnopqrstuvwxyz' -+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -+as_cr_Letters=$as_cr_letters$as_cr_LETTERS -+as_cr_digits='0123456789' -+as_cr_alnum=$as_cr_Letters$as_cr_digits -+ -+ECHO_C= ECHO_N= ECHO_T= -+case `echo -n x` in @%:@((((( -+-n*) -+ case `echo 'xy\c'` in -+ *c*) ECHO_T=' ';; # ECHO_T is single tab character. -+ xy) ECHO_C='\c';; -+ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null -+ ECHO_T=' ';; -+ esac;; -+*) -+ ECHO_N='-n';; -+esac -+ -+rm -f conf$$ conf$$.exe conf$$.file -+if test -d conf$$.dir; then -+ rm -f conf$$.dir/conf$$.file -+else -+ rm -f conf$$.dir -+ mkdir conf$$.dir 2>/dev/null -+fi -+if (echo >conf$$.file) 2>/dev/null; then -+ if ln -s conf$$.file conf$$ 2>/dev/null; then -+ as_ln_s='ln -s' -+ # ... but there are two gotchas: -+ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. -+ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. -+ # In both cases, we have to default to `cp -pR'. -+ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || -+ as_ln_s='cp -pR' -+ elif ln conf$$.file conf$$ 2>/dev/null; then -+ as_ln_s=ln -+ else -+ as_ln_s='cp -pR' -+ fi -+else -+ as_ln_s='cp -pR' -+fi -+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -+rmdir conf$$.dir 2>/dev/null -+ -+ -+@%:@ as_fn_mkdir_p -+@%:@ ------------- -+@%:@ Create "@S|@as_dir" as a directory, including parents if necessary. -+as_fn_mkdir_p () -+{ -+ -+ case $as_dir in #( -+ -*) as_dir=./$as_dir;; -+ esac -+ test -d "$as_dir" || eval $as_mkdir_p || { -+ as_dirs= -+ while :; do -+ case $as_dir in #( -+ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( -+ *) as_qdir=$as_dir;; -+ esac -+ as_dirs="'$as_qdir' $as_dirs" -+ as_dir=`$as_dirname -- "$as_dir" || -+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ -+ X"$as_dir" : 'X\(//\)[^/]' \| \ -+ X"$as_dir" : 'X\(//\)$' \| \ -+ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -+$as_echo X"$as_dir" | -+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)[^/].*/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\).*/{ -+ s//\1/ -+ q -+ } -+ s/.*/./; q'` -+ test -d "$as_dir" && break -+ done -+ test -z "$as_dirs" || eval "mkdir $as_dirs" -+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" -+ -+ -+} @%:@ as_fn_mkdir_p -+if mkdir -p . 2>/dev/null; then -+ as_mkdir_p='mkdir -p "$as_dir"' -+else -+ test -d ./-p && rmdir ./-p -+ as_mkdir_p=false -+fi -+ -+ -+@%:@ as_fn_executable_p FILE -+@%:@ ----------------------- -+@%:@ Test if FILE is an executable regular file. -+as_fn_executable_p () -+{ -+ test -f "$1" && test -x "$1" -+} @%:@ as_fn_executable_p -+as_test_x='test -x' -+as_executable_p=as_fn_executable_p -+ -+# Sed expression to map a string onto a valid CPP name. -+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" -+ -+# Sed expression to map a string onto a valid variable name. -+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" -+ -+ -+exec 6>&1 -+## ----------------------------------- ## -+## Main body of $CONFIG_STATUS script. ## -+## ----------------------------------- ## -+_ASEOF -+test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 -+ -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+# Save the log message, to keep $0 and so on meaningful, and to -+# report actual input values of CONFIG_FILES etc. instead of their -+# values after options handling. -+ac_log=" -+This file was extended by package-unused $as_me version-unused, which was -+generated by GNU Autoconf 2.69. Invocation command line was -+ -+ CONFIG_FILES = $CONFIG_FILES -+ CONFIG_HEADERS = $CONFIG_HEADERS -+ CONFIG_LINKS = $CONFIG_LINKS -+ CONFIG_COMMANDS = $CONFIG_COMMANDS -+ $ $0 $@ -+ -+on `(hostname || uname -n) 2>/dev/null | sed 1q` -+" -+ -+_ACEOF -+ -+case $ac_config_files in *" -+"*) set x $ac_config_files; shift; ac_config_files=$*;; -+esac -+ -+case $ac_config_headers in *" -+"*) set x $ac_config_headers; shift; ac_config_headers=$*;; -+esac -+ -+ -+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -+# Files that config.status was made for. -+config_files="$ac_config_files" -+config_headers="$ac_config_headers" -+config_commands="$ac_config_commands" -+ -+_ACEOF -+ -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+ac_cs_usage="\ -+\`$as_me' instantiates files and other configuration actions -+from templates according to the current configuration. Unless the files -+and actions are specified as TAGs, all are instantiated by default. -+ -+Usage: $0 [OPTION]... [TAG]... -+ -+ -h, --help print this help, then exit -+ -V, --version print version number and configuration settings, then exit -+ --config print configuration, then exit -+ -q, --quiet, --silent -+ do not print progress messages -+ -d, --debug don't remove temporary files -+ --recheck update $as_me by reconfiguring in the same conditions -+ --file=FILE[:TEMPLATE] -+ instantiate the configuration file FILE -+ --header=FILE[:TEMPLATE] -+ instantiate the configuration header FILE -+ -+Configuration files: -+$config_files -+ -+Configuration headers: -+$config_headers -+ -+Configuration commands: -+$config_commands -+ -+Report bugs to the package provider." -+ -+_ACEOF -+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -+ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" -+ac_cs_version="\\ -+package-unused config.status version-unused -+configured by $0, generated by GNU Autoconf 2.69, -+ with options \\"\$ac_cs_config\\" -+ -+Copyright (C) 2012 Free Software Foundation, Inc. -+This config.status script is free software; the Free Software Foundation -+gives unlimited permission to copy, distribute and modify it." -+ -+ac_pwd='$ac_pwd' -+srcdir='$srcdir' -+INSTALL='$INSTALL' -+MKDIR_P='$MKDIR_P' -+AWK='$AWK' -+test -n "\$AWK" || AWK=awk -+_ACEOF -+ -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+# The default lists apply if the user does not specify any file. -+ac_need_defaults=: -+while test $# != 0 -+do -+ case $1 in -+ --*=?*) -+ ac_option=`expr "X$1" : 'X\([^=]*\)='` -+ ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` -+ ac_shift=: -+ ;; -+ --*=) -+ ac_option=`expr "X$1" : 'X\([^=]*\)='` -+ ac_optarg= -+ ac_shift=: -+ ;; -+ *) -+ ac_option=$1 -+ ac_optarg=$2 -+ ac_shift=shift -+ ;; -+ esac -+ -+ case $ac_option in -+ # Handling of the options. -+ -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) -+ ac_cs_recheck=: ;; -+ --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) -+ $as_echo "$ac_cs_version"; exit ;; -+ --config | --confi | --conf | --con | --co | --c ) -+ $as_echo "$ac_cs_config"; exit ;; -+ --debug | --debu | --deb | --de | --d | -d ) -+ debug=: ;; -+ --file | --fil | --fi | --f ) -+ $ac_shift -+ case $ac_optarg in -+ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; -+ '') as_fn_error $? "missing file argument" ;; -+ esac -+ as_fn_append CONFIG_FILES " '$ac_optarg'" -+ ac_need_defaults=false;; -+ --header | --heade | --head | --hea ) -+ $ac_shift -+ case $ac_optarg in -+ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; -+ esac -+ as_fn_append CONFIG_HEADERS " '$ac_optarg'" -+ ac_need_defaults=false;; -+ --he | --h) -+ # Conflict between --help and --header -+ as_fn_error $? "ambiguous option: \`$1' -+Try \`$0 --help' for more information.";; -+ --help | --hel | -h ) -+ $as_echo "$ac_cs_usage"; exit ;; -+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \ -+ | -silent | --silent | --silen | --sile | --sil | --si | --s) -+ ac_cs_silent=: ;; -+ -+ # This is an error. -+ -*) as_fn_error $? "unrecognized option: \`$1' -+Try \`$0 --help' for more information." ;; -+ -+ *) as_fn_append ac_config_targets " $1" -+ ac_need_defaults=false ;; -+ -+ esac -+ shift -+done -+ -+ac_configure_extra_args= -+ -+if $ac_cs_silent; then -+ exec 6>/dev/null -+ ac_configure_extra_args="$ac_configure_extra_args --silent" -+fi -+ -+_ACEOF -+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -+if \$ac_cs_recheck; then -+ set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion -+ shift -+ \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 -+ CONFIG_SHELL='$SHELL' -+ export CONFIG_SHELL -+ exec "\$@" -+fi -+ -+_ACEOF -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+exec 5>>config.log -+{ -+ echo -+ sed 'h;s/./-/g;s/^.../@%:@@%:@ /;s/...$/ @%:@@%:@/;p;x;p;x' <<_ASBOX -+@%:@@%:@ Running $as_me. @%:@@%:@ -+_ASBOX -+ $as_echo "$ac_log" -+} >&5 -+ -+_ACEOF -+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -+# -+# INIT-COMMANDS -+# -+ -+srcdir="$srcdir" -+host="$host" -+target="$target" -+with_multisubdir="$with_multisubdir" -+with_multisrctop="$with_multisrctop" -+with_target_subdir="$with_target_subdir" -+ac_configure_args="${multilib_arg} ${ac_configure_args}" -+multi_basedir="$multi_basedir" -+CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} -+CC="$CC" -+CXX="$CXX" -+GFORTRAN="$GFORTRAN" -+GDC="$GDC" -+ -+ -+# The HP-UX ksh and POSIX shell print the target directory to stdout -+# if CDPATH is set. -+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH -+ -+sed_quote_subst='$sed_quote_subst' -+double_quote_subst='$double_quote_subst' -+delay_variable_subst='$delay_variable_subst' -+macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' -+macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' -+enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' -+enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' -+pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' -+enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' -+SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' -+ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' -+host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' -+host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' -+host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' -+build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' -+build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' -+build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' -+SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' -+Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' -+GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' -+EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' -+FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' -+LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' -+NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' -+LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' -+max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' -+ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' -+exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' -+lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' -+lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' -+lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' -+reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' -+reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' -+OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' -+deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' -+file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' -+AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' -+AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' -+STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' -+RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' -+old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' -+old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' -+old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' -+lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' -+CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' -+CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' -+compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' -+GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' -+lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' -+lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' -+lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' -+lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' -+objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' -+MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' -+lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' -+lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' -+lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' -+lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' -+lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' -+need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' -+DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' -+NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' -+LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' -+OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' -+OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' -+libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' -+shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' -+extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' -+archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' -+enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' -+export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' -+whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' -+compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' -+old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' -+old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' -+archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' -+archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' -+module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' -+module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' -+with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' -+allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' -+no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' -+hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' -+hardcode_libdir_flag_spec_ld='`$ECHO "$hardcode_libdir_flag_spec_ld" | $SED "$delay_single_quote_subst"`' -+hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' -+hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' -+hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' -+hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' -+hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' -+hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' -+inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' -+link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' -+fix_srcfile_path='`$ECHO "$fix_srcfile_path" | $SED "$delay_single_quote_subst"`' -+always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' -+export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' -+exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' -+include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' -+prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' -+file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' -+variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' -+need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' -+need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' -+version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' -+runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' -+shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' -+shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' -+libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' -+library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' -+soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' -+install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' -+postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' -+postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' -+finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' -+finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' -+hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' -+sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' -+sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' -+hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' -+enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' -+enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' -+enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' -+old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' -+striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' -+compiler_lib_search_dirs='`$ECHO "$compiler_lib_search_dirs" | $SED "$delay_single_quote_subst"`' -+predep_objects='`$ECHO "$predep_objects" | $SED "$delay_single_quote_subst"`' -+postdep_objects='`$ECHO "$postdep_objects" | $SED "$delay_single_quote_subst"`' -+predeps='`$ECHO "$predeps" | $SED "$delay_single_quote_subst"`' -+postdeps='`$ECHO "$postdeps" | $SED "$delay_single_quote_subst"`' -+compiler_lib_search_path='`$ECHO "$compiler_lib_search_path" | $SED "$delay_single_quote_subst"`' -+LD_CXX='`$ECHO "$LD_CXX" | $SED "$delay_single_quote_subst"`' -+reload_flag_CXX='`$ECHO "$reload_flag_CXX" | $SED "$delay_single_quote_subst"`' -+reload_cmds_CXX='`$ECHO "$reload_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+old_archive_cmds_CXX='`$ECHO "$old_archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+compiler_CXX='`$ECHO "$compiler_CXX" | $SED "$delay_single_quote_subst"`' -+GCC_CXX='`$ECHO "$GCC_CXX" | $SED "$delay_single_quote_subst"`' -+lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "$lt_prog_compiler_no_builtin_flag_CXX" | $SED "$delay_single_quote_subst"`' -+lt_prog_compiler_wl_CXX='`$ECHO "$lt_prog_compiler_wl_CXX" | $SED "$delay_single_quote_subst"`' -+lt_prog_compiler_pic_CXX='`$ECHO "$lt_prog_compiler_pic_CXX" | $SED "$delay_single_quote_subst"`' -+lt_prog_compiler_static_CXX='`$ECHO "$lt_prog_compiler_static_CXX" | $SED "$delay_single_quote_subst"`' -+lt_cv_prog_compiler_c_o_CXX='`$ECHO "$lt_cv_prog_compiler_c_o_CXX" | $SED "$delay_single_quote_subst"`' -+archive_cmds_need_lc_CXX='`$ECHO "$archive_cmds_need_lc_CXX" | $SED "$delay_single_quote_subst"`' -+enable_shared_with_static_runtimes_CXX='`$ECHO "$enable_shared_with_static_runtimes_CXX" | $SED "$delay_single_quote_subst"`' -+export_dynamic_flag_spec_CXX='`$ECHO "$export_dynamic_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' -+whole_archive_flag_spec_CXX='`$ECHO "$whole_archive_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' -+compiler_needs_object_CXX='`$ECHO "$compiler_needs_object_CXX" | $SED "$delay_single_quote_subst"`' -+old_archive_from_new_cmds_CXX='`$ECHO "$old_archive_from_new_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+old_archive_from_expsyms_cmds_CXX='`$ECHO "$old_archive_from_expsyms_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+archive_cmds_CXX='`$ECHO "$archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+archive_expsym_cmds_CXX='`$ECHO "$archive_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+module_cmds_CXX='`$ECHO "$module_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+module_expsym_cmds_CXX='`$ECHO "$module_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+with_gnu_ld_CXX='`$ECHO "$with_gnu_ld_CXX" | $SED "$delay_single_quote_subst"`' -+allow_undefined_flag_CXX='`$ECHO "$allow_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' -+no_undefined_flag_CXX='`$ECHO "$no_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' -+hardcode_libdir_flag_spec_CXX='`$ECHO "$hardcode_libdir_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' -+hardcode_libdir_flag_spec_ld_CXX='`$ECHO "$hardcode_libdir_flag_spec_ld_CXX" | $SED "$delay_single_quote_subst"`' -+hardcode_libdir_separator_CXX='`$ECHO "$hardcode_libdir_separator_CXX" | $SED "$delay_single_quote_subst"`' -+hardcode_direct_CXX='`$ECHO "$hardcode_direct_CXX" | $SED "$delay_single_quote_subst"`' -+hardcode_direct_absolute_CXX='`$ECHO "$hardcode_direct_absolute_CXX" | $SED "$delay_single_quote_subst"`' -+hardcode_minus_L_CXX='`$ECHO "$hardcode_minus_L_CXX" | $SED "$delay_single_quote_subst"`' -+hardcode_shlibpath_var_CXX='`$ECHO "$hardcode_shlibpath_var_CXX" | $SED "$delay_single_quote_subst"`' -+hardcode_automatic_CXX='`$ECHO "$hardcode_automatic_CXX" | $SED "$delay_single_quote_subst"`' -+inherit_rpath_CXX='`$ECHO "$inherit_rpath_CXX" | $SED "$delay_single_quote_subst"`' -+link_all_deplibs_CXX='`$ECHO "$link_all_deplibs_CXX" | $SED "$delay_single_quote_subst"`' -+fix_srcfile_path_CXX='`$ECHO "$fix_srcfile_path_CXX" | $SED "$delay_single_quote_subst"`' -+always_export_symbols_CXX='`$ECHO "$always_export_symbols_CXX" | $SED "$delay_single_quote_subst"`' -+export_symbols_cmds_CXX='`$ECHO "$export_symbols_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+exclude_expsyms_CXX='`$ECHO "$exclude_expsyms_CXX" | $SED "$delay_single_quote_subst"`' -+include_expsyms_CXX='`$ECHO "$include_expsyms_CXX" | $SED "$delay_single_quote_subst"`' -+prelink_cmds_CXX='`$ECHO "$prelink_cmds_CXX" | $SED "$delay_single_quote_subst"`' -+file_list_spec_CXX='`$ECHO "$file_list_spec_CXX" | $SED "$delay_single_quote_subst"`' -+hardcode_action_CXX='`$ECHO "$hardcode_action_CXX" | $SED "$delay_single_quote_subst"`' -+compiler_lib_search_dirs_CXX='`$ECHO "$compiler_lib_search_dirs_CXX" | $SED "$delay_single_quote_subst"`' -+predep_objects_CXX='`$ECHO "$predep_objects_CXX" | $SED "$delay_single_quote_subst"`' -+postdep_objects_CXX='`$ECHO "$postdep_objects_CXX" | $SED "$delay_single_quote_subst"`' -+predeps_CXX='`$ECHO "$predeps_CXX" | $SED "$delay_single_quote_subst"`' -+postdeps_CXX='`$ECHO "$postdeps_CXX" | $SED "$delay_single_quote_subst"`' -+compiler_lib_search_path_CXX='`$ECHO "$compiler_lib_search_path_CXX" | $SED "$delay_single_quote_subst"`' -+ -+LTCC='$LTCC' -+LTCFLAGS='$LTCFLAGS' -+compiler='$compiler_DEFAULT' -+ -+# A function that is used when there is no print builtin or printf. -+func_fallback_echo () -+{ -+ eval 'cat <<_LTECHO_EOF -+\$1 -+_LTECHO_EOF' -+} -+ -+# Quote evaled strings. -+for var in SHELL \ -+ECHO \ -+SED \ -+GREP \ -+EGREP \ -+FGREP \ -+LD \ -+NM \ -+LN_S \ -+lt_SP2NL \ -+lt_NL2SP \ -+reload_flag \ -+OBJDUMP \ -+deplibs_check_method \ -+file_magic_cmd \ -+AR \ -+AR_FLAGS \ -+STRIP \ -+RANLIB \ -+CC \ -+CFLAGS \ -+compiler \ -+lt_cv_sys_global_symbol_pipe \ -+lt_cv_sys_global_symbol_to_cdecl \ -+lt_cv_sys_global_symbol_to_c_name_address \ -+lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ -+lt_prog_compiler_no_builtin_flag \ -+lt_prog_compiler_wl \ -+lt_prog_compiler_pic \ -+lt_prog_compiler_static \ -+lt_cv_prog_compiler_c_o \ -+need_locks \ -+DSYMUTIL \ -+NMEDIT \ -+LIPO \ -+OTOOL \ -+OTOOL64 \ -+shrext_cmds \ -+export_dynamic_flag_spec \ -+whole_archive_flag_spec \ -+compiler_needs_object \ -+with_gnu_ld \ -+allow_undefined_flag \ -+no_undefined_flag \ -+hardcode_libdir_flag_spec \ -+hardcode_libdir_flag_spec_ld \ -+hardcode_libdir_separator \ -+fix_srcfile_path \ -+exclude_expsyms \ -+include_expsyms \ -+file_list_spec \ -+variables_saved_for_relink \ -+libname_spec \ -+library_names_spec \ -+soname_spec \ -+install_override_mode \ -+finish_eval \ -+old_striplib \ -+striplib \ -+compiler_lib_search_dirs \ -+predep_objects \ -+postdep_objects \ -+predeps \ -+postdeps \ -+compiler_lib_search_path \ -+LD_CXX \ -+reload_flag_CXX \ -+compiler_CXX \ -+lt_prog_compiler_no_builtin_flag_CXX \ -+lt_prog_compiler_wl_CXX \ -+lt_prog_compiler_pic_CXX \ -+lt_prog_compiler_static_CXX \ -+lt_cv_prog_compiler_c_o_CXX \ -+export_dynamic_flag_spec_CXX \ -+whole_archive_flag_spec_CXX \ -+compiler_needs_object_CXX \ -+with_gnu_ld_CXX \ -+allow_undefined_flag_CXX \ -+no_undefined_flag_CXX \ -+hardcode_libdir_flag_spec_CXX \ -+hardcode_libdir_flag_spec_ld_CXX \ -+hardcode_libdir_separator_CXX \ -+fix_srcfile_path_CXX \ -+exclude_expsyms_CXX \ -+include_expsyms_CXX \ -+file_list_spec_CXX \ -+compiler_lib_search_dirs_CXX \ -+predep_objects_CXX \ -+postdep_objects_CXX \ -+predeps_CXX \ -+postdeps_CXX \ -+compiler_lib_search_path_CXX; do -+ case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in -+ *[\\\\\\\`\\"\\\$]*) -+ eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" -+ ;; -+ *) -+ eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" -+ ;; -+ esac -+done -+ -+# Double-quote double-evaled strings. -+for var in reload_cmds \ -+old_postinstall_cmds \ -+old_postuninstall_cmds \ -+old_archive_cmds \ -+extract_expsyms_cmds \ -+old_archive_from_new_cmds \ -+old_archive_from_expsyms_cmds \ -+archive_cmds \ -+archive_expsym_cmds \ -+module_cmds \ -+module_expsym_cmds \ -+export_symbols_cmds \ -+prelink_cmds \ -+postinstall_cmds \ -+postuninstall_cmds \ -+finish_cmds \ -+sys_lib_search_path_spec \ -+sys_lib_dlsearch_path_spec \ -+reload_cmds_CXX \ -+old_archive_cmds_CXX \ -+old_archive_from_new_cmds_CXX \ -+old_archive_from_expsyms_cmds_CXX \ -+archive_cmds_CXX \ -+archive_expsym_cmds_CXX \ -+module_cmds_CXX \ -+module_expsym_cmds_CXX \ -+export_symbols_cmds_CXX \ -+prelink_cmds_CXX; do -+ case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in -+ *[\\\\\\\`\\"\\\$]*) -+ eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" -+ ;; -+ *) -+ eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" -+ ;; -+ esac -+done -+ -+ac_aux_dir='$ac_aux_dir' -+xsi_shell='$xsi_shell' -+lt_shell_append='$lt_shell_append' -+ -+# See if we are running on zsh, and set the options which allow our -+# commands through without removal of \ escapes INIT. -+if test -n "\${ZSH_VERSION+set}" ; then -+ setopt NO_GLOB_SUBST -+fi -+ -+ -+ PACKAGE='$PACKAGE' -+ VERSION='$VERSION' -+ TIMESTAMP='$TIMESTAMP' -+ RM='$RM' -+ ofile='$ofile' -+ -+ -+ -+ -+ -+ -+GCC="$GCC" -+CC="$CC" -+acx_cv_header_stdint="$acx_cv_header_stdint" -+acx_cv_type_int8_t="$acx_cv_type_int8_t" -+acx_cv_type_int16_t="$acx_cv_type_int16_t" -+acx_cv_type_int32_t="$acx_cv_type_int32_t" -+acx_cv_type_int64_t="$acx_cv_type_int64_t" -+acx_cv_type_intptr_t="$acx_cv_type_intptr_t" -+ac_cv_type_uintmax_t="$ac_cv_type_uintmax_t" -+ac_cv_type_uintptr_t="$ac_cv_type_uintptr_t" -+ac_cv_type_uint64_t="$ac_cv_type_uint64_t" -+ac_cv_type_u_int64_t="$ac_cv_type_u_int64_t" -+ac_cv_type_u_int32_t="$ac_cv_type_u_int32_t" -+ac_cv_type_int_least32_t="$ac_cv_type_int_least32_t" -+ac_cv_type_int_fast32_t="$ac_cv_type_int_fast32_t" -+ac_cv_sizeof_void_p="$ac_cv_sizeof_void_p" -+ -+ -+_ACEOF -+ -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+ -+# Handling of arguments. -+for ac_config_target in $ac_config_targets -+do -+ case $ac_config_target in -+ "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; -+ "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; -+ "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; -+ "include/gstdint.h") CONFIG_COMMANDS="$CONFIG_COMMANDS include/gstdint.h" ;; -+ "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; -+ "scripts/testsuite_flags") CONFIG_FILES="$CONFIG_FILES scripts/testsuite_flags" ;; -+ "scripts/extract_symvers") CONFIG_FILES="$CONFIG_FILES scripts/extract_symvers" ;; -+ "doc/xsl/customization.xsl") CONFIG_FILES="$CONFIG_FILES doc/xsl/customization.xsl" ;; -+ "src/libbacktrace/backtrace-supported.h") CONFIG_FILES="$CONFIG_FILES src/libbacktrace/backtrace-supported.h" ;; -+ "include/Makefile") CONFIG_FILES="$CONFIG_FILES include/Makefile" ;; -+ "libsupc++/Makefile") CONFIG_FILES="$CONFIG_FILES libsupc++/Makefile" ;; -+ "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; -+ "src/c++98/Makefile") CONFIG_FILES="$CONFIG_FILES src/c++98/Makefile" ;; -+ "src/c++11/Makefile") CONFIG_FILES="$CONFIG_FILES src/c++11/Makefile" ;; -+ "src/c++17/Makefile") CONFIG_FILES="$CONFIG_FILES src/c++17/Makefile" ;; -+ "src/c++20/Makefile") CONFIG_FILES="$CONFIG_FILES src/c++20/Makefile" ;; -+ "src/filesystem/Makefile") CONFIG_FILES="$CONFIG_FILES src/filesystem/Makefile" ;; -+ "src/libbacktrace/Makefile") CONFIG_FILES="$CONFIG_FILES src/libbacktrace/Makefile" ;; -+ "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; -+ "po/Makefile") CONFIG_FILES="$CONFIG_FILES po/Makefile" ;; -+ "testsuite/Makefile") CONFIG_FILES="$CONFIG_FILES testsuite/Makefile" ;; -+ "python/Makefile") CONFIG_FILES="$CONFIG_FILES python/Makefile" ;; -+ "generate-headers") CONFIG_COMMANDS="$CONFIG_COMMANDS generate-headers" ;; -+ -+ *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; -+ esac -+done -+ -+ -+# If the user did not use the arguments to specify the items to instantiate, -+# then the envvar interface is used. Set only those that are not. -+# We use the long form for the default assignment because of an extremely -+# bizarre bug on SunOS 4.1.3. -+if $ac_need_defaults; then -+ test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files -+ test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers -+ test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands -+fi -+ -+# Have a temporary directory for convenience. Make it in the build tree -+# simply because there is no reason against having it here, and in addition, -+# creating and moving files from /tmp can sometimes cause problems. -+# Hook for its removal unless debugging. -+# Note that there is a small window in which the directory will not be cleaned: -+# after its creation but before its name has been assigned to `$tmp'. -+$debug || -+{ -+ tmp= ac_tmp= -+ trap 'exit_status=$? -+ : "${ac_tmp:=$tmp}" -+ { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status -+' 0 -+ trap 'as_fn_exit 1' 1 2 13 15 -+} -+# Create a (secure) tmp directory for tmp files. -+ -+{ -+ tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && -+ test -d "$tmp" -+} || -+{ -+ tmp=./conf$$-$RANDOM -+ (umask 077 && mkdir "$tmp") -+} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 -+ac_tmp=$tmp -+ -+# Set up the scripts for CONFIG_FILES section. -+# No need to generate them if there are no CONFIG_FILES. -+# This happens for instance with `./config.status config.h'. -+if test -n "$CONFIG_FILES"; then -+ -+ -+ac_cr=`echo X | tr X '\015'` -+# On cygwin, bash can eat \r inside `` if the user requested igncr. -+# But we know of no other shell where ac_cr would be empty at this -+# point, so we can use a bashism as a fallback. -+if test "x$ac_cr" = x; then -+ eval ac_cr=\$\'\\r\' -+fi -+ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` -+if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then -+ ac_cs_awk_cr='\\r' -+else -+ ac_cs_awk_cr=$ac_cr -+fi -+ -+echo 'BEGIN {' >"$ac_tmp/subs1.awk" && -+_ACEOF -+ -+ -+{ -+ echo "cat >conf$$subs.awk <<_ACEOF" && -+ echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && -+ echo "_ACEOF" -+} >conf$$subs.sh || -+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 -+ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` -+ac_delim='%!_!# ' -+for ac_last_try in false false false false false :; do -+ . ./conf$$subs.sh || -+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 -+ -+ ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` -+ if test $ac_delim_n = $ac_delim_num; then -+ break -+ elif $ac_last_try; then -+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 -+ else -+ ac_delim="$ac_delim!$ac_delim _$ac_delim!! " -+ fi -+done -+rm -f conf$$subs.sh -+ -+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -+cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && -+_ACEOF -+sed -n ' -+h -+s/^/S["/; s/!.*/"]=/ -+p -+g -+s/^[^!]*!// -+:repl -+t repl -+s/'"$ac_delim"'$// -+t delim -+:nl -+h -+s/\(.\{148\}\)..*/\1/ -+t more1 -+s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ -+p -+n -+b repl -+:more1 -+s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -+p -+g -+s/.\{148\}// -+t nl -+:delim -+h -+s/\(.\{148\}\)..*/\1/ -+t more2 -+s/["\\]/\\&/g; s/^/"/; s/$/"/ -+p -+b -+:more2 -+s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -+p -+g -+s/.\{148\}// -+t delim -+' <conf$$subs.awk | sed ' -+/^[^""]/{ -+ N -+ s/\n// -+} -+' >>$CONFIG_STATUS || ac_write_fail=1 -+rm -f conf$$subs.awk -+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -+_ACAWK -+cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && -+ for (key in S) S_is_set[key] = 1 -+ FS = "" -+ -+} -+{ -+ line = $ 0 -+ nfields = split(line, field, "@") -+ substed = 0 -+ len = length(field[1]) -+ for (i = 2; i < nfields; i++) { -+ key = field[i] -+ keylen = length(key) -+ if (S_is_set[key]) { -+ value = S[key] -+ line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) -+ len += length(value) + length(field[++i]) -+ substed = 1 -+ } else -+ len += 1 + keylen -+ } -+ -+ print line -+} -+ -+_ACAWK -+_ACEOF -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then -+ sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" -+else -+ cat -+fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ -+ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 -+_ACEOF -+ -+# VPATH may cause trouble with some makes, so we remove sole $(srcdir), -+# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and -+# trailing colons and then remove the whole line if VPATH becomes empty -+# (actually we leave an empty line to preserve line numbers). -+if test "x$srcdir" = x.; then -+ ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ -+h -+s/// -+s/^/:/ -+s/[ ]*$/:/ -+s/:\$(srcdir):/:/g -+s/:\${srcdir}:/:/g -+s/:@srcdir@:/:/g -+s/^:*// -+s/:*$// -+x -+s/\(=[ ]*\).*/\1/ -+G -+s/\n// -+s/^[^=]*=[ ]*$// -+}' -+fi -+ -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+fi # test -n "$CONFIG_FILES" -+ -+# Set up the scripts for CONFIG_HEADERS section. -+# No need to generate them if there are no CONFIG_HEADERS. -+# This happens for instance with `./config.status Makefile'. -+if test -n "$CONFIG_HEADERS"; then -+cat >"$ac_tmp/defines.awk" <<\_ACAWK || -+BEGIN { -+_ACEOF -+ -+# Transform confdefs.h into an awk script `defines.awk', embedded as -+# here-document in config.status, that substitutes the proper values into -+# config.h.in to produce config.h. -+ -+# Create a delimiter string that does not exist in confdefs.h, to ease -+# handling of long lines. -+ac_delim='%!_!# ' -+for ac_last_try in false false :; do -+ ac_tt=`sed -n "/$ac_delim/p" confdefs.h` -+ if test -z "$ac_tt"; then -+ break -+ elif $ac_last_try; then -+ as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 -+ else -+ ac_delim="$ac_delim!$ac_delim _$ac_delim!! " -+ fi -+done -+ -+# For the awk script, D is an array of macro values keyed by name, -+# likewise P contains macro parameters if any. Preserve backslash -+# newline sequences. -+ -+ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* -+sed -n ' -+s/.\{148\}/&'"$ac_delim"'/g -+t rset -+:rset -+s/^[ ]*#[ ]*define[ ][ ]*/ / -+t def -+d -+:def -+s/\\$// -+t bsnl -+s/["\\]/\\&/g -+s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -+D["\1"]=" \3"/p -+s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p -+d -+:bsnl -+s/["\\]/\\&/g -+s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -+D["\1"]=" \3\\\\\\n"\\/p -+t cont -+s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p -+t cont -+d -+:cont -+n -+s/.\{148\}/&'"$ac_delim"'/g -+t clear -+:clear -+s/\\$// -+t bsnlc -+s/["\\]/\\&/g; s/^/"/; s/$/"/p -+d -+:bsnlc -+s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p -+b cont -+' <confdefs.h | sed ' -+s/'"$ac_delim"'/"\\\ -+"/g' >>$CONFIG_STATUS || ac_write_fail=1 -+ -+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -+ for (key in D) D_is_set[key] = 1 -+ FS = "" -+} -+/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { -+ line = \$ 0 -+ split(line, arg, " ") -+ if (arg[1] == "#") { -+ defundef = arg[2] -+ mac1 = arg[3] -+ } else { -+ defundef = substr(arg[1], 2) -+ mac1 = arg[2] -+ } -+ split(mac1, mac2, "(") #) -+ macro = mac2[1] -+ prefix = substr(line, 1, index(line, defundef) - 1) -+ if (D_is_set[macro]) { -+ # Preserve the white space surrounding the "#". -+ print prefix "define", macro P[macro] D[macro] -+ next -+ } else { -+ # Replace #undef with comments. This is necessary, for example, -+ # in the case of _POSIX_SOURCE, which is predefined and required -+ # on some systems where configure will not decide to define it. -+ if (defundef == "undef") { -+ print "/*", prefix defundef, macro, "*/" -+ next -+ } -+ } -+} -+{ print } -+_ACAWK -+_ACEOF -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+ as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 -+fi # test -n "$CONFIG_HEADERS" -+ -+ -+eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" -+shift -+for ac_tag -+do -+ case $ac_tag in -+ :[FHLC]) ac_mode=$ac_tag; continue;; -+ esac -+ case $ac_mode$ac_tag in -+ :[FHL]*:*);; -+ :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; -+ :[FH]-) ac_tag=-:-;; -+ :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; -+ esac -+ ac_save_IFS=$IFS -+ IFS=: -+ set x $ac_tag -+ IFS=$ac_save_IFS -+ shift -+ ac_file=$1 -+ shift -+ -+ case $ac_mode in -+ :L) ac_source=$1;; -+ :[FH]) -+ ac_file_inputs= -+ for ac_f -+ do -+ case $ac_f in -+ -) ac_f="$ac_tmp/stdin";; -+ *) # Look for the file first in the build tree, then in the source tree -+ # (if the path is not absolute). The absolute path cannot be DOS-style, -+ # because $ac_f cannot contain `:'. -+ test -f "$ac_f" || -+ case $ac_f in -+ [\\/$]*) false;; -+ *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; -+ esac || -+ as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; -+ esac -+ case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac -+ as_fn_append ac_file_inputs " '$ac_f'" -+ done -+ -+ # Let's still pretend it is `configure' which instantiates (i.e., don't -+ # use $as_me), people would be surprised to read: -+ # /* config.h. Generated by config.status. */ -+ configure_input='Generated from '` -+ $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' -+ `' by configure.' -+ if test x"$ac_file" != x-; then -+ configure_input="$ac_file. $configure_input" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 -+$as_echo "$as_me: creating $ac_file" >&6;} -+ fi -+ # Neutralize special characters interpreted by sed in replacement strings. -+ case $configure_input in #( -+ *\&* | *\|* | *\\* ) -+ ac_sed_conf_input=`$as_echo "$configure_input" | -+ sed 's/[\\\\&|]/\\\\&/g'`;; #( -+ *) ac_sed_conf_input=$configure_input;; -+ esac -+ -+ case $ac_tag in -+ *:-:* | *:-) cat >"$ac_tmp/stdin" \ -+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; -+ esac -+ ;; -+ esac -+ -+ ac_dir=`$as_dirname -- "$ac_file" || -+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ -+ X"$ac_file" : 'X\(//\)[^/]' \| \ -+ X"$ac_file" : 'X\(//\)$' \| \ -+ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || -+$as_echo X"$ac_file" | -+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)[^/].*/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\).*/{ -+ s//\1/ -+ q -+ } -+ s/.*/./; q'` -+ as_dir="$ac_dir"; as_fn_mkdir_p -+ ac_builddir=. -+ -+case "$ac_dir" in -+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -+*) -+ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` -+ # A ".." for each directory in $ac_dir_suffix. -+ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` -+ case $ac_top_builddir_sub in -+ "") ac_top_builddir_sub=. ac_top_build_prefix= ;; -+ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; -+ esac ;; -+esac -+ac_abs_top_builddir=$ac_pwd -+ac_abs_builddir=$ac_pwd$ac_dir_suffix -+# for backward compatibility: -+ac_top_builddir=$ac_top_build_prefix -+ -+case $srcdir in -+ .) # We are building in place. -+ ac_srcdir=. -+ ac_top_srcdir=$ac_top_builddir_sub -+ ac_abs_top_srcdir=$ac_pwd ;; -+ [\\/]* | ?:[\\/]* ) # Absolute name. -+ ac_srcdir=$srcdir$ac_dir_suffix; -+ ac_top_srcdir=$srcdir -+ ac_abs_top_srcdir=$srcdir ;; -+ *) # Relative name. -+ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix -+ ac_top_srcdir=$ac_top_build_prefix$srcdir -+ ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -+esac -+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix -+ -+ -+ case $ac_mode in -+ :F) -+ # -+ # CONFIG_FILE -+ # -+ -+ case $INSTALL in -+ [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; -+ *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; -+ esac -+ ac_MKDIR_P=$MKDIR_P -+ case $MKDIR_P in -+ [\\/$]* | ?:[\\/]* ) ;; -+ */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; -+ esac -+_ACEOF -+ -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+# If the template does not know about datarootdir, expand it. -+# FIXME: This hack should be removed a few years after 2.60. -+ac_datarootdir_hack=; ac_datarootdir_seen= -+ac_sed_dataroot=' -+/datarootdir/ { -+ p -+ q -+} -+/@datadir@/p -+/@docdir@/p -+/@infodir@/p -+/@localedir@/p -+/@mandir@/p' -+case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in -+*datarootdir*) ac_datarootdir_seen=yes;; -+*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 -+$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} -+_ACEOF -+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -+ ac_datarootdir_hack=' -+ s&@datadir@&$datadir&g -+ s&@docdir@&$docdir&g -+ s&@infodir@&$infodir&g -+ s&@localedir@&$localedir&g -+ s&@mandir@&$mandir&g -+ s&\\\${datarootdir}&$datarootdir&g' ;; -+esac -+_ACEOF -+ -+# Neutralize VPATH when `$srcdir' = `.'. -+# Shell code in configure.ac might set extrasub. -+# FIXME: do we really want to maintain this feature? -+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -+ac_sed_extra="$ac_vpsub -+$extrasub -+_ACEOF -+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -+:t -+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b -+s|@configure_input@|$ac_sed_conf_input|;t t -+s&@top_builddir@&$ac_top_builddir_sub&;t t -+s&@top_build_prefix@&$ac_top_build_prefix&;t t -+s&@srcdir@&$ac_srcdir&;t t -+s&@abs_srcdir@&$ac_abs_srcdir&;t t -+s&@top_srcdir@&$ac_top_srcdir&;t t -+s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t -+s&@builddir@&$ac_builddir&;t t -+s&@abs_builddir@&$ac_abs_builddir&;t t -+s&@abs_top_builddir@&$ac_abs_top_builddir&;t t -+s&@INSTALL@&$ac_INSTALL&;t t -+s&@MKDIR_P@&$ac_MKDIR_P&;t t -+$ac_datarootdir_hack -+" -+eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ -+ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 -+ -+test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && -+ { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && -+ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ -+ "$ac_tmp/out"`; test -z "$ac_out"; } && -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' -+which seems to be undefined. Please make sure it is defined" >&5 -+$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' -+which seems to be undefined. Please make sure it is defined" >&2;} -+ -+ rm -f "$ac_tmp/stdin" -+ case $ac_file in -+ -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; -+ *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; -+ esac \ -+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 -+ ;; -+ :H) -+ # -+ # CONFIG_HEADER -+ # -+ if test x"$ac_file" != x-; then -+ { -+ $as_echo "/* $configure_input */" \ -+ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" -+ } >"$ac_tmp/config.h" \ -+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 -+ if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 -+$as_echo "$as_me: $ac_file is unchanged" >&6;} -+ else -+ rm -f "$ac_file" -+ mv "$ac_tmp/config.h" "$ac_file" \ -+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 -+ fi -+ else -+ $as_echo "/* $configure_input */" \ -+ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ -+ || as_fn_error $? "could not create -" "$LINENO" 5 -+ fi -+# Compute "$ac_file"'s index in $config_headers. -+_am_arg="$ac_file" -+_am_stamp_count=1 -+for _am_header in $config_headers :; do -+ case $_am_header in -+ $_am_arg | $_am_arg:* ) -+ break ;; -+ * ) -+ _am_stamp_count=`expr $_am_stamp_count + 1` ;; -+ esac -+done -+echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || -+$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ -+ X"$_am_arg" : 'X\(//\)[^/]' \| \ -+ X"$_am_arg" : 'X\(//\)$' \| \ -+ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || -+$as_echo X"$_am_arg" | -+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)[^/].*/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\/\)$/{ -+ s//\1/ -+ q -+ } -+ /^X\(\/\).*/{ -+ s//\1/ -+ q -+ } -+ s/.*/./; q'`/stamp-h$_am_stamp_count -+ ;; -+ -+ :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 -+$as_echo "$as_me: executing $ac_file commands" >&6;} -+ ;; -+ esac -+ -+ -+ case $ac_file$ac_mode in -+ "default-1":C) -+# Only add multilib support code if we just rebuilt the top-level -+# Makefile. -+case " $CONFIG_FILES " in -+ *" Makefile "*) -+ ac_file=Makefile . ${multi_basedir}/config-ml.in -+ ;; -+esac ;; -+ "libtool":C) -+ -+ # See if we are running on zsh, and set the options which allow our -+ # commands through without removal of \ escapes. -+ if test -n "${ZSH_VERSION+set}" ; then -+ setopt NO_GLOB_SUBST -+ fi -+ -+ cfgfile="${ofile}T" -+ trap "$RM \"$cfgfile\"; exit 1" 1 2 15 -+ $RM "$cfgfile" -+ -+ cat <<_LT_EOF >> "$cfgfile" -+#! $SHELL -+ -+# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. -+# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION -+# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: -+# NOTE: Changes made to this file will be lost: look at ltmain.sh. -+# -+# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -+# 2006, 2007, 2008, 2009 Free Software Foundation, Inc. -+# Written by Gordon Matzigkeit, 1996 -+# -+# This file is part of GNU Libtool. -+# -+# GNU Libtool is free software; you can redistribute it and/or -+# modify it under the terms of the GNU General Public License as -+# published by the Free Software Foundation; either version 2 of -+# the License, or (at your option) any later version. -+# -+# As a special exception to the GNU General Public License, -+# if you distribute this file as part of a program or library that -+# is built using GNU Libtool, you may include this file under the -+# same distribution terms that you use for the rest of that program. -+# -+# GNU Libtool is distributed in the hope that it will be useful, -+# but WITHOUT ANY WARRANTY; without even the implied warranty of -+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+# GNU General Public License for more details. -+# -+# You should have received a copy of the GNU General Public License -+# along with GNU Libtool; see the file COPYING. If not, a copy -+# can be downloaded from http://www.gnu.org/licenses/gpl.html, or -+# obtained by writing to the Free Software Foundation, Inc., -+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -+ -+ -+# The names of the tagged configurations supported by this script. -+available_tags="CXX " -+ -+# ### BEGIN LIBTOOL CONFIG -+ -+# Which release of libtool.m4 was used? -+macro_version=$macro_version -+macro_revision=$macro_revision -+ -+# Whether or not to build shared libraries. -+build_libtool_libs=$enable_shared -+ -+# Whether or not to build static libraries. -+build_old_libs=$enable_static -+ -+# What type of objects to build. -+pic_mode=$pic_mode -+ -+# Whether or not to optimize for fast installation. -+fast_install=$enable_fast_install -+ -+# Shell to use when invoking shell scripts. -+SHELL=$lt_SHELL -+ -+# An echo program that protects backslashes. -+ECHO=$lt_ECHO -+ -+# The host system. -+host_alias=$host_alias -+host=$host -+host_os=$host_os -+ -+# The build system. -+build_alias=$build_alias -+build=$build -+build_os=$build_os -+ -+# A sed program that does not truncate output. -+SED=$lt_SED -+ -+# Sed that helps us avoid accidentally triggering echo(1) options like -n. -+Xsed="\$SED -e 1s/^X//" -+ -+# A grep program that handles long lines. -+GREP=$lt_GREP -+ -+# An ERE matcher. -+EGREP=$lt_EGREP -+ -+# A literal string matcher. -+FGREP=$lt_FGREP -+ -+# A BSD- or MS-compatible name lister. -+NM=$lt_NM -+ -+# Whether we need soft or hard links. -+LN_S=$lt_LN_S -+ -+# What is the maximum length of a command? -+max_cmd_len=$max_cmd_len -+ -+# Object file suffix (normally "o"). -+objext=$ac_objext -+ -+# Executable file suffix (normally ""). -+exeext=$exeext -+ -+# whether the shell understands "unset". -+lt_unset=$lt_unset -+ -+# turn spaces into newlines. -+SP2NL=$lt_lt_SP2NL -+ -+# turn newlines into spaces. -+NL2SP=$lt_lt_NL2SP -+ -+# An object symbol dumper. -+OBJDUMP=$lt_OBJDUMP -+ -+# Method to check whether dependent libraries are shared objects. -+deplibs_check_method=$lt_deplibs_check_method -+ -+# Command to use when deplibs_check_method == "file_magic". -+file_magic_cmd=$lt_file_magic_cmd -+ -+# The archiver. -+AR=$lt_AR -+AR_FLAGS=$lt_AR_FLAGS -+ -+# A symbol stripping program. -+STRIP=$lt_STRIP -+ -+# Commands used to install an old-style archive. -+RANLIB=$lt_RANLIB -+old_postinstall_cmds=$lt_old_postinstall_cmds -+old_postuninstall_cmds=$lt_old_postuninstall_cmds -+ -+# Whether to use a lock for old archive extraction. -+lock_old_archive_extraction=$lock_old_archive_extraction -+ -+# A C compiler. -+LTCC=$lt_CC -+ -+# LTCC compiler flags. -+LTCFLAGS=$lt_CFLAGS -+ -+# Take the output of nm and produce a listing of raw symbols and C names. -+global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe -+ -+# Transform the output of nm in a proper C declaration. -+global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl -+ -+# Transform the output of nm in a C name address pair. -+global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address -+ -+# Transform the output of nm in a C name address pair when lib prefix is needed. -+global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix -+ -+# The name of the directory that contains temporary libtool files. -+objdir=$objdir -+ -+# Used to examine libraries when file_magic_cmd begins with "file". -+MAGIC_CMD=$MAGIC_CMD -+ -+# Must we lock files when doing compilation? -+need_locks=$lt_need_locks -+ -+# Tool to manipulate archived DWARF debug symbol files on Mac OS X. -+DSYMUTIL=$lt_DSYMUTIL -+ -+# Tool to change global to local symbols on Mac OS X. -+NMEDIT=$lt_NMEDIT -+ -+# Tool to manipulate fat objects and archives on Mac OS X. -+LIPO=$lt_LIPO -+ -+# ldd/readelf like tool for Mach-O binaries on Mac OS X. -+OTOOL=$lt_OTOOL -+ -+# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. -+OTOOL64=$lt_OTOOL64 -+ -+# Old archive suffix (normally "a"). -+libext=$libext -+ -+# Shared library suffix (normally ".so"). -+shrext_cmds=$lt_shrext_cmds -+ -+# The commands to extract the exported symbol list from a shared archive. -+extract_expsyms_cmds=$lt_extract_expsyms_cmds -+ -+# Variables whose values should be saved in libtool wrapper scripts and -+# restored at link time. -+variables_saved_for_relink=$lt_variables_saved_for_relink -+ -+# Do we need the "lib" prefix for modules? -+need_lib_prefix=$need_lib_prefix -+ -+# Do we need a version for libraries? -+need_version=$need_version -+ -+# Library versioning type. -+version_type=$version_type -+ -+# Shared library runtime path variable. -+runpath_var=$runpath_var -+ -+# Shared library path variable. -+shlibpath_var=$shlibpath_var -+ -+# Is shlibpath searched before the hard-coded library search path? -+shlibpath_overrides_runpath=$shlibpath_overrides_runpath -+ -+# Format of library name prefix. -+libname_spec=$lt_libname_spec -+ -+# List of archive names. First name is the real one, the rest are links. -+# The last name is the one that the linker finds with -lNAME -+library_names_spec=$lt_library_names_spec -+ -+# The coded name of the library, if different from the real name. -+soname_spec=$lt_soname_spec -+ -+# Permission mode override for installation of shared libraries. -+install_override_mode=$lt_install_override_mode -+ -+# Command to use after installation of a shared archive. -+postinstall_cmds=$lt_postinstall_cmds -+ -+# Command to use after uninstallation of a shared archive. -+postuninstall_cmds=$lt_postuninstall_cmds -+ -+# Commands used to finish a libtool library installation in a directory. -+finish_cmds=$lt_finish_cmds -+ -+# As "finish_cmds", except a single script fragment to be evaled but -+# not shown. -+finish_eval=$lt_finish_eval -+ -+# Whether we should hardcode library paths into libraries. -+hardcode_into_libs=$hardcode_into_libs -+ -+# Compile-time system search path for libraries. -+sys_lib_search_path_spec=$lt_sys_lib_search_path_spec -+ -+# Run-time system search path for libraries. -+sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec -+ -+# Whether dlopen is supported. -+dlopen_support=$enable_dlopen -+ -+# Whether dlopen of programs is supported. -+dlopen_self=$enable_dlopen_self -+ -+# Whether dlopen of statically linked programs is supported. -+dlopen_self_static=$enable_dlopen_self_static -+ -+# Commands to strip libraries. -+old_striplib=$lt_old_striplib -+striplib=$lt_striplib -+ -+ -+# The linker used to build libraries. -+LD=$lt_LD -+ -+# How to create reloadable object files. -+reload_flag=$lt_reload_flag -+reload_cmds=$lt_reload_cmds -+ -+# Commands used to build an old-style archive. -+old_archive_cmds=$lt_old_archive_cmds -+ -+# A language specific compiler. -+CC=$lt_compiler -+ -+# Is the compiler the GNU compiler? -+with_gcc=$GCC -+ -+# Compiler flag to turn off builtin functions. -+no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag -+ -+# How to pass a linker flag through the compiler. -+wl=$lt_lt_prog_compiler_wl -+ -+# Additional compiler flags for building library objects. -+pic_flag=$lt_lt_prog_compiler_pic -+ -+# Compiler flag to prevent dynamic linking. -+link_static_flag=$lt_lt_prog_compiler_static -+ -+# Does compiler simultaneously support -c and -o options? -+compiler_c_o=$lt_lt_cv_prog_compiler_c_o -+ -+# Whether or not to add -lc for building shared libraries. -+build_libtool_need_lc=$archive_cmds_need_lc -+ -+# Whether or not to disallow shared libs when runtime libs are static. -+allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes -+ -+# Compiler flag to allow reflexive dlopens. -+export_dynamic_flag_spec=$lt_export_dynamic_flag_spec -+ -+# Compiler flag to generate shared objects directly from archives. -+whole_archive_flag_spec=$lt_whole_archive_flag_spec -+ -+# Whether the compiler copes with passing no objects directly. -+compiler_needs_object=$lt_compiler_needs_object -+ -+# Create an old-style archive from a shared archive. -+old_archive_from_new_cmds=$lt_old_archive_from_new_cmds -+ -+# Create a temporary old-style archive to link instead of a shared archive. -+old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds -+ -+# Commands used to build a shared archive. -+archive_cmds=$lt_archive_cmds -+archive_expsym_cmds=$lt_archive_expsym_cmds -+ -+# Commands used to build a loadable module if different from building -+# a shared archive. -+module_cmds=$lt_module_cmds -+module_expsym_cmds=$lt_module_expsym_cmds -+ -+# Whether we are building with GNU ld or not. -+with_gnu_ld=$lt_with_gnu_ld -+ -+# Flag that allows shared libraries with undefined symbols to be built. -+allow_undefined_flag=$lt_allow_undefined_flag -+ -+# Flag that enforces no undefined symbols. -+no_undefined_flag=$lt_no_undefined_flag -+ -+# Flag to hardcode \$libdir into a binary during linking. -+# This must work even if \$libdir does not exist -+hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec -+ -+# If ld is used when linking, flag to hardcode \$libdir into a binary -+# during linking. This must work even if \$libdir does not exist. -+hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld -+ -+# Whether we need a single "-rpath" flag with a separated argument. -+hardcode_libdir_separator=$lt_hardcode_libdir_separator -+ -+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes -+# DIR into the resulting binary. -+hardcode_direct=$hardcode_direct -+ -+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes -+# DIR into the resulting binary and the resulting library dependency is -+# "absolute",i.e impossible to change by setting \${shlibpath_var} if the -+# library is relocated. -+hardcode_direct_absolute=$hardcode_direct_absolute -+ -+# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -+# into the resulting binary. -+hardcode_minus_L=$hardcode_minus_L -+ -+# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -+# into the resulting binary. -+hardcode_shlibpath_var=$hardcode_shlibpath_var -+ -+# Set to "yes" if building a shared library automatically hardcodes DIR -+# into the library and all subsequent libraries and executables linked -+# against it. -+hardcode_automatic=$hardcode_automatic -+ -+# Set to yes if linker adds runtime paths of dependent libraries -+# to runtime path list. -+inherit_rpath=$inherit_rpath -+ -+# Whether libtool must link a program against all its dependency libraries. -+link_all_deplibs=$link_all_deplibs -+ -+# Fix the shell variable \$srcfile for the compiler. -+fix_srcfile_path=$lt_fix_srcfile_path -+ -+# Set to "yes" if exported symbols are required. -+always_export_symbols=$always_export_symbols -+ -+# The commands to list exported symbols. -+export_symbols_cmds=$lt_export_symbols_cmds -+ -+# Symbols that should not be listed in the preloaded symbols. -+exclude_expsyms=$lt_exclude_expsyms -+ -+# Symbols that must always be exported. -+include_expsyms=$lt_include_expsyms -+ -+# Commands necessary for linking programs (against libraries) with templates. -+prelink_cmds=$lt_prelink_cmds -+ -+# Specify filename containing input files. -+file_list_spec=$lt_file_list_spec -+ -+# How to hardcode a shared library path into an executable. -+hardcode_action=$hardcode_action -+ -+# The directories searched by this compiler when creating a shared library. -+compiler_lib_search_dirs=$lt_compiler_lib_search_dirs -+ -+# Dependencies to place before and after the objects being linked to -+# create a shared library. -+predep_objects=$lt_predep_objects -+postdep_objects=$lt_postdep_objects -+predeps=$lt_predeps -+postdeps=$lt_postdeps -+ -+# The library search path used internally by the compiler when linking -+# a shared library. -+compiler_lib_search_path=$lt_compiler_lib_search_path -+ -+# ### END LIBTOOL CONFIG -+ -+_LT_EOF -+ -+ case $host_os in -+ aix3*) -+ cat <<\_LT_EOF >> "$cfgfile" -+# AIX sometimes has problems with the GCC collect2 program. For some -+# reason, if we set the COLLECT_NAMES environment variable, the problems -+# vanish in a puff of smoke. -+if test "X${COLLECT_NAMES+set}" != Xset; then -+ COLLECT_NAMES= -+ export COLLECT_NAMES -+fi -+_LT_EOF -+ ;; -+ esac -+ -+ -+ltmain="$ac_aux_dir/ltmain.sh" -+ -+ -+ # We use sed instead of cat because bash on DJGPP gets confused if -+ # if finds mixed CR/LF and LF-only lines. Since sed operates in -+ # text mode, it properly converts lines to CR/LF. This bash problem -+ # is reportedly fixed, but why not run on old versions too? -+ sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \ -+ || (rm -f "$cfgfile"; exit 1) -+ -+ case $xsi_shell in -+ yes) -+ cat << \_LT_EOF >> "$cfgfile" -+ -+# func_dirname file append nondir_replacement -+# Compute the dirname of FILE. If nonempty, add APPEND to the result, -+# otherwise set result to NONDIR_REPLACEMENT. -+func_dirname () -+{ -+ case ${1} in -+ */*) func_dirname_result="${1%/*}${2}" ;; -+ * ) func_dirname_result="${3}" ;; -+ esac -+} -+ -+# func_basename file -+func_basename () -+{ -+ func_basename_result="${1##*/}" -+} -+ -+# func_dirname_and_basename file append nondir_replacement -+# perform func_basename and func_dirname in a single function -+# call: -+# dirname: Compute the dirname of FILE. If nonempty, -+# add APPEND to the result, otherwise set result -+# to NONDIR_REPLACEMENT. -+# value returned in "$func_dirname_result" -+# basename: Compute filename of FILE. -+# value retuned in "$func_basename_result" -+# Implementation must be kept synchronized with func_dirname -+# and func_basename. For efficiency, we do not delegate to -+# those functions but instead duplicate the functionality here. -+func_dirname_and_basename () -+{ -+ case ${1} in -+ */*) func_dirname_result="${1%/*}${2}" ;; -+ * ) func_dirname_result="${3}" ;; -+ esac -+ func_basename_result="${1##*/}" -+} -+ -+# func_stripname prefix suffix name -+# strip PREFIX and SUFFIX off of NAME. -+# PREFIX and SUFFIX must not contain globbing or regex special -+# characters, hashes, percent signs, but SUFFIX may contain a leading -+# dot (in which case that matches only a dot). -+func_stripname () -+{ -+ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are -+ # positional parameters, so assign one to ordinary parameter first. -+ func_stripname_result=${3} -+ func_stripname_result=${func_stripname_result#"${1}"} -+ func_stripname_result=${func_stripname_result%"${2}"} -+} -+ -+# func_opt_split -+func_opt_split () -+{ -+ func_opt_split_opt=${1%%=*} -+ func_opt_split_arg=${1#*=} -+} -+ -+# func_lo2o object -+func_lo2o () -+{ -+ case ${1} in -+ *.lo) func_lo2o_result=${1%.lo}.${objext} ;; -+ *) func_lo2o_result=${1} ;; -+ esac -+} -+ -+# func_xform libobj-or-source -+func_xform () -+{ -+ func_xform_result=${1%.*}.lo -+} -+ -+# func_arith arithmetic-term... -+func_arith () -+{ -+ func_arith_result=$(( $* )) -+} -+ -+# func_len string -+# STRING may not start with a hyphen. -+func_len () -+{ -+ func_len_result=${#1} -+} -+ -+_LT_EOF -+ ;; -+ *) # Bourne compatible functions. -+ cat << \_LT_EOF >> "$cfgfile" -+ -+# func_dirname file append nondir_replacement -+# Compute the dirname of FILE. If nonempty, add APPEND to the result, -+# otherwise set result to NONDIR_REPLACEMENT. -+func_dirname () -+{ -+ # Extract subdirectory from the argument. -+ func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` -+ if test "X$func_dirname_result" = "X${1}"; then -+ func_dirname_result="${3}" -+ else -+ func_dirname_result="$func_dirname_result${2}" -+ fi -+} -+ -+# func_basename file -+func_basename () -+{ -+ func_basename_result=`$ECHO "${1}" | $SED "$basename"` -+} -+ -+ -+# func_stripname prefix suffix name -+# strip PREFIX and SUFFIX off of NAME. -+# PREFIX and SUFFIX must not contain globbing or regex special -+# characters, hashes, percent signs, but SUFFIX may contain a leading -+# dot (in which case that matches only a dot). -+# func_strip_suffix prefix name -+func_stripname () -+{ -+ case ${2} in -+ .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; -+ *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; -+ esac -+} -+ -+# sed scripts: -+my_sed_long_opt='1s/^\(-[^=]*\)=.*/\1/;q' -+my_sed_long_arg='1s/^-[^=]*=//' -+ -+# func_opt_split -+func_opt_split () -+{ -+ func_opt_split_opt=`$ECHO "${1}" | $SED "$my_sed_long_opt"` -+ func_opt_split_arg=`$ECHO "${1}" | $SED "$my_sed_long_arg"` -+} -+ -+# func_lo2o object -+func_lo2o () -+{ -+ func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` -+} -+ -+# func_xform libobj-or-source -+func_xform () -+{ -+ func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` -+} -+ -+# func_arith arithmetic-term... -+func_arith () -+{ -+ func_arith_result=`expr "$@"` -+} -+ -+# func_len string -+# STRING may not start with a hyphen. -+func_len () -+{ -+ func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` -+} -+ -+_LT_EOF -+esac -+ -+case $lt_shell_append in -+ yes) -+ cat << \_LT_EOF >> "$cfgfile" -+ -+# func_append var value -+# Append VALUE to the end of shell variable VAR. -+func_append () -+{ -+ eval "$1+=\$2" -+} -+_LT_EOF -+ ;; -+ *) -+ cat << \_LT_EOF >> "$cfgfile" -+ -+# func_append var value -+# Append VALUE to the end of shell variable VAR. -+func_append () -+{ -+ eval "$1=\$$1\$2" -+} -+ -+_LT_EOF -+ ;; -+ esac -+ -+ -+ sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \ -+ || (rm -f "$cfgfile"; exit 1) -+ -+ mv -f "$cfgfile" "$ofile" || -+ (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") -+ chmod +x "$ofile" -+ -+ -+ cat <<_LT_EOF >> "$ofile" -+ -+# ### BEGIN LIBTOOL TAG CONFIG: CXX -+ -+# The linker used to build libraries. -+LD=$lt_LD_CXX -+ -+# How to create reloadable object files. -+reload_flag=$lt_reload_flag_CXX -+reload_cmds=$lt_reload_cmds_CXX -+ -+# Commands used to build an old-style archive. -+old_archive_cmds=$lt_old_archive_cmds_CXX -+ -+# A language specific compiler. -+CC=$lt_compiler_CXX -+ -+# Is the compiler the GNU compiler? -+with_gcc=$GCC_CXX -+ -+# Compiler flag to turn off builtin functions. -+no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX -+ -+# How to pass a linker flag through the compiler. -+wl=$lt_lt_prog_compiler_wl_CXX -+ -+# Additional compiler flags for building library objects. -+pic_flag=$lt_lt_prog_compiler_pic_CXX -+ -+# Compiler flag to prevent dynamic linking. -+link_static_flag=$lt_lt_prog_compiler_static_CXX -+ -+# Does compiler simultaneously support -c and -o options? -+compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX -+ -+# Whether or not to add -lc for building shared libraries. -+build_libtool_need_lc=$archive_cmds_need_lc_CXX -+ -+# Whether or not to disallow shared libs when runtime libs are static. -+allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX -+ -+# Compiler flag to allow reflexive dlopens. -+export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX -+ -+# Compiler flag to generate shared objects directly from archives. -+whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX -+ -+# Whether the compiler copes with passing no objects directly. -+compiler_needs_object=$lt_compiler_needs_object_CXX -+ -+# Create an old-style archive from a shared archive. -+old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX -+ -+# Create a temporary old-style archive to link instead of a shared archive. -+old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX -+ -+# Commands used to build a shared archive. -+archive_cmds=$lt_archive_cmds_CXX -+archive_expsym_cmds=$lt_archive_expsym_cmds_CXX -+ -+# Commands used to build a loadable module if different from building -+# a shared archive. -+module_cmds=$lt_module_cmds_CXX -+module_expsym_cmds=$lt_module_expsym_cmds_CXX -+ -+# Whether we are building with GNU ld or not. -+with_gnu_ld=$lt_with_gnu_ld_CXX -+ -+# Flag that allows shared libraries with undefined symbols to be built. -+allow_undefined_flag=$lt_allow_undefined_flag_CXX -+ -+# Flag that enforces no undefined symbols. -+no_undefined_flag=$lt_no_undefined_flag_CXX -+ -+# Flag to hardcode \$libdir into a binary during linking. -+# This must work even if \$libdir does not exist -+hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX -+ -+# If ld is used when linking, flag to hardcode \$libdir into a binary -+# during linking. This must work even if \$libdir does not exist. -+hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX -+ -+# Whether we need a single "-rpath" flag with a separated argument. -+hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX -+ -+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes -+# DIR into the resulting binary. -+hardcode_direct=$hardcode_direct_CXX -+ -+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes -+# DIR into the resulting binary and the resulting library dependency is -+# "absolute",i.e impossible to change by setting \${shlibpath_var} if the -+# library is relocated. -+hardcode_direct_absolute=$hardcode_direct_absolute_CXX -+ -+# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -+# into the resulting binary. -+hardcode_minus_L=$hardcode_minus_L_CXX -+ -+# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -+# into the resulting binary. -+hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX -+ -+# Set to "yes" if building a shared library automatically hardcodes DIR -+# into the library and all subsequent libraries and executables linked -+# against it. -+hardcode_automatic=$hardcode_automatic_CXX -+ -+# Set to yes if linker adds runtime paths of dependent libraries -+# to runtime path list. -+inherit_rpath=$inherit_rpath_CXX -+ -+# Whether libtool must link a program against all its dependency libraries. -+link_all_deplibs=$link_all_deplibs_CXX -+ -+# Fix the shell variable \$srcfile for the compiler. -+fix_srcfile_path=$lt_fix_srcfile_path_CXX -+ -+# Set to "yes" if exported symbols are required. -+always_export_symbols=$always_export_symbols_CXX -+ -+# The commands to list exported symbols. -+export_symbols_cmds=$lt_export_symbols_cmds_CXX -+ -+# Symbols that should not be listed in the preloaded symbols. -+exclude_expsyms=$lt_exclude_expsyms_CXX -+ -+# Symbols that must always be exported. -+include_expsyms=$lt_include_expsyms_CXX -+ -+# Commands necessary for linking programs (against libraries) with templates. -+prelink_cmds=$lt_prelink_cmds_CXX -+ -+# Specify filename containing input files. -+file_list_spec=$lt_file_list_spec_CXX -+ -+# How to hardcode a shared library path into an executable. -+hardcode_action=$hardcode_action_CXX -+ -+# The directories searched by this compiler when creating a shared library. -+compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX -+ -+# Dependencies to place before and after the objects being linked to -+# create a shared library. -+predep_objects=$lt_predep_objects_CXX -+postdep_objects=$lt_postdep_objects_CXX -+predeps=$lt_predeps_CXX -+postdeps=$lt_postdeps_CXX -+ -+# The library search path used internally by the compiler when linking -+# a shared library. -+compiler_lib_search_path=$lt_compiler_lib_search_path_CXX -+ -+# ### END LIBTOOL TAG CONFIG: CXX -+_LT_EOF -+ -+ ;; -+ "include/gstdint.h":C) -+if test "$GCC" = yes; then -+ echo "/* generated for " `$CC --version | sed 1q` "*/" > tmp-stdint.h -+else -+ echo "/* generated for $CC */" > tmp-stdint.h -+fi -+ -+sed 's/^ *//' >> tmp-stdint.h <<EOF -+ -+ #ifndef GCC_GENERATED_STDINT_H -+ #define GCC_GENERATED_STDINT_H 1 -+ -+ #include <sys/types.h> -+EOF -+ -+if test "$acx_cv_header_stdint" != stdint.h; then -+ echo "#include <stddef.h>" >> tmp-stdint.h -+fi -+if test "$acx_cv_header_stdint" != stddef.h; then -+ echo "#include <$acx_cv_header_stdint>" >> tmp-stdint.h -+fi -+ -+sed 's/^ *//' >> tmp-stdint.h <<EOF -+ /* glibc uses these symbols as guards to prevent redefinitions. */ -+ #ifdef __int8_t_defined -+ #define _INT8_T -+ #define _INT16_T -+ #define _INT32_T -+ #endif -+ #ifdef __uint32_t_defined -+ #define _UINT32_T -+ #endif -+ -+EOF -+ -+# ----------------- done header, emit basic int types ------------- -+if test "$acx_cv_header_stdint" = stddef.h; then -+ sed 's/^ *//' >> tmp-stdint.h <<EOF -+ -+ #ifndef _UINT8_T -+ #define _UINT8_T -+ #ifndef __uint8_t_defined -+ #define __uint8_t_defined -+ #ifndef uint8_t -+ typedef unsigned $acx_cv_type_int8_t uint8_t; -+ #endif -+ #endif -+ #endif -+ -+ #ifndef _UINT16_T -+ #define _UINT16_T -+ #ifndef __uint16_t_defined -+ #define __uint16_t_defined -+ #ifndef uint16_t -+ typedef unsigned $acx_cv_type_int16_t uint16_t; -+ #endif -+ #endif -+ #endif -+ -+ #ifndef _UINT32_T -+ #define _UINT32_T -+ #ifndef __uint32_t_defined -+ #define __uint32_t_defined -+ #ifndef uint32_t -+ typedef unsigned $acx_cv_type_int32_t uint32_t; -+ #endif -+ #endif -+ #endif -+ -+ #ifndef _INT8_T -+ #define _INT8_T -+ #ifndef __int8_t_defined -+ #define __int8_t_defined -+ #ifndef int8_t -+ typedef $acx_cv_type_int8_t int8_t; -+ #endif -+ #endif -+ #endif -+ -+ #ifndef _INT16_T -+ #define _INT16_T -+ #ifndef __int16_t_defined -+ #define __int16_t_defined -+ #ifndef int16_t -+ typedef $acx_cv_type_int16_t int16_t; -+ #endif -+ #endif -+ #endif -+ -+ #ifndef _INT32_T -+ #define _INT32_T -+ #ifndef __int32_t_defined -+ #define __int32_t_defined -+ #ifndef int32_t -+ typedef $acx_cv_type_int32_t int32_t; -+ #endif -+ #endif -+ #endif -+EOF -+elif test "$ac_cv_type_u_int32_t" = yes; then -+ sed 's/^ *//' >> tmp-stdint.h <<EOF -+ -+ /* int8_t int16_t int32_t defined by inet code, we do the u_intXX types */ -+ #ifndef _INT8_T -+ #define _INT8_T -+ #endif -+ #ifndef _INT16_T -+ #define _INT16_T -+ #endif -+ #ifndef _INT32_T -+ #define _INT32_T -+ #endif -+ -+ #ifndef _UINT8_T -+ #define _UINT8_T -+ #ifndef __uint8_t_defined -+ #define __uint8_t_defined -+ #ifndef uint8_t -+ typedef u_int8_t uint8_t; -+ #endif -+ #endif -+ #endif -+ -+ #ifndef _UINT16_T -+ #define _UINT16_T -+ #ifndef __uint16_t_defined -+ #define __uint16_t_defined -+ #ifndef uint16_t -+ typedef u_int16_t uint16_t; -+ #endif -+ #endif -+ #endif -+ -+ #ifndef _UINT32_T -+ #define _UINT32_T -+ #ifndef __uint32_t_defined -+ #define __uint32_t_defined -+ #ifndef uint32_t -+ typedef u_int32_t uint32_t; -+ #endif -+ #endif -+ #endif -+EOF -+else -+ sed 's/^ *//' >> tmp-stdint.h <<EOF -+ -+ /* Some systems have guard macros to prevent redefinitions, define them. */ -+ #ifndef _INT8_T -+ #define _INT8_T -+ #endif -+ #ifndef _INT16_T -+ #define _INT16_T -+ #endif -+ #ifndef _INT32_T -+ #define _INT32_T -+ #endif -+ #ifndef _UINT8_T -+ #define _UINT8_T -+ #endif -+ #ifndef _UINT16_T -+ #define _UINT16_T -+ #endif -+ #ifndef _UINT32_T -+ #define _UINT32_T -+ #endif -+EOF -+fi -+ -+# ------------- done basic int types, emit int64_t types ------------ -+if test "$ac_cv_type_uint64_t" = yes; then -+ sed 's/^ *//' >> tmp-stdint.h <<EOF -+ -+ /* system headers have good uint64_t and int64_t */ -+ #ifndef _INT64_T -+ #define _INT64_T -+ #endif -+ #ifndef _UINT64_T -+ #define _UINT64_T -+ #endif -+EOF -+elif test "$ac_cv_type_u_int64_t" = yes; then -+ sed 's/^ *//' >> tmp-stdint.h <<EOF -+ -+ /* system headers have an u_int64_t (and int64_t) */ -+ #ifndef _INT64_T -+ #define _INT64_T -+ #endif -+ #ifndef _UINT64_T -+ #define _UINT64_T -+ #ifndef __uint64_t_defined -+ #define __uint64_t_defined -+ #ifndef uint64_t -+ typedef u_int64_t uint64_t; -+ #endif -+ #endif -+ #endif -+EOF -+elif test -n "$acx_cv_type_int64_t"; then -+ sed 's/^ *//' >> tmp-stdint.h <<EOF -+ -+ /* architecture has a 64-bit type, $acx_cv_type_int64_t */ -+ #ifndef _INT64_T -+ #define _INT64_T -+ #ifndef int64_t -+ typedef $acx_cv_type_int64_t int64_t; -+ #endif -+ #endif -+ #ifndef _UINT64_T -+ #define _UINT64_T -+ #ifndef __uint64_t_defined -+ #define __uint64_t_defined -+ #ifndef uint64_t -+ typedef unsigned $acx_cv_type_int64_t uint64_t; -+ #endif -+ #endif -+ #endif -+EOF -+else -+ sed 's/^ *//' >> tmp-stdint.h <<EOF -+ -+ /* some common heuristics for int64_t, using compiler-specific tests */ -+ #if defined __STDC_VERSION__ && (__STDC_VERSION__-0) >= 199901L -+ #ifndef _INT64_T -+ #define _INT64_T -+ #ifndef __int64_t_defined -+ #ifndef int64_t -+ typedef long long int64_t; -+ #endif -+ #endif -+ #endif -+ #ifndef _UINT64_T -+ #define _UINT64_T -+ #ifndef uint64_t -+ typedef unsigned long long uint64_t; -+ #endif -+ #endif -+ -+ #elif defined __GNUC__ && defined (__STDC__) && __STDC__-0 -+ /* NextStep 2.0 cc is really gcc 1.93 but it defines __GNUC__ = 2 and -+ does not implement __extension__. But that compiler doesn't define -+ __GNUC_MINOR__. */ -+ # if __GNUC__ < 2 || (__NeXT__ && !__GNUC_MINOR__) -+ # define __extension__ -+ # endif -+ -+ # ifndef _INT64_T -+ # define _INT64_T -+ # ifndef int64_t -+ __extension__ typedef long long int64_t; -+ # endif -+ # endif -+ # ifndef _UINT64_T -+ # define _UINT64_T -+ # ifndef uint64_t -+ __extension__ typedef unsigned long long uint64_t; -+ # endif -+ # endif -+ -+ #elif !defined __STRICT_ANSI__ -+ # if defined _MSC_VER || defined __WATCOMC__ || defined __BORLANDC__ -+ -+ # ifndef _INT64_T -+ # define _INT64_T -+ # ifndef int64_t -+ typedef __int64 int64_t; -+ # endif -+ # endif -+ # ifndef _UINT64_T -+ # define _UINT64_T -+ # ifndef uint64_t -+ typedef unsigned __int64 uint64_t; -+ # endif -+ # endif -+ # endif /* compiler */ -+ -+ #endif /* ANSI version */ -+EOF -+fi -+ -+# ------------- done int64_t types, emit intptr types ------------ -+if test "$ac_cv_type_uintptr_t" != yes; then -+ sed 's/^ *//' >> tmp-stdint.h <<EOF -+ -+ /* Define intptr_t based on sizeof(void*) = $ac_cv_sizeof_void_p */ -+ #ifndef __uintptr_t_defined -+ #ifndef uintptr_t -+ typedef u$acx_cv_type_intptr_t uintptr_t; -+ #endif -+ #endif -+ #ifndef __intptr_t_defined -+ #ifndef intptr_t -+ typedef $acx_cv_type_intptr_t intptr_t; -+ #endif -+ #endif -+EOF -+fi -+ -+# ------------- done intptr types, emit int_least types ------------ -+if test "$ac_cv_type_int_least32_t" != yes; then -+ sed 's/^ *//' >> tmp-stdint.h <<EOF -+ -+ /* Define int_least types */ -+ typedef int8_t int_least8_t; -+ typedef int16_t int_least16_t; -+ typedef int32_t int_least32_t; -+ #ifdef _INT64_T -+ typedef int64_t int_least64_t; -+ #endif -+ -+ typedef uint8_t uint_least8_t; -+ typedef uint16_t uint_least16_t; -+ typedef uint32_t uint_least32_t; -+ #ifdef _UINT64_T -+ typedef uint64_t uint_least64_t; -+ #endif -+EOF -+fi -+ -+# ------------- done intptr types, emit int_fast types ------------ -+if test "$ac_cv_type_int_fast32_t" != yes; then -+ sed 's/^ *//' >> tmp-stdint.h <<EOF -+ -+ /* Define int_fast types. short is often slow */ -+ typedef int8_t int_fast8_t; -+ typedef int int_fast16_t; -+ typedef int32_t int_fast32_t; -+ #ifdef _INT64_T -+ typedef int64_t int_fast64_t; -+ #endif -+ -+ typedef uint8_t uint_fast8_t; -+ typedef unsigned int uint_fast16_t; -+ typedef uint32_t uint_fast32_t; -+ #ifdef _UINT64_T -+ typedef uint64_t uint_fast64_t; -+ #endif -+EOF -+fi -+ -+if test "$ac_cv_type_uintmax_t" != yes; then -+ sed 's/^ *//' >> tmp-stdint.h <<EOF -+ -+ /* Define intmax based on what we found */ -+ #ifndef intmax_t -+ #ifdef _INT64_T -+ typedef int64_t intmax_t; -+ #else -+ typedef long intmax_t; -+ #endif -+ #endif -+ #ifndef uintmax_t -+ #ifdef _UINT64_T -+ typedef uint64_t uintmax_t; -+ #else -+ typedef unsigned long uintmax_t; -+ #endif -+ #endif -+EOF -+fi -+ -+sed 's/^ *//' >> tmp-stdint.h <<EOF -+ -+ #endif /* GCC_GENERATED_STDINT_H */ -+EOF -+ -+if test -r include/gstdint.h && cmp -s tmp-stdint.h include/gstdint.h; then -+ rm -f tmp-stdint.h -+else -+ mv -f tmp-stdint.h include/gstdint.h -+fi -+ -+ ;; -+ "scripts/testsuite_flags":F) chmod +x scripts/testsuite_flags ;; -+ "scripts/extract_symvers":F) chmod +x scripts/extract_symvers ;; -+ "include/Makefile":F) cat > vpsed$$ << \_EOF -+s!`test -f '$<' || echo '$(srcdir)/'`!! -+_EOF -+ sed -f vpsed$$ $ac_file > tmp$$ -+ mv tmp$$ $ac_file -+ rm vpsed$$ -+ echo 'MULTISUBDIR =' >> $ac_file -+ ml_norecursion=yes -+ . ${multi_basedir}/config-ml.in -+ { ml_norecursion=; unset ml_norecursion;} -+ ;; -+ "libsupc++/Makefile":F) cat > vpsed$$ << \_EOF -+s!`test -f '$<' || echo '$(srcdir)/'`!! -+_EOF -+ sed -f vpsed$$ $ac_file > tmp$$ -+ mv tmp$$ $ac_file -+ rm vpsed$$ -+ echo 'MULTISUBDIR =' >> $ac_file -+ ml_norecursion=yes -+ . ${multi_basedir}/config-ml.in -+ { ml_norecursion=; unset ml_norecursion;} -+ ;; -+ "src/Makefile":F) cat > vpsed$$ << \_EOF -+s!`test -f '$<' || echo '$(srcdir)/'`!! -+_EOF -+ sed -f vpsed$$ $ac_file > tmp$$ -+ mv tmp$$ $ac_file -+ rm vpsed$$ -+ echo 'MULTISUBDIR =' >> $ac_file -+ ml_norecursion=yes -+ . ${multi_basedir}/config-ml.in -+ { ml_norecursion=; unset ml_norecursion;} -+ ;; -+ "src/c++98/Makefile":F) cat > vpsed$$ << \_EOF -+s!`test -f '$<' || echo '$(srcdir)/'`!! -+_EOF -+ sed -f vpsed$$ $ac_file > tmp$$ -+ mv tmp$$ $ac_file -+ rm vpsed$$ -+ echo 'MULTISUBDIR =' >> $ac_file -+ ml_norecursion=yes -+ . ${multi_basedir}/config-ml.in -+ { ml_norecursion=; unset ml_norecursion;} -+ ;; -+ "src/c++11/Makefile":F) cat > vpsed$$ << \_EOF -+s!`test -f '$<' || echo '$(srcdir)/'`!! -+_EOF -+ sed -f vpsed$$ $ac_file > tmp$$ -+ mv tmp$$ $ac_file -+ rm vpsed$$ -+ echo 'MULTISUBDIR =' >> $ac_file -+ ml_norecursion=yes -+ . ${multi_basedir}/config-ml.in -+ { ml_norecursion=; unset ml_norecursion;} -+ ;; -+ "src/c++17/Makefile":F) cat > vpsed$$ << \_EOF -+s!`test -f '$<' || echo '$(srcdir)/'`!! -+_EOF -+ sed -f vpsed$$ $ac_file > tmp$$ -+ mv tmp$$ $ac_file -+ rm vpsed$$ -+ echo 'MULTISUBDIR =' >> $ac_file -+ ml_norecursion=yes -+ . ${multi_basedir}/config-ml.in -+ { ml_norecursion=; unset ml_norecursion;} -+ ;; -+ "src/c++20/Makefile":F) cat > vpsed$$ << \_EOF -+s!`test -f '$<' || echo '$(srcdir)/'`!! -+_EOF -+ sed -f vpsed$$ $ac_file > tmp$$ -+ mv tmp$$ $ac_file -+ rm vpsed$$ -+ echo 'MULTISUBDIR =' >> $ac_file -+ ml_norecursion=yes -+ . ${multi_basedir}/config-ml.in -+ { ml_norecursion=; unset ml_norecursion;} -+ ;; -+ "src/filesystem/Makefile":F) cat > vpsed$$ << \_EOF -+s!`test -f '$<' || echo '$(srcdir)/'`!! -+_EOF -+ sed -f vpsed$$ $ac_file > tmp$$ -+ mv tmp$$ $ac_file -+ rm vpsed$$ -+ echo 'MULTISUBDIR =' >> $ac_file -+ ml_norecursion=yes -+ . ${multi_basedir}/config-ml.in -+ { ml_norecursion=; unset ml_norecursion;} -+ ;; -+ "src/libbacktrace/Makefile":F) cat > vpsed$$ << \_EOF -+s!`test -f '$<' || echo '$(srcdir)/'`!! -+_EOF -+ sed -f vpsed$$ $ac_file > tmp$$ -+ mv tmp$$ $ac_file -+ rm vpsed$$ -+ echo 'MULTISUBDIR =' >> $ac_file -+ ml_norecursion=yes -+ . ${multi_basedir}/config-ml.in -+ { ml_norecursion=; unset ml_norecursion;} -+ ;; -+ "doc/Makefile":F) cat > vpsed$$ << \_EOF -+s!`test -f '$<' || echo '$(srcdir)/'`!! -+_EOF -+ sed -f vpsed$$ $ac_file > tmp$$ -+ mv tmp$$ $ac_file -+ rm vpsed$$ -+ echo 'MULTISUBDIR =' >> $ac_file -+ ml_norecursion=yes -+ . ${multi_basedir}/config-ml.in -+ { ml_norecursion=; unset ml_norecursion;} -+ ;; -+ "po/Makefile":F) cat > vpsed$$ << \_EOF -+s!`test -f '$<' || echo '$(srcdir)/'`!! -+_EOF -+ sed -f vpsed$$ $ac_file > tmp$$ -+ mv tmp$$ $ac_file -+ rm vpsed$$ -+ echo 'MULTISUBDIR =' >> $ac_file -+ ml_norecursion=yes -+ . ${multi_basedir}/config-ml.in -+ { ml_norecursion=; unset ml_norecursion;} -+ ;; -+ "testsuite/Makefile":F) cat > vpsed$$ << \_EOF -+s!`test -f '$<' || echo '$(srcdir)/'`!! -+_EOF -+ sed -f vpsed$$ $ac_file > tmp$$ -+ mv tmp$$ $ac_file -+ rm vpsed$$ -+ echo 'MULTISUBDIR =' >> $ac_file -+ ml_norecursion=yes -+ . ${multi_basedir}/config-ml.in -+ { ml_norecursion=; unset ml_norecursion;} -+ ;; -+ "python/Makefile":F) cat > vpsed$$ << \_EOF -+s!`test -f '$<' || echo '$(srcdir)/'`!! -+_EOF -+ sed -f vpsed$$ $ac_file > tmp$$ -+ mv tmp$$ $ac_file -+ rm vpsed$$ -+ echo 'MULTISUBDIR =' >> $ac_file -+ ml_norecursion=yes -+ . ${multi_basedir}/config-ml.in -+ { ml_norecursion=; unset ml_norecursion;} -+ ;; -+ "generate-headers":C) (cd include && ${MAKE-make} pch_build= ) ;; -+ -+ esac -+done # for ac_tag -+ -+ -+as_fn_exit 0 -+_ACEOF -+ac_clean_files=$ac_clean_files_save -+ -+test $ac_write_fail = 0 || -+ as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 -+ -+ -+# configure is writing to config.log, and then calls config.status. -+# config.status does its own redirection, appending to config.log. -+# Unfortunately, on DOS this fails, as config.log is still kept open -+# by configure, so config.status won't be able to write to it; its -+# output is simply discarded. So we exec the FD to /dev/null, -+# effectively closing config.log, so it can be properly (re)opened and -+# appended to by config.status. When coming back to configure, we -+# need to make the FD available again. -+if test "$no_create" != yes; then -+ ac_cs_success=: -+ ac_config_status_args= -+ test "$silent" = yes && -+ ac_config_status_args="$ac_config_status_args --quiet" -+ exec 5>/dev/null -+ $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false -+ exec 5>>config.log -+ # Use ||, not &&, to avoid exiting from the if with $? = 1, which -+ # would make configure fail if this is the last instruction. -+ $ac_cs_success || as_fn_exit 1 -+fi -+if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then -+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 -+$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} -+fi -+ -diff -ruN gcc-12.2.0/libstdc++-v3/autom4te.cache/requests gcc-12.2.0-banan/libstdc++-v3/autom4te.cache/requests ---- gcc-12.2.0/libstdc++-v3/autom4te.cache/requests 1970-01-01 02:00:00.000000000 +0200 -+++ gcc-12.2.0-banan/libstdc++-v3/autom4te.cache/requests 2023-04-05 21:57:18.136349251 +0300 -@@ -0,0 +1,78 @@ -+# This file was generated. -+# It contains the lists of macros which have been traced. -+# It can be safely removed. -+ -+@request = ( -+ bless( [ -+ '0', -+ 1, -+ [ -+ '/usr/share/autoconf' -+ ], -+ [ -+ '/usr/share/autoconf/autoconf/autoconf.m4f', -+ 'aclocal.m4', -+ 'configure.ac' -+ ], -+ { -+ 'AM_PROG_CC_C_O' => 1, -+ '_AM_COND_ELSE' => 1, -+ 'AC_CANONICAL_SYSTEM' => 1, -+ 'AM_PROG_CXX_C_O' => 1, -+ 'AC_SUBST_TRACE' => 1, -+ 'AM_PROG_FC_C_O' => 1, -+ 'include' => 1, -+ 'LT_CONFIG_LTDL_DIR' => 1, -+ 'AM_MAINTAINER_MODE' => 1, -+ 'AM_XGETTEXT_OPTION' => 1, -+ 'm4_sinclude' => 1, -+ 'AM_PROG_AR' => 1, -+ 'AM_INIT_AUTOMAKE' => 1, -+ 'AC_FC_SRCEXT' => 1, -+ 'AC_CONFIG_AUX_DIR' => 1, -+ 'AM_CONDITIONAL' => 1, -+ 'AC_CANONICAL_TARGET' => 1, -+ 'AC_LIBSOURCE' => 1, -+ 'sinclude' => 1, -+ 'AC_CONFIG_LINKS' => 1, -+ 'AC_FC_PP_DEFINE' => 1, -+ 'AM_MAKEFILE_INCLUDE' => 1, -+ 'm4_include' => 1, -+ '_AM_COND_ENDIF' => 1, -+ '_AM_COND_IF' => 1, -+ 'm4_pattern_forbid' => 1, -+ 'AC_CANONICAL_HOST' => 1, -+ '_m4_warn' => 1, -+ '_LT_AC_TAGCONFIG' => 1, -+ 'AM_AUTOMAKE_VERSION' => 1, -+ '_AM_MAKEFILE_INCLUDE' => 1, -+ 'AM_POT_TOOLS' => 1, -+ 'AC_DEFINE_TRACE_LITERAL' => 1, -+ 'AC_PROG_LIBTOOL' => 1, -+ 'AC_REQUIRE_AUX_FILE' => 1, -+ 'AC_SUBST' => 1, -+ 'AM_GNU_GETTEXT' => 1, -+ 'AC_FC_PP_SRCEXT' => 1, -+ 'AC_CONFIG_HEADERS' => 1, -+ 'AM_NLS' => 1, -+ 'AC_CONFIG_FILES' => 1, -+ 'AC_INIT' => 1, -+ '_AM_SUBST_NOTMAKE' => 1, -+ 'AC_CANONICAL_BUILD' => 1, -+ 'AC_CONFIG_LIBOBJ_DIR' => 1, -+ 'AC_FC_FREEFORM' => 1, -+ 'AM_ENABLE_MULTILIB' => 1, -+ 'AH_OUTPUT' => 1, -+ 'AC_CONFIG_SUBDIRS' => 1, -+ 'LT_SUPPORTED_TAG' => 1, -+ 'AM_PROG_MOC' => 1, -+ 'AM_SILENT_RULES' => 1, -+ 'LT_INIT' => 1, -+ 'AM_PROG_F77_C_O' => 1, -+ 'm4_pattern_allow' => 1, -+ 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1, -+ 'AM_PATH_GUILE' => 1 -+ } -+ ], 'Autom4te::Request' ) -+ ); -+ -diff -ruN gcc-12.2.0/libstdc++-v3/autom4te.cache/traces.0 gcc-12.2.0-banan/libstdc++-v3/autom4te.cache/traces.0 ---- gcc-12.2.0/libstdc++-v3/autom4te.cache/traces.0 1970-01-01 02:00:00.000000000 +0200 -+++ gcc-12.2.0-banan/libstdc++-v3/autom4te.cache/traces.0 2023-04-05 21:57:17.349695468 +0300 -@@ -0,0 +1,43414 @@ -+m4trace:aclocal.m4:855: -1- m4_include([../config/acx.m4]) -+m4trace:aclocal.m4:856: -1- m4_include([../config/enable.m4]) -+m4trace:aclocal.m4:857: -1- m4_include([../config/futex.m4]) -+m4trace:aclocal.m4:858: -1- m4_include([../config/hwcaps.m4]) -+m4trace:aclocal.m4:859: -1- m4_include([../config/iconv.m4]) -+m4trace:aclocal.m4:860: -1- m4_include([../config/lead-dot.m4]) -+m4trace:aclocal.m4:861: -1- m4_include([../config/lib-ld.m4]) -+m4trace:aclocal.m4:862: -1- m4_include([../config/lib-link.m4]) -+m4trace:aclocal.m4:863: -1- m4_include([../config/lib-prefix.m4]) -+m4trace:aclocal.m4:864: -1- m4_include([../config/lthostflags.m4]) -+m4trace:aclocal.m4:865: -1- m4_include([../config/multi.m4]) -+m4trace:aclocal.m4:866: -1- m4_include([../config/no-executables.m4]) -+m4trace:aclocal.m4:867: -1- m4_include([../config/override.m4]) -+m4trace:aclocal.m4:868: -1- m4_include([../config/stdint.m4]) -+m4trace:aclocal.m4:869: -1- m4_include([../config/toolexeclibdir.m4]) -+m4trace:aclocal.m4:870: -1- m4_include([../config/unwind_ipinfo.m4]) -+m4trace:aclocal.m4:871: -1- m4_include([../libtool.m4]) -+m4trace:aclocal.m4:872: -1- m4_include([../ltoptions.m4]) -+m4trace:aclocal.m4:873: -1- m4_include([../ltsugar.m4]) -+m4trace:aclocal.m4:874: -1- m4_include([../ltversion.m4]) -+m4trace:aclocal.m4:875: -1- m4_include([../lt~obsolete.m4]) -+m4trace:aclocal.m4:876: -1- m4_include([crossconfig.m4]) -+m4trace:aclocal.m4:877: -1- m4_include([linkage.m4]) -+m4trace:aclocal.m4:878: -1- m4_include([acinclude.m4]) -+m4trace:acinclude.m4:5076: -1- m4_include([../config/gc++filt.m4]) -+m4trace:acinclude.m4:5077: -1- m4_include([../config/tls.m4]) -+m4trace:../config/tls.m4:109: -1- AC_DEFINE_TRACE_LITERAL([HAVE_CC_TLS]) -+m4trace:../config/tls.m4:109: -1- m4_pattern_allow([^HAVE_CC_TLS$]) -+m4trace:../config/tls.m4:109: -1- AH_OUTPUT([HAVE_CC_TLS], [/* Define to 1 if the target assembler supports thread-local storage. */ -+@%:@undef HAVE_CC_TLS]) -+m4trace:acinclude.m4:5078: -1- m4_include([../config/gthr.m4]) -+m4trace:acinclude.m4:5079: -1- m4_include([../config/cet.m4]) -+m4trace:configure.ac:3: -1- AC_INIT([package-unused], [version-unused], [], [libstdc++]) -+m4trace:configure.ac:3: -1- m4_pattern_forbid([^_?A[CHUM]_]) -+m4trace:configure.ac:3: -1- m4_pattern_forbid([_AC_]) -+m4trace:configure.ac:3: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS']) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^AS_FLAGS$]) -+m4trace:configure.ac:3: -1- m4_pattern_forbid([^_?m4_]) -+m4trace:configure.ac:3: -1- m4_pattern_forbid([^dnl$]) -+m4trace:configure.ac:3: -1- m4_pattern_forbid([^_?AS_]) -+m4trace:configure.ac:3: -1- AC_SUBST([SHELL]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([SHELL]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^SHELL$]) -+m4trace:configure.ac:3: -1- AC_SUBST([PATH_SEPARATOR]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([PATH_SEPARATOR]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^PATH_SEPARATOR$]) -+m4trace:configure.ac:3: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME], ['AC_PACKAGE_NAME'])]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([PACKAGE_NAME]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_NAME$]) -+m4trace:configure.ac:3: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME], ['AC_PACKAGE_TARNAME'])]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([PACKAGE_TARNAME]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) -+m4trace:configure.ac:3: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION], ['AC_PACKAGE_VERSION'])]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([PACKAGE_VERSION]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_VERSION$]) -+m4trace:configure.ac:3: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING], ['AC_PACKAGE_STRING'])]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([PACKAGE_STRING]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_STRING$]) -+m4trace:configure.ac:3: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([PACKAGE_BUGREPORT]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) -+m4trace:configure.ac:3: -1- AC_SUBST([PACKAGE_URL], [m4_ifdef([AC_PACKAGE_URL], ['AC_PACKAGE_URL'])]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([PACKAGE_URL]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_URL$]) -+m4trace:configure.ac:3: -1- AC_SUBST([exec_prefix], [NONE]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([exec_prefix]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^exec_prefix$]) -+m4trace:configure.ac:3: -1- AC_SUBST([prefix], [NONE]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([prefix]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^prefix$]) -+m4trace:configure.ac:3: -1- AC_SUBST([program_transform_name], [s,x,x,]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([program_transform_name]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^program_transform_name$]) -+m4trace:configure.ac:3: -1- AC_SUBST([bindir], ['${exec_prefix}/bin']) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([bindir]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^bindir$]) -+m4trace:configure.ac:3: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin']) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([sbindir]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^sbindir$]) -+m4trace:configure.ac:3: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec']) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([libexecdir]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^libexecdir$]) -+m4trace:configure.ac:3: -1- AC_SUBST([datarootdir], ['${prefix}/share']) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([datarootdir]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^datarootdir$]) -+m4trace:configure.ac:3: -1- AC_SUBST([datadir], ['${datarootdir}']) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([datadir]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^datadir$]) -+m4trace:configure.ac:3: -1- AC_SUBST([sysconfdir], ['${prefix}/etc']) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([sysconfdir]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^sysconfdir$]) -+m4trace:configure.ac:3: -1- AC_SUBST([sharedstatedir], ['${prefix}/com']) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([sharedstatedir]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^sharedstatedir$]) -+m4trace:configure.ac:3: -1- AC_SUBST([localstatedir], ['${prefix}/var']) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([localstatedir]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^localstatedir$]) -+m4trace:configure.ac:3: -1- AC_SUBST([includedir], ['${prefix}/include']) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([includedir]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^includedir$]) -+m4trace:configure.ac:3: -1- AC_SUBST([oldincludedir], ['/usr/include']) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([oldincludedir]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^oldincludedir$]) -+m4trace:configure.ac:3: -1- AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME], -+ ['${datarootdir}/doc/${PACKAGE_TARNAME}'], -+ ['${datarootdir}/doc/${PACKAGE}'])]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([docdir]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^docdir$]) -+m4trace:configure.ac:3: -1- AC_SUBST([infodir], ['${datarootdir}/info']) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([infodir]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^infodir$]) -+m4trace:configure.ac:3: -1- AC_SUBST([htmldir], ['${docdir}']) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([htmldir]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^htmldir$]) -+m4trace:configure.ac:3: -1- AC_SUBST([dvidir], ['${docdir}']) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([dvidir]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^dvidir$]) -+m4trace:configure.ac:3: -1- AC_SUBST([pdfdir], ['${docdir}']) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([pdfdir]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^pdfdir$]) -+m4trace:configure.ac:3: -1- AC_SUBST([psdir], ['${docdir}']) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([psdir]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^psdir$]) -+m4trace:configure.ac:3: -1- AC_SUBST([libdir], ['${exec_prefix}/lib']) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([libdir]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^libdir$]) -+m4trace:configure.ac:3: -1- AC_SUBST([localedir], ['${datarootdir}/locale']) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([localedir]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^localedir$]) -+m4trace:configure.ac:3: -1- AC_SUBST([mandir], ['${datarootdir}/man']) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([mandir]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^mandir$]) -+m4trace:configure.ac:3: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_NAME$]) -+m4trace:configure.ac:3: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */ -+@%:@undef PACKAGE_NAME]) -+m4trace:configure.ac:3: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) -+m4trace:configure.ac:3: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */ -+@%:@undef PACKAGE_TARNAME]) -+m4trace:configure.ac:3: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_VERSION$]) -+m4trace:configure.ac:3: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */ -+@%:@undef PACKAGE_VERSION]) -+m4trace:configure.ac:3: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_STRING$]) -+m4trace:configure.ac:3: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */ -+@%:@undef PACKAGE_STRING]) -+m4trace:configure.ac:3: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) -+m4trace:configure.ac:3: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */ -+@%:@undef PACKAGE_BUGREPORT]) -+m4trace:configure.ac:3: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_URL]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_URL$]) -+m4trace:configure.ac:3: -1- AH_OUTPUT([PACKAGE_URL], [/* Define to the home page for this package. */ -+@%:@undef PACKAGE_URL]) -+m4trace:configure.ac:3: -1- AC_SUBST([DEFS]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([DEFS]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^DEFS$]) -+m4trace:configure.ac:3: -1- AC_SUBST([ECHO_C]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([ECHO_C]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^ECHO_C$]) -+m4trace:configure.ac:3: -1- AC_SUBST([ECHO_N]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([ECHO_N]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^ECHO_N$]) -+m4trace:configure.ac:3: -1- AC_SUBST([ECHO_T]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([ECHO_T]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^ECHO_T$]) -+m4trace:configure.ac:3: -1- AC_SUBST([LIBS]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([LIBS]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^LIBS$]) -+m4trace:configure.ac:3: -1- AC_SUBST([build_alias]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([build_alias]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^build_alias$]) -+m4trace:configure.ac:3: -1- AC_SUBST([host_alias]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([host_alias]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^host_alias$]) -+m4trace:configure.ac:3: -1- AC_SUBST([target_alias]) -+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([target_alias]) -+m4trace:configure.ac:3: -1- m4_pattern_allow([^target_alias$]) -+m4trace:configure.ac:5: -1- AC_CONFIG_HEADERS([config.h]) -+m4trace:configure.ac:14: -1- AM_ENABLE_MULTILIB([], [..]) -+m4trace:configure.ac:14: -1- AC_SUBST([multi_basedir]) -+m4trace:configure.ac:14: -1- AC_SUBST_TRACE([multi_basedir]) -+m4trace:configure.ac:14: -1- m4_pattern_allow([^multi_basedir$]) -+m4trace:configure.ac:14: -1- _m4_warn([obsolete], [The macro `AC_OUTPUT_COMMANDS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/status.m4:1026: AC_OUTPUT_COMMANDS is expanded from... -+../config/multi.m4:14: AM_ENABLE_MULTILIB is expanded from... -+configure.ac:14: the top level]) -+m4trace:configure.ac:30: -1- AC_CANONICAL_SYSTEM -+m4trace:configure.ac:30: -1- _m4_warn([obsolete], [The macro `AC_CANONICAL_SYSTEM' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:1857: AC_CANONICAL_SYSTEM is expanded from... -+configure.ac:30: the top level]) -+m4trace:configure.ac:30: -1- AC_CANONICAL_TARGET -+m4trace:configure.ac:30: -1- AC_CANONICAL_HOST -+m4trace:configure.ac:30: -1- AC_CANONICAL_BUILD -+m4trace:configure.ac:30: -1- AC_REQUIRE_AUX_FILE([config.sub]) -+m4trace:configure.ac:30: -1- AC_REQUIRE_AUX_FILE([config.guess]) -+m4trace:configure.ac:30: -1- AC_SUBST([build], [$ac_cv_build]) -+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([build]) -+m4trace:configure.ac:30: -1- m4_pattern_allow([^build$]) -+m4trace:configure.ac:30: -1- AC_SUBST([build_cpu], [$[1]]) -+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([build_cpu]) -+m4trace:configure.ac:30: -1- m4_pattern_allow([^build_cpu$]) -+m4trace:configure.ac:30: -1- AC_SUBST([build_vendor], [$[2]]) -+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([build_vendor]) -+m4trace:configure.ac:30: -1- m4_pattern_allow([^build_vendor$]) -+m4trace:configure.ac:30: -1- AC_SUBST([build_os]) -+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([build_os]) -+m4trace:configure.ac:30: -1- m4_pattern_allow([^build_os$]) -+m4trace:configure.ac:30: -1- AC_SUBST([host], [$ac_cv_host]) -+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([host]) -+m4trace:configure.ac:30: -1- m4_pattern_allow([^host$]) -+m4trace:configure.ac:30: -1- AC_SUBST([host_cpu], [$[1]]) -+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([host_cpu]) -+m4trace:configure.ac:30: -1- m4_pattern_allow([^host_cpu$]) -+m4trace:configure.ac:30: -1- AC_SUBST([host_vendor], [$[2]]) -+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([host_vendor]) -+m4trace:configure.ac:30: -1- m4_pattern_allow([^host_vendor$]) -+m4trace:configure.ac:30: -1- AC_SUBST([host_os]) -+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([host_os]) -+m4trace:configure.ac:30: -1- m4_pattern_allow([^host_os$]) -+m4trace:configure.ac:30: -1- AC_SUBST([target], [$ac_cv_target]) -+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([target]) -+m4trace:configure.ac:30: -1- m4_pattern_allow([^target$]) -+m4trace:configure.ac:30: -1- AC_SUBST([target_cpu], [$[1]]) -+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([target_cpu]) -+m4trace:configure.ac:30: -1- m4_pattern_allow([^target_cpu$]) -+m4trace:configure.ac:30: -1- AC_SUBST([target_vendor], [$[2]]) -+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([target_vendor]) -+m4trace:configure.ac:30: -1- m4_pattern_allow([^target_vendor$]) -+m4trace:configure.ac:30: -1- AC_SUBST([target_os]) -+m4trace:configure.ac:30: -1- AC_SUBST_TRACE([target_os]) -+m4trace:configure.ac:30: -1- m4_pattern_allow([^target_os$]) -+m4trace:configure.ac:73: -1- AM_INIT_AUTOMAKE([1.9.3 no-define foreign no-dependencies no-dist -Wall -Wno-portability -Wno-override]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$]) -+m4trace:configure.ac:73: -1- AM_AUTOMAKE_VERSION([1.15.1]) -+m4trace:configure.ac:73: -1- AC_REQUIRE_AUX_FILE([install-sh]) -+m4trace:configure.ac:73: -1- AC_SUBST([INSTALL_PROGRAM]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([INSTALL_PROGRAM]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^INSTALL_PROGRAM$]) -+m4trace:configure.ac:73: -1- AC_SUBST([INSTALL_SCRIPT]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([INSTALL_SCRIPT]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^INSTALL_SCRIPT$]) -+m4trace:configure.ac:73: -1- AC_SUBST([INSTALL_DATA]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([INSTALL_DATA]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^INSTALL_DATA$]) -+m4trace:configure.ac:73: -1- AC_SUBST([am__isrc], [' -I$(srcdir)']) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([am__isrc]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^am__isrc$]) -+m4trace:configure.ac:73: -1- _AM_SUBST_NOTMAKE([am__isrc]) -+m4trace:configure.ac:73: -1- AC_SUBST([CYGPATH_W]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([CYGPATH_W]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^CYGPATH_W$]) -+m4trace:configure.ac:73: -1- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME']) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([PACKAGE]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^PACKAGE$]) -+m4trace:configure.ac:73: -1- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION']) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([VERSION]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^VERSION$]) -+m4trace:configure.ac:73: -1- AC_REQUIRE_AUX_FILE([missing]) -+m4trace:configure.ac:73: -1- AC_SUBST([ACLOCAL]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([ACLOCAL]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^ACLOCAL$]) -+m4trace:configure.ac:73: -1- AC_SUBST([AUTOCONF]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([AUTOCONF]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^AUTOCONF$]) -+m4trace:configure.ac:73: -1- AC_SUBST([AUTOMAKE]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([AUTOMAKE]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^AUTOMAKE$]) -+m4trace:configure.ac:73: -1- AC_SUBST([AUTOHEADER]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([AUTOHEADER]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^AUTOHEADER$]) -+m4trace:configure.ac:73: -1- AC_SUBST([MAKEINFO]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([MAKEINFO]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^MAKEINFO$]) -+m4trace:configure.ac:73: -1- AC_SUBST([install_sh]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([install_sh]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^install_sh$]) -+m4trace:configure.ac:73: -1- AC_SUBST([STRIP]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([STRIP]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^STRIP$]) -+m4trace:configure.ac:73: -1- AC_SUBST([INSTALL_STRIP_PROGRAM]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([INSTALL_STRIP_PROGRAM]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$]) -+m4trace:configure.ac:73: -1- AC_REQUIRE_AUX_FILE([install-sh]) -+m4trace:configure.ac:73: -1- AC_SUBST([MKDIR_P]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([MKDIR_P]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^MKDIR_P$]) -+m4trace:configure.ac:73: -1- AC_SUBST([mkdir_p], ['$(MKDIR_P)']) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([mkdir_p]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^mkdir_p$]) -+m4trace:configure.ac:73: -1- AC_SUBST([AWK]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([AWK]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^AWK$]) -+m4trace:configure.ac:73: -1- AC_SUBST([SET_MAKE]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([SET_MAKE]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^SET_MAKE$]) -+m4trace:configure.ac:73: -1- AC_SUBST([am__leading_dot]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([am__leading_dot]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^am__leading_dot$]) -+m4trace:configure.ac:73: -1- AC_SUBST([AMTAR], ['$${TAR-tar}']) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([AMTAR]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^AMTAR$]) -+m4trace:configure.ac:73: -1- AC_SUBST([am__tar]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([am__tar]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^am__tar$]) -+m4trace:configure.ac:73: -1- AC_SUBST([am__untar]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([am__untar]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^am__untar$]) -+m4trace:configure.ac:73: -1- AM_SILENT_RULES -+m4trace:configure.ac:73: -1- AC_SUBST([AM_V]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([AM_V]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^AM_V$]) -+m4trace:configure.ac:73: -1- _AM_SUBST_NOTMAKE([AM_V]) -+m4trace:configure.ac:73: -1- AC_SUBST([AM_DEFAULT_V]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([AM_DEFAULT_V]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^AM_DEFAULT_V$]) -+m4trace:configure.ac:73: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V]) -+m4trace:configure.ac:73: -1- AC_SUBST([AM_DEFAULT_VERBOSITY]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([AM_DEFAULT_VERBOSITY]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$]) -+m4trace:configure.ac:73: -1- AC_SUBST([AM_BACKSLASH]) -+m4trace:configure.ac:73: -1- AC_SUBST_TRACE([AM_BACKSLASH]) -+m4trace:configure.ac:73: -1- m4_pattern_allow([^AM_BACKSLASH$]) -+m4trace:configure.ac:73: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH]) -+m4trace:configure.ac:74: -1- AH_OUTPUT([PACKAGE], [/* Name of package */ -+@%:@undef PACKAGE]) -+m4trace:configure.ac:75: -1- AH_OUTPUT([VERSION], [/* Version number of package */ -+@%:@undef VERSION]) -+m4trace:configure.ac:82: -1- AC_SUBST([CC]) -+m4trace:configure.ac:82: -1- AC_SUBST_TRACE([CC]) -+m4trace:configure.ac:82: -1- m4_pattern_allow([^CC$]) -+m4trace:configure.ac:82: -1- AC_SUBST([CFLAGS]) -+m4trace:configure.ac:82: -1- AC_SUBST_TRACE([CFLAGS]) -+m4trace:configure.ac:82: -1- m4_pattern_allow([^CFLAGS$]) -+m4trace:configure.ac:82: -1- AC_SUBST([LDFLAGS]) -+m4trace:configure.ac:82: -1- AC_SUBST_TRACE([LDFLAGS]) -+m4trace:configure.ac:82: -1- m4_pattern_allow([^LDFLAGS$]) -+m4trace:configure.ac:82: -1- AC_SUBST([LIBS]) -+m4trace:configure.ac:82: -1- AC_SUBST_TRACE([LIBS]) -+m4trace:configure.ac:82: -1- m4_pattern_allow([^LIBS$]) -+m4trace:configure.ac:82: -1- AC_SUBST([CPPFLAGS]) -+m4trace:configure.ac:82: -1- AC_SUBST_TRACE([CPPFLAGS]) -+m4trace:configure.ac:82: -1- m4_pattern_allow([^CPPFLAGS$]) -+m4trace:configure.ac:82: -1- AC_SUBST([CC]) -+m4trace:configure.ac:82: -1- AC_SUBST_TRACE([CC]) -+m4trace:configure.ac:82: -1- m4_pattern_allow([^CC$]) -+m4trace:configure.ac:82: -1- AC_SUBST([CC]) -+m4trace:configure.ac:82: -1- AC_SUBST_TRACE([CC]) -+m4trace:configure.ac:82: -1- m4_pattern_allow([^CC$]) -+m4trace:configure.ac:82: -1- AC_SUBST([CC]) -+m4trace:configure.ac:82: -1- AC_SUBST_TRACE([CC]) -+m4trace:configure.ac:82: -1- m4_pattern_allow([^CC$]) -+m4trace:configure.ac:82: -1- AC_SUBST([CC]) -+m4trace:configure.ac:82: -1- AC_SUBST_TRACE([CC]) -+m4trace:configure.ac:82: -1- m4_pattern_allow([^CC$]) -+m4trace:configure.ac:82: -1- AC_SUBST([ac_ct_CC]) -+m4trace:configure.ac:82: -1- AC_SUBST_TRACE([ac_ct_CC]) -+m4trace:configure.ac:82: -1- m4_pattern_allow([^ac_ct_CC$]) -+m4trace:configure.ac:82: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext]) -+m4trace:configure.ac:82: -1- AC_SUBST_TRACE([EXEEXT]) -+m4trace:configure.ac:82: -1- m4_pattern_allow([^EXEEXT$]) -+m4trace:configure.ac:82: -1- AC_SUBST([OBJEXT], [$ac_cv_objext]) -+m4trace:configure.ac:82: -1- AC_SUBST_TRACE([OBJEXT]) -+m4trace:configure.ac:82: -1- m4_pattern_allow([^OBJEXT$]) -+m4trace:configure.ac:82: -1- AC_REQUIRE_AUX_FILE([compile]) -+m4trace:configure.ac:83: -1- AC_SUBST([CXX]) -+m4trace:configure.ac:83: -1- AC_SUBST_TRACE([CXX]) -+m4trace:configure.ac:83: -1- m4_pattern_allow([^CXX$]) -+m4trace:configure.ac:83: -1- AC_SUBST([CXXFLAGS]) -+m4trace:configure.ac:83: -1- AC_SUBST_TRACE([CXXFLAGS]) -+m4trace:configure.ac:83: -1- m4_pattern_allow([^CXXFLAGS$]) -+m4trace:configure.ac:83: -1- AC_SUBST([LDFLAGS]) -+m4trace:configure.ac:83: -1- AC_SUBST_TRACE([LDFLAGS]) -+m4trace:configure.ac:83: -1- m4_pattern_allow([^LDFLAGS$]) -+m4trace:configure.ac:83: -1- AC_SUBST([LIBS]) -+m4trace:configure.ac:83: -1- AC_SUBST_TRACE([LIBS]) -+m4trace:configure.ac:83: -1- m4_pattern_allow([^LIBS$]) -+m4trace:configure.ac:83: -1- AC_SUBST([CPPFLAGS]) -+m4trace:configure.ac:83: -1- AC_SUBST_TRACE([CPPFLAGS]) -+m4trace:configure.ac:83: -1- m4_pattern_allow([^CPPFLAGS$]) -+m4trace:configure.ac:83: -1- AC_SUBST([CXX]) -+m4trace:configure.ac:83: -1- AC_SUBST_TRACE([CXX]) -+m4trace:configure.ac:83: -1- m4_pattern_allow([^CXX$]) -+m4trace:configure.ac:83: -1- AC_SUBST([ac_ct_CXX]) -+m4trace:configure.ac:83: -1- AC_SUBST_TRACE([ac_ct_CXX]) -+m4trace:configure.ac:83: -1- m4_pattern_allow([^ac_ct_CXX$]) -+m4trace:configure.ac:86: -1- AC_DEFINE_TRACE_LITERAL([_FILE_OFFSET_BITS]) -+m4trace:configure.ac:86: -1- m4_pattern_allow([^_FILE_OFFSET_BITS$]) -+m4trace:configure.ac:86: -1- AH_OUTPUT([_FILE_OFFSET_BITS], [/* Number of bits in a file offset, on hosts where this is settable. */ -+@%:@undef _FILE_OFFSET_BITS]) -+m4trace:configure.ac:86: -1- AC_DEFINE_TRACE_LITERAL([_LARGE_FILES]) -+m4trace:configure.ac:86: -1- m4_pattern_allow([^_LARGE_FILES$]) -+m4trace:configure.ac:86: -1- AH_OUTPUT([_LARGE_FILES], [/* Define for large files, on AIX-style hosts. */ -+@%:@undef _LARGE_FILES]) -+m4trace:configure.ac:86: -1- AH_OUTPUT([_DARWIN_USE_64_BIT_INODE], [/* Enable large inode numbers on Mac OS X 10.5. */ -+#ifndef _DARWIN_USE_64_BIT_INODE -+# define _DARWIN_USE_64_BIT_INODE 1 -+#endif]) -+m4trace:configure.ac:90: -1- AC_SUBST([glibcxx_builddir]) -+m4trace:configure.ac:90: -1- AC_SUBST_TRACE([glibcxx_builddir]) -+m4trace:configure.ac:90: -1- m4_pattern_allow([^glibcxx_builddir$]) -+m4trace:configure.ac:90: -1- AC_SUBST([glibcxx_srcdir]) -+m4trace:configure.ac:90: -1- AC_SUBST_TRACE([glibcxx_srcdir]) -+m4trace:configure.ac:90: -1- m4_pattern_allow([^glibcxx_srcdir$]) -+m4trace:configure.ac:90: -1- AC_SUBST([toplevel_builddir]) -+m4trace:configure.ac:90: -1- AC_SUBST_TRACE([toplevel_builddir]) -+m4trace:configure.ac:90: -1- m4_pattern_allow([^toplevel_builddir$]) -+m4trace:configure.ac:90: -1- AC_SUBST([toplevel_srcdir]) -+m4trace:configure.ac:90: -1- AC_SUBST_TRACE([toplevel_srcdir]) -+m4trace:configure.ac:90: -1- m4_pattern_allow([^toplevel_srcdir$]) -+m4trace:configure.ac:90: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:48: GLIBCXX_CONFIGURE is expanded from... -+configure.ac:90: the top level]) -+m4trace:configure.ac:90: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:48: GLIBCXX_CONFIGURE is expanded from... -+configure.ac:90: the top level]) -+m4trace:configure.ac:90: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:48: GLIBCXX_CONFIGURE is expanded from... -+configure.ac:90: the top level]) -+m4trace:configure.ac:90: -1- AC_SUBST([LN_S], [$as_ln_s]) -+m4trace:configure.ac:90: -1- AC_SUBST_TRACE([LN_S]) -+m4trace:configure.ac:90: -1- m4_pattern_allow([^LN_S$]) -+m4trace:configure.ac:90: -1- AC_SUBST([AS]) -+m4trace:configure.ac:90: -1- AC_SUBST_TRACE([AS]) -+m4trace:configure.ac:90: -1- m4_pattern_allow([^AS$]) -+m4trace:configure.ac:90: -1- AC_SUBST([AR]) -+m4trace:configure.ac:90: -1- AC_SUBST_TRACE([AR]) -+m4trace:configure.ac:90: -1- m4_pattern_allow([^AR$]) -+m4trace:configure.ac:90: -1- AC_SUBST([RANLIB]) -+m4trace:configure.ac:90: -1- AC_SUBST_TRACE([RANLIB]) -+m4trace:configure.ac:90: -1- m4_pattern_allow([^RANLIB$]) -+m4trace:configure.ac:90: -1- AM_MAINTAINER_MODE -+m4trace:configure.ac:90: -1- AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) -+m4trace:configure.ac:90: -1- AC_SUBST([MAINTAINER_MODE_TRUE]) -+m4trace:configure.ac:90: -1- AC_SUBST_TRACE([MAINTAINER_MODE_TRUE]) -+m4trace:configure.ac:90: -1- m4_pattern_allow([^MAINTAINER_MODE_TRUE$]) -+m4trace:configure.ac:90: -1- AC_SUBST([MAINTAINER_MODE_FALSE]) -+m4trace:configure.ac:90: -1- AC_SUBST_TRACE([MAINTAINER_MODE_FALSE]) -+m4trace:configure.ac:90: -1- m4_pattern_allow([^MAINTAINER_MODE_FALSE$]) -+m4trace:configure.ac:90: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_TRUE]) -+m4trace:configure.ac:90: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_FALSE]) -+m4trace:configure.ac:90: -1- AC_SUBST([MAINT]) -+m4trace:configure.ac:90: -1- AC_SUBST_TRACE([MAINT]) -+m4trace:configure.ac:90: -1- m4_pattern_allow([^MAINT$]) -+m4trace:configure.ac:90: -1- AC_SUBST([CPP]) -+m4trace:configure.ac:90: -1- AC_SUBST_TRACE([CPP]) -+m4trace:configure.ac:90: -1- m4_pattern_allow([^CPP$]) -+m4trace:configure.ac:90: -1- AC_SUBST([CPPFLAGS]) -+m4trace:configure.ac:90: -1- AC_SUBST_TRACE([CPPFLAGS]) -+m4trace:configure.ac:90: -1- m4_pattern_allow([^CPPFLAGS$]) -+m4trace:configure.ac:90: -1- AC_SUBST([CPP]) -+m4trace:configure.ac:90: -1- AC_SUBST_TRACE([CPP]) -+m4trace:configure.ac:90: -1- m4_pattern_allow([^CPP$]) -+m4trace:configure.ac:90: -1- AC_SUBST([GREP]) -+m4trace:configure.ac:90: -1- AC_SUBST_TRACE([GREP]) -+m4trace:configure.ac:90: -1- m4_pattern_allow([^GREP$]) -+m4trace:configure.ac:90: -1- AC_SUBST([EGREP]) -+m4trace:configure.ac:90: -1- AC_SUBST_TRACE([EGREP]) -+m4trace:configure.ac:90: -1- m4_pattern_allow([^EGREP$]) -+m4trace:configure.ac:96: -1- _m4_warn([obsolete], [The macro `AC_LIBTOOL_DLOPEN' is obsolete. -+You should run autoupdate.], [../ltoptions.m4:111: AC_LIBTOOL_DLOPEN is expanded from... -+configure.ac:96: the top level]) -+m4trace:configure.ac:96: -1- _m4_warn([obsolete], [AC_LIBTOOL_DLOPEN: Remove this warning and the call to _LT_SET_OPTION when you -+put the `dlopen' option into LT_INIT's first parameter.], [../ltoptions.m4:111: AC_LIBTOOL_DLOPEN is expanded from... -+configure.ac:96: the top level]) -+m4trace:configure.ac:98: -1- _m4_warn([obsolete], [The macro `AM_PROG_LIBTOOL' is obsolete. -+You should run autoupdate.], [../libtool.m4:106: AM_PROG_LIBTOOL is expanded from... -+configure.ac:98: the top level]) -+m4trace:configure.ac:98: -1- LT_INIT -+m4trace:configure.ac:98: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$]) -+m4trace:configure.ac:98: -1- AC_REQUIRE_AUX_FILE([ltmain.sh]) -+m4trace:configure.ac:98: -1- AC_SUBST([LIBTOOL]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([LIBTOOL]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^LIBTOOL$]) -+m4trace:configure.ac:98: -1- AC_SUBST([SED]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([SED]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^SED$]) -+m4trace:configure.ac:98: -1- AC_SUBST([FGREP]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([FGREP]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^FGREP$]) -+m4trace:configure.ac:98: -1- AC_SUBST([GREP]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([GREP]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^GREP$]) -+m4trace:configure.ac:98: -1- AC_SUBST([LD]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([LD]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^LD$]) -+m4trace:configure.ac:98: -1- AC_SUBST([DUMPBIN]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([DUMPBIN]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^DUMPBIN$]) -+m4trace:configure.ac:98: -1- AC_SUBST([ac_ct_DUMPBIN]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([ac_ct_DUMPBIN]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^ac_ct_DUMPBIN$]) -+m4trace:configure.ac:98: -1- AC_SUBST([DUMPBIN]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([DUMPBIN]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^DUMPBIN$]) -+m4trace:configure.ac:98: -1- AC_SUBST([NM]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([NM]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^NM$]) -+m4trace:configure.ac:98: -1- AC_SUBST([OBJDUMP]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([OBJDUMP]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^OBJDUMP$]) -+m4trace:configure.ac:98: -1- AC_SUBST([OBJDUMP]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([OBJDUMP]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^OBJDUMP$]) -+m4trace:configure.ac:98: -1- AC_SUBST([AR]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([AR]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^AR$]) -+m4trace:configure.ac:98: -1- AC_SUBST([STRIP]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([STRIP]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^STRIP$]) -+m4trace:configure.ac:98: -1- AC_SUBST([RANLIB]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([RANLIB]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^RANLIB$]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([LT_OBJDIR]) -+m4trace:configure.ac:98: -1- AC_DEFINE_TRACE_LITERAL([LT_OBJDIR]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^LT_OBJDIR$]) -+m4trace:configure.ac:98: -1- AH_OUTPUT([LT_OBJDIR], [/* Define to the sub-directory in which libtool stores uninstalled libraries. -+ */ -+@%:@undef LT_OBJDIR]) -+m4trace:configure.ac:98: -1- LT_SUPPORTED_TAG([CC]) -+m4trace:configure.ac:98: -1- AC_SUBST([DSYMUTIL]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([DSYMUTIL]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^DSYMUTIL$]) -+m4trace:configure.ac:98: -1- AC_SUBST([NMEDIT]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([NMEDIT]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^NMEDIT$]) -+m4trace:configure.ac:98: -1- AC_SUBST([LIPO]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([LIPO]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^LIPO$]) -+m4trace:configure.ac:98: -1- AC_SUBST([OTOOL]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([OTOOL]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^OTOOL$]) -+m4trace:configure.ac:98: -1- AC_SUBST([OTOOL64]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([OTOOL64]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^OTOOL64$]) -+m4trace:configure.ac:98: -1- AH_OUTPUT([HAVE_DLFCN_H], [/* Define to 1 if you have the <dlfcn.h> header file. */ -+@%:@undef HAVE_DLFCN_H]) -+m4trace:configure.ac:98: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^STDC_HEADERS$]) -+m4trace:configure.ac:98: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */ -+@%:@undef STDC_HEADERS]) -+m4trace:configure.ac:98: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */ -+@%:@undef HAVE_SYS_TYPES_H]) -+m4trace:configure.ac:98: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */ -+@%:@undef HAVE_SYS_STAT_H]) -+m4trace:configure.ac:98: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */ -+@%:@undef HAVE_STDLIB_H]) -+m4trace:configure.ac:98: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */ -+@%:@undef HAVE_STRING_H]) -+m4trace:configure.ac:98: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the <memory.h> header file. */ -+@%:@undef HAVE_MEMORY_H]) -+m4trace:configure.ac:98: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the <strings.h> header file. */ -+@%:@undef HAVE_STRINGS_H]) -+m4trace:configure.ac:98: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */ -+@%:@undef HAVE_INTTYPES_H]) -+m4trace:configure.ac:98: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */ -+@%:@undef HAVE_STDINT_H]) -+m4trace:configure.ac:98: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */ -+@%:@undef HAVE_UNISTD_H]) -+m4trace:configure.ac:98: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DLFCN_H]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^HAVE_DLFCN_H$]) -+m4trace:configure.ac:98: -1- LT_SUPPORTED_TAG([CXX]) -+m4trace:configure.ac:98: -1- AC_SUBST([CXXCPP]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([CXXCPP]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^CXXCPP$]) -+m4trace:configure.ac:98: -1- AC_SUBST([CPPFLAGS]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([CPPFLAGS]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^CPPFLAGS$]) -+m4trace:configure.ac:98: -1- AC_SUBST([CXXCPP]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([CXXCPP]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^CXXCPP$]) -+m4trace:configure.ac:98: -1- AC_SUBST([LD]) -+m4trace:configure.ac:98: -1- AC_SUBST_TRACE([LD]) -+m4trace:configure.ac:98: -1- m4_pattern_allow([^LD$]) -+m4trace:configure.ac:99: -1- AC_SUBST([lt_host_flags]) -+m4trace:configure.ac:99: -1- AC_SUBST_TRACE([lt_host_flags]) -+m4trace:configure.ac:99: -1- m4_pattern_allow([^lt_host_flags$]) -+m4trace:configure.ac:100: -1- AC_SUBST([enable_shared]) -+m4trace:configure.ac:100: -1- AC_SUBST_TRACE([enable_shared]) -+m4trace:configure.ac:100: -1- m4_pattern_allow([^enable_shared$]) -+m4trace:configure.ac:101: -1- AC_SUBST([enable_static]) -+m4trace:configure.ac:101: -1- AC_SUBST_TRACE([enable_static]) -+m4trace:configure.ac:101: -1- m4_pattern_allow([^enable_static$]) -+m4trace:configure.ac:131: -1- AC_SUBST([glibcxx_lt_pic_flag]) -+m4trace:configure.ac:131: -1- AC_SUBST_TRACE([glibcxx_lt_pic_flag]) -+m4trace:configure.ac:131: -1- m4_pattern_allow([^glibcxx_lt_pic_flag$]) -+m4trace:configure.ac:132: -1- AC_SUBST([glibcxx_compiler_pic_flag]) -+m4trace:configure.ac:132: -1- AC_SUBST_TRACE([glibcxx_compiler_pic_flag]) -+m4trace:configure.ac:132: -1- m4_pattern_allow([^glibcxx_compiler_pic_flag$]) -+m4trace:configure.ac:133: -1- AC_SUBST([glibcxx_compiler_shared_flag]) -+m4trace:configure.ac:133: -1- AC_SUBST_TRACE([glibcxx_compiler_shared_flag]) -+m4trace:configure.ac:133: -1- m4_pattern_allow([^glibcxx_compiler_shared_flag$]) -+m4trace:configure.ac:147: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:2971: GLIBCXX_ENABLE_HOSTED is expanded from... -+configure.ac:147: the top level]) -+m4trace:configure.ac:147: -2- AM_CONDITIONAL([GLIBCXX_HOSTED], [test $is_hosted = yes]) -+m4trace:configure.ac:147: -2- AC_SUBST([GLIBCXX_HOSTED_TRUE]) -+m4trace:configure.ac:147: -2- AC_SUBST_TRACE([GLIBCXX_HOSTED_TRUE]) -+m4trace:configure.ac:147: -2- m4_pattern_allow([^GLIBCXX_HOSTED_TRUE$]) -+m4trace:configure.ac:147: -2- AC_SUBST([GLIBCXX_HOSTED_FALSE]) -+m4trace:configure.ac:147: -2- AC_SUBST_TRACE([GLIBCXX_HOSTED_FALSE]) -+m4trace:configure.ac:147: -2- m4_pattern_allow([^GLIBCXX_HOSTED_FALSE$]) -+m4trace:configure.ac:147: -2- _AM_SUBST_NOTMAKE([GLIBCXX_HOSTED_TRUE]) -+m4trace:configure.ac:147: -2- _AM_SUBST_NOTMAKE([GLIBCXX_HOSTED_FALSE]) -+m4trace:configure.ac:147: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_HOSTED]) -+m4trace:configure.ac:147: -1- m4_pattern_allow([^_GLIBCXX_HOSTED$]) -+m4trace:configure.ac:147: -1- AH_OUTPUT([_GLIBCXX_HOSTED], [/* Define to 1 if a full hosted library is built, or 0 if freestanding. */ -+@%:@undef _GLIBCXX_HOSTED]) -+m4trace:configure.ac:147: -1- AC_SUBST([FREESTANDING_FLAGS]) -+m4trace:configure.ac:147: -1- AC_SUBST_TRACE([FREESTANDING_FLAGS]) -+m4trace:configure.ac:147: -1- m4_pattern_allow([^FREESTANDING_FLAGS$]) -+m4trace:configure.ac:150: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:3014: GLIBCXX_ENABLE_VERBOSE is expanded from... -+configure.ac:150: the top level]) -+m4trace:configure.ac:150: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_VERBOSE]) -+m4trace:configure.ac:150: -1- m4_pattern_allow([^_GLIBCXX_VERBOSE$]) -+m4trace:configure.ac:150: -1- AH_OUTPUT([_GLIBCXX_VERBOSE], [/* Define to 1 if a verbose library is built, or 0 otherwise. */ -+@%:@undef _GLIBCXX_VERBOSE]) -+m4trace:configure.ac:153: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:3262: GLIBCXX_ENABLE_PCH is expanded from... -+configure.ac:153: the top level]) -+m4trace:configure.ac:153: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:3262: GLIBCXX_ENABLE_PCH is expanded from... -+configure.ac:153: the top level]) -+m4trace:configure.ac:153: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:3262: GLIBCXX_ENABLE_PCH is expanded from... -+configure.ac:153: the top level]) -+m4trace:configure.ac:153: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:3262: GLIBCXX_ENABLE_PCH is expanded from... -+configure.ac:153: the top level]) -+m4trace:configure.ac:153: -2- AM_CONDITIONAL([GLIBCXX_BUILD_PCH], [test $enable_libstdcxx_pch = yes]) -+m4trace:configure.ac:153: -2- AC_SUBST([GLIBCXX_BUILD_PCH_TRUE]) -+m4trace:configure.ac:153: -2- AC_SUBST_TRACE([GLIBCXX_BUILD_PCH_TRUE]) -+m4trace:configure.ac:153: -2- m4_pattern_allow([^GLIBCXX_BUILD_PCH_TRUE$]) -+m4trace:configure.ac:153: -2- AC_SUBST([GLIBCXX_BUILD_PCH_FALSE]) -+m4trace:configure.ac:153: -2- AC_SUBST_TRACE([GLIBCXX_BUILD_PCH_FALSE]) -+m4trace:configure.ac:153: -2- m4_pattern_allow([^GLIBCXX_BUILD_PCH_FALSE$]) -+m4trace:configure.ac:153: -2- _AM_SUBST_NOTMAKE([GLIBCXX_BUILD_PCH_TRUE]) -+m4trace:configure.ac:153: -2- _AM_SUBST_NOTMAKE([GLIBCXX_BUILD_PCH_FALSE]) -+m4trace:configure.ac:153: -1- AC_SUBST([glibcxx_PCHFLAGS]) -+m4trace:configure.ac:153: -1- AC_SUBST_TRACE([glibcxx_PCHFLAGS]) -+m4trace:configure.ac:153: -1- m4_pattern_allow([^glibcxx_PCHFLAGS$]) -+m4trace:configure.ac:154: -1- AC_SUBST([thread_header]) -+m4trace:configure.ac:154: -1- AC_SUBST_TRACE([thread_header]) -+m4trace:configure.ac:154: -1- m4_pattern_allow([^thread_header$]) -+m4trace:configure.ac:155: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:3315: GLIBCXX_ENABLE_ATOMIC_BUILTINS is expanded from... -+configure.ac:155: the top level]) -+m4trace:configure.ac:155: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:3315: GLIBCXX_ENABLE_ATOMIC_BUILTINS is expanded from... -+configure.ac:155: the top level]) -+m4trace:configure.ac:155: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:3315: GLIBCXX_ENABLE_ATOMIC_BUILTINS is expanded from... -+configure.ac:155: the top level]) -+m4trace:configure.ac:155: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:3315: GLIBCXX_ENABLE_ATOMIC_BUILTINS is expanded from... -+configure.ac:155: the top level]) -+m4trace:configure.ac:155: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:3315: GLIBCXX_ENABLE_ATOMIC_BUILTINS is expanded from... -+configure.ac:155: the top level]) -+m4trace:configure.ac:155: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:3315: GLIBCXX_ENABLE_ATOMIC_BUILTINS is expanded from... -+configure.ac:155: the top level]) -+m4trace:configure.ac:155: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:3315: GLIBCXX_ENABLE_ATOMIC_BUILTINS is expanded from... -+configure.ac:155: the top level]) -+m4trace:configure.ac:155: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_ATOMIC_BUILTINS]) -+m4trace:configure.ac:155: -1- m4_pattern_allow([^_GLIBCXX_ATOMIC_BUILTINS$]) -+m4trace:configure.ac:155: -1- AH_OUTPUT([_GLIBCXX_ATOMIC_BUILTINS], [/* Define if the compiler supports C++11 atomics. */ -+@%:@undef _GLIBCXX_ATOMIC_BUILTINS]) -+m4trace:configure.ac:156: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:3592: GLIBCXX_ENABLE_LOCK_POLICY is expanded from... -+configure.ac:156: the top level]) -+m4trace:configure.ac:156: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:3592: GLIBCXX_ENABLE_LOCK_POLICY is expanded from... -+configure.ac:156: the top level]) -+m4trace:configure.ac:156: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:3592: GLIBCXX_ENABLE_LOCK_POLICY is expanded from... -+configure.ac:156: the top level]) -+m4trace:configure.ac:156: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:3592: GLIBCXX_ENABLE_LOCK_POLICY is expanded from... -+configure.ac:156: the top level]) -+m4trace:configure.ac:156: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:3592: GLIBCXX_ENABLE_LOCK_POLICY is expanded from... -+configure.ac:156: the top level]) -+m4trace:configure.ac:156: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATOMIC_LOCK_POLICY]) -+m4trace:configure.ac:156: -1- m4_pattern_allow([^HAVE_ATOMIC_LOCK_POLICY$]) -+m4trace:configure.ac:156: -1- AH_OUTPUT([HAVE_ATOMIC_LOCK_POLICY], [/* Defined if shared_ptr reference counting should use atomic operations. */ -+@%:@undef HAVE_ATOMIC_LOCK_POLICY]) -+m4trace:configure.ac:157: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_DECIMAL_FLOAT]) -+m4trace:configure.ac:157: -1- m4_pattern_allow([^_GLIBCXX_USE_DECIMAL_FLOAT$]) -+m4trace:configure.ac:157: -1- AH_OUTPUT([_GLIBCXX_USE_DECIMAL_FLOAT], [/* Define if ISO/IEC TR 24733 decimal floating point types are supported on -+ this host. */ -+@%:@undef _GLIBCXX_USE_DECIMAL_FLOAT]) -+m4trace:configure.ac:158: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:3097: GLIBCXX_ENABLE_FLOAT128 is expanded from... -+configure.ac:158: the top level]) -+m4trace:configure.ac:158: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:3097: GLIBCXX_ENABLE_FLOAT128 is expanded from... -+configure.ac:158: the top level]) -+m4trace:configure.ac:158: -2- AM_CONDITIONAL([ENABLE_FLOAT128], [test $enable_float128 = yes]) -+m4trace:configure.ac:158: -2- AC_SUBST([ENABLE_FLOAT128_TRUE]) -+m4trace:configure.ac:158: -2- AC_SUBST_TRACE([ENABLE_FLOAT128_TRUE]) -+m4trace:configure.ac:158: -2- m4_pattern_allow([^ENABLE_FLOAT128_TRUE$]) -+m4trace:configure.ac:158: -2- AC_SUBST([ENABLE_FLOAT128_FALSE]) -+m4trace:configure.ac:158: -2- AC_SUBST_TRACE([ENABLE_FLOAT128_FALSE]) -+m4trace:configure.ac:158: -2- m4_pattern_allow([^ENABLE_FLOAT128_FALSE$]) -+m4trace:configure.ac:158: -2- _AM_SUBST_NOTMAKE([ENABLE_FLOAT128_TRUE]) -+m4trace:configure.ac:158: -2- _AM_SUBST_NOTMAKE([ENABLE_FLOAT128_FALSE]) -+m4trace:configure.ac:158: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:3097: GLIBCXX_ENABLE_FLOAT128 is expanded from... -+configure.ac:158: the top level]) -+m4trace:configure.ac:164: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+configure.ac:164: the top level]) -+m4trace:configure.ac:164: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+configure.ac:164: the top level]) -+m4trace:configure.ac:164: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+configure.ac:164: the top level]) -+m4trace:configure.ac:164: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+configure.ac:164: the top level]) -+m4trace:configure.ac:164: -1- AC_SUBST([SECTION_FLAGS]) -+m4trace:configure.ac:164: -1- AC_SUBST_TRACE([SECTION_FLAGS]) -+m4trace:configure.ac:164: -1- m4_pattern_allow([^SECTION_FLAGS$]) -+m4trace:configure.ac:167: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:2819: GLIBCXX_ENABLE_CSTDIO is expanded from... -+configure.ac:167: the top level]) -+m4trace:configure.ac:167: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_STDIO_PURE]) -+m4trace:configure.ac:167: -1- m4_pattern_allow([^_GLIBCXX_USE_STDIO_PURE$]) -+m4trace:configure.ac:167: -1- AH_OUTPUT([_GLIBCXX_USE_STDIO_PURE], [/* Define to restrict std::__basic_file<> to stdio APIs. */ -+@%:@undef _GLIBCXX_USE_STDIO_PURE]) -+m4trace:configure.ac:167: -1- AC_SUBST([CSTDIO_H]) -+m4trace:configure.ac:167: -1- AC_SUBST_TRACE([CSTDIO_H]) -+m4trace:configure.ac:167: -1- m4_pattern_allow([^CSTDIO_H$]) -+m4trace:configure.ac:167: -1- AC_SUBST([BASIC_FILE_H]) -+m4trace:configure.ac:167: -1- AC_SUBST_TRACE([BASIC_FILE_H]) -+m4trace:configure.ac:167: -1- m4_pattern_allow([^BASIC_FILE_H$]) -+m4trace:configure.ac:167: -1- AC_SUBST([BASIC_FILE_CC]) -+m4trace:configure.ac:167: -1- AC_SUBST_TRACE([BASIC_FILE_CC]) -+m4trace:configure.ac:167: -1- m4_pattern_allow([^BASIC_FILE_CC$]) -+m4trace:configure.ac:168: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:2388: GLIBCXX_ENABLE_CLOCALE is expanded from... -+configure.ac:168: the top level]) -+m4trace:configure.ac:168: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:2388: GLIBCXX_ENABLE_CLOCALE is expanded from... -+configure.ac:168: the top level]) -+m4trace:configure.ac:168: -2- AC_DEFINE_TRACE_LITERAL([HAVE_STRXFRM_L]) -+m4trace:configure.ac:168: -2- m4_pattern_allow([^HAVE_STRXFRM_L$]) -+m4trace:configure.ac:168: -2- AH_OUTPUT([HAVE_STRXFRM_L], [/* Define if strxfrm_l is available in <string.h>. */ -+@%:@undef HAVE_STRXFRM_L]) -+m4trace:configure.ac:168: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:2388: GLIBCXX_ENABLE_CLOCALE is expanded from... -+configure.ac:168: the top level]) -+m4trace:configure.ac:168: -2- AC_DEFINE_TRACE_LITERAL([HAVE_STRERROR_L]) -+m4trace:configure.ac:168: -2- m4_pattern_allow([^HAVE_STRERROR_L$]) -+m4trace:configure.ac:168: -2- AH_OUTPUT([HAVE_STRERROR_L], [/* Define if strerror_l is available in <string.h>. */ -+@%:@undef HAVE_STRERROR_L]) -+m4trace:configure.ac:168: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:2388: GLIBCXX_ENABLE_CLOCALE is expanded from... -+configure.ac:168: the top level]) -+m4trace:configure.ac:168: -2- AC_DEFINE_TRACE_LITERAL([HAVE_STRERROR_R]) -+m4trace:configure.ac:168: -2- m4_pattern_allow([^HAVE_STRERROR_R$]) -+m4trace:configure.ac:168: -2- AH_OUTPUT([HAVE_STRERROR_R], [/* Define if strerror_r is available in <string.h>. */ -+@%:@undef HAVE_STRERROR_R]) -+m4trace:configure.ac:168: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:2388: GLIBCXX_ENABLE_CLOCALE is expanded from... -+configure.ac:168: the top level]) -+m4trace:configure.ac:168: -1- AC_SUBST([check_msgfmt]) -+m4trace:configure.ac:168: -1- AC_SUBST_TRACE([check_msgfmt]) -+m4trace:configure.ac:168: -1- m4_pattern_allow([^check_msgfmt$]) -+m4trace:configure.ac:168: -1- AC_SUBST([glibcxx_MOFILES]) -+m4trace:configure.ac:168: -1- AC_SUBST_TRACE([glibcxx_MOFILES]) -+m4trace:configure.ac:168: -1- m4_pattern_allow([^glibcxx_MOFILES$]) -+m4trace:configure.ac:168: -1- AC_SUBST([glibcxx_POFILES]) -+m4trace:configure.ac:168: -1- AC_SUBST_TRACE([glibcxx_POFILES]) -+m4trace:configure.ac:168: -1- m4_pattern_allow([^glibcxx_POFILES$]) -+m4trace:configure.ac:168: -1- AC_SUBST([glibcxx_localedir]) -+m4trace:configure.ac:168: -1- AC_SUBST_TRACE([glibcxx_localedir]) -+m4trace:configure.ac:168: -1- m4_pattern_allow([^glibcxx_localedir$]) -+m4trace:configure.ac:168: -1- AH_OUTPUT([HAVE_LIBINTL_H], [/* Define to 1 if you have the <libintl.h> header file. */ -+@%:@undef HAVE_LIBINTL_H]) -+m4trace:configure.ac:168: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBINTL_H]) -+m4trace:configure.ac:168: -1- m4_pattern_allow([^HAVE_LIBINTL_H$]) -+m4trace:configure.ac:168: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_NLS]) -+m4trace:configure.ac:168: -1- m4_pattern_allow([^_GLIBCXX_USE_NLS$]) -+m4trace:configure.ac:168: -1- AH_OUTPUT([_GLIBCXX_USE_NLS], [/* Define if NLS translations are to be used. */ -+@%:@undef _GLIBCXX_USE_NLS]) -+m4trace:configure.ac:168: -1- AC_SUBST([USE_NLS]) -+m4trace:configure.ac:168: -1- AC_SUBST_TRACE([USE_NLS]) -+m4trace:configure.ac:168: -1- m4_pattern_allow([^USE_NLS$]) -+m4trace:configure.ac:168: -1- AC_SUBST([CLOCALE_H]) -+m4trace:configure.ac:168: -1- AC_SUBST_TRACE([CLOCALE_H]) -+m4trace:configure.ac:168: -1- m4_pattern_allow([^CLOCALE_H$]) -+m4trace:configure.ac:168: -1- AC_SUBST([CMESSAGES_H]) -+m4trace:configure.ac:168: -1- AC_SUBST_TRACE([CMESSAGES_H]) -+m4trace:configure.ac:168: -1- m4_pattern_allow([^CMESSAGES_H$]) -+m4trace:configure.ac:168: -1- AC_SUBST([CCODECVT_CC]) -+m4trace:configure.ac:168: -1- AC_SUBST_TRACE([CCODECVT_CC]) -+m4trace:configure.ac:168: -1- m4_pattern_allow([^CCODECVT_CC$]) -+m4trace:configure.ac:168: -1- AC_SUBST([CCOLLATE_CC]) -+m4trace:configure.ac:168: -1- AC_SUBST_TRACE([CCOLLATE_CC]) -+m4trace:configure.ac:168: -1- m4_pattern_allow([^CCOLLATE_CC$]) -+m4trace:configure.ac:168: -1- AC_SUBST([CCTYPE_CC]) -+m4trace:configure.ac:168: -1- AC_SUBST_TRACE([CCTYPE_CC]) -+m4trace:configure.ac:168: -1- m4_pattern_allow([^CCTYPE_CC$]) -+m4trace:configure.ac:168: -1- AC_SUBST([CMESSAGES_CC]) -+m4trace:configure.ac:168: -1- AC_SUBST_TRACE([CMESSAGES_CC]) -+m4trace:configure.ac:168: -1- m4_pattern_allow([^CMESSAGES_CC$]) -+m4trace:configure.ac:168: -1- AC_SUBST([CMONEY_CC]) -+m4trace:configure.ac:168: -1- AC_SUBST_TRACE([CMONEY_CC]) -+m4trace:configure.ac:168: -1- m4_pattern_allow([^CMONEY_CC$]) -+m4trace:configure.ac:168: -1- AC_SUBST([CNUMERIC_CC]) -+m4trace:configure.ac:168: -1- AC_SUBST_TRACE([CNUMERIC_CC]) -+m4trace:configure.ac:168: -1- m4_pattern_allow([^CNUMERIC_CC$]) -+m4trace:configure.ac:168: -1- AC_SUBST([CTIME_H]) -+m4trace:configure.ac:168: -1- AC_SUBST_TRACE([CTIME_H]) -+m4trace:configure.ac:168: -1- m4_pattern_allow([^CTIME_H$]) -+m4trace:configure.ac:168: -1- AC_SUBST([CTIME_CC]) -+m4trace:configure.ac:168: -1- AC_SUBST_TRACE([CTIME_CC]) -+m4trace:configure.ac:168: -1- m4_pattern_allow([^CTIME_CC$]) -+m4trace:configure.ac:168: -1- AC_SUBST([CLOCALE_CC]) -+m4trace:configure.ac:168: -1- AC_SUBST_TRACE([CLOCALE_CC]) -+m4trace:configure.ac:168: -1- m4_pattern_allow([^CLOCALE_CC$]) -+m4trace:configure.ac:168: -1- AC_SUBST([CLOCALE_INTERNAL_H]) -+m4trace:configure.ac:168: -1- AC_SUBST_TRACE([CLOCALE_INTERNAL_H]) -+m4trace:configure.ac:168: -1- m4_pattern_allow([^CLOCALE_INTERNAL_H$]) -+m4trace:configure.ac:169: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:2653: GLIBCXX_ENABLE_ALLOCATOR is expanded from... -+configure.ac:169: the top level]) -+m4trace:configure.ac:169: -2- AM_CONDITIONAL([ENABLE_ALLOCATOR_NEW], [test $enable_libstdcxx_allocator_flag = new]) -+m4trace:configure.ac:169: -2- AC_SUBST([ENABLE_ALLOCATOR_NEW_TRUE]) -+m4trace:configure.ac:169: -2- AC_SUBST_TRACE([ENABLE_ALLOCATOR_NEW_TRUE]) -+m4trace:configure.ac:169: -2- m4_pattern_allow([^ENABLE_ALLOCATOR_NEW_TRUE$]) -+m4trace:configure.ac:169: -2- AC_SUBST([ENABLE_ALLOCATOR_NEW_FALSE]) -+m4trace:configure.ac:169: -2- AC_SUBST_TRACE([ENABLE_ALLOCATOR_NEW_FALSE]) -+m4trace:configure.ac:169: -2- m4_pattern_allow([^ENABLE_ALLOCATOR_NEW_FALSE$]) -+m4trace:configure.ac:169: -2- _AM_SUBST_NOTMAKE([ENABLE_ALLOCATOR_NEW_TRUE]) -+m4trace:configure.ac:169: -2- _AM_SUBST_NOTMAKE([ENABLE_ALLOCATOR_NEW_FALSE]) -+m4trace:configure.ac:169: -1- AC_SUBST([ALLOCATOR_H]) -+m4trace:configure.ac:169: -1- AC_SUBST_TRACE([ALLOCATOR_H]) -+m4trace:configure.ac:169: -1- m4_pattern_allow([^ALLOCATOR_H$]) -+m4trace:configure.ac:169: -1- AC_SUBST([ALLOCATOR_NAME]) -+m4trace:configure.ac:169: -1- AC_SUBST_TRACE([ALLOCATOR_NAME]) -+m4trace:configure.ac:169: -1- m4_pattern_allow([^ALLOCATOR_NAME$]) -+m4trace:configure.ac:170: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:2353: GLIBCXX_ENABLE_CHEADERS is expanded from... -+configure.ac:170: the top level]) -+m4trace:configure.ac:170: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:2353: GLIBCXX_ENABLE_CHEADERS is expanded from... -+configure.ac:170: the top level]) -+m4trace:configure.ac:170: -1- AC_SUBST([C_INCLUDE_DIR]) -+m4trace:configure.ac:170: -1- AC_SUBST_TRACE([C_INCLUDE_DIR]) -+m4trace:configure.ac:170: -1- m4_pattern_allow([^C_INCLUDE_DIR$]) -+m4trace:configure.ac:170: -2- AM_CONDITIONAL([GLIBCXX_C_HEADERS_C], [test $enable_cheaders = c]) -+m4trace:configure.ac:170: -2- AC_SUBST([GLIBCXX_C_HEADERS_C_TRUE]) -+m4trace:configure.ac:170: -2- AC_SUBST_TRACE([GLIBCXX_C_HEADERS_C_TRUE]) -+m4trace:configure.ac:170: -2- m4_pattern_allow([^GLIBCXX_C_HEADERS_C_TRUE$]) -+m4trace:configure.ac:170: -2- AC_SUBST([GLIBCXX_C_HEADERS_C_FALSE]) -+m4trace:configure.ac:170: -2- AC_SUBST_TRACE([GLIBCXX_C_HEADERS_C_FALSE]) -+m4trace:configure.ac:170: -2- m4_pattern_allow([^GLIBCXX_C_HEADERS_C_FALSE$]) -+m4trace:configure.ac:170: -2- _AM_SUBST_NOTMAKE([GLIBCXX_C_HEADERS_C_TRUE]) -+m4trace:configure.ac:170: -2- _AM_SUBST_NOTMAKE([GLIBCXX_C_HEADERS_C_FALSE]) -+m4trace:configure.ac:170: -2- AM_CONDITIONAL([GLIBCXX_C_HEADERS_C_STD], [test $enable_cheaders = c_std]) -+m4trace:configure.ac:170: -2- AC_SUBST([GLIBCXX_C_HEADERS_C_STD_TRUE]) -+m4trace:configure.ac:170: -2- AC_SUBST_TRACE([GLIBCXX_C_HEADERS_C_STD_TRUE]) -+m4trace:configure.ac:170: -2- m4_pattern_allow([^GLIBCXX_C_HEADERS_C_STD_TRUE$]) -+m4trace:configure.ac:170: -2- AC_SUBST([GLIBCXX_C_HEADERS_C_STD_FALSE]) -+m4trace:configure.ac:170: -2- AC_SUBST_TRACE([GLIBCXX_C_HEADERS_C_STD_FALSE]) -+m4trace:configure.ac:170: -2- m4_pattern_allow([^GLIBCXX_C_HEADERS_C_STD_FALSE$]) -+m4trace:configure.ac:170: -2- _AM_SUBST_NOTMAKE([GLIBCXX_C_HEADERS_C_STD_TRUE]) -+m4trace:configure.ac:170: -2- _AM_SUBST_NOTMAKE([GLIBCXX_C_HEADERS_C_STD_FALSE]) -+m4trace:configure.ac:170: -2- AM_CONDITIONAL([GLIBCXX_C_HEADERS_C_GLOBAL], [test $enable_cheaders = c_global]) -+m4trace:configure.ac:170: -2- AC_SUBST([GLIBCXX_C_HEADERS_C_GLOBAL_TRUE]) -+m4trace:configure.ac:170: -2- AC_SUBST_TRACE([GLIBCXX_C_HEADERS_C_GLOBAL_TRUE]) -+m4trace:configure.ac:170: -2- m4_pattern_allow([^GLIBCXX_C_HEADERS_C_GLOBAL_TRUE$]) -+m4trace:configure.ac:170: -2- AC_SUBST([GLIBCXX_C_HEADERS_C_GLOBAL_FALSE]) -+m4trace:configure.ac:170: -2- AC_SUBST_TRACE([GLIBCXX_C_HEADERS_C_GLOBAL_FALSE]) -+m4trace:configure.ac:170: -2- m4_pattern_allow([^GLIBCXX_C_HEADERS_C_GLOBAL_FALSE$]) -+m4trace:configure.ac:170: -2- _AM_SUBST_NOTMAKE([GLIBCXX_C_HEADERS_C_GLOBAL_TRUE]) -+m4trace:configure.ac:170: -2- _AM_SUBST_NOTMAKE([GLIBCXX_C_HEADERS_C_GLOBAL_FALSE]) -+m4trace:configure.ac:170: -2- AM_CONDITIONAL([GLIBCXX_C_HEADERS_COMPATIBILITY], [test $c_compatibility = yes]) -+m4trace:configure.ac:170: -2- AC_SUBST([GLIBCXX_C_HEADERS_COMPATIBILITY_TRUE]) -+m4trace:configure.ac:170: -2- AC_SUBST_TRACE([GLIBCXX_C_HEADERS_COMPATIBILITY_TRUE]) -+m4trace:configure.ac:170: -2- m4_pattern_allow([^GLIBCXX_C_HEADERS_COMPATIBILITY_TRUE$]) -+m4trace:configure.ac:170: -2- AC_SUBST([GLIBCXX_C_HEADERS_COMPATIBILITY_FALSE]) -+m4trace:configure.ac:170: -2- AC_SUBST_TRACE([GLIBCXX_C_HEADERS_COMPATIBILITY_FALSE]) -+m4trace:configure.ac:170: -2- m4_pattern_allow([^GLIBCXX_C_HEADERS_COMPATIBILITY_FALSE$]) -+m4trace:configure.ac:170: -2- _AM_SUBST_NOTMAKE([GLIBCXX_C_HEADERS_COMPATIBILITY_TRUE]) -+m4trace:configure.ac:170: -2- _AM_SUBST_NOTMAKE([GLIBCXX_C_HEADERS_COMPATIBILITY_FALSE]) -+m4trace:configure.ac:171: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:3040: GLIBCXX_ENABLE_LONG_LONG is expanded from... -+configure.ac:171: the top level]) -+m4trace:configure.ac:171: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_LONG_LONG]) -+m4trace:configure.ac:171: -1- m4_pattern_allow([^_GLIBCXX_USE_LONG_LONG$]) -+m4trace:configure.ac:171: -1- AH_OUTPUT([_GLIBCXX_USE_LONG_LONG], [/* Define if code specialized for long long should be used. */ -+@%:@undef _GLIBCXX_USE_LONG_LONG]) -+m4trace:configure.ac:172: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:3144: GLIBCXX_ENABLE_WCHAR_T is expanded from... -+configure.ac:172: the top level]) -+m4trace:configure.ac:172: -1- AH_OUTPUT([HAVE_WCHAR_H], [/* Define to 1 if you have the <wchar.h> header file. */ -+@%:@undef HAVE_WCHAR_H]) -+m4trace:configure.ac:172: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WCHAR_H]) -+m4trace:configure.ac:172: -1- m4_pattern_allow([^HAVE_WCHAR_H$]) -+m4trace:configure.ac:172: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:3144: GLIBCXX_ENABLE_WCHAR_T is expanded from... -+configure.ac:172: the top level]) -+m4trace:configure.ac:172: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MBSTATE_T]) -+m4trace:configure.ac:172: -1- m4_pattern_allow([^HAVE_MBSTATE_T$]) -+m4trace:configure.ac:172: -1- AH_OUTPUT([HAVE_MBSTATE_T], [/* Define if mbstate_t exists in wchar.h. */ -+@%:@undef HAVE_MBSTATE_T]) -+m4trace:configure.ac:172: -1- AH_OUTPUT([HAVE_WCTYPE_H], [/* Define to 1 if you have the <wctype.h> header file. */ -+@%:@undef HAVE_WCTYPE_H]) -+m4trace:configure.ac:172: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WCTYPE_H]) -+m4trace:configure.ac:172: -1- m4_pattern_allow([^HAVE_WCTYPE_H$]) -+m4trace:configure.ac:172: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:3144: GLIBCXX_ENABLE_WCHAR_T is expanded from... -+configure.ac:172: the top level]) -+m4trace:configure.ac:172: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:3144: GLIBCXX_ENABLE_WCHAR_T is expanded from... -+configure.ac:172: the top level]) -+m4trace:configure.ac:172: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:3144: GLIBCXX_ENABLE_WCHAR_T is expanded from... -+configure.ac:172: the top level]) -+m4trace:configure.ac:172: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:3144: GLIBCXX_ENABLE_WCHAR_T is expanded from... -+configure.ac:172: the top level]) -+m4trace:configure.ac:172: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_WCHAR_T]) -+m4trace:configure.ac:172: -1- m4_pattern_allow([^_GLIBCXX_USE_WCHAR_T$]) -+m4trace:configure.ac:172: -1- AH_OUTPUT([_GLIBCXX_USE_WCHAR_T], [/* Define if code specialized for wchar_t should be used. */ -+@%:@undef _GLIBCXX_USE_WCHAR_T]) -+m4trace:configure.ac:173: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX98_USE_C99_MATH]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^_GLIBCXX98_USE_C99_MATH$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([_GLIBCXX98_USE_C99_MATH], [/* Define if C99 functions or macros in <math.h> should be imported in <cmath> -+ in namespace std for C++98. */ -+@%:@undef _GLIBCXX98_USE_C99_MATH]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([HAVE_TGMATH_H], [/* Define to 1 if you have the <tgmath.h> header file. */ -+@%:@undef HAVE_TGMATH_H]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TGMATH_H]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^HAVE_TGMATH_H$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([HAVE_COMPLEX_H], [/* Define to 1 if you have the <complex.h> header file. */ -+@%:@undef HAVE_COMPLEX_H]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COMPLEX_H]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^HAVE_COMPLEX_H$]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX98_USE_C99_COMPLEX]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^_GLIBCXX98_USE_C99_COMPLEX$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([_GLIBCXX98_USE_C99_COMPLEX], [/* Define if C99 functions in <complex.h> should be used in <complex> for -+ C++98. Using compiler builtins for these functions requires corresponding -+ C99 library functions to be present. */ -+@%:@undef _GLIBCXX98_USE_C99_COMPLEX]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX98_USE_C99_STDIO]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^_GLIBCXX98_USE_C99_STDIO$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([_GLIBCXX98_USE_C99_STDIO], [/* Define if C99 functions or macros in <stdio.h> should be imported in -+ <cstdio> in namespace std for C++98. */ -+@%:@undef _GLIBCXX98_USE_C99_STDIO]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX98_USE_C99_STDLIB]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^_GLIBCXX98_USE_C99_STDLIB$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([_GLIBCXX98_USE_C99_STDLIB], [/* Define if C99 functions or macros in <stdlib.h> should be imported in -+ <cstdlib> in namespace std for C++98. */ -+@%:@undef _GLIBCXX98_USE_C99_STDLIB]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VFWSCANF]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^HAVE_VFWSCANF$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([HAVE_VFWSCANF], [/* Defined if vfwscanf exists. */ -+@%:@undef HAVE_VFWSCANF]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VSWSCANF]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^HAVE_VSWSCANF$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([HAVE_VSWSCANF], [/* Defined if vswscanf exists. */ -+@%:@undef HAVE_VSWSCANF]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VWSCANF]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^HAVE_VWSCANF$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([HAVE_VWSCANF], [/* Defined if vwscanf exists. */ -+@%:@undef HAVE_VWSCANF]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WCSTOF]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^HAVE_WCSTOF$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([HAVE_WCSTOF], [/* Defined if wcstof exists. */ -+@%:@undef HAVE_WCSTOF]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISWBLANK]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^HAVE_ISWBLANK$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([HAVE_ISWBLANK], [/* Defined if iswblank exists. */ -+@%:@undef HAVE_ISWBLANK]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX98_USE_C99_WCHAR]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^_GLIBCXX98_USE_C99_WCHAR$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([_GLIBCXX98_USE_C99_WCHAR], [/* Define if C99 functions or macros in <wchar.h> should be imported in -+ <cwchar> in namespace std for C++98. */ -+@%:@undef _GLIBCXX98_USE_C99_WCHAR]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_C99]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^_GLIBCXX_USE_C99$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([_GLIBCXX_USE_C99], [/* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>, -+ <stdio.h>, and <stdlib.h> can be used or exposed. */ -+@%:@undef _GLIBCXX_USE_C99]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX11_USE_C99_MATH]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^_GLIBCXX11_USE_C99_MATH$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([_GLIBCXX11_USE_C99_MATH], [/* Define if C99 functions or macros in <math.h> should be imported in <cmath> -+ in namespace std for C++11. */ -+@%:@undef _GLIBCXX11_USE_C99_MATH]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([HAVE_TGMATH_H], [/* Define to 1 if you have the <tgmath.h> header file. */ -+@%:@undef HAVE_TGMATH_H]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TGMATH_H]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^HAVE_TGMATH_H$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([HAVE_COMPLEX_H], [/* Define to 1 if you have the <complex.h> header file. */ -+@%:@undef HAVE_COMPLEX_H]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COMPLEX_H]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^HAVE_COMPLEX_H$]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX11_USE_C99_COMPLEX]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^_GLIBCXX11_USE_C99_COMPLEX$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([_GLIBCXX11_USE_C99_COMPLEX], [/* Define if C99 functions in <complex.h> should be used in <complex> for -+ C++11. Using compiler builtins for these functions requires corresponding -+ C99 library functions to be present. */ -+@%:@undef _GLIBCXX11_USE_C99_COMPLEX]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX11_USE_C99_STDIO]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^_GLIBCXX11_USE_C99_STDIO$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([_GLIBCXX11_USE_C99_STDIO], [/* Define if C99 functions or macros in <stdio.h> should be imported in -+ <cstdio> in namespace std for C++11. */ -+@%:@undef _GLIBCXX11_USE_C99_STDIO]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX11_USE_C99_STDLIB]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^_GLIBCXX11_USE_C99_STDLIB$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([_GLIBCXX11_USE_C99_STDLIB], [/* Define if C99 functions or macros in <stdlib.h> should be imported in -+ <cstdlib> in namespace std for C++11. */ -+@%:@undef _GLIBCXX11_USE_C99_STDLIB]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VFWSCANF]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^HAVE_VFWSCANF$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([HAVE_VFWSCANF], [/* Defined if vfwscanf exists. */ -+@%:@undef HAVE_VFWSCANF]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VSWSCANF]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^HAVE_VSWSCANF$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([HAVE_VSWSCANF], [/* Defined if vswscanf exists. */ -+@%:@undef HAVE_VSWSCANF]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VWSCANF]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^HAVE_VWSCANF$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([HAVE_VWSCANF], [/* Defined if vwscanf exists. */ -+@%:@undef HAVE_VWSCANF]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WCSTOF]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^HAVE_WCSTOF$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([HAVE_WCSTOF], [/* Defined if wcstof exists. */ -+@%:@undef HAVE_WCSTOF]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISWBLANK]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^HAVE_ISWBLANK$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([HAVE_ISWBLANK], [/* Defined if iswblank exists. */ -+@%:@undef HAVE_ISWBLANK]) -+m4trace:configure.ac:173: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX11_USE_C99_WCHAR]) -+m4trace:configure.ac:173: -1- m4_pattern_allow([^_GLIBCXX11_USE_C99_WCHAR$]) -+m4trace:configure.ac:173: -1- AH_OUTPUT([_GLIBCXX11_USE_C99_WCHAR], [/* Define if C99 functions or macros in <wchar.h> should be imported in -+ <cwchar> in namespace std for C++11. */ -+@%:@undef _GLIBCXX11_USE_C99_WCHAR]) -+m4trace:configure.ac:173: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:846: GLIBCXX_ENABLE_C99 is expanded from... -+configure.ac:173: the top level]) -+m4trace:configure.ac:174: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:2714: GLIBCXX_ENABLE_CONCEPT_CHECKS is expanded from... -+configure.ac:174: the top level]) -+m4trace:configure.ac:174: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_CONCEPT_CHECKS]) -+m4trace:configure.ac:174: -1- m4_pattern_allow([^_GLIBCXX_CONCEPT_CHECKS$]) -+m4trace:configure.ac:174: -1- AH_OUTPUT([_GLIBCXX_CONCEPT_CHECKS], [/* Define to use concept checking code from the boost libraries. */ -+@%:@undef _GLIBCXX_CONCEPT_CHECKS]) -+m4trace:configure.ac:175: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:2940: GLIBCXX_ENABLE_DEBUG_FLAGS is expanded from... -+configure.ac:175: the top level]) -+m4trace:configure.ac:175: -1- AC_SUBST([DEBUG_FLAGS]) -+m4trace:configure.ac:175: -1- AC_SUBST_TRACE([DEBUG_FLAGS]) -+m4trace:configure.ac:175: -1- m4_pattern_allow([^DEBUG_FLAGS$]) -+m4trace:configure.ac:176: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:2908: GLIBCXX_ENABLE_DEBUG is expanded from... -+configure.ac:176: the top level]) -+m4trace:configure.ac:176: -2- AM_CONDITIONAL([GLIBCXX_BUILD_DEBUG], [test $enable_libstdcxx_debug = yes]) -+m4trace:configure.ac:176: -2- AC_SUBST([GLIBCXX_BUILD_DEBUG_TRUE]) -+m4trace:configure.ac:176: -2- AC_SUBST_TRACE([GLIBCXX_BUILD_DEBUG_TRUE]) -+m4trace:configure.ac:176: -2- m4_pattern_allow([^GLIBCXX_BUILD_DEBUG_TRUE$]) -+m4trace:configure.ac:176: -2- AC_SUBST([GLIBCXX_BUILD_DEBUG_FALSE]) -+m4trace:configure.ac:176: -2- AC_SUBST_TRACE([GLIBCXX_BUILD_DEBUG_FALSE]) -+m4trace:configure.ac:176: -2- m4_pattern_allow([^GLIBCXX_BUILD_DEBUG_FALSE$]) -+m4trace:configure.ac:176: -2- _AM_SUBST_NOTMAKE([GLIBCXX_BUILD_DEBUG_TRUE]) -+m4trace:configure.ac:176: -2- _AM_SUBST_NOTMAKE([GLIBCXX_BUILD_DEBUG_FALSE]) -+m4trace:configure.ac:178: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:2863: GLIBCXX_ENABLE_CXX_FLAGS is expanded from... -+configure.ac:178: the top level]) -+m4trace:configure.ac:178: -1- AC_SUBST([EXTRA_CXX_FLAGS]) -+m4trace:configure.ac:178: -1- AC_SUBST_TRACE([EXTRA_CXX_FLAGS]) -+m4trace:configure.ac:178: -1- m4_pattern_allow([^EXTRA_CXX_FLAGS$]) -+m4trace:configure.ac:179: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:522: GLIBCXX_ENABLE_FULLY_DYNAMIC_STRING is expanded from... -+configure.ac:179: the top level]) -+m4trace:configure.ac:179: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_FULLY_DYNAMIC_STRING]) -+m4trace:configure.ac:179: -1- m4_pattern_allow([^_GLIBCXX_FULLY_DYNAMIC_STRING$]) -+m4trace:configure.ac:179: -1- AH_OUTPUT([_GLIBCXX_FULLY_DYNAMIC_STRING], [/* Define to 1 if a fully dynamic basic_string is wanted, 0 to disable, -+ undefined for platform defaults */ -+@%:@undef _GLIBCXX_FULLY_DYNAMIC_STRING]) -+m4trace:configure.ac:180: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:2731: GLIBCXX_ENABLE_EXTERN_TEMPLATE is expanded from... -+configure.ac:180: the top level]) -+m4trace:configure.ac:180: -2- AM_CONDITIONAL([ENABLE_EXTERN_TEMPLATE], [test $enable_extern_template = yes]) -+m4trace:configure.ac:180: -2- AC_SUBST([ENABLE_EXTERN_TEMPLATE_TRUE]) -+m4trace:configure.ac:180: -2- AC_SUBST_TRACE([ENABLE_EXTERN_TEMPLATE_TRUE]) -+m4trace:configure.ac:180: -2- m4_pattern_allow([^ENABLE_EXTERN_TEMPLATE_TRUE$]) -+m4trace:configure.ac:180: -2- AC_SUBST([ENABLE_EXTERN_TEMPLATE_FALSE]) -+m4trace:configure.ac:180: -2- AC_SUBST_TRACE([ENABLE_EXTERN_TEMPLATE_FALSE]) -+m4trace:configure.ac:180: -2- m4_pattern_allow([^ENABLE_EXTERN_TEMPLATE_FALSE$]) -+m4trace:configure.ac:180: -2- _AM_SUBST_NOTMAKE([ENABLE_EXTERN_TEMPLATE_TRUE]) -+m4trace:configure.ac:180: -2- _AM_SUBST_NOTMAKE([ENABLE_EXTERN_TEMPLATE_FALSE]) -+m4trace:configure.ac:181: -1- AC_SUBST([python_mod_dir]) -+m4trace:configure.ac:181: -1- AC_SUBST_TRACE([python_mod_dir]) -+m4trace:configure.ac:181: -1- m4_pattern_allow([^python_mod_dir$]) -+m4trace:configure.ac:181: -2- AM_CONDITIONAL([ENABLE_PYTHONDIR], [test $python_mod_dir != no]) -+m4trace:configure.ac:181: -2- AC_SUBST([ENABLE_PYTHONDIR_TRUE]) -+m4trace:configure.ac:181: -2- AC_SUBST_TRACE([ENABLE_PYTHONDIR_TRUE]) -+m4trace:configure.ac:181: -2- m4_pattern_allow([^ENABLE_PYTHONDIR_TRUE$]) -+m4trace:configure.ac:181: -2- AC_SUBST([ENABLE_PYTHONDIR_FALSE]) -+m4trace:configure.ac:181: -2- AC_SUBST_TRACE([ENABLE_PYTHONDIR_FALSE]) -+m4trace:configure.ac:181: -2- m4_pattern_allow([^ENABLE_PYTHONDIR_FALSE$]) -+m4trace:configure.ac:181: -2- _AM_SUBST_NOTMAKE([ENABLE_PYTHONDIR_TRUE]) -+m4trace:configure.ac:181: -2- _AM_SUBST_NOTMAKE([ENABLE_PYTHONDIR_FALSE]) -+m4trace:configure.ac:182: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:4378: GLIBCXX_ENABLE_WERROR is expanded from... -+configure.ac:182: the top level]) -+m4trace:configure.ac:182: -2- AM_CONDITIONAL([ENABLE_WERROR], [test $enable_werror = yes]) -+m4trace:configure.ac:182: -2- AC_SUBST([ENABLE_WERROR_TRUE]) -+m4trace:configure.ac:182: -2- AC_SUBST_TRACE([ENABLE_WERROR_TRUE]) -+m4trace:configure.ac:182: -2- m4_pattern_allow([^ENABLE_WERROR_TRUE$]) -+m4trace:configure.ac:182: -2- AC_SUBST([ENABLE_WERROR_FALSE]) -+m4trace:configure.ac:182: -2- AC_SUBST_TRACE([ENABLE_WERROR_FALSE]) -+m4trace:configure.ac:182: -2- m4_pattern_allow([^ENABLE_WERROR_FALSE$]) -+m4trace:configure.ac:182: -2- _AM_SUBST_NOTMAKE([ENABLE_WERROR_TRUE]) -+m4trace:configure.ac:182: -2- _AM_SUBST_NOTMAKE([ENABLE_WERROR_FALSE]) -+m4trace:configure.ac:183: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:2750: GLIBCXX_ENABLE_VTABLE_VERIFY is expanded from... -+configure.ac:183: the top level]) -+m4trace:configure.ac:183: -1- AC_SUBST([VTV_CXXFLAGS]) -+m4trace:configure.ac:183: -1- AC_SUBST_TRACE([VTV_CXXFLAGS]) -+m4trace:configure.ac:183: -1- m4_pattern_allow([^VTV_CXXFLAGS$]) -+m4trace:configure.ac:183: -1- AC_SUBST([VTV_PCH_CXXFLAGS]) -+m4trace:configure.ac:183: -1- AC_SUBST_TRACE([VTV_PCH_CXXFLAGS]) -+m4trace:configure.ac:183: -1- m4_pattern_allow([^VTV_PCH_CXXFLAGS$]) -+m4trace:configure.ac:183: -1- AC_SUBST([VTV_CXXLINKFLAGS]) -+m4trace:configure.ac:183: -1- AC_SUBST_TRACE([VTV_CXXLINKFLAGS]) -+m4trace:configure.ac:183: -1- m4_pattern_allow([^VTV_CXXLINKFLAGS$]) -+m4trace:configure.ac:183: -1- AM_CONDITIONAL([VTV_CYGMIN], [test x$vtv_cygmin = xyes]) -+m4trace:configure.ac:183: -1- AC_SUBST([VTV_CYGMIN_TRUE]) -+m4trace:configure.ac:183: -1- AC_SUBST_TRACE([VTV_CYGMIN_TRUE]) -+m4trace:configure.ac:183: -1- m4_pattern_allow([^VTV_CYGMIN_TRUE$]) -+m4trace:configure.ac:183: -1- AC_SUBST([VTV_CYGMIN_FALSE]) -+m4trace:configure.ac:183: -1- AC_SUBST_TRACE([VTV_CYGMIN_FALSE]) -+m4trace:configure.ac:183: -1- m4_pattern_allow([^VTV_CYGMIN_FALSE$]) -+m4trace:configure.ac:183: -1- _AM_SUBST_NOTMAKE([VTV_CYGMIN_TRUE]) -+m4trace:configure.ac:183: -1- _AM_SUBST_NOTMAKE([VTV_CYGMIN_FALSE]) -+m4trace:configure.ac:183: -2- AM_CONDITIONAL([ENABLE_VTABLE_VERIFY], [test $enable_vtable_verify = yes]) -+m4trace:configure.ac:183: -2- AC_SUBST([ENABLE_VTABLE_VERIFY_TRUE]) -+m4trace:configure.ac:183: -2- AC_SUBST_TRACE([ENABLE_VTABLE_VERIFY_TRUE]) -+m4trace:configure.ac:183: -2- m4_pattern_allow([^ENABLE_VTABLE_VERIFY_TRUE$]) -+m4trace:configure.ac:183: -2- AC_SUBST([ENABLE_VTABLE_VERIFY_FALSE]) -+m4trace:configure.ac:183: -2- AC_SUBST_TRACE([ENABLE_VTABLE_VERIFY_FALSE]) -+m4trace:configure.ac:183: -2- m4_pattern_allow([^ENABLE_VTABLE_VERIFY_FALSE$]) -+m4trace:configure.ac:183: -2- _AM_SUBST_NOTMAKE([ENABLE_VTABLE_VERIFY_TRUE]) -+m4trace:configure.ac:183: -2- _AM_SUBST_NOTMAKE([ENABLE_VTABLE_VERIFY_FALSE]) -+m4trace:configure.ac:186: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:2167: GLIBCXX_CHECK_STDIO_PROTO is expanded from... -+configure.ac:186: the top level]) -+m4trace:configure.ac:186: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:2167: GLIBCXX_CHECK_STDIO_PROTO is expanded from... -+configure.ac:186: the top level]) -+m4trace:configure.ac:186: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETS]) -+m4trace:configure.ac:186: -1- m4_pattern_allow([^HAVE_GETS$]) -+m4trace:configure.ac:186: -1- AH_OUTPUT([HAVE_GETS], [/* Define if gets is available in <stdio.h> before C++14. */ -+@%:@undef HAVE_GETS]) -+m4trace:configure.ac:186: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:2167: GLIBCXX_CHECK_STDIO_PROTO is expanded from... -+configure.ac:186: the top level]) -+m4trace:configure.ac:187: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:2200: GLIBCXX_CHECK_MATH11_PROTO is expanded from... -+configure.ac:187: the top level]) -+m4trace:configure.ac:187: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:2200: GLIBCXX_CHECK_MATH11_PROTO is expanded from... -+configure.ac:187: the top level]) -+m4trace:configure.ac:187: -1- AH_OUTPUT([__CORRECT_ISO_CPP11_MATH_H_PROTO_FP], [/* Define if all C++11 floating point overloads are available in <math.h>. */ -+#if __cplusplus >= 201103L -+#undef __CORRECT_ISO_CPP11_MATH_H_PROTO_FP -+#endif]) -+m4trace:configure.ac:187: -1- AC_DEFINE_TRACE_LITERAL([__CORRECT_ISO_CPP11_MATH_H_PROTO_FP]) -+m4trace:configure.ac:187: -1- m4_pattern_allow([^__CORRECT_ISO_CPP11_MATH_H_PROTO_FP$]) -+m4trace:configure.ac:187: -1- AH_OUTPUT([__CORRECT_ISO_CPP11_MATH_H_PROTO_INT], [/* Define if all C++11 integral type overloads are available in <math.h>. */ -+#if __cplusplus >= 201103L -+#undef __CORRECT_ISO_CPP11_MATH_H_PROTO_INT -+#endif]) -+m4trace:configure.ac:187: -1- AC_DEFINE_TRACE_LITERAL([__CORRECT_ISO_CPP11_MATH_H_PROTO_INT]) -+m4trace:configure.ac:187: -1- m4_pattern_allow([^__CORRECT_ISO_CPP11_MATH_H_PROTO_INT$]) -+m4trace:configure.ac:187: -1- AC_DEFINE_TRACE_LITERAL([HAVE_OBSOLETE_ISINF]) -+m4trace:configure.ac:187: -1- m4_pattern_allow([^HAVE_OBSOLETE_ISINF$]) -+m4trace:configure.ac:187: -1- AH_OUTPUT([HAVE_OBSOLETE_ISINF], [/* Define if <math.h> defines obsolete isinf function. */ -+@%:@undef HAVE_OBSOLETE_ISINF]) -+m4trace:configure.ac:187: -1- AC_DEFINE_TRACE_LITERAL([HAVE_OBSOLETE_ISNAN]) -+m4trace:configure.ac:187: -1- m4_pattern_allow([^HAVE_OBSOLETE_ISNAN$]) -+m4trace:configure.ac:187: -1- AH_OUTPUT([HAVE_OBSOLETE_ISNAN], [/* Define if <math.h> defines obsolete isnan function. */ -+@%:@undef HAVE_OBSOLETE_ISNAN]) -+m4trace:configure.ac:187: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:2200: GLIBCXX_CHECK_MATH11_PROTO is expanded from... -+configure.ac:187: the top level]) -+m4trace:configure.ac:188: -1- AH_OUTPUT([HAVE_UCHAR_H], [/* Define to 1 if you have the <uchar.h> header file. */ -+@%:@undef HAVE_UCHAR_H]) -+m4trace:configure.ac:188: -1- AC_DEFINE_TRACE_LITERAL([HAVE_UCHAR_H]) -+m4trace:configure.ac:188: -1- m4_pattern_allow([^HAVE_UCHAR_H$]) -+m4trace:configure.ac:188: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:2013: GLIBCXX_CHECK_UCHAR_H is expanded from... -+configure.ac:188: the top level]) -+m4trace:configure.ac:188: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:2013: GLIBCXX_CHECK_UCHAR_H is expanded from... -+configure.ac:188: the top level]) -+m4trace:configure.ac:188: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:2013: GLIBCXX_CHECK_UCHAR_H is expanded from... -+configure.ac:188: the top level]) -+m4trace:configure.ac:188: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_C11_UCHAR_CXX11]) -+m4trace:configure.ac:188: -1- m4_pattern_allow([^_GLIBCXX_USE_C11_UCHAR_CXX11$]) -+m4trace:configure.ac:188: -1- AH_OUTPUT([_GLIBCXX_USE_C11_UCHAR_CXX11], [/* Define if C11 functions in <uchar.h> should be imported into namespace std -+ in <cuchar>. */ -+@%:@undef _GLIBCXX_USE_C11_UCHAR_CXX11]) -+m4trace:configure.ac:188: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:2013: GLIBCXX_CHECK_UCHAR_H is expanded from... -+configure.ac:188: the top level]) -+m4trace:configure.ac:188: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_UCHAR_C8RTOMB_MBRTOC8_FCHAR8_T]) -+m4trace:configure.ac:188: -1- m4_pattern_allow([^_GLIBCXX_USE_UCHAR_C8RTOMB_MBRTOC8_FCHAR8_T$]) -+m4trace:configure.ac:188: -1- AH_OUTPUT([_GLIBCXX_USE_UCHAR_C8RTOMB_MBRTOC8_FCHAR8_T], [/* Define if c8rtomb and mbrtoc8 functions in <uchar.h> should be imported -+ into namespace std in <cuchar> for -fchar8_t. */ -+@%:@undef _GLIBCXX_USE_UCHAR_C8RTOMB_MBRTOC8_FCHAR8_T]) -+m4trace:configure.ac:188: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:2013: GLIBCXX_CHECK_UCHAR_H is expanded from... -+configure.ac:188: the top level]) -+m4trace:configure.ac:188: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_UCHAR_C8RTOMB_MBRTOC8_CXX20]) -+m4trace:configure.ac:188: -1- m4_pattern_allow([^_GLIBCXX_USE_UCHAR_C8RTOMB_MBRTOC8_CXX20$]) -+m4trace:configure.ac:188: -1- AH_OUTPUT([_GLIBCXX_USE_UCHAR_C8RTOMB_MBRTOC8_CXX20], [/* Define if c8rtomb and mbrtoc8 functions in <uchar.h> should be imported -+ into namespace std in <cuchar> for C++20. */ -+@%:@undef _GLIBCXX_USE_UCHAR_C8RTOMB_MBRTOC8_CXX20]) -+m4trace:configure.ac:188: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:2013: GLIBCXX_CHECK_UCHAR_H is expanded from... -+configure.ac:188: the top level]) -+m4trace:configure.ac:191: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:476: GLIBCXX_CHECK_LFS is expanded from... -+configure.ac:191: the top level]) -+m4trace:configure.ac:191: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:476: GLIBCXX_CHECK_LFS is expanded from... -+configure.ac:191: the top level]) -+m4trace:configure.ac:191: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:476: GLIBCXX_CHECK_LFS is expanded from... -+configure.ac:191: the top level]) -+m4trace:configure.ac:191: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:476: GLIBCXX_CHECK_LFS is expanded from... -+configure.ac:191: the top level]) -+m4trace:configure.ac:191: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_LFS]) -+m4trace:configure.ac:191: -1- m4_pattern_allow([^_GLIBCXX_USE_LFS$]) -+m4trace:configure.ac:191: -1- AH_OUTPUT([_GLIBCXX_USE_LFS], [/* Define if LFS support is available. */ -+@%:@undef _GLIBCXX_USE_LFS]) -+m4trace:configure.ac:191: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:476: GLIBCXX_CHECK_LFS is expanded from... -+configure.ac:191: the top level]) -+m4trace:configure.ac:194: -1- AH_OUTPUT([HAVE_SYS_IOCTL_H], [/* Define to 1 if you have the <sys/ioctl.h> header file. */ -+@%:@undef HAVE_SYS_IOCTL_H]) -+m4trace:configure.ac:194: -1- AH_OUTPUT([HAVE_SYS_FILIO_H], [/* Define to 1 if you have the <sys/filio.h> header file. */ -+@%:@undef HAVE_SYS_FILIO_H]) -+m4trace:configure.ac:195: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:421: GLIBCXX_CHECK_POLL is expanded from... -+configure.ac:195: the top level]) -+m4trace:configure.ac:195: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:421: GLIBCXX_CHECK_POLL is expanded from... -+configure.ac:195: the top level]) -+m4trace:configure.ac:195: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:421: GLIBCXX_CHECK_POLL is expanded from... -+configure.ac:195: the top level]) -+m4trace:configure.ac:195: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:421: GLIBCXX_CHECK_POLL is expanded from... -+configure.ac:195: the top level]) -+m4trace:configure.ac:195: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POLL]) -+m4trace:configure.ac:195: -1- m4_pattern_allow([^HAVE_POLL$]) -+m4trace:configure.ac:195: -1- AH_OUTPUT([HAVE_POLL], [/* Define if poll is available in <poll.h>. */ -+@%:@undef HAVE_POLL]) -+m4trace:configure.ac:195: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:421: GLIBCXX_CHECK_POLL is expanded from... -+configure.ac:195: the top level]) -+m4trace:configure.ac:196: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:375: GLIBCXX_CHECK_S_ISREG_OR_S_IFREG is expanded from... -+configure.ac:196: the top level]) -+m4trace:configure.ac:196: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:375: GLIBCXX_CHECK_S_ISREG_OR_S_IFREG is expanded from... -+configure.ac:196: the top level]) -+m4trace:configure.ac:196: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+acinclude.m4:375: GLIBCXX_CHECK_S_ISREG_OR_S_IFREG is expanded from... -+configure.ac:196: the top level]) -+m4trace:configure.ac:196: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+acinclude.m4:375: GLIBCXX_CHECK_S_ISREG_OR_S_IFREG is expanded from... -+configure.ac:196: the top level]) -+m4trace:configure.ac:196: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+acinclude.m4:375: GLIBCXX_CHECK_S_ISREG_OR_S_IFREG is expanded from... -+configure.ac:196: the top level]) -+m4trace:configure.ac:196: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+acinclude.m4:375: GLIBCXX_CHECK_S_ISREG_OR_S_IFREG is expanded from... -+configure.ac:196: the top level]) -+m4trace:configure.ac:196: -1- AC_DEFINE_TRACE_LITERAL([HAVE_S_ISREG]) -+m4trace:configure.ac:196: -1- m4_pattern_allow([^HAVE_S_ISREG$]) -+m4trace:configure.ac:196: -1- AH_OUTPUT([HAVE_S_ISREG], [/* Define if S_ISREG is available in <sys/stat.h>. */ -+@%:@undef HAVE_S_ISREG]) -+m4trace:configure.ac:196: -1- AC_DEFINE_TRACE_LITERAL([HAVE_S_IFREG]) -+m4trace:configure.ac:196: -1- m4_pattern_allow([^HAVE_S_IFREG$]) -+m4trace:configure.ac:196: -1- AH_OUTPUT([HAVE_S_IFREG], [/* Define if S_IFREG is available in <sys/stat.h>. */ -+@%:@undef HAVE_S_IFREG]) -+m4trace:configure.ac:196: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:375: GLIBCXX_CHECK_S_ISREG_OR_S_IFREG is expanded from... -+configure.ac:196: the top level]) -+m4trace:configure.ac:199: -1- AH_OUTPUT([HAVE_SYS_UIO_H], [/* Define to 1 if you have the <sys/uio.h> header file. */ -+@%:@undef HAVE_SYS_UIO_H]) -+m4trace:configure.ac:199: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYS_UIO_H]) -+m4trace:configure.ac:199: -1- m4_pattern_allow([^HAVE_SYS_UIO_H$]) -+m4trace:configure.ac:200: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:449: GLIBCXX_CHECK_WRITEV is expanded from... -+configure.ac:200: the top level]) -+m4trace:configure.ac:200: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:449: GLIBCXX_CHECK_WRITEV is expanded from... -+configure.ac:200: the top level]) -+m4trace:configure.ac:200: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:449: GLIBCXX_CHECK_WRITEV is expanded from... -+configure.ac:200: the top level]) -+m4trace:configure.ac:200: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:449: GLIBCXX_CHECK_WRITEV is expanded from... -+configure.ac:200: the top level]) -+m4trace:configure.ac:200: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WRITEV]) -+m4trace:configure.ac:200: -1- m4_pattern_allow([^HAVE_WRITEV$]) -+m4trace:configure.ac:200: -1- AH_OUTPUT([HAVE_WRITEV], [/* Define if writev is available in <sys/uio.h>. */ -+@%:@undef HAVE_WRITEV]) -+m4trace:configure.ac:200: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:449: GLIBCXX_CHECK_WRITEV is expanded from... -+configure.ac:200: the top level]) -+m4trace:configure.ac:206: -1- AH_OUTPUT([HAVE_FENV_H], [/* Define to 1 if you have the <fenv.h> header file. */ -+@%:@undef HAVE_FENV_H]) -+m4trace:configure.ac:206: -1- AH_OUTPUT([HAVE_COMPLEX_H], [/* Define to 1 if you have the <complex.h> header file. */ -+@%:@undef HAVE_COMPLEX_H]) -+m4trace:configure.ac:209: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:1621: GLIBCXX_CHECK_C99_TR1 is expanded from... -+configure.ac:209: the top level]) -+m4trace:configure.ac:209: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:1621: GLIBCXX_CHECK_C99_TR1 is expanded from... -+configure.ac:209: the top level]) -+m4trace:configure.ac:209: -1- AH_OUTPUT([HAVE_COMPLEX_H], [/* Define to 1 if you have the <complex.h> header file. */ -+@%:@undef HAVE_COMPLEX_H]) -+m4trace:configure.ac:209: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COMPLEX_H]) -+m4trace:configure.ac:209: -1- m4_pattern_allow([^HAVE_COMPLEX_H$]) -+m4trace:configure.ac:209: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:1621: GLIBCXX_CHECK_C99_TR1 is expanded from... -+configure.ac:209: the top level]) -+m4trace:configure.ac:209: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_C99_COMPLEX_TR1]) -+m4trace:configure.ac:209: -1- m4_pattern_allow([^_GLIBCXX_USE_C99_COMPLEX_TR1$]) -+m4trace:configure.ac:209: -1- AH_OUTPUT([_GLIBCXX_USE_C99_COMPLEX_TR1], [/* Define if C99 functions in <complex.h> should be used in <tr1/complex>. -+ Using compiler builtins for these functions requires corresponding C99 -+ library functions to be present. */ -+@%:@undef _GLIBCXX_USE_C99_COMPLEX_TR1]) -+m4trace:configure.ac:209: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:1621: GLIBCXX_CHECK_C99_TR1 is expanded from... -+configure.ac:209: the top level]) -+m4trace:configure.ac:209: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_C99_CTYPE_TR1]) -+m4trace:configure.ac:209: -1- m4_pattern_allow([^_GLIBCXX_USE_C99_CTYPE_TR1$]) -+m4trace:configure.ac:209: -1- AH_OUTPUT([_GLIBCXX_USE_C99_CTYPE_TR1], [/* Define if C99 functions in <ctype.h> should be imported in <tr1/cctype> in -+ namespace std::tr1. */ -+@%:@undef _GLIBCXX_USE_C99_CTYPE_TR1]) -+m4trace:configure.ac:209: -1- AH_OUTPUT([HAVE_FENV_H], [/* Define to 1 if you have the <fenv.h> header file. */ -+@%:@undef HAVE_FENV_H]) -+m4trace:configure.ac:209: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FENV_H]) -+m4trace:configure.ac:209: -1- m4_pattern_allow([^HAVE_FENV_H$]) -+m4trace:configure.ac:209: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:1621: GLIBCXX_CHECK_C99_TR1 is expanded from... -+configure.ac:209: the top level]) -+m4trace:configure.ac:209: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_C99_FENV_TR1]) -+m4trace:configure.ac:209: -1- m4_pattern_allow([^_GLIBCXX_USE_C99_FENV_TR1$]) -+m4trace:configure.ac:209: -1- AH_OUTPUT([_GLIBCXX_USE_C99_FENV_TR1], [/* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in -+ namespace std::tr1. */ -+@%:@undef _GLIBCXX_USE_C99_FENV_TR1]) -+m4trace:configure.ac:209: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:1621: GLIBCXX_CHECK_C99_TR1 is expanded from... -+configure.ac:209: the top level]) -+m4trace:configure.ac:209: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_C99_STDINT_TR1]) -+m4trace:configure.ac:209: -1- m4_pattern_allow([^_GLIBCXX_USE_C99_STDINT_TR1$]) -+m4trace:configure.ac:209: -1- AH_OUTPUT([_GLIBCXX_USE_C99_STDINT_TR1], [/* Define if C99 types in <stdint.h> should be imported in <tr1/cstdint> in -+ namespace std::tr1. */ -+@%:@undef _GLIBCXX_USE_C99_STDINT_TR1]) -+m4trace:configure.ac:209: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:1621: GLIBCXX_CHECK_C99_TR1 is expanded from... -+configure.ac:209: the top level]) -+m4trace:configure.ac:209: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_C99_MATH_TR1]) -+m4trace:configure.ac:209: -1- m4_pattern_allow([^_GLIBCXX_USE_C99_MATH_TR1$]) -+m4trace:configure.ac:209: -1- AH_OUTPUT([_GLIBCXX_USE_C99_MATH_TR1], [/* Define if C99 functions or macros in <math.h> should be imported in -+ <tr1/cmath> in namespace std::tr1. */ -+@%:@undef _GLIBCXX_USE_C99_MATH_TR1]) -+m4trace:configure.ac:209: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:1621: GLIBCXX_CHECK_C99_TR1 is expanded from... -+configure.ac:209: the top level]) -+m4trace:configure.ac:209: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_NO_C99_ROUNDING_FUNCS]) -+m4trace:configure.ac:209: -1- m4_pattern_allow([^_GLIBCXX_NO_C99_ROUNDING_FUNCS$]) -+m4trace:configure.ac:209: -1- AH_OUTPUT([_GLIBCXX_NO_C99_ROUNDING_FUNCS], [/* Define if C99 llrint and llround functions are missing from <math.h>. */ -+@%:@undef _GLIBCXX_NO_C99_ROUNDING_FUNCS]) -+m4trace:configure.ac:209: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:1621: GLIBCXX_CHECK_C99_TR1 is expanded from... -+configure.ac:209: the top level]) -+m4trace:configure.ac:209: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_C99_INTTYPES_TR1]) -+m4trace:configure.ac:209: -1- m4_pattern_allow([^_GLIBCXX_USE_C99_INTTYPES_TR1$]) -+m4trace:configure.ac:209: -1- AH_OUTPUT([_GLIBCXX_USE_C99_INTTYPES_TR1], [/* Define if C99 functions in <inttypes.h> should be imported in -+ <tr1/cinttypes> in namespace std::tr1. */ -+@%:@undef _GLIBCXX_USE_C99_INTTYPES_TR1]) -+m4trace:configure.ac:209: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:1621: GLIBCXX_CHECK_C99_TR1 is expanded from... -+configure.ac:209: the top level]) -+m4trace:configure.ac:209: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1]) -+m4trace:configure.ac:209: -1- m4_pattern_allow([^_GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1$]) -+m4trace:configure.ac:209: -1- AH_OUTPUT([_GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1], [/* Define if wchar_t C99 functions in <inttypes.h> should be imported in -+ <tr1/cinttypes> in namespace std::tr1. */ -+@%:@undef _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1]) -+m4trace:configure.ac:209: -1- AH_OUTPUT([HAVE_STDBOOL_H], [/* Define to 1 if you have the <stdbool.h> header file. */ -+@%:@undef HAVE_STDBOOL_H]) -+m4trace:configure.ac:209: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STDBOOL_H]) -+m4trace:configure.ac:209: -1- m4_pattern_allow([^HAVE_STDBOOL_H$]) -+m4trace:configure.ac:209: -1- AH_OUTPUT([HAVE_STDALIGN_H], [/* Define to 1 if you have the <stdalign.h> header file. */ -+@%:@undef HAVE_STDALIGN_H]) -+m4trace:configure.ac:209: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STDALIGN_H]) -+m4trace:configure.ac:209: -1- m4_pattern_allow([^HAVE_STDALIGN_H$]) -+m4trace:configure.ac:209: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:1621: GLIBCXX_CHECK_C99_TR1 is expanded from... -+configure.ac:209: the top level]) -+m4trace:configure.ac:212: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_STDIO_EOF]) -+m4trace:configure.ac:212: -1- m4_pattern_allow([^_GLIBCXX_STDIO_EOF$]) -+m4trace:configure.ac:212: -1- AH_OUTPUT([_GLIBCXX_STDIO_EOF], [/* Define to the value of the EOF integer constant. */ -+@%:@undef _GLIBCXX_STDIO_EOF]) -+m4trace:configure.ac:212: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_STDIO_SEEK_CUR]) -+m4trace:configure.ac:212: -1- m4_pattern_allow([^_GLIBCXX_STDIO_SEEK_CUR$]) -+m4trace:configure.ac:212: -1- AH_OUTPUT([_GLIBCXX_STDIO_SEEK_CUR], [/* Define to the value of the SEEK_CUR integer constant. */ -+@%:@undef _GLIBCXX_STDIO_SEEK_CUR]) -+m4trace:configure.ac:212: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_STDIO_SEEK_END]) -+m4trace:configure.ac:212: -1- m4_pattern_allow([^_GLIBCXX_STDIO_SEEK_END$]) -+m4trace:configure.ac:212: -1- AH_OUTPUT([_GLIBCXX_STDIO_SEEK_END], [/* Define to the value of the SEEK_END integer constant. */ -+@%:@undef _GLIBCXX_STDIO_SEEK_END]) -+m4trace:configure.ac:215: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:1588: GLIBCXX_CHECK_GETTIMEOFDAY is expanded from... -+configure.ac:215: the top level]) -+m4trace:configure.ac:215: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:1588: GLIBCXX_CHECK_GETTIMEOFDAY is expanded from... -+configure.ac:215: the top level]) -+m4trace:configure.ac:215: -1- AH_OUTPUT([HAVE_SYS_TIME_H], [/* Define to 1 if you have the <sys/time.h> header file. */ -+@%:@undef HAVE_SYS_TIME_H]) -+m4trace:configure.ac:215: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYS_TIME_H]) -+m4trace:configure.ac:215: -1- m4_pattern_allow([^HAVE_SYS_TIME_H$]) -+m4trace:configure.ac:215: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+acinclude.m4:1588: GLIBCXX_CHECK_GETTIMEOFDAY is expanded from... -+configure.ac:215: the top level]) -+m4trace:configure.ac:215: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+acinclude.m4:1588: GLIBCXX_CHECK_GETTIMEOFDAY is expanded from... -+configure.ac:215: the top level]) -+m4trace:configure.ac:215: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_GETTIMEOFDAY]) -+m4trace:configure.ac:215: -1- m4_pattern_allow([^_GLIBCXX_USE_GETTIMEOFDAY$]) -+m4trace:configure.ac:215: -1- AH_OUTPUT([_GLIBCXX_USE_GETTIMEOFDAY], [/* Defined if gettimeofday is available. */ -+@%:@undef _GLIBCXX_USE_GETTIMEOFDAY]) -+m4trace:configure.ac:215: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:1588: GLIBCXX_CHECK_GETTIMEOFDAY is expanded from... -+configure.ac:215: the top level]) -+m4trace:configure.ac:218: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:1332: GLIBCXX_ENABLE_LIBSTDCXX_TIME is expanded from... -+configure.ac:218: the top level]) -+m4trace:configure.ac:218: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:1332: GLIBCXX_ENABLE_LIBSTDCXX_TIME is expanded from... -+configure.ac:218: the top level]) -+m4trace:configure.ac:218: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:1332: GLIBCXX_ENABLE_LIBSTDCXX_TIME is expanded from... -+configure.ac:218: the top level]) -+m4trace:configure.ac:218: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */ -+@%:@undef HAVE_UNISTD_H]) -+m4trace:configure.ac:218: -1- AC_DEFINE_TRACE_LITERAL([HAVE_UNISTD_H]) -+m4trace:configure.ac:218: -1- m4_pattern_allow([^HAVE_UNISTD_H$]) -+m4trace:configure.ac:218: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+acinclude.m4:1332: GLIBCXX_ENABLE_LIBSTDCXX_TIME is expanded from... -+configure.ac:218: the top level]) -+m4trace:configure.ac:218: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+acinclude.m4:1332: GLIBCXX_ENABLE_LIBSTDCXX_TIME is expanded from... -+configure.ac:218: the top level]) -+m4trace:configure.ac:218: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+acinclude.m4:1332: GLIBCXX_ENABLE_LIBSTDCXX_TIME is expanded from... -+configure.ac:218: the top level]) -+m4trace:configure.ac:218: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:1332: GLIBCXX_ENABLE_LIBSTDCXX_TIME is expanded from... -+configure.ac:218: the top level]) -+m4trace:configure.ac:218: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_CLOCK_GETTIME_SYSCALL]) -+m4trace:configure.ac:218: -1- m4_pattern_allow([^_GLIBCXX_USE_CLOCK_GETTIME_SYSCALL$]) -+m4trace:configure.ac:218: -1- AH_OUTPUT([_GLIBCXX_USE_CLOCK_GETTIME_SYSCALL], [/* Defined if clock_gettime syscall has monotonic and realtime clock support. -+ */ -+@%:@undef _GLIBCXX_USE_CLOCK_GETTIME_SYSCALL]) -+m4trace:configure.ac:218: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:1332: GLIBCXX_ENABLE_LIBSTDCXX_TIME is expanded from... -+configure.ac:218: the top level]) -+m4trace:configure.ac:218: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_CLOCK_MONOTONIC]) -+m4trace:configure.ac:218: -1- m4_pattern_allow([^_GLIBCXX_USE_CLOCK_MONOTONIC$]) -+m4trace:configure.ac:218: -1- AH_OUTPUT([_GLIBCXX_USE_CLOCK_MONOTONIC], [/* Defined if clock_gettime has monotonic clock support. */ -+@%:@undef _GLIBCXX_USE_CLOCK_MONOTONIC]) -+m4trace:configure.ac:218: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_CLOCK_REALTIME]) -+m4trace:configure.ac:218: -1- m4_pattern_allow([^_GLIBCXX_USE_CLOCK_REALTIME$]) -+m4trace:configure.ac:218: -1- AH_OUTPUT([_GLIBCXX_USE_CLOCK_REALTIME], [/* Defined if clock_gettime has realtime clock support. */ -+@%:@undef _GLIBCXX_USE_CLOCK_REALTIME]) -+m4trace:configure.ac:218: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_SCHED_YIELD]) -+m4trace:configure.ac:218: -1- m4_pattern_allow([^_GLIBCXX_USE_SCHED_YIELD$]) -+m4trace:configure.ac:218: -1- AH_OUTPUT([_GLIBCXX_USE_SCHED_YIELD], [/* Defined if sched_yield is available. */ -+@%:@undef _GLIBCXX_USE_SCHED_YIELD]) -+m4trace:configure.ac:218: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_NANOSLEEP]) -+m4trace:configure.ac:218: -1- m4_pattern_allow([^_GLIBCXX_USE_NANOSLEEP$]) -+m4trace:configure.ac:218: -1- AH_OUTPUT([_GLIBCXX_USE_NANOSLEEP], [/* Defined if nanosleep is available. */ -+@%:@undef _GLIBCXX_USE_NANOSLEEP]) -+m4trace:configure.ac:218: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:1332: GLIBCXX_ENABLE_LIBSTDCXX_TIME is expanded from... -+configure.ac:218: the top level]) -+m4trace:configure.ac:218: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SLEEP]) -+m4trace:configure.ac:218: -1- m4_pattern_allow([^HAVE_SLEEP$]) -+m4trace:configure.ac:218: -1- AH_OUTPUT([HAVE_SLEEP], [/* Defined if sleep exists. */ -+@%:@undef HAVE_SLEEP]) -+m4trace:configure.ac:218: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:1332: GLIBCXX_ENABLE_LIBSTDCXX_TIME is expanded from... -+configure.ac:218: the top level]) -+m4trace:configure.ac:218: -1- AC_DEFINE_TRACE_LITERAL([HAVE_USLEEP]) -+m4trace:configure.ac:218: -1- m4_pattern_allow([^HAVE_USLEEP$]) -+m4trace:configure.ac:218: -1- AH_OUTPUT([HAVE_USLEEP], [/* Defined if usleep exists. */ -+@%:@undef HAVE_USLEEP]) -+m4trace:configure.ac:218: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:1332: GLIBCXX_ENABLE_LIBSTDCXX_TIME is expanded from... -+configure.ac:218: the top level]) -+m4trace:configure.ac:218: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WIN32_SLEEP]) -+m4trace:configure.ac:218: -1- m4_pattern_allow([^HAVE_WIN32_SLEEP$]) -+m4trace:configure.ac:218: -1- AH_OUTPUT([HAVE_WIN32_SLEEP], [/* Defined if Sleep exists. */ -+@%:@undef HAVE_WIN32_SLEEP]) -+m4trace:configure.ac:218: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_NO_SLEEP]) -+m4trace:configure.ac:218: -1- m4_pattern_allow([^_GLIBCXX_NO_SLEEP$]) -+m4trace:configure.ac:218: -1- AH_OUTPUT([_GLIBCXX_NO_SLEEP], [/* Defined if no way to sleep is available. */ -+@%:@undef _GLIBCXX_NO_SLEEP]) -+m4trace:configure.ac:218: -1- AC_SUBST([GLIBCXX_LIBS]) -+m4trace:configure.ac:218: -1- AC_SUBST_TRACE([GLIBCXX_LIBS]) -+m4trace:configure.ac:218: -1- m4_pattern_allow([^GLIBCXX_LIBS$]) -+m4trace:configure.ac:218: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:1332: GLIBCXX_ENABLE_LIBSTDCXX_TIME is expanded from... -+configure.ac:218: the top level]) -+m4trace:configure.ac:221: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:4389: GLIBCXX_CHECK_TMPNAM is expanded from... -+configure.ac:221: the top level]) -+m4trace:configure.ac:221: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:4389: GLIBCXX_CHECK_TMPNAM is expanded from... -+configure.ac:221: the top level]) -+m4trace:configure.ac:221: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4389: GLIBCXX_CHECK_TMPNAM is expanded from... -+configure.ac:221: the top level]) -+m4trace:configure.ac:221: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4389: GLIBCXX_CHECK_TMPNAM is expanded from... -+configure.ac:221: the top level]) -+m4trace:configure.ac:221: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_TMPNAM]) -+m4trace:configure.ac:221: -1- m4_pattern_allow([^_GLIBCXX_USE_TMPNAM$]) -+m4trace:configure.ac:221: -1- AH_OUTPUT([_GLIBCXX_USE_TMPNAM], [/* Define if obsolescent tmpnam is available in <stdio.h>. */ -+@%:@undef _GLIBCXX_USE_TMPNAM]) -+m4trace:configure.ac:221: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:4389: GLIBCXX_CHECK_TMPNAM is expanded from... -+configure.ac:221: the top level]) -+m4trace:configure.ac:224: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:4232: GLIBCXX_CHECK_PTHREAD_COND_CLOCKWAIT is expanded from... -+configure.ac:224: the top level]) -+m4trace:configure.ac:224: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:4232: GLIBCXX_CHECK_PTHREAD_COND_CLOCKWAIT is expanded from... -+configure.ac:224: the top level]) -+m4trace:configure.ac:224: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4232: GLIBCXX_CHECK_PTHREAD_COND_CLOCKWAIT is expanded from... -+configure.ac:224: the top level]) -+m4trace:configure.ac:224: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4232: GLIBCXX_CHECK_PTHREAD_COND_CLOCKWAIT is expanded from... -+configure.ac:224: the top level]) -+m4trace:configure.ac:224: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT]) -+m4trace:configure.ac:224: -1- m4_pattern_allow([^_GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT$]) -+m4trace:configure.ac:224: -1- AH_OUTPUT([_GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT], [/* Define if pthread_cond_clockwait is available in <pthread.h>. */ -+@%:@undef _GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT]) -+m4trace:configure.ac:224: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:4232: GLIBCXX_CHECK_PTHREAD_COND_CLOCKWAIT is expanded from... -+configure.ac:224: the top level]) -+m4trace:configure.ac:227: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:4262: GLIBCXX_CHECK_PTHREAD_MUTEX_CLOCKLOCK is expanded from... -+configure.ac:227: the top level]) -+m4trace:configure.ac:227: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:4262: GLIBCXX_CHECK_PTHREAD_MUTEX_CLOCKLOCK is expanded from... -+configure.ac:227: the top level]) -+m4trace:configure.ac:227: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4262: GLIBCXX_CHECK_PTHREAD_MUTEX_CLOCKLOCK is expanded from... -+configure.ac:227: the top level]) -+m4trace:configure.ac:227: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4262: GLIBCXX_CHECK_PTHREAD_MUTEX_CLOCKLOCK is expanded from... -+configure.ac:227: the top level]) -+m4trace:configure.ac:227: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_PTHREAD_MUTEX_CLOCKLOCK]) -+m4trace:configure.ac:227: -1- m4_pattern_allow([^_GLIBCXX_USE_PTHREAD_MUTEX_CLOCKLOCK$]) -+m4trace:configure.ac:227: -1- AH_OUTPUT([_GLIBCXX_USE_PTHREAD_MUTEX_CLOCKLOCK], [/* Define if pthread_mutex_clocklock is available in <pthread.h>. */ -+@%:@undef _GLIBCXX_USE_PTHREAD_MUTEX_CLOCKLOCK]) -+m4trace:configure.ac:227: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:4262: GLIBCXX_CHECK_PTHREAD_MUTEX_CLOCKLOCK is expanded from... -+configure.ac:227: the top level]) -+m4trace:configure.ac:230: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:4292: GLIBCXX_CHECK_PTHREAD_RWLOCK_CLOCKLOCK is expanded from... -+configure.ac:230: the top level]) -+m4trace:configure.ac:230: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:4292: GLIBCXX_CHECK_PTHREAD_RWLOCK_CLOCKLOCK is expanded from... -+configure.ac:230: the top level]) -+m4trace:configure.ac:230: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4292: GLIBCXX_CHECK_PTHREAD_RWLOCK_CLOCKLOCK is expanded from... -+configure.ac:230: the top level]) -+m4trace:configure.ac:230: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4292: GLIBCXX_CHECK_PTHREAD_RWLOCK_CLOCKLOCK is expanded from... -+configure.ac:230: the top level]) -+m4trace:configure.ac:230: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_PTHREAD_RWLOCK_CLOCKLOCK]) -+m4trace:configure.ac:230: -1- m4_pattern_allow([^_GLIBCXX_USE_PTHREAD_RWLOCK_CLOCKLOCK$]) -+m4trace:configure.ac:230: -1- AH_OUTPUT([_GLIBCXX_USE_PTHREAD_RWLOCK_CLOCKLOCK], [/* Define if pthread_rwlock_clockrdlock and pthread_rwlock_clockwrlock are -+ available in <pthread.h>. */ -+@%:@undef _GLIBCXX_USE_PTHREAD_RWLOCK_CLOCKLOCK]) -+m4trace:configure.ac:230: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:4292: GLIBCXX_CHECK_PTHREAD_RWLOCK_CLOCKLOCK is expanded from... -+configure.ac:230: the top level]) -+m4trace:configure.ac:232: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/headers.m4:129: _AC_CHECK_HEADER_MONGREL is expanded from... -+../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from... -+acinclude.m4:4074: AC_LC_MESSAGES is expanded from... -+configure.ac:232: the top level]) -+m4trace:configure.ac:232: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LC_MESSAGES]) -+m4trace:configure.ac:232: -1- m4_pattern_allow([^HAVE_LC_MESSAGES$]) -+m4trace:configure.ac:232: -1- AH_OUTPUT([HAVE_LC_MESSAGES], [/* Define if LC_MESSAGES is available in <locale.h>. */ -+@%:@undef HAVE_LC_MESSAGES]) -+m4trace:configure.ac:235: -1- AH_OUTPUT([HAVE_SYS_SYSINFO_H], [/* Define to 1 if you have the <sys/sysinfo.h> header file. */ -+@%:@undef HAVE_SYS_SYSINFO_H]) -+m4trace:configure.ac:235: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYS_SYSINFO_H]) -+m4trace:configure.ac:235: -1- m4_pattern_allow([^HAVE_SYS_SYSINFO_H$]) -+m4trace:configure.ac:236: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:4127: GLIBCXX_CHECK_GET_NPROCS is expanded from... -+configure.ac:236: the top level]) -+m4trace:configure.ac:236: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:4127: GLIBCXX_CHECK_GET_NPROCS is expanded from... -+configure.ac:236: the top level]) -+m4trace:configure.ac:236: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4127: GLIBCXX_CHECK_GET_NPROCS is expanded from... -+configure.ac:236: the top level]) -+m4trace:configure.ac:236: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4127: GLIBCXX_CHECK_GET_NPROCS is expanded from... -+configure.ac:236: the top level]) -+m4trace:configure.ac:236: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_GET_NPROCS]) -+m4trace:configure.ac:236: -1- m4_pattern_allow([^_GLIBCXX_USE_GET_NPROCS$]) -+m4trace:configure.ac:236: -1- AH_OUTPUT([_GLIBCXX_USE_GET_NPROCS], [/* Define if get_nprocs is available in <sys/sysinfo.h>. */ -+@%:@undef _GLIBCXX_USE_GET_NPROCS]) -+m4trace:configure.ac:236: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:4127: GLIBCXX_CHECK_GET_NPROCS is expanded from... -+configure.ac:236: the top level]) -+m4trace:configure.ac:237: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */ -+@%:@undef HAVE_UNISTD_H]) -+m4trace:configure.ac:237: -1- AC_DEFINE_TRACE_LITERAL([HAVE_UNISTD_H]) -+m4trace:configure.ac:237: -1- m4_pattern_allow([^HAVE_UNISTD_H$]) -+m4trace:configure.ac:238: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:4153: GLIBCXX_CHECK_SC_NPROCESSORS_ONLN is expanded from... -+configure.ac:238: the top level]) -+m4trace:configure.ac:238: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:4153: GLIBCXX_CHECK_SC_NPROCESSORS_ONLN is expanded from... -+configure.ac:238: the top level]) -+m4trace:configure.ac:238: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4153: GLIBCXX_CHECK_SC_NPROCESSORS_ONLN is expanded from... -+configure.ac:238: the top level]) -+m4trace:configure.ac:238: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4153: GLIBCXX_CHECK_SC_NPROCESSORS_ONLN is expanded from... -+configure.ac:238: the top level]) -+m4trace:configure.ac:238: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_SC_NPROCESSORS_ONLN]) -+m4trace:configure.ac:238: -1- m4_pattern_allow([^_GLIBCXX_USE_SC_NPROCESSORS_ONLN$]) -+m4trace:configure.ac:238: -1- AH_OUTPUT([_GLIBCXX_USE_SC_NPROCESSORS_ONLN], [/* Define if _SC_NPROCESSORS_ONLN is available in <unistd.h>. */ -+@%:@undef _GLIBCXX_USE_SC_NPROCESSORS_ONLN]) -+m4trace:configure.ac:238: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:4153: GLIBCXX_CHECK_SC_NPROCESSORS_ONLN is expanded from... -+configure.ac:238: the top level]) -+m4trace:configure.ac:239: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:4179: GLIBCXX_CHECK_SC_NPROC_ONLN is expanded from... -+configure.ac:239: the top level]) -+m4trace:configure.ac:239: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:4179: GLIBCXX_CHECK_SC_NPROC_ONLN is expanded from... -+configure.ac:239: the top level]) -+m4trace:configure.ac:239: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4179: GLIBCXX_CHECK_SC_NPROC_ONLN is expanded from... -+configure.ac:239: the top level]) -+m4trace:configure.ac:239: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4179: GLIBCXX_CHECK_SC_NPROC_ONLN is expanded from... -+configure.ac:239: the top level]) -+m4trace:configure.ac:239: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_SC_NPROC_ONLN]) -+m4trace:configure.ac:239: -1- m4_pattern_allow([^_GLIBCXX_USE_SC_NPROC_ONLN$]) -+m4trace:configure.ac:239: -1- AH_OUTPUT([_GLIBCXX_USE_SC_NPROC_ONLN], [/* Define if _SC_NPROC_ONLN is available in <unistd.h>. */ -+@%:@undef _GLIBCXX_USE_SC_NPROC_ONLN]) -+m4trace:configure.ac:239: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:4179: GLIBCXX_CHECK_SC_NPROC_ONLN is expanded from... -+configure.ac:239: the top level]) -+m4trace:configure.ac:240: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:4205: GLIBCXX_CHECK_PTHREADS_NUM_PROCESSORS_NP is expanded from... -+configure.ac:240: the top level]) -+m4trace:configure.ac:240: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:4205: GLIBCXX_CHECK_PTHREADS_NUM_PROCESSORS_NP is expanded from... -+configure.ac:240: the top level]) -+m4trace:configure.ac:240: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4205: GLIBCXX_CHECK_PTHREADS_NUM_PROCESSORS_NP is expanded from... -+configure.ac:240: the top level]) -+m4trace:configure.ac:240: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4205: GLIBCXX_CHECK_PTHREADS_NUM_PROCESSORS_NP is expanded from... -+configure.ac:240: the top level]) -+m4trace:configure.ac:240: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP]) -+m4trace:configure.ac:240: -1- m4_pattern_allow([^_GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP$]) -+m4trace:configure.ac:240: -1- AH_OUTPUT([_GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP], [/* Define if pthreads_num_processors_np is available in <pthread.h>. */ -+@%:@undef _GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP]) -+m4trace:configure.ac:240: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:4205: GLIBCXX_CHECK_PTHREADS_NUM_PROCESSORS_NP is expanded from... -+configure.ac:240: the top level]) -+m4trace:configure.ac:241: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:4323: GLIBCXX_CHECK_SYSCTL_HW_NCPU is expanded from... -+configure.ac:241: the top level]) -+m4trace:configure.ac:241: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:4323: GLIBCXX_CHECK_SYSCTL_HW_NCPU is expanded from... -+configure.ac:241: the top level]) -+m4trace:configure.ac:241: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4323: GLIBCXX_CHECK_SYSCTL_HW_NCPU is expanded from... -+configure.ac:241: the top level]) -+m4trace:configure.ac:241: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4323: GLIBCXX_CHECK_SYSCTL_HW_NCPU is expanded from... -+configure.ac:241: the top level]) -+m4trace:configure.ac:241: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_SYSCTL_HW_NCPU]) -+m4trace:configure.ac:241: -1- m4_pattern_allow([^_GLIBCXX_USE_SYSCTL_HW_NCPU$]) -+m4trace:configure.ac:241: -1- AH_OUTPUT([_GLIBCXX_USE_SYSCTL_HW_NCPU], [/* Define if sysctl(), CTL_HW and HW_NCPU are available in <sys/sysctl.h>. */ -+@%:@undef _GLIBCXX_USE_SYSCTL_HW_NCPU]) -+m4trace:configure.ac:241: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:4323: GLIBCXX_CHECK_SYSCTL_HW_NCPU is expanded from... -+configure.ac:241: the top level]) -+m4trace:configure.ac:242: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:4415: GLIBCXX_CHECK_SDT_H is expanded from... -+configure.ac:242: the top level]) -+m4trace:configure.ac:242: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+acinclude.m4:4415: GLIBCXX_CHECK_SDT_H is expanded from... -+configure.ac:242: the top level]) -+m4trace:configure.ac:242: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:4415: GLIBCXX_CHECK_SDT_H is expanded from... -+configure.ac:242: the top level]) -+m4trace:configure.ac:242: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYS_SDT_H]) -+m4trace:configure.ac:242: -1- m4_pattern_allow([^HAVE_SYS_SDT_H$]) -+m4trace:configure.ac:242: -1- AH_OUTPUT([HAVE_SYS_SDT_H], [/* Define to 1 if you have a suitable <sys/sdt.h> header file */ -+@%:@undef HAVE_SYS_SDT_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_ENDIAN_H], [/* Define to 1 if you have the <endian.h> header file. */ -+@%:@undef HAVE_ENDIAN_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_EXECINFO_H], [/* Define to 1 if you have the <execinfo.h> header file. */ -+@%:@undef HAVE_EXECINFO_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_FLOAT_H], [/* Define to 1 if you have the <float.h> header file. */ -+@%:@undef HAVE_FLOAT_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_FP_H], [/* Define to 1 if you have the <fp.h> header file. */ -+@%:@undef HAVE_FP_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_IEEEFP_H], [/* Define to 1 if you have the <ieeefp.h> header file. */ -+@%:@undef HAVE_IEEEFP_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */ -+@%:@undef HAVE_INTTYPES_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_LOCALE_H], [/* Define to 1 if you have the <locale.h> header file. */ -+@%:@undef HAVE_LOCALE_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_MACHINE_ENDIAN_H], [/* Define to 1 if you have the <machine/endian.h> header file. */ -+@%:@undef HAVE_MACHINE_ENDIAN_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_MACHINE_PARAM_H], [/* Define to 1 if you have the <machine/param.h> header file. */ -+@%:@undef HAVE_MACHINE_PARAM_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_NAN_H], [/* Define to 1 if you have the <nan.h> header file. */ -+@%:@undef HAVE_NAN_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */ -+@%:@undef HAVE_STDINT_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */ -+@%:@undef HAVE_STDLIB_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */ -+@%:@undef HAVE_STRING_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the <strings.h> header file. */ -+@%:@undef HAVE_STRINGS_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_SYS_IPC_H], [/* Define to 1 if you have the <sys/ipc.h> header file. */ -+@%:@undef HAVE_SYS_IPC_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_SYS_ISA_DEFS_H], [/* Define to 1 if you have the <sys/isa_defs.h> header file. */ -+@%:@undef HAVE_SYS_ISA_DEFS_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_SYS_MACHINE_H], [/* Define to 1 if you have the <sys/machine.h> header file. */ -+@%:@undef HAVE_SYS_MACHINE_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_SYS_PARAM_H], [/* Define to 1 if you have the <sys/param.h> header file. */ -+@%:@undef HAVE_SYS_PARAM_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_SYS_RESOURCE_H], [/* Define to 1 if you have the <sys/resource.h> header file. */ -+@%:@undef HAVE_SYS_RESOURCE_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_SYS_SEM_H], [/* Define to 1 if you have the <sys/sem.h> header file. */ -+@%:@undef HAVE_SYS_SEM_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */ -+@%:@undef HAVE_SYS_STAT_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_SYS_TIME_H], [/* Define to 1 if you have the <sys/time.h> header file. */ -+@%:@undef HAVE_SYS_TIME_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */ -+@%:@undef HAVE_SYS_TYPES_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */ -+@%:@undef HAVE_UNISTD_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_WCHAR_H], [/* Define to 1 if you have the <wchar.h> header file. */ -+@%:@undef HAVE_WCHAR_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_WCTYPE_H], [/* Define to 1 if you have the <wctype.h> header file. */ -+@%:@undef HAVE_WCTYPE_H]) -+m4trace:configure.ac:245: -1- AH_OUTPUT([HAVE_LINUX_TYPES_H], [/* Define to 1 if you have the <linux/types.h> header file. */ -+@%:@undef HAVE_LINUX_TYPES_H]) -+m4trace:configure.ac:251: -1- AH_OUTPUT([HAVE_LINUX_RANDOM_H], [/* Define to 1 if you have the <linux/random.h> header file. */ -+@%:@undef HAVE_LINUX_RANDOM_H]) -+m4trace:configure.ac:251: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LINUX_RANDOM_H]) -+m4trace:configure.ac:251: -1- m4_pattern_allow([^HAVE_LINUX_RANDOM_H$]) -+m4trace:configure.ac:257: -1- AH_OUTPUT([HAVE_XLOCALE_H], [/* Define to 1 if you have the <xlocale.h> header file. */ -+@%:@undef HAVE_XLOCALE_H]) -+m4trace:configure.ac:257: -1- AC_DEFINE_TRACE_LITERAL([HAVE_XLOCALE_H]) -+m4trace:configure.ac:257: -1- m4_pattern_allow([^HAVE_XLOCALE_H$]) -+m4trace:configure.ac:265: -1- _m4_warn([obsolete], [The macro `AC_PROG_LD' is obsolete. -+You should run autoupdate.], [../libtool.m4:2912: AC_PROG_LD is expanded from... -+acinclude.m4:181: GLIBCXX_CHECK_LINKER_FEATURES is expanded from... -+configure.ac:265: the top level]) -+m4trace:configure.ac:265: -1- AC_SUBST([LD]) -+m4trace:configure.ac:265: -1- AC_SUBST_TRACE([LD]) -+m4trace:configure.ac:265: -1- m4_pattern_allow([^LD$]) -+m4trace:configure.ac:265: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+acinclude.m4:181: GLIBCXX_CHECK_LINKER_FEATURES is expanded from... -+configure.ac:265: the top level]) -+m4trace:configure.ac:265: -1- AC_SUBST([SECTION_LDFLAGS]) -+m4trace:configure.ac:265: -1- AC_SUBST_TRACE([SECTION_LDFLAGS]) -+m4trace:configure.ac:265: -1- m4_pattern_allow([^SECTION_LDFLAGS$]) -+m4trace:configure.ac:265: -1- AC_SUBST([OPT_LDFLAGS]) -+m4trace:configure.ac:265: -1- AC_SUBST_TRACE([OPT_LDFLAGS]) -+m4trace:configure.ac:265: -1- m4_pattern_allow([^OPT_LDFLAGS$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_ISINF], [/* Define to 1 if you have the `isinf\' function. */ -+@%:@undef HAVE_ISINF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_ISINF$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__ISINF], [/* Define to 1 if you have the `_isinf\' function. */ -+@%:@undef HAVE__ISINF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__ISINF$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_isinf], [#if defined (HAVE__ISINF) && ! defined (HAVE_ISINF) -+# define HAVE_ISINF 1 -+# define isinf _isinf -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_ISNAN], [/* Define to 1 if you have the `isnan\' function. */ -+@%:@undef HAVE_ISNAN]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNAN]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_ISNAN$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__ISNAN], [/* Define to 1 if you have the `_isnan\' function. */ -+@%:@undef HAVE__ISNAN]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNAN]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__ISNAN$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_isnan], [#if defined (HAVE__ISNAN) && ! defined (HAVE_ISNAN) -+# define HAVE_ISNAN 1 -+# define isnan _isnan -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_FINITE], [/* Define to 1 if you have the `finite\' function. */ -+@%:@undef HAVE_FINITE]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITE]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_FINITE$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__FINITE], [/* Define to 1 if you have the `_finite\' function. */ -+@%:@undef HAVE__FINITE]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITE]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__FINITE$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_finite], [#if defined (HAVE__FINITE) && ! defined (HAVE_FINITE) -+# define HAVE_FINITE 1 -+# define finite _finite -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_SINCOS], [/* Define to 1 if you have the `sincos\' function. */ -+@%:@undef HAVE_SINCOS]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOS]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_SINCOS$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__SINCOS], [/* Define to 1 if you have the `_sincos\' function. */ -+@%:@undef HAVE__SINCOS]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOS]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__SINCOS$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_sincos], [#if defined (HAVE__SINCOS) && ! defined (HAVE_SINCOS) -+# define HAVE_SINCOS 1 -+# define sincos _sincos -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_FPCLASS], [/* Define to 1 if you have the `fpclass\' function. */ -+@%:@undef HAVE_FPCLASS]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FPCLASS]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_FPCLASS$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__FPCLASS], [/* Define to 1 if you have the `_fpclass\' function. */ -+@%:@undef HAVE__FPCLASS]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FPCLASS]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__FPCLASS$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_fpclass], [#if defined (HAVE__FPCLASS) && ! defined (HAVE_FPCLASS) -+# define HAVE_FPCLASS 1 -+# define fpclass _fpclass -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_QFPCLASS], [/* Define to 1 if you have the `qfpclass\' function. */ -+@%:@undef HAVE_QFPCLASS]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QFPCLASS]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_QFPCLASS$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__QFPCLASS], [/* Define to 1 if you have the `_qfpclass\' function. */ -+@%:@undef HAVE__QFPCLASS]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__QFPCLASS]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__QFPCLASS$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_qfpclass], [#if defined (HAVE__QFPCLASS) && ! defined (HAVE_QFPCLASS) -+# define HAVE_QFPCLASS 1 -+# define qfpclass _qfpclass -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_HYPOT], [/* Define to 1 if you have the `hypot\' function. */ -+@%:@undef HAVE_HYPOT]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOT]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_HYPOT$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__HYPOT], [/* Define to 1 if you have the `_hypot\' function. */ -+@%:@undef HAVE__HYPOT]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOT]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__HYPOT$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_hypot], [#if defined (HAVE__HYPOT) && ! defined (HAVE_HYPOT) -+# define HAVE_HYPOT 1 -+# define hypot _hypot -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_ACOSF], [/* Define to 1 if you have the `acosf\' function. */ -+@%:@undef HAVE_ACOSF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_ASINF], [/* Define to 1 if you have the `asinf\' function. */ -+@%:@undef HAVE_ASINF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_ATANF], [/* Define to 1 if you have the `atanf\' function. */ -+@%:@undef HAVE_ATANF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_COSF], [/* Define to 1 if you have the `cosf\' function. */ -+@%:@undef HAVE_COSF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_SINF], [/* Define to 1 if you have the `sinf\' function. */ -+@%:@undef HAVE_SINF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_TANF], [/* Define to 1 if you have the `tanf\' function. */ -+@%:@undef HAVE_TANF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_COSHF], [/* Define to 1 if you have the `coshf\' function. */ -+@%:@undef HAVE_COSHF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_SINHF], [/* Define to 1 if you have the `sinhf\' function. */ -+@%:@undef HAVE_SINHF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_TANHF], [/* Define to 1 if you have the `tanhf\' function. */ -+@%:@undef HAVE_TANHF]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__ACOSF], [/* Define to 1 if you have the `_acosf\' function. */ -+@%:@undef HAVE__ACOSF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__ASINF], [/* Define to 1 if you have the `_asinf\' function. */ -+@%:@undef HAVE__ASINF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__ATANF], [/* Define to 1 if you have the `_atanf\' function. */ -+@%:@undef HAVE__ATANF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__COSF], [/* Define to 1 if you have the `_cosf\' function. */ -+@%:@undef HAVE__COSF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__SINF], [/* Define to 1 if you have the `_sinf\' function. */ -+@%:@undef HAVE__SINF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__TANF], [/* Define to 1 if you have the `_tanf\' function. */ -+@%:@undef HAVE__TANF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__COSHF], [/* Define to 1 if you have the `_coshf\' function. */ -+@%:@undef HAVE__COSHF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__SINHF], [/* Define to 1 if you have the `_sinhf\' function. */ -+@%:@undef HAVE__SINHF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__TANHF], [/* Define to 1 if you have the `_tanhf\' function. */ -+@%:@undef HAVE__TANHF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_acosf], [#if defined (HAVE__ACOSF) && ! defined (HAVE_ACOSF) -+# define HAVE_ACOSF 1 -+# define acosf _acosf -+#endif]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_asinf], [#if defined (HAVE__ASINF) && ! defined (HAVE_ASINF) -+# define HAVE_ASINF 1 -+# define asinf _asinf -+#endif]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_atanf], [#if defined (HAVE__ATANF) && ! defined (HAVE_ATANF) -+# define HAVE_ATANF 1 -+# define atanf _atanf -+#endif]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_cosf], [#if defined (HAVE__COSF) && ! defined (HAVE_COSF) -+# define HAVE_COSF 1 -+# define cosf _cosf -+#endif]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_sinf], [#if defined (HAVE__SINF) && ! defined (HAVE_SINF) -+# define HAVE_SINF 1 -+# define sinf _sinf -+#endif]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_tanf], [#if defined (HAVE__TANF) && ! defined (HAVE_TANF) -+# define HAVE_TANF 1 -+# define tanf _tanf -+#endif]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_coshf], [#if defined (HAVE__COSHF) && ! defined (HAVE_COSHF) -+# define HAVE_COSHF 1 -+# define coshf _coshf -+#endif]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_sinhf], [#if defined (HAVE__SINHF) && ! defined (HAVE_SINHF) -+# define HAVE_SINHF 1 -+# define sinhf _sinhf -+#endif]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_tanhf], [#if defined (HAVE__TANHF) && ! defined (HAVE_TANHF) -+# define HAVE_TANHF 1 -+# define tanhf _tanhf -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_CEILF], [/* Define to 1 if you have the `ceilf\' function. */ -+@%:@undef HAVE_CEILF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_FLOORF], [/* Define to 1 if you have the `floorf\' function. */ -+@%:@undef HAVE_FLOORF]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__CEILF], [/* Define to 1 if you have the `_ceilf\' function. */ -+@%:@undef HAVE__CEILF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__FLOORF], [/* Define to 1 if you have the `_floorf\' function. */ -+@%:@undef HAVE__FLOORF]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_ceilf], [#if defined (HAVE__CEILF) && ! defined (HAVE_CEILF) -+# define HAVE_CEILF 1 -+# define ceilf _ceilf -+#endif]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_floorf], [#if defined (HAVE__FLOORF) && ! defined (HAVE_FLOORF) -+# define HAVE_FLOORF 1 -+# define floorf _floorf -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_EXPF], [/* Define to 1 if you have the `expf\' function. */ -+@%:@undef HAVE_EXPF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_EXPF$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__EXPF], [/* Define to 1 if you have the `_expf\' function. */ -+@%:@undef HAVE__EXPF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__EXPF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__EXPF$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_expf], [#if defined (HAVE__EXPF) && ! defined (HAVE_EXPF) -+# define HAVE_EXPF 1 -+# define expf _expf -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_ISNANF], [/* Define to 1 if you have the `isnanf\' function. */ -+@%:@undef HAVE_ISNANF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_ISNANF$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__ISNANF], [/* Define to 1 if you have the `_isnanf\' function. */ -+@%:@undef HAVE__ISNANF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNANF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__ISNANF$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_isnanf], [#if defined (HAVE__ISNANF) && ! defined (HAVE_ISNANF) -+# define HAVE_ISNANF 1 -+# define isnanf _isnanf -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_ISINFF], [/* Define to 1 if you have the `isinff\' function. */ -+@%:@undef HAVE_ISINFF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_ISINFF$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__ISINFF], [/* Define to 1 if you have the `_isinff\' function. */ -+@%:@undef HAVE__ISINFF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINFF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__ISINFF$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_isinff], [#if defined (HAVE__ISINFF) && ! defined (HAVE_ISINFF) -+# define HAVE_ISINFF 1 -+# define isinff _isinff -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_ATAN2F], [/* Define to 1 if you have the `atan2f\' function. */ -+@%:@undef HAVE_ATAN2F]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2F]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_ATAN2F$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__ATAN2F], [/* Define to 1 if you have the `_atan2f\' function. */ -+@%:@undef HAVE__ATAN2F]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ATAN2F]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__ATAN2F$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_atan2f], [#if defined (HAVE__ATAN2F) && ! defined (HAVE_ATAN2F) -+# define HAVE_ATAN2F 1 -+# define atan2f _atan2f -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_FABSF], [/* Define to 1 if you have the `fabsf\' function. */ -+@%:@undef HAVE_FABSF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_FABSF$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__FABSF], [/* Define to 1 if you have the `_fabsf\' function. */ -+@%:@undef HAVE__FABSF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FABSF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__FABSF$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_fabsf], [#if defined (HAVE__FABSF) && ! defined (HAVE_FABSF) -+# define HAVE_FABSF 1 -+# define fabsf _fabsf -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_FMODF], [/* Define to 1 if you have the `fmodf\' function. */ -+@%:@undef HAVE_FMODF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_FMODF$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__FMODF], [/* Define to 1 if you have the `_fmodf\' function. */ -+@%:@undef HAVE__FMODF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FMODF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__FMODF$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_fmodf], [#if defined (HAVE__FMODF) && ! defined (HAVE_FMODF) -+# define HAVE_FMODF 1 -+# define fmodf _fmodf -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_FREXPF], [/* Define to 1 if you have the `frexpf\' function. */ -+@%:@undef HAVE_FREXPF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_FREXPF$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__FREXPF], [/* Define to 1 if you have the `_frexpf\' function. */ -+@%:@undef HAVE__FREXPF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FREXPF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__FREXPF$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_frexpf], [#if defined (HAVE__FREXPF) && ! defined (HAVE_FREXPF) -+# define HAVE_FREXPF 1 -+# define frexpf _frexpf -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_HYPOTF], [/* Define to 1 if you have the `hypotf\' function. */ -+@%:@undef HAVE_HYPOTF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_HYPOTF$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__HYPOTF], [/* Define to 1 if you have the `_hypotf\' function. */ -+@%:@undef HAVE__HYPOTF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOTF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__HYPOTF$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_hypotf], [#if defined (HAVE__HYPOTF) && ! defined (HAVE_HYPOTF) -+# define HAVE_HYPOTF 1 -+# define hypotf _hypotf -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_LDEXPF], [/* Define to 1 if you have the `ldexpf\' function. */ -+@%:@undef HAVE_LDEXPF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_LDEXPF$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__LDEXPF], [/* Define to 1 if you have the `_ldexpf\' function. */ -+@%:@undef HAVE__LDEXPF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LDEXPF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__LDEXPF$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_ldexpf], [#if defined (HAVE__LDEXPF) && ! defined (HAVE_LDEXPF) -+# define HAVE_LDEXPF 1 -+# define ldexpf _ldexpf -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_LOGF], [/* Define to 1 if you have the `logf\' function. */ -+@%:@undef HAVE_LOGF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_LOGF$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__LOGF], [/* Define to 1 if you have the `_logf\' function. */ -+@%:@undef HAVE__LOGF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOGF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__LOGF$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_logf], [#if defined (HAVE__LOGF) && ! defined (HAVE_LOGF) -+# define HAVE_LOGF 1 -+# define logf _logf -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_LOG10F], [/* Define to 1 if you have the `log10f\' function. */ -+@%:@undef HAVE_LOG10F]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10F]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_LOG10F$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__LOG10F], [/* Define to 1 if you have the `_log10f\' function. */ -+@%:@undef HAVE__LOG10F]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOG10F]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__LOG10F$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_log10f], [#if defined (HAVE__LOG10F) && ! defined (HAVE_LOG10F) -+# define HAVE_LOG10F 1 -+# define log10f _log10f -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_MODFF], [/* Define to 1 if you have the `modff\' function. */ -+@%:@undef HAVE_MODFF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_MODFF$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__MODFF], [/* Define to 1 if you have the `_modff\' function. */ -+@%:@undef HAVE__MODFF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODFF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__MODFF$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_modff], [#if defined (HAVE__MODFF) && ! defined (HAVE_MODFF) -+# define HAVE_MODFF 1 -+# define modff _modff -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_MODF], [/* Define to 1 if you have the `modf\' function. */ -+@%:@undef HAVE_MODF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_MODF$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__MODF], [/* Define to 1 if you have the `_modf\' function. */ -+@%:@undef HAVE__MODF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__MODF$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_modf], [#if defined (HAVE__MODF) && ! defined (HAVE_MODF) -+# define HAVE_MODF 1 -+# define modf _modf -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_POWF], [/* Define to 1 if you have the `powf\' function. */ -+@%:@undef HAVE_POWF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_POWF$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__POWF], [/* Define to 1 if you have the `_powf\' function. */ -+@%:@undef HAVE__POWF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__POWF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__POWF$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_powf], [#if defined (HAVE__POWF) && ! defined (HAVE_POWF) -+# define HAVE_POWF 1 -+# define powf _powf -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_SQRTF], [/* Define to 1 if you have the `sqrtf\' function. */ -+@%:@undef HAVE_SQRTF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_SQRTF$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__SQRTF], [/* Define to 1 if you have the `_sqrtf\' function. */ -+@%:@undef HAVE__SQRTF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SQRTF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__SQRTF$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_sqrtf], [#if defined (HAVE__SQRTF) && ! defined (HAVE_SQRTF) -+# define HAVE_SQRTF 1 -+# define sqrtf _sqrtf -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_SINCOSF], [/* Define to 1 if you have the `sincosf\' function. */ -+@%:@undef HAVE_SINCOSF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_SINCOSF$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__SINCOSF], [/* Define to 1 if you have the `_sincosf\' function. */ -+@%:@undef HAVE__SINCOSF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOSF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__SINCOSF$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_sincosf], [#if defined (HAVE__SINCOSF) && ! defined (HAVE_SINCOSF) -+# define HAVE_SINCOSF 1 -+# define sincosf _sincosf -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_FINITEF], [/* Define to 1 if you have the `finitef\' function. */ -+@%:@undef HAVE_FINITEF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_FINITEF$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__FINITEF], [/* Define to 1 if you have the `_finitef\' function. */ -+@%:@undef HAVE__FINITEF]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITEF]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__FINITEF$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_finitef], [#if defined (HAVE__FINITEF) && ! defined (HAVE_FINITEF) -+# define HAVE_FINITEF 1 -+# define finitef _finitef -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_ACOSL], [/* Define to 1 if you have the `acosl\' function. */ -+@%:@undef HAVE_ACOSL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_ASINL], [/* Define to 1 if you have the `asinl\' function. */ -+@%:@undef HAVE_ASINL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_ATANL], [/* Define to 1 if you have the `atanl\' function. */ -+@%:@undef HAVE_ATANL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_COSL], [/* Define to 1 if you have the `cosl\' function. */ -+@%:@undef HAVE_COSL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_SINL], [/* Define to 1 if you have the `sinl\' function. */ -+@%:@undef HAVE_SINL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_TANL], [/* Define to 1 if you have the `tanl\' function. */ -+@%:@undef HAVE_TANL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_COSHL], [/* Define to 1 if you have the `coshl\' function. */ -+@%:@undef HAVE_COSHL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_SINHL], [/* Define to 1 if you have the `sinhl\' function. */ -+@%:@undef HAVE_SINHL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_TANHL], [/* Define to 1 if you have the `tanhl\' function. */ -+@%:@undef HAVE_TANHL]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__ACOSL], [/* Define to 1 if you have the `_acosl\' function. */ -+@%:@undef HAVE__ACOSL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__ASINL], [/* Define to 1 if you have the `_asinl\' function. */ -+@%:@undef HAVE__ASINL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__ATANL], [/* Define to 1 if you have the `_atanl\' function. */ -+@%:@undef HAVE__ATANL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__COSL], [/* Define to 1 if you have the `_cosl\' function. */ -+@%:@undef HAVE__COSL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__SINL], [/* Define to 1 if you have the `_sinl\' function. */ -+@%:@undef HAVE__SINL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__TANL], [/* Define to 1 if you have the `_tanl\' function. */ -+@%:@undef HAVE__TANL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__COSHL], [/* Define to 1 if you have the `_coshl\' function. */ -+@%:@undef HAVE__COSHL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__SINHL], [/* Define to 1 if you have the `_sinhl\' function. */ -+@%:@undef HAVE__SINHL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__TANHL], [/* Define to 1 if you have the `_tanhl\' function. */ -+@%:@undef HAVE__TANHL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_acosl], [#if defined (HAVE__ACOSL) && ! defined (HAVE_ACOSL) -+# define HAVE_ACOSL 1 -+# define acosl _acosl -+#endif]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_asinl], [#if defined (HAVE__ASINL) && ! defined (HAVE_ASINL) -+# define HAVE_ASINL 1 -+# define asinl _asinl -+#endif]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_atanl], [#if defined (HAVE__ATANL) && ! defined (HAVE_ATANL) -+# define HAVE_ATANL 1 -+# define atanl _atanl -+#endif]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_cosl], [#if defined (HAVE__COSL) && ! defined (HAVE_COSL) -+# define HAVE_COSL 1 -+# define cosl _cosl -+#endif]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_sinl], [#if defined (HAVE__SINL) && ! defined (HAVE_SINL) -+# define HAVE_SINL 1 -+# define sinl _sinl -+#endif]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_tanl], [#if defined (HAVE__TANL) && ! defined (HAVE_TANL) -+# define HAVE_TANL 1 -+# define tanl _tanl -+#endif]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_coshl], [#if defined (HAVE__COSHL) && ! defined (HAVE_COSHL) -+# define HAVE_COSHL 1 -+# define coshl _coshl -+#endif]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_sinhl], [#if defined (HAVE__SINHL) && ! defined (HAVE_SINHL) -+# define HAVE_SINHL 1 -+# define sinhl _sinhl -+#endif]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_tanhl], [#if defined (HAVE__TANHL) && ! defined (HAVE_TANHL) -+# define HAVE_TANHL 1 -+# define tanhl _tanhl -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_CEILL], [/* Define to 1 if you have the `ceill\' function. */ -+@%:@undef HAVE_CEILL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_FLOORL], [/* Define to 1 if you have the `floorl\' function. */ -+@%:@undef HAVE_FLOORL]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__CEILL], [/* Define to 1 if you have the `_ceill\' function. */ -+@%:@undef HAVE__CEILL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__FLOORL], [/* Define to 1 if you have the `_floorl\' function. */ -+@%:@undef HAVE__FLOORL]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_ceill], [#if defined (HAVE__CEILL) && ! defined (HAVE_CEILL) -+# define HAVE_CEILL 1 -+# define ceill _ceill -+#endif]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_floorl], [#if defined (HAVE__FLOORL) && ! defined (HAVE_FLOORL) -+# define HAVE_FLOORL 1 -+# define floorl _floorl -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_ISNANL], [/* Define to 1 if you have the `isnanl\' function. */ -+@%:@undef HAVE_ISNANL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_ISNANL$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__ISNANL], [/* Define to 1 if you have the `_isnanl\' function. */ -+@%:@undef HAVE__ISNANL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNANL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__ISNANL$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_isnanl], [#if defined (HAVE__ISNANL) && ! defined (HAVE_ISNANL) -+# define HAVE_ISNANL 1 -+# define isnanl _isnanl -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_ISINFL], [/* Define to 1 if you have the `isinfl\' function. */ -+@%:@undef HAVE_ISINFL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_ISINFL$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__ISINFL], [/* Define to 1 if you have the `_isinfl\' function. */ -+@%:@undef HAVE__ISINFL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINFL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__ISINFL$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_isinfl], [#if defined (HAVE__ISINFL) && ! defined (HAVE_ISINFL) -+# define HAVE_ISINFL 1 -+# define isinfl _isinfl -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_ATAN2L], [/* Define to 1 if you have the `atan2l\' function. */ -+@%:@undef HAVE_ATAN2L]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2L]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_ATAN2L$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__ATAN2L], [/* Define to 1 if you have the `_atan2l\' function. */ -+@%:@undef HAVE__ATAN2L]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ATAN2L]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__ATAN2L$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_atan2l], [#if defined (HAVE__ATAN2L) && ! defined (HAVE_ATAN2L) -+# define HAVE_ATAN2L 1 -+# define atan2l _atan2l -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_EXPL], [/* Define to 1 if you have the `expl\' function. */ -+@%:@undef HAVE_EXPL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_EXPL$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__EXPL], [/* Define to 1 if you have the `_expl\' function. */ -+@%:@undef HAVE__EXPL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__EXPL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__EXPL$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_expl], [#if defined (HAVE__EXPL) && ! defined (HAVE_EXPL) -+# define HAVE_EXPL 1 -+# define expl _expl -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_FABSL], [/* Define to 1 if you have the `fabsl\' function. */ -+@%:@undef HAVE_FABSL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_FABSL$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__FABSL], [/* Define to 1 if you have the `_fabsl\' function. */ -+@%:@undef HAVE__FABSL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FABSL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__FABSL$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_fabsl], [#if defined (HAVE__FABSL) && ! defined (HAVE_FABSL) -+# define HAVE_FABSL 1 -+# define fabsl _fabsl -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_FMODL], [/* Define to 1 if you have the `fmodl\' function. */ -+@%:@undef HAVE_FMODL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_FMODL$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__FMODL], [/* Define to 1 if you have the `_fmodl\' function. */ -+@%:@undef HAVE__FMODL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FMODL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__FMODL$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_fmodl], [#if defined (HAVE__FMODL) && ! defined (HAVE_FMODL) -+# define HAVE_FMODL 1 -+# define fmodl _fmodl -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_FREXPL], [/* Define to 1 if you have the `frexpl\' function. */ -+@%:@undef HAVE_FREXPL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_FREXPL$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__FREXPL], [/* Define to 1 if you have the `_frexpl\' function. */ -+@%:@undef HAVE__FREXPL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FREXPL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__FREXPL$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_frexpl], [#if defined (HAVE__FREXPL) && ! defined (HAVE_FREXPL) -+# define HAVE_FREXPL 1 -+# define frexpl _frexpl -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_HYPOTL], [/* Define to 1 if you have the `hypotl\' function. */ -+@%:@undef HAVE_HYPOTL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_HYPOTL$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__HYPOTL], [/* Define to 1 if you have the `_hypotl\' function. */ -+@%:@undef HAVE__HYPOTL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOTL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__HYPOTL$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_hypotl], [#if defined (HAVE__HYPOTL) && ! defined (HAVE_HYPOTL) -+# define HAVE_HYPOTL 1 -+# define hypotl _hypotl -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_LDEXPL], [/* Define to 1 if you have the `ldexpl\' function. */ -+@%:@undef HAVE_LDEXPL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_LDEXPL$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__LDEXPL], [/* Define to 1 if you have the `_ldexpl\' function. */ -+@%:@undef HAVE__LDEXPL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LDEXPL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__LDEXPL$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_ldexpl], [#if defined (HAVE__LDEXPL) && ! defined (HAVE_LDEXPL) -+# define HAVE_LDEXPL 1 -+# define ldexpl _ldexpl -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_LOGL], [/* Define to 1 if you have the `logl\' function. */ -+@%:@undef HAVE_LOGL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_LOGL$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__LOGL], [/* Define to 1 if you have the `_logl\' function. */ -+@%:@undef HAVE__LOGL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOGL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__LOGL$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_logl], [#if defined (HAVE__LOGL) && ! defined (HAVE_LOGL) -+# define HAVE_LOGL 1 -+# define logl _logl -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_LOG10L], [/* Define to 1 if you have the `log10l\' function. */ -+@%:@undef HAVE_LOG10L]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10L]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_LOG10L$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__LOG10L], [/* Define to 1 if you have the `_log10l\' function. */ -+@%:@undef HAVE__LOG10L]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOG10L]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__LOG10L$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_log10l], [#if defined (HAVE__LOG10L) && ! defined (HAVE_LOG10L) -+# define HAVE_LOG10L 1 -+# define log10l _log10l -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_MODFL], [/* Define to 1 if you have the `modfl\' function. */ -+@%:@undef HAVE_MODFL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_MODFL$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__MODFL], [/* Define to 1 if you have the `_modfl\' function. */ -+@%:@undef HAVE__MODFL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODFL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__MODFL$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_modfl], [#if defined (HAVE__MODFL) && ! defined (HAVE_MODFL) -+# define HAVE_MODFL 1 -+# define modfl _modfl -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_POWL], [/* Define to 1 if you have the `powl\' function. */ -+@%:@undef HAVE_POWL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_POWL$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__POWL], [/* Define to 1 if you have the `_powl\' function. */ -+@%:@undef HAVE__POWL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__POWL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__POWL$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_powl], [#if defined (HAVE__POWL) && ! defined (HAVE_POWL) -+# define HAVE_POWL 1 -+# define powl _powl -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_SQRTL], [/* Define to 1 if you have the `sqrtl\' function. */ -+@%:@undef HAVE_SQRTL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_SQRTL$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__SQRTL], [/* Define to 1 if you have the `_sqrtl\' function. */ -+@%:@undef HAVE__SQRTL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SQRTL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__SQRTL$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_sqrtl], [#if defined (HAVE__SQRTL) && ! defined (HAVE_SQRTL) -+# define HAVE_SQRTL 1 -+# define sqrtl _sqrtl -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_SINCOSL], [/* Define to 1 if you have the `sincosl\' function. */ -+@%:@undef HAVE_SINCOSL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_SINCOSL$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__SINCOSL], [/* Define to 1 if you have the `_sincosl\' function. */ -+@%:@undef HAVE__SINCOSL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOSL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__SINCOSL$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_sincosl], [#if defined (HAVE__SINCOSL) && ! defined (HAVE_SINCOSL) -+# define HAVE_SINCOSL 1 -+# define sincosl _sincosl -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE_FINITEL], [/* Define to 1 if you have the `finitel\' function. */ -+@%:@undef HAVE_FINITEL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE_FINITEL$]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([HAVE__FINITEL], [/* Define to 1 if you have the `_finitel\' function. */ -+@%:@undef HAVE__FINITEL]) -+m4trace:configure.ac:266: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITEL]) -+m4trace:configure.ac:266: -1- m4_pattern_allow([^HAVE__FINITEL$]) -+m4trace:configure.ac:266: -1- AH_OUTPUT([_finitel], [#if defined (HAVE__FINITEL) && ! defined (HAVE_FINITEL) -+# define HAVE_FINITEL 1 -+# define finitel _finitel -+#endif]) -+m4trace:configure.ac:266: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+configure.ac:266: the top level]) -+m4trace:configure.ac:267: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+configure.ac:267: the top level]) -+m4trace:configure.ac:267: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+configure.ac:267: the top level]) -+m4trace:configure.ac:267: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+configure.ac:267: the top level]) -+m4trace:configure.ac:267: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+configure.ac:267: the top level]) -+m4trace:configure.ac:267: -1- AH_OUTPUT([HAVE_AT_QUICK_EXIT], [/* Define to 1 if you have the `at_quick_exit\' function. */ -+@%:@undef HAVE_AT_QUICK_EXIT]) -+m4trace:configure.ac:267: -1- AC_DEFINE_TRACE_LITERAL([HAVE_AT_QUICK_EXIT]) -+m4trace:configure.ac:267: -1- m4_pattern_allow([^HAVE_AT_QUICK_EXIT$]) -+m4trace:configure.ac:267: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+configure.ac:267: the top level]) -+m4trace:configure.ac:267: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+configure.ac:267: the top level]) -+m4trace:configure.ac:267: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+configure.ac:267: the top level]) -+m4trace:configure.ac:267: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+configure.ac:267: the top level]) -+m4trace:configure.ac:267: -1- AH_OUTPUT([HAVE_QUICK_EXIT], [/* Define to 1 if you have the `quick_exit\' function. */ -+@%:@undef HAVE_QUICK_EXIT]) -+m4trace:configure.ac:267: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QUICK_EXIT]) -+m4trace:configure.ac:267: -1- m4_pattern_allow([^HAVE_QUICK_EXIT$]) -+m4trace:configure.ac:267: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+configure.ac:267: the top level]) -+m4trace:configure.ac:267: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+configure.ac:267: the top level]) -+m4trace:configure.ac:267: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+configure.ac:267: the top level]) -+m4trace:configure.ac:267: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+configure.ac:267: the top level]) -+m4trace:configure.ac:267: -1- AH_OUTPUT([HAVE_STRTOLD], [/* Define to 1 if you have the `strtold\' function. */ -+@%:@undef HAVE_STRTOLD]) -+m4trace:configure.ac:267: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOLD]) -+m4trace:configure.ac:267: -1- m4_pattern_allow([^HAVE_STRTOLD$]) -+m4trace:configure.ac:267: -1- AH_OUTPUT([_strtold], [#if defined (HAVE__STRTOLD) && ! defined (HAVE_STRTOLD) -+# define HAVE_STRTOLD 1 -+# define strtold _strtold -+#endif]) -+m4trace:configure.ac:267: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+configure.ac:267: the top level]) -+m4trace:configure.ac:267: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+configure.ac:267: the top level]) -+m4trace:configure.ac:267: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+configure.ac:267: the top level]) -+m4trace:configure.ac:267: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+configure.ac:267: the top level]) -+m4trace:configure.ac:267: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+configure.ac:267: the top level]) -+m4trace:configure.ac:267: -1- AH_OUTPUT([HAVE_STRTOF], [/* Define to 1 if you have the `strtof\' function. */ -+@%:@undef HAVE_STRTOF]) -+m4trace:configure.ac:267: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOF]) -+m4trace:configure.ac:267: -1- m4_pattern_allow([^HAVE_STRTOF$]) -+m4trace:configure.ac:267: -1- AH_OUTPUT([_strtof], [#if defined (HAVE__STRTOF) && ! defined (HAVE_STRTOF) -+# define HAVE_STRTOF 1 -+# define strtof _strtof -+#endif]) -+m4trace:configure.ac:267: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+configure.ac:267: the top level]) -+m4trace:configure.ac:270: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_DEV_RANDOM]) -+m4trace:configure.ac:270: -1- m4_pattern_allow([^_GLIBCXX_USE_DEV_RANDOM$]) -+m4trace:configure.ac:270: -1- AH_OUTPUT([_GLIBCXX_USE_DEV_RANDOM], [/* Define if /dev/random and /dev/urandom are available for -+ std::random_device. */ -+@%:@undef _GLIBCXX_USE_DEV_RANDOM]) -+m4trace:configure.ac:270: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_RANDOM_TR1]) -+m4trace:configure.ac:270: -1- m4_pattern_allow([^_GLIBCXX_USE_RANDOM_TR1$]) -+m4trace:configure.ac:270: -1- AH_OUTPUT([_GLIBCXX_USE_RANDOM_TR1], [/* Define if /dev/random and /dev/urandom are available for the random_device -+ of TR1 (Chapter 5.1). */ -+@%:@undef _GLIBCXX_USE_RANDOM_TR1]) -+m4trace:configure.ac:273: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+../config/enable.m4:12: GCC_ENABLE is expanded from... -+../config/tls.m4:2: GCC_CHECK_TLS is expanded from... -+configure.ac:273: the top level]) -+m4trace:configure.ac:273: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2748: AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2661: _AC_LINK_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2729: _AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2748: AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+../config/tls.m4:2: GCC_CHECK_TLS is expanded from... -+configure.ac:273: the top level]) -+m4trace:configure.ac:273: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2748: AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2729: _AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2748: AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+../config/tls.m4:2: GCC_CHECK_TLS is expanded from... -+configure.ac:273: the top level]) -+m4trace:configure.ac:273: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TLS]) -+m4trace:configure.ac:273: -1- m4_pattern_allow([^HAVE_TLS$]) -+m4trace:configure.ac:273: -1- AH_OUTPUT([HAVE_TLS], [/* Define to 1 if the target supports thread-local storage. */ -+@%:@undef HAVE_TLS]) -+m4trace:configure.ac:275: -1- AH_OUTPUT([HAVE___CXA_THREAD_ATEXIT_IMPL], [/* Define to 1 if you have the `__cxa_thread_atexit_impl\' function. */ -+@%:@undef HAVE___CXA_THREAD_ATEXIT_IMPL]) -+m4trace:configure.ac:275: -1- AH_OUTPUT([HAVE___CXA_THREAD_ATEXIT], [/* Define to 1 if you have the `__cxa_thread_atexit\' function. */ -+@%:@undef HAVE___CXA_THREAD_ATEXIT]) -+m4trace:configure.ac:276: -1- AH_OUTPUT([HAVE_ALIGNED_ALLOC], [/* Define to 1 if you have the `aligned_alloc\' function. */ -+@%:@undef HAVE_ALIGNED_ALLOC]) -+m4trace:configure.ac:276: -1- AH_OUTPUT([HAVE_POSIX_MEMALIGN], [/* Define to 1 if you have the `posix_memalign\' function. */ -+@%:@undef HAVE_POSIX_MEMALIGN]) -+m4trace:configure.ac:276: -1- AH_OUTPUT([HAVE_MEMALIGN], [/* Define to 1 if you have the `memalign\' function. */ -+@%:@undef HAVE_MEMALIGN]) -+m4trace:configure.ac:276: -1- AH_OUTPUT([HAVE__ALIGNED_MALLOC], [/* Define to 1 if you have the `_aligned_malloc\' function. */ -+@%:@undef HAVE__ALIGNED_MALLOC]) -+m4trace:configure.ac:277: -1- AH_OUTPUT([HAVE__WFOPEN], [/* Define to 1 if you have the `_wfopen\' function. */ -+@%:@undef HAVE__WFOPEN]) -+m4trace:configure.ac:277: -1- AC_DEFINE_TRACE_LITERAL([HAVE__WFOPEN]) -+m4trace:configure.ac:277: -1- m4_pattern_allow([^HAVE__WFOPEN$]) -+m4trace:configure.ac:278: -1- AH_OUTPUT([HAVE_SECURE_GETENV], [/* Define to 1 if you have the `secure_getenv\' function. */ -+@%:@undef HAVE_SECURE_GETENV]) -+m4trace:configure.ac:278: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SECURE_GETENV]) -+m4trace:configure.ac:278: -1- m4_pattern_allow([^HAVE_SECURE_GETENV$]) -+m4trace:configure.ac:281: -1- AH_OUTPUT([HAVE_TIMESPEC_GET], [/* Define to 1 if you have the `timespec_get\' function. */ -+@%:@undef HAVE_TIMESPEC_GET]) -+m4trace:configure.ac:281: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TIMESPEC_GET]) -+m4trace:configure.ac:281: -1- m4_pattern_allow([^HAVE_TIMESPEC_GET$]) -+m4trace:configure.ac:284: -1- AH_OUTPUT([HAVE_SOCKATMARK], [/* Define to 1 if you have the `sockatmark\' function. */ -+@%:@undef HAVE_SOCKATMARK]) -+m4trace:configure.ac:284: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SOCKATMARK]) -+m4trace:configure.ac:284: -1- m4_pattern_allow([^HAVE_SOCKATMARK$]) -+m4trace:configure.ac:287: -1- AH_OUTPUT([HAVE_USELOCALE], [/* Define to 1 if you have the `uselocale\' function. */ -+@%:@undef HAVE_USELOCALE]) -+m4trace:configure.ac:287: -1- AC_DEFINE_TRACE_LITERAL([HAVE_USELOCALE]) -+m4trace:configure.ac:287: -1- m4_pattern_allow([^HAVE_USELOCALE$]) -+m4trace:configure.ac:290: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+../config/iconv.m4:23: AM_ICONV_LINK is expanded from... -+../config/iconv.m4:104: AM_ICONV is expanded from... -+configure.ac:290: the top level]) -+m4trace:configure.ac:290: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+../config/iconv.m4:23: AM_ICONV_LINK is expanded from... -+../config/iconv.m4:104: AM_ICONV is expanded from... -+configure.ac:290: the top level]) -+m4trace:configure.ac:290: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+../config/iconv.m4:23: AM_ICONV_LINK is expanded from... -+../config/iconv.m4:104: AM_ICONV is expanded from... -+configure.ac:290: the top level]) -+m4trace:configure.ac:290: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ICONV]) -+m4trace:configure.ac:290: -1- m4_pattern_allow([^HAVE_ICONV$]) -+m4trace:configure.ac:290: -1- AH_OUTPUT([HAVE_ICONV], [/* Define if you have the iconv() function. */ -+@%:@undef HAVE_ICONV]) -+m4trace:configure.ac:290: -1- AC_SUBST([LIBICONV]) -+m4trace:configure.ac:290: -1- AC_SUBST_TRACE([LIBICONV]) -+m4trace:configure.ac:290: -1- m4_pattern_allow([^LIBICONV$]) -+m4trace:configure.ac:290: -1- AC_SUBST([LTLIBICONV]) -+m4trace:configure.ac:290: -1- AC_SUBST_TRACE([LTLIBICONV]) -+m4trace:configure.ac:290: -1- m4_pattern_allow([^LTLIBICONV$]) -+m4trace:configure.ac:290: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../config/iconv.m4:104: AM_ICONV is expanded from... -+configure.ac:290: the top level]) -+m4trace:configure.ac:290: -1- AC_DEFINE_TRACE_LITERAL([ICONV_CONST]) -+m4trace:configure.ac:290: -1- m4_pattern_allow([^ICONV_CONST$]) -+m4trace:configure.ac:290: -1- AH_OUTPUT([ICONV_CONST], [/* Define as const if the declaration of iconv() needs const. */ -+@%:@undef ICONV_CONST]) -+m4trace:configure.ac:326: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOT]) -+m4trace:configure.ac:326: -1- m4_pattern_allow([^HAVE_HYPOT$]) -+m4trace:configure.ac:329: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOF]) -+m4trace:configure.ac:329: -1- m4_pattern_allow([^HAVE_STRTOF$]) -+m4trace:configure.ac:331: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ACOSF]) -+m4trace:configure.ac:331: -1- m4_pattern_allow([^HAVE_ACOSF$]) -+m4trace:configure.ac:332: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ASINF]) -+m4trace:configure.ac:332: -1- m4_pattern_allow([^HAVE_ASINF$]) -+m4trace:configure.ac:333: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2F]) -+m4trace:configure.ac:333: -1- m4_pattern_allow([^HAVE_ATAN2F$]) -+m4trace:configure.ac:334: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATANF]) -+m4trace:configure.ac:334: -1- m4_pattern_allow([^HAVE_ATANF$]) -+m4trace:configure.ac:335: -1- AC_DEFINE_TRACE_LITERAL([HAVE_CEILF]) -+m4trace:configure.ac:335: -1- m4_pattern_allow([^HAVE_CEILF$]) -+m4trace:configure.ac:336: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COSF]) -+m4trace:configure.ac:336: -1- m4_pattern_allow([^HAVE_COSF$]) -+m4trace:configure.ac:337: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COSHF]) -+m4trace:configure.ac:337: -1- m4_pattern_allow([^HAVE_COSHF$]) -+m4trace:configure.ac:338: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPF]) -+m4trace:configure.ac:338: -1- m4_pattern_allow([^HAVE_EXPF$]) -+m4trace:configure.ac:339: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSF]) -+m4trace:configure.ac:339: -1- m4_pattern_allow([^HAVE_FABSF$]) -+m4trace:configure.ac:340: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FLOORF]) -+m4trace:configure.ac:340: -1- m4_pattern_allow([^HAVE_FLOORF$]) -+m4trace:configure.ac:341: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODF]) -+m4trace:configure.ac:341: -1- m4_pattern_allow([^HAVE_FMODF$]) -+m4trace:configure.ac:342: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPF]) -+m4trace:configure.ac:342: -1- m4_pattern_allow([^HAVE_FREXPF$]) -+m4trace:configure.ac:343: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPF]) -+m4trace:configure.ac:343: -1- m4_pattern_allow([^HAVE_LDEXPF$]) -+m4trace:configure.ac:344: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10F]) -+m4trace:configure.ac:344: -1- m4_pattern_allow([^HAVE_LOG10F$]) -+m4trace:configure.ac:345: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGF]) -+m4trace:configure.ac:345: -1- m4_pattern_allow([^HAVE_LOGF$]) -+m4trace:configure.ac:346: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFF]) -+m4trace:configure.ac:346: -1- m4_pattern_allow([^HAVE_MODFF$]) -+m4trace:configure.ac:347: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWF]) -+m4trace:configure.ac:347: -1- m4_pattern_allow([^HAVE_POWF$]) -+m4trace:configure.ac:348: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINF]) -+m4trace:configure.ac:348: -1- m4_pattern_allow([^HAVE_SINF$]) -+m4trace:configure.ac:349: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINHF]) -+m4trace:configure.ac:349: -1- m4_pattern_allow([^HAVE_SINHF$]) -+m4trace:configure.ac:350: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTF]) -+m4trace:configure.ac:350: -1- m4_pattern_allow([^HAVE_SQRTF$]) -+m4trace:configure.ac:351: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TANF]) -+m4trace:configure.ac:351: -1- m4_pattern_allow([^HAVE_TANF$]) -+m4trace:configure.ac:352: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TANHF]) -+m4trace:configure.ac:352: -1- m4_pattern_allow([^HAVE_TANHF$]) -+m4trace:configure.ac:354: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ICONV]) -+m4trace:configure.ac:354: -1- m4_pattern_allow([^HAVE_ICONV$]) -+m4trace:configure.ac:355: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MEMALIGN]) -+m4trace:configure.ac:355: -1- m4_pattern_allow([^HAVE_MEMALIGN$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_FLAGS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+acinclude.m4:181: GLIBCXX_CHECK_LINKER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_LDFLAGS$]) -+m4trace:configure.ac:357: -1- AC_SUBST([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^OPT_LDFLAGS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINF], [/* Define to 1 if you have the `isinf\' function. */ -+@%:@undef HAVE_ISINF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINF], [/* Define to 1 if you have the `_isinf\' function. */ -+@%:@undef HAVE__ISINF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinf], [#if defined (HAVE__ISINF) && ! defined (HAVE_ISINF) -+# define HAVE_ISINF 1 -+# define isinf _isinf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNAN], [/* Define to 1 if you have the `isnan\' function. */ -+@%:@undef HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNAN$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNAN], [/* Define to 1 if you have the `_isnan\' function. */ -+@%:@undef HAVE__ISNAN]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNAN$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnan], [#if defined (HAVE__ISNAN) && ! defined (HAVE_ISNAN) -+# define HAVE_ISNAN 1 -+# define isnan _isnan -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITE], [/* Define to 1 if you have the `finite\' function. */ -+@%:@undef HAVE_FINITE]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITE$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITE], [/* Define to 1 if you have the `_finite\' function. */ -+@%:@undef HAVE__FINITE]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITE$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finite], [#if defined (HAVE__FINITE) && ! defined (HAVE_FINITE) -+# define HAVE_FINITE 1 -+# define finite _finite -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOS], [/* Define to 1 if you have the `sincos\' function. */ -+@%:@undef HAVE_SINCOS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOS], [/* Define to 1 if you have the `_sincos\' function. */ -+@%:@undef HAVE__SINCOS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincos], [#if defined (HAVE__SINCOS) && ! defined (HAVE_SINCOS) -+# define HAVE_SINCOS 1 -+# define sincos _sincos -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FPCLASS], [/* Define to 1 if you have the `fpclass\' function. */ -+@%:@undef HAVE_FPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FPCLASS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FPCLASS], [/* Define to 1 if you have the `_fpclass\' function. */ -+@%:@undef HAVE__FPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FPCLASS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fpclass], [#if defined (HAVE__FPCLASS) && ! defined (HAVE_FPCLASS) -+# define HAVE_FPCLASS 1 -+# define fpclass _fpclass -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_QFPCLASS], [/* Define to 1 if you have the `qfpclass\' function. */ -+@%:@undef HAVE_QFPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QFPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_QFPCLASS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__QFPCLASS], [/* Define to 1 if you have the `_qfpclass\' function. */ -+@%:@undef HAVE__QFPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__QFPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__QFPCLASS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_qfpclass], [#if defined (HAVE__QFPCLASS) && ! defined (HAVE_QFPCLASS) -+# define HAVE_QFPCLASS 1 -+# define qfpclass _qfpclass -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOT], [/* Define to 1 if you have the `hypot\' function. */ -+@%:@undef HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOT], [/* Define to 1 if you have the `_hypot\' function. */ -+@%:@undef HAVE__HYPOT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOT$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypot], [#if defined (HAVE__HYPOT) && ! defined (HAVE_HYPOT) -+# define HAVE_HYPOT 1 -+# define hypot _hypot -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ACOSF], [/* Define to 1 if you have the `acosf\' function. */ -+@%:@undef HAVE_ACOSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ASINF], [/* Define to 1 if you have the `asinf\' function. */ -+@%:@undef HAVE_ASINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATANF], [/* Define to 1 if you have the `atanf\' function. */ -+@%:@undef HAVE_ATANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSF], [/* Define to 1 if you have the `cosf\' function. */ -+@%:@undef HAVE_COSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINF], [/* Define to 1 if you have the `sinf\' function. */ -+@%:@undef HAVE_SINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANF], [/* Define to 1 if you have the `tanf\' function. */ -+@%:@undef HAVE_TANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSHF], [/* Define to 1 if you have the `coshf\' function. */ -+@%:@undef HAVE_COSHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINHF], [/* Define to 1 if you have the `sinhf\' function. */ -+@%:@undef HAVE_SINHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANHF], [/* Define to 1 if you have the `tanhf\' function. */ -+@%:@undef HAVE_TANHF]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ACOSF], [/* Define to 1 if you have the `_acosf\' function. */ -+@%:@undef HAVE__ACOSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ASINF], [/* Define to 1 if you have the `_asinf\' function. */ -+@%:@undef HAVE__ASINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATANF], [/* Define to 1 if you have the `_atanf\' function. */ -+@%:@undef HAVE__ATANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSF], [/* Define to 1 if you have the `_cosf\' function. */ -+@%:@undef HAVE__COSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINF], [/* Define to 1 if you have the `_sinf\' function. */ -+@%:@undef HAVE__SINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANF], [/* Define to 1 if you have the `_tanf\' function. */ -+@%:@undef HAVE__TANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSHF], [/* Define to 1 if you have the `_coshf\' function. */ -+@%:@undef HAVE__COSHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINHF], [/* Define to 1 if you have the `_sinhf\' function. */ -+@%:@undef HAVE__SINHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANHF], [/* Define to 1 if you have the `_tanhf\' function. */ -+@%:@undef HAVE__TANHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_acosf], [#if defined (HAVE__ACOSF) && ! defined (HAVE_ACOSF) -+# define HAVE_ACOSF 1 -+# define acosf _acosf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_asinf], [#if defined (HAVE__ASINF) && ! defined (HAVE_ASINF) -+# define HAVE_ASINF 1 -+# define asinf _asinf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atanf], [#if defined (HAVE__ATANF) && ! defined (HAVE_ATANF) -+# define HAVE_ATANF 1 -+# define atanf _atanf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_cosf], [#if defined (HAVE__COSF) && ! defined (HAVE_COSF) -+# define HAVE_COSF 1 -+# define cosf _cosf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinf], [#if defined (HAVE__SINF) && ! defined (HAVE_SINF) -+# define HAVE_SINF 1 -+# define sinf _sinf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanf], [#if defined (HAVE__TANF) && ! defined (HAVE_TANF) -+# define HAVE_TANF 1 -+# define tanf _tanf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_coshf], [#if defined (HAVE__COSHF) && ! defined (HAVE_COSHF) -+# define HAVE_COSHF 1 -+# define coshf _coshf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinhf], [#if defined (HAVE__SINHF) && ! defined (HAVE_SINHF) -+# define HAVE_SINHF 1 -+# define sinhf _sinhf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanhf], [#if defined (HAVE__TANHF) && ! defined (HAVE_TANHF) -+# define HAVE_TANHF 1 -+# define tanhf _tanhf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_CEILF], [/* Define to 1 if you have the `ceilf\' function. */ -+@%:@undef HAVE_CEILF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FLOORF], [/* Define to 1 if you have the `floorf\' function. */ -+@%:@undef HAVE_FLOORF]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__CEILF], [/* Define to 1 if you have the `_ceilf\' function. */ -+@%:@undef HAVE__CEILF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FLOORF], [/* Define to 1 if you have the `_floorf\' function. */ -+@%:@undef HAVE__FLOORF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ceilf], [#if defined (HAVE__CEILF) && ! defined (HAVE_CEILF) -+# define HAVE_CEILF 1 -+# define ceilf _ceilf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_floorf], [#if defined (HAVE__FLOORF) && ! defined (HAVE_FLOORF) -+# define HAVE_FLOORF 1 -+# define floorf _floorf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_EXPF], [/* Define to 1 if you have the `expf\' function. */ -+@%:@undef HAVE_EXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__EXPF], [/* Define to 1 if you have the `_expf\' function. */ -+@%:@undef HAVE__EXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__EXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_expf], [#if defined (HAVE__EXPF) && ! defined (HAVE_EXPF) -+# define HAVE_EXPF 1 -+# define expf _expf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNANF], [/* Define to 1 if you have the `isnanf\' function. */ -+@%:@undef HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNANF], [/* Define to 1 if you have the `_isnanf\' function. */ -+@%:@undef HAVE__ISNANF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNANF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnanf], [#if defined (HAVE__ISNANF) && ! defined (HAVE_ISNANF) -+# define HAVE_ISNANF 1 -+# define isnanf _isnanf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINFF], [/* Define to 1 if you have the `isinff\' function. */ -+@%:@undef HAVE_ISINFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINFF], [/* Define to 1 if you have the `_isinff\' function. */ -+@%:@undef HAVE__ISINFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINFF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinff], [#if defined (HAVE__ISINFF) && ! defined (HAVE_ISINFF) -+# define HAVE_ISINFF 1 -+# define isinff _isinff -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATAN2F], [/* Define to 1 if you have the `atan2f\' function. */ -+@%:@undef HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2F$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATAN2F], [/* Define to 1 if you have the `_atan2f\' function. */ -+@%:@undef HAVE__ATAN2F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ATAN2F$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atan2f], [#if defined (HAVE__ATAN2F) && ! defined (HAVE_ATAN2F) -+# define HAVE_ATAN2F 1 -+# define atan2f _atan2f -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FABSF], [/* Define to 1 if you have the `fabsf\' function. */ -+@%:@undef HAVE_FABSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FABSF], [/* Define to 1 if you have the `_fabsf\' function. */ -+@%:@undef HAVE__FABSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FABSF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fabsf], [#if defined (HAVE__FABSF) && ! defined (HAVE_FABSF) -+# define HAVE_FABSF 1 -+# define fabsf _fabsf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FMODF], [/* Define to 1 if you have the `fmodf\' function. */ -+@%:@undef HAVE_FMODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FMODF], [/* Define to 1 if you have the `_fmodf\' function. */ -+@%:@undef HAVE__FMODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FMODF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fmodf], [#if defined (HAVE__FMODF) && ! defined (HAVE_FMODF) -+# define HAVE_FMODF 1 -+# define fmodf _fmodf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FREXPF], [/* Define to 1 if you have the `frexpf\' function. */ -+@%:@undef HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FREXPF], [/* Define to 1 if you have the `_frexpf\' function. */ -+@%:@undef HAVE__FREXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FREXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_frexpf], [#if defined (HAVE__FREXPF) && ! defined (HAVE_FREXPF) -+# define HAVE_FREXPF 1 -+# define frexpf _frexpf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOTF], [/* Define to 1 if you have the `hypotf\' function. */ -+@%:@undef HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOTF], [/* Define to 1 if you have the `_hypotf\' function. */ -+@%:@undef HAVE__HYPOTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOTF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypotf], [#if defined (HAVE__HYPOTF) && ! defined (HAVE_HYPOTF) -+# define HAVE_HYPOTF 1 -+# define hypotf _hypotf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LDEXPF], [/* Define to 1 if you have the `ldexpf\' function. */ -+@%:@undef HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LDEXPF], [/* Define to 1 if you have the `_ldexpf\' function. */ -+@%:@undef HAVE__LDEXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LDEXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ldexpf], [#if defined (HAVE__LDEXPF) && ! defined (HAVE_LDEXPF) -+# define HAVE_LDEXPF 1 -+# define ldexpf _ldexpf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOGF], [/* Define to 1 if you have the `logf\' function. */ -+@%:@undef HAVE_LOGF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOGF], [/* Define to 1 if you have the `_logf\' function. */ -+@%:@undef HAVE__LOGF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOGF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_logf], [#if defined (HAVE__LOGF) && ! defined (HAVE_LOGF) -+# define HAVE_LOGF 1 -+# define logf _logf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOG10F], [/* Define to 1 if you have the `log10f\' function. */ -+@%:@undef HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10F$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOG10F], [/* Define to 1 if you have the `_log10f\' function. */ -+@%:@undef HAVE__LOG10F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOG10F$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_log10f], [#if defined (HAVE__LOG10F) && ! defined (HAVE_LOG10F) -+# define HAVE_LOG10F 1 -+# define log10f _log10f -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODFF], [/* Define to 1 if you have the `modff\' function. */ -+@%:@undef HAVE_MODFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODFF], [/* Define to 1 if you have the `_modff\' function. */ -+@%:@undef HAVE__MODFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODFF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modff], [#if defined (HAVE__MODFF) && ! defined (HAVE_MODFF) -+# define HAVE_MODFF 1 -+# define modff _modff -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODF], [/* Define to 1 if you have the `modf\' function. */ -+@%:@undef HAVE_MODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODF], [/* Define to 1 if you have the `_modf\' function. */ -+@%:@undef HAVE__MODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modf], [#if defined (HAVE__MODF) && ! defined (HAVE_MODF) -+# define HAVE_MODF 1 -+# define modf _modf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POWF], [/* Define to 1 if you have the `powf\' function. */ -+@%:@undef HAVE_POWF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__POWF], [/* Define to 1 if you have the `_powf\' function. */ -+@%:@undef HAVE__POWF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__POWF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_powf], [#if defined (HAVE__POWF) && ! defined (HAVE_POWF) -+# define HAVE_POWF 1 -+# define powf _powf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SQRTF], [/* Define to 1 if you have the `sqrtf\' function. */ -+@%:@undef HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SQRTF], [/* Define to 1 if you have the `_sqrtf\' function. */ -+@%:@undef HAVE__SQRTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SQRTF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sqrtf], [#if defined (HAVE__SQRTF) && ! defined (HAVE_SQRTF) -+# define HAVE_SQRTF 1 -+# define sqrtf _sqrtf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOSF], [/* Define to 1 if you have the `sincosf\' function. */ -+@%:@undef HAVE_SINCOSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOSF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOSF], [/* Define to 1 if you have the `_sincosf\' function. */ -+@%:@undef HAVE__SINCOSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOSF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincosf], [#if defined (HAVE__SINCOSF) && ! defined (HAVE_SINCOSF) -+# define HAVE_SINCOSF 1 -+# define sincosf _sincosf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITEF], [/* Define to 1 if you have the `finitef\' function. */ -+@%:@undef HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITEF], [/* Define to 1 if you have the `_finitef\' function. */ -+@%:@undef HAVE__FINITEF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITEF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finitef], [#if defined (HAVE__FINITEF) && ! defined (HAVE_FINITEF) -+# define HAVE_FINITEF 1 -+# define finitef _finitef -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ACOSL], [/* Define to 1 if you have the `acosl\' function. */ -+@%:@undef HAVE_ACOSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ASINL], [/* Define to 1 if you have the `asinl\' function. */ -+@%:@undef HAVE_ASINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATANL], [/* Define to 1 if you have the `atanl\' function. */ -+@%:@undef HAVE_ATANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSL], [/* Define to 1 if you have the `cosl\' function. */ -+@%:@undef HAVE_COSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINL], [/* Define to 1 if you have the `sinl\' function. */ -+@%:@undef HAVE_SINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANL], [/* Define to 1 if you have the `tanl\' function. */ -+@%:@undef HAVE_TANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSHL], [/* Define to 1 if you have the `coshl\' function. */ -+@%:@undef HAVE_COSHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINHL], [/* Define to 1 if you have the `sinhl\' function. */ -+@%:@undef HAVE_SINHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANHL], [/* Define to 1 if you have the `tanhl\' function. */ -+@%:@undef HAVE_TANHL]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ACOSL], [/* Define to 1 if you have the `_acosl\' function. */ -+@%:@undef HAVE__ACOSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ASINL], [/* Define to 1 if you have the `_asinl\' function. */ -+@%:@undef HAVE__ASINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATANL], [/* Define to 1 if you have the `_atanl\' function. */ -+@%:@undef HAVE__ATANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSL], [/* Define to 1 if you have the `_cosl\' function. */ -+@%:@undef HAVE__COSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINL], [/* Define to 1 if you have the `_sinl\' function. */ -+@%:@undef HAVE__SINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANL], [/* Define to 1 if you have the `_tanl\' function. */ -+@%:@undef HAVE__TANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSHL], [/* Define to 1 if you have the `_coshl\' function. */ -+@%:@undef HAVE__COSHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINHL], [/* Define to 1 if you have the `_sinhl\' function. */ -+@%:@undef HAVE__SINHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANHL], [/* Define to 1 if you have the `_tanhl\' function. */ -+@%:@undef HAVE__TANHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_acosl], [#if defined (HAVE__ACOSL) && ! defined (HAVE_ACOSL) -+# define HAVE_ACOSL 1 -+# define acosl _acosl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_asinl], [#if defined (HAVE__ASINL) && ! defined (HAVE_ASINL) -+# define HAVE_ASINL 1 -+# define asinl _asinl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atanl], [#if defined (HAVE__ATANL) && ! defined (HAVE_ATANL) -+# define HAVE_ATANL 1 -+# define atanl _atanl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_cosl], [#if defined (HAVE__COSL) && ! defined (HAVE_COSL) -+# define HAVE_COSL 1 -+# define cosl _cosl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinl], [#if defined (HAVE__SINL) && ! defined (HAVE_SINL) -+# define HAVE_SINL 1 -+# define sinl _sinl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanl], [#if defined (HAVE__TANL) && ! defined (HAVE_TANL) -+# define HAVE_TANL 1 -+# define tanl _tanl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_coshl], [#if defined (HAVE__COSHL) && ! defined (HAVE_COSHL) -+# define HAVE_COSHL 1 -+# define coshl _coshl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinhl], [#if defined (HAVE__SINHL) && ! defined (HAVE_SINHL) -+# define HAVE_SINHL 1 -+# define sinhl _sinhl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanhl], [#if defined (HAVE__TANHL) && ! defined (HAVE_TANHL) -+# define HAVE_TANHL 1 -+# define tanhl _tanhl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_CEILL], [/* Define to 1 if you have the `ceill\' function. */ -+@%:@undef HAVE_CEILL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FLOORL], [/* Define to 1 if you have the `floorl\' function. */ -+@%:@undef HAVE_FLOORL]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__CEILL], [/* Define to 1 if you have the `_ceill\' function. */ -+@%:@undef HAVE__CEILL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FLOORL], [/* Define to 1 if you have the `_floorl\' function. */ -+@%:@undef HAVE__FLOORL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ceill], [#if defined (HAVE__CEILL) && ! defined (HAVE_CEILL) -+# define HAVE_CEILL 1 -+# define ceill _ceill -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_floorl], [#if defined (HAVE__FLOORL) && ! defined (HAVE_FLOORL) -+# define HAVE_FLOORL 1 -+# define floorl _floorl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNANL], [/* Define to 1 if you have the `isnanl\' function. */ -+@%:@undef HAVE_ISNANL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNANL], [/* Define to 1 if you have the `_isnanl\' function. */ -+@%:@undef HAVE__ISNANL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNANL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnanl], [#if defined (HAVE__ISNANL) && ! defined (HAVE_ISNANL) -+# define HAVE_ISNANL 1 -+# define isnanl _isnanl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINFL], [/* Define to 1 if you have the `isinfl\' function. */ -+@%:@undef HAVE_ISINFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINFL], [/* Define to 1 if you have the `_isinfl\' function. */ -+@%:@undef HAVE__ISINFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINFL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinfl], [#if defined (HAVE__ISINFL) && ! defined (HAVE_ISINFL) -+# define HAVE_ISINFL 1 -+# define isinfl _isinfl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATAN2L], [/* Define to 1 if you have the `atan2l\' function. */ -+@%:@undef HAVE_ATAN2L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2L$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATAN2L], [/* Define to 1 if you have the `_atan2l\' function. */ -+@%:@undef HAVE__ATAN2L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ATAN2L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ATAN2L$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atan2l], [#if defined (HAVE__ATAN2L) && ! defined (HAVE_ATAN2L) -+# define HAVE_ATAN2L 1 -+# define atan2l _atan2l -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_EXPL], [/* Define to 1 if you have the `expl\' function. */ -+@%:@undef HAVE_EXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__EXPL], [/* Define to 1 if you have the `_expl\' function. */ -+@%:@undef HAVE__EXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__EXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__EXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_expl], [#if defined (HAVE__EXPL) && ! defined (HAVE_EXPL) -+# define HAVE_EXPL 1 -+# define expl _expl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FABSL], [/* Define to 1 if you have the `fabsl\' function. */ -+@%:@undef HAVE_FABSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FABSL], [/* Define to 1 if you have the `_fabsl\' function. */ -+@%:@undef HAVE__FABSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FABSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FABSL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fabsl], [#if defined (HAVE__FABSL) && ! defined (HAVE_FABSL) -+# define HAVE_FABSL 1 -+# define fabsl _fabsl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FMODL], [/* Define to 1 if you have the `fmodl\' function. */ -+@%:@undef HAVE_FMODL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FMODL], [/* Define to 1 if you have the `_fmodl\' function. */ -+@%:@undef HAVE__FMODL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FMODL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FMODL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fmodl], [#if defined (HAVE__FMODL) && ! defined (HAVE_FMODL) -+# define HAVE_FMODL 1 -+# define fmodl _fmodl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FREXPL], [/* Define to 1 if you have the `frexpl\' function. */ -+@%:@undef HAVE_FREXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FREXPL], [/* Define to 1 if you have the `_frexpl\' function. */ -+@%:@undef HAVE__FREXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FREXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FREXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_frexpl], [#if defined (HAVE__FREXPL) && ! defined (HAVE_FREXPL) -+# define HAVE_FREXPL 1 -+# define frexpl _frexpl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOTL], [/* Define to 1 if you have the `hypotl\' function. */ -+@%:@undef HAVE_HYPOTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOTL], [/* Define to 1 if you have the `_hypotl\' function. */ -+@%:@undef HAVE__HYPOTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOTL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypotl], [#if defined (HAVE__HYPOTL) && ! defined (HAVE_HYPOTL) -+# define HAVE_HYPOTL 1 -+# define hypotl _hypotl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LDEXPL], [/* Define to 1 if you have the `ldexpl\' function. */ -+@%:@undef HAVE_LDEXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LDEXPL], [/* Define to 1 if you have the `_ldexpl\' function. */ -+@%:@undef HAVE__LDEXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LDEXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LDEXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ldexpl], [#if defined (HAVE__LDEXPL) && ! defined (HAVE_LDEXPL) -+# define HAVE_LDEXPL 1 -+# define ldexpl _ldexpl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOGL], [/* Define to 1 if you have the `logl\' function. */ -+@%:@undef HAVE_LOGL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOGL], [/* Define to 1 if you have the `_logl\' function. */ -+@%:@undef HAVE__LOGL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOGL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOGL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_logl], [#if defined (HAVE__LOGL) && ! defined (HAVE_LOGL) -+# define HAVE_LOGL 1 -+# define logl _logl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOG10L], [/* Define to 1 if you have the `log10l\' function. */ -+@%:@undef HAVE_LOG10L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10L$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOG10L], [/* Define to 1 if you have the `_log10l\' function. */ -+@%:@undef HAVE__LOG10L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOG10L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOG10L$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_log10l], [#if defined (HAVE__LOG10L) && ! defined (HAVE_LOG10L) -+# define HAVE_LOG10L 1 -+# define log10l _log10l -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODFL], [/* Define to 1 if you have the `modfl\' function. */ -+@%:@undef HAVE_MODFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODFL], [/* Define to 1 if you have the `_modfl\' function. */ -+@%:@undef HAVE__MODFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODFL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modfl], [#if defined (HAVE__MODFL) && ! defined (HAVE_MODFL) -+# define HAVE_MODFL 1 -+# define modfl _modfl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POWL], [/* Define to 1 if you have the `powl\' function. */ -+@%:@undef HAVE_POWL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__POWL], [/* Define to 1 if you have the `_powl\' function. */ -+@%:@undef HAVE__POWL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__POWL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__POWL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_powl], [#if defined (HAVE__POWL) && ! defined (HAVE_POWL) -+# define HAVE_POWL 1 -+# define powl _powl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SQRTL], [/* Define to 1 if you have the `sqrtl\' function. */ -+@%:@undef HAVE_SQRTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SQRTL], [/* Define to 1 if you have the `_sqrtl\' function. */ -+@%:@undef HAVE__SQRTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SQRTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SQRTL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sqrtl], [#if defined (HAVE__SQRTL) && ! defined (HAVE_SQRTL) -+# define HAVE_SQRTL 1 -+# define sqrtl _sqrtl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOSL], [/* Define to 1 if you have the `sincosl\' function. */ -+@%:@undef HAVE_SINCOSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOSL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOSL], [/* Define to 1 if you have the `_sincosl\' function. */ -+@%:@undef HAVE__SINCOSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOSL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincosl], [#if defined (HAVE__SINCOSL) && ! defined (HAVE_SINCOSL) -+# define HAVE_SINCOSL 1 -+# define sincosl _sincosl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITEL], [/* Define to 1 if you have the `finitel\' function. */ -+@%:@undef HAVE_FINITEL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITEL], [/* Define to 1 if you have the `_finitel\' function. */ -+@%:@undef HAVE__FINITEL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITEL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITEL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finitel], [#if defined (HAVE__FINITEL) && ! defined (HAVE_FINITEL) -+# define HAVE_FINITEL 1 -+# define finitel _finitel -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_AT_QUICK_EXIT], [/* Define to 1 if you have the `at_quick_exit\' function. */ -+@%:@undef HAVE_AT_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_AT_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_AT_QUICK_EXIT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_QUICK_EXIT], [/* Define to 1 if you have the `quick_exit\' function. */ -+@%:@undef HAVE_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_QUICK_EXIT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_STRTOLD], [/* Define to 1 if you have the `strtold\' function. */ -+@%:@undef HAVE_STRTOLD]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOLD]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_STRTOLD$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_strtold], [#if defined (HAVE__STRTOLD) && ! defined (HAVE_STRTOLD) -+# define HAVE_STRTOLD 1 -+# define strtold _strtold -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_STRTOF], [/* Define to 1 if you have the `strtof\' function. */ -+@%:@undef HAVE_STRTOF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_STRTOF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_strtof], [#if defined (HAVE__STRTOF) && ! defined (HAVE_STRTOF) -+# define HAVE_STRTOF 1 -+# define strtof _strtof -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ACOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ACOSF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ASINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ASINF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2F$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATANF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_CEILF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_CEILF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_COSF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COSHF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_COSHF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FLOORF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FLOORF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10F$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINHF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINHF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_TANF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TANHF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_TANHF$]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_FLAGS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_FLAGS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+acinclude.m4:181: GLIBCXX_CHECK_LINKER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_LDFLAGS$]) -+m4trace:configure.ac:357: -1- AC_SUBST([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^OPT_LDFLAGS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINF], [/* Define to 1 if you have the `isinf\' function. */ -+@%:@undef HAVE_ISINF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINF], [/* Define to 1 if you have the `_isinf\' function. */ -+@%:@undef HAVE__ISINF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinf], [#if defined (HAVE__ISINF) && ! defined (HAVE_ISINF) -+# define HAVE_ISINF 1 -+# define isinf _isinf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNAN], [/* Define to 1 if you have the `isnan\' function. */ -+@%:@undef HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNAN$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNAN], [/* Define to 1 if you have the `_isnan\' function. */ -+@%:@undef HAVE__ISNAN]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNAN$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnan], [#if defined (HAVE__ISNAN) && ! defined (HAVE_ISNAN) -+# define HAVE_ISNAN 1 -+# define isnan _isnan -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITE], [/* Define to 1 if you have the `finite\' function. */ -+@%:@undef HAVE_FINITE]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITE$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITE], [/* Define to 1 if you have the `_finite\' function. */ -+@%:@undef HAVE__FINITE]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITE$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finite], [#if defined (HAVE__FINITE) && ! defined (HAVE_FINITE) -+# define HAVE_FINITE 1 -+# define finite _finite -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOS], [/* Define to 1 if you have the `sincos\' function. */ -+@%:@undef HAVE_SINCOS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOS], [/* Define to 1 if you have the `_sincos\' function. */ -+@%:@undef HAVE__SINCOS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincos], [#if defined (HAVE__SINCOS) && ! defined (HAVE_SINCOS) -+# define HAVE_SINCOS 1 -+# define sincos _sincos -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FPCLASS], [/* Define to 1 if you have the `fpclass\' function. */ -+@%:@undef HAVE_FPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FPCLASS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FPCLASS], [/* Define to 1 if you have the `_fpclass\' function. */ -+@%:@undef HAVE__FPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FPCLASS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fpclass], [#if defined (HAVE__FPCLASS) && ! defined (HAVE_FPCLASS) -+# define HAVE_FPCLASS 1 -+# define fpclass _fpclass -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_QFPCLASS], [/* Define to 1 if you have the `qfpclass\' function. */ -+@%:@undef HAVE_QFPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QFPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_QFPCLASS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__QFPCLASS], [/* Define to 1 if you have the `_qfpclass\' function. */ -+@%:@undef HAVE__QFPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__QFPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__QFPCLASS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_qfpclass], [#if defined (HAVE__QFPCLASS) && ! defined (HAVE_QFPCLASS) -+# define HAVE_QFPCLASS 1 -+# define qfpclass _qfpclass -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOT], [/* Define to 1 if you have the `hypot\' function. */ -+@%:@undef HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOT], [/* Define to 1 if you have the `_hypot\' function. */ -+@%:@undef HAVE__HYPOT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOT$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypot], [#if defined (HAVE__HYPOT) && ! defined (HAVE_HYPOT) -+# define HAVE_HYPOT 1 -+# define hypot _hypot -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ACOSF], [/* Define to 1 if you have the `acosf\' function. */ -+@%:@undef HAVE_ACOSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ASINF], [/* Define to 1 if you have the `asinf\' function. */ -+@%:@undef HAVE_ASINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATANF], [/* Define to 1 if you have the `atanf\' function. */ -+@%:@undef HAVE_ATANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSF], [/* Define to 1 if you have the `cosf\' function. */ -+@%:@undef HAVE_COSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINF], [/* Define to 1 if you have the `sinf\' function. */ -+@%:@undef HAVE_SINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANF], [/* Define to 1 if you have the `tanf\' function. */ -+@%:@undef HAVE_TANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSHF], [/* Define to 1 if you have the `coshf\' function. */ -+@%:@undef HAVE_COSHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINHF], [/* Define to 1 if you have the `sinhf\' function. */ -+@%:@undef HAVE_SINHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANHF], [/* Define to 1 if you have the `tanhf\' function. */ -+@%:@undef HAVE_TANHF]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ACOSF], [/* Define to 1 if you have the `_acosf\' function. */ -+@%:@undef HAVE__ACOSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ASINF], [/* Define to 1 if you have the `_asinf\' function. */ -+@%:@undef HAVE__ASINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATANF], [/* Define to 1 if you have the `_atanf\' function. */ -+@%:@undef HAVE__ATANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSF], [/* Define to 1 if you have the `_cosf\' function. */ -+@%:@undef HAVE__COSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINF], [/* Define to 1 if you have the `_sinf\' function. */ -+@%:@undef HAVE__SINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANF], [/* Define to 1 if you have the `_tanf\' function. */ -+@%:@undef HAVE__TANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSHF], [/* Define to 1 if you have the `_coshf\' function. */ -+@%:@undef HAVE__COSHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINHF], [/* Define to 1 if you have the `_sinhf\' function. */ -+@%:@undef HAVE__SINHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANHF], [/* Define to 1 if you have the `_tanhf\' function. */ -+@%:@undef HAVE__TANHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_acosf], [#if defined (HAVE__ACOSF) && ! defined (HAVE_ACOSF) -+# define HAVE_ACOSF 1 -+# define acosf _acosf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_asinf], [#if defined (HAVE__ASINF) && ! defined (HAVE_ASINF) -+# define HAVE_ASINF 1 -+# define asinf _asinf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atanf], [#if defined (HAVE__ATANF) && ! defined (HAVE_ATANF) -+# define HAVE_ATANF 1 -+# define atanf _atanf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_cosf], [#if defined (HAVE__COSF) && ! defined (HAVE_COSF) -+# define HAVE_COSF 1 -+# define cosf _cosf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinf], [#if defined (HAVE__SINF) && ! defined (HAVE_SINF) -+# define HAVE_SINF 1 -+# define sinf _sinf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanf], [#if defined (HAVE__TANF) && ! defined (HAVE_TANF) -+# define HAVE_TANF 1 -+# define tanf _tanf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_coshf], [#if defined (HAVE__COSHF) && ! defined (HAVE_COSHF) -+# define HAVE_COSHF 1 -+# define coshf _coshf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinhf], [#if defined (HAVE__SINHF) && ! defined (HAVE_SINHF) -+# define HAVE_SINHF 1 -+# define sinhf _sinhf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanhf], [#if defined (HAVE__TANHF) && ! defined (HAVE_TANHF) -+# define HAVE_TANHF 1 -+# define tanhf _tanhf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_CEILF], [/* Define to 1 if you have the `ceilf\' function. */ -+@%:@undef HAVE_CEILF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FLOORF], [/* Define to 1 if you have the `floorf\' function. */ -+@%:@undef HAVE_FLOORF]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__CEILF], [/* Define to 1 if you have the `_ceilf\' function. */ -+@%:@undef HAVE__CEILF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FLOORF], [/* Define to 1 if you have the `_floorf\' function. */ -+@%:@undef HAVE__FLOORF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ceilf], [#if defined (HAVE__CEILF) && ! defined (HAVE_CEILF) -+# define HAVE_CEILF 1 -+# define ceilf _ceilf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_floorf], [#if defined (HAVE__FLOORF) && ! defined (HAVE_FLOORF) -+# define HAVE_FLOORF 1 -+# define floorf _floorf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_EXPF], [/* Define to 1 if you have the `expf\' function. */ -+@%:@undef HAVE_EXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__EXPF], [/* Define to 1 if you have the `_expf\' function. */ -+@%:@undef HAVE__EXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__EXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_expf], [#if defined (HAVE__EXPF) && ! defined (HAVE_EXPF) -+# define HAVE_EXPF 1 -+# define expf _expf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNANF], [/* Define to 1 if you have the `isnanf\' function. */ -+@%:@undef HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNANF], [/* Define to 1 if you have the `_isnanf\' function. */ -+@%:@undef HAVE__ISNANF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNANF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnanf], [#if defined (HAVE__ISNANF) && ! defined (HAVE_ISNANF) -+# define HAVE_ISNANF 1 -+# define isnanf _isnanf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINFF], [/* Define to 1 if you have the `isinff\' function. */ -+@%:@undef HAVE_ISINFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINFF], [/* Define to 1 if you have the `_isinff\' function. */ -+@%:@undef HAVE__ISINFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINFF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinff], [#if defined (HAVE__ISINFF) && ! defined (HAVE_ISINFF) -+# define HAVE_ISINFF 1 -+# define isinff _isinff -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATAN2F], [/* Define to 1 if you have the `atan2f\' function. */ -+@%:@undef HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2F$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATAN2F], [/* Define to 1 if you have the `_atan2f\' function. */ -+@%:@undef HAVE__ATAN2F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ATAN2F$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atan2f], [#if defined (HAVE__ATAN2F) && ! defined (HAVE_ATAN2F) -+# define HAVE_ATAN2F 1 -+# define atan2f _atan2f -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FABSF], [/* Define to 1 if you have the `fabsf\' function. */ -+@%:@undef HAVE_FABSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FABSF], [/* Define to 1 if you have the `_fabsf\' function. */ -+@%:@undef HAVE__FABSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FABSF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fabsf], [#if defined (HAVE__FABSF) && ! defined (HAVE_FABSF) -+# define HAVE_FABSF 1 -+# define fabsf _fabsf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FMODF], [/* Define to 1 if you have the `fmodf\' function. */ -+@%:@undef HAVE_FMODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FMODF], [/* Define to 1 if you have the `_fmodf\' function. */ -+@%:@undef HAVE__FMODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FMODF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fmodf], [#if defined (HAVE__FMODF) && ! defined (HAVE_FMODF) -+# define HAVE_FMODF 1 -+# define fmodf _fmodf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FREXPF], [/* Define to 1 if you have the `frexpf\' function. */ -+@%:@undef HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FREXPF], [/* Define to 1 if you have the `_frexpf\' function. */ -+@%:@undef HAVE__FREXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FREXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_frexpf], [#if defined (HAVE__FREXPF) && ! defined (HAVE_FREXPF) -+# define HAVE_FREXPF 1 -+# define frexpf _frexpf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOTF], [/* Define to 1 if you have the `hypotf\' function. */ -+@%:@undef HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOTF], [/* Define to 1 if you have the `_hypotf\' function. */ -+@%:@undef HAVE__HYPOTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOTF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypotf], [#if defined (HAVE__HYPOTF) && ! defined (HAVE_HYPOTF) -+# define HAVE_HYPOTF 1 -+# define hypotf _hypotf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LDEXPF], [/* Define to 1 if you have the `ldexpf\' function. */ -+@%:@undef HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LDEXPF], [/* Define to 1 if you have the `_ldexpf\' function. */ -+@%:@undef HAVE__LDEXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LDEXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ldexpf], [#if defined (HAVE__LDEXPF) && ! defined (HAVE_LDEXPF) -+# define HAVE_LDEXPF 1 -+# define ldexpf _ldexpf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOGF], [/* Define to 1 if you have the `logf\' function. */ -+@%:@undef HAVE_LOGF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOGF], [/* Define to 1 if you have the `_logf\' function. */ -+@%:@undef HAVE__LOGF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOGF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_logf], [#if defined (HAVE__LOGF) && ! defined (HAVE_LOGF) -+# define HAVE_LOGF 1 -+# define logf _logf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOG10F], [/* Define to 1 if you have the `log10f\' function. */ -+@%:@undef HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10F$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOG10F], [/* Define to 1 if you have the `_log10f\' function. */ -+@%:@undef HAVE__LOG10F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOG10F$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_log10f], [#if defined (HAVE__LOG10F) && ! defined (HAVE_LOG10F) -+# define HAVE_LOG10F 1 -+# define log10f _log10f -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODFF], [/* Define to 1 if you have the `modff\' function. */ -+@%:@undef HAVE_MODFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODFF], [/* Define to 1 if you have the `_modff\' function. */ -+@%:@undef HAVE__MODFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODFF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modff], [#if defined (HAVE__MODFF) && ! defined (HAVE_MODFF) -+# define HAVE_MODFF 1 -+# define modff _modff -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODF], [/* Define to 1 if you have the `modf\' function. */ -+@%:@undef HAVE_MODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODF], [/* Define to 1 if you have the `_modf\' function. */ -+@%:@undef HAVE__MODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modf], [#if defined (HAVE__MODF) && ! defined (HAVE_MODF) -+# define HAVE_MODF 1 -+# define modf _modf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POWF], [/* Define to 1 if you have the `powf\' function. */ -+@%:@undef HAVE_POWF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__POWF], [/* Define to 1 if you have the `_powf\' function. */ -+@%:@undef HAVE__POWF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__POWF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_powf], [#if defined (HAVE__POWF) && ! defined (HAVE_POWF) -+# define HAVE_POWF 1 -+# define powf _powf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SQRTF], [/* Define to 1 if you have the `sqrtf\' function. */ -+@%:@undef HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SQRTF], [/* Define to 1 if you have the `_sqrtf\' function. */ -+@%:@undef HAVE__SQRTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SQRTF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sqrtf], [#if defined (HAVE__SQRTF) && ! defined (HAVE_SQRTF) -+# define HAVE_SQRTF 1 -+# define sqrtf _sqrtf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOSF], [/* Define to 1 if you have the `sincosf\' function. */ -+@%:@undef HAVE_SINCOSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOSF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOSF], [/* Define to 1 if you have the `_sincosf\' function. */ -+@%:@undef HAVE__SINCOSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOSF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincosf], [#if defined (HAVE__SINCOSF) && ! defined (HAVE_SINCOSF) -+# define HAVE_SINCOSF 1 -+# define sincosf _sincosf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITEF], [/* Define to 1 if you have the `finitef\' function. */ -+@%:@undef HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITEF], [/* Define to 1 if you have the `_finitef\' function. */ -+@%:@undef HAVE__FINITEF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITEF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finitef], [#if defined (HAVE__FINITEF) && ! defined (HAVE_FINITEF) -+# define HAVE_FINITEF 1 -+# define finitef _finitef -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ACOSL], [/* Define to 1 if you have the `acosl\' function. */ -+@%:@undef HAVE_ACOSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ASINL], [/* Define to 1 if you have the `asinl\' function. */ -+@%:@undef HAVE_ASINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATANL], [/* Define to 1 if you have the `atanl\' function. */ -+@%:@undef HAVE_ATANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSL], [/* Define to 1 if you have the `cosl\' function. */ -+@%:@undef HAVE_COSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINL], [/* Define to 1 if you have the `sinl\' function. */ -+@%:@undef HAVE_SINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANL], [/* Define to 1 if you have the `tanl\' function. */ -+@%:@undef HAVE_TANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSHL], [/* Define to 1 if you have the `coshl\' function. */ -+@%:@undef HAVE_COSHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINHL], [/* Define to 1 if you have the `sinhl\' function. */ -+@%:@undef HAVE_SINHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANHL], [/* Define to 1 if you have the `tanhl\' function. */ -+@%:@undef HAVE_TANHL]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ACOSL], [/* Define to 1 if you have the `_acosl\' function. */ -+@%:@undef HAVE__ACOSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ASINL], [/* Define to 1 if you have the `_asinl\' function. */ -+@%:@undef HAVE__ASINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATANL], [/* Define to 1 if you have the `_atanl\' function. */ -+@%:@undef HAVE__ATANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSL], [/* Define to 1 if you have the `_cosl\' function. */ -+@%:@undef HAVE__COSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINL], [/* Define to 1 if you have the `_sinl\' function. */ -+@%:@undef HAVE__SINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANL], [/* Define to 1 if you have the `_tanl\' function. */ -+@%:@undef HAVE__TANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSHL], [/* Define to 1 if you have the `_coshl\' function. */ -+@%:@undef HAVE__COSHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINHL], [/* Define to 1 if you have the `_sinhl\' function. */ -+@%:@undef HAVE__SINHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANHL], [/* Define to 1 if you have the `_tanhl\' function. */ -+@%:@undef HAVE__TANHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_acosl], [#if defined (HAVE__ACOSL) && ! defined (HAVE_ACOSL) -+# define HAVE_ACOSL 1 -+# define acosl _acosl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_asinl], [#if defined (HAVE__ASINL) && ! defined (HAVE_ASINL) -+# define HAVE_ASINL 1 -+# define asinl _asinl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atanl], [#if defined (HAVE__ATANL) && ! defined (HAVE_ATANL) -+# define HAVE_ATANL 1 -+# define atanl _atanl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_cosl], [#if defined (HAVE__COSL) && ! defined (HAVE_COSL) -+# define HAVE_COSL 1 -+# define cosl _cosl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinl], [#if defined (HAVE__SINL) && ! defined (HAVE_SINL) -+# define HAVE_SINL 1 -+# define sinl _sinl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanl], [#if defined (HAVE__TANL) && ! defined (HAVE_TANL) -+# define HAVE_TANL 1 -+# define tanl _tanl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_coshl], [#if defined (HAVE__COSHL) && ! defined (HAVE_COSHL) -+# define HAVE_COSHL 1 -+# define coshl _coshl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinhl], [#if defined (HAVE__SINHL) && ! defined (HAVE_SINHL) -+# define HAVE_SINHL 1 -+# define sinhl _sinhl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanhl], [#if defined (HAVE__TANHL) && ! defined (HAVE_TANHL) -+# define HAVE_TANHL 1 -+# define tanhl _tanhl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_CEILL], [/* Define to 1 if you have the `ceill\' function. */ -+@%:@undef HAVE_CEILL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FLOORL], [/* Define to 1 if you have the `floorl\' function. */ -+@%:@undef HAVE_FLOORL]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__CEILL], [/* Define to 1 if you have the `_ceill\' function. */ -+@%:@undef HAVE__CEILL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FLOORL], [/* Define to 1 if you have the `_floorl\' function. */ -+@%:@undef HAVE__FLOORL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ceill], [#if defined (HAVE__CEILL) && ! defined (HAVE_CEILL) -+# define HAVE_CEILL 1 -+# define ceill _ceill -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_floorl], [#if defined (HAVE__FLOORL) && ! defined (HAVE_FLOORL) -+# define HAVE_FLOORL 1 -+# define floorl _floorl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNANL], [/* Define to 1 if you have the `isnanl\' function. */ -+@%:@undef HAVE_ISNANL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNANL], [/* Define to 1 if you have the `_isnanl\' function. */ -+@%:@undef HAVE__ISNANL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNANL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnanl], [#if defined (HAVE__ISNANL) && ! defined (HAVE_ISNANL) -+# define HAVE_ISNANL 1 -+# define isnanl _isnanl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINFL], [/* Define to 1 if you have the `isinfl\' function. */ -+@%:@undef HAVE_ISINFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINFL], [/* Define to 1 if you have the `_isinfl\' function. */ -+@%:@undef HAVE__ISINFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINFL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinfl], [#if defined (HAVE__ISINFL) && ! defined (HAVE_ISINFL) -+# define HAVE_ISINFL 1 -+# define isinfl _isinfl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATAN2L], [/* Define to 1 if you have the `atan2l\' function. */ -+@%:@undef HAVE_ATAN2L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2L$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATAN2L], [/* Define to 1 if you have the `_atan2l\' function. */ -+@%:@undef HAVE__ATAN2L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ATAN2L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ATAN2L$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atan2l], [#if defined (HAVE__ATAN2L) && ! defined (HAVE_ATAN2L) -+# define HAVE_ATAN2L 1 -+# define atan2l _atan2l -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_EXPL], [/* Define to 1 if you have the `expl\' function. */ -+@%:@undef HAVE_EXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__EXPL], [/* Define to 1 if you have the `_expl\' function. */ -+@%:@undef HAVE__EXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__EXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__EXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_expl], [#if defined (HAVE__EXPL) && ! defined (HAVE_EXPL) -+# define HAVE_EXPL 1 -+# define expl _expl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FABSL], [/* Define to 1 if you have the `fabsl\' function. */ -+@%:@undef HAVE_FABSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FABSL], [/* Define to 1 if you have the `_fabsl\' function. */ -+@%:@undef HAVE__FABSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FABSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FABSL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fabsl], [#if defined (HAVE__FABSL) && ! defined (HAVE_FABSL) -+# define HAVE_FABSL 1 -+# define fabsl _fabsl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FMODL], [/* Define to 1 if you have the `fmodl\' function. */ -+@%:@undef HAVE_FMODL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FMODL], [/* Define to 1 if you have the `_fmodl\' function. */ -+@%:@undef HAVE__FMODL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FMODL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FMODL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fmodl], [#if defined (HAVE__FMODL) && ! defined (HAVE_FMODL) -+# define HAVE_FMODL 1 -+# define fmodl _fmodl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FREXPL], [/* Define to 1 if you have the `frexpl\' function. */ -+@%:@undef HAVE_FREXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FREXPL], [/* Define to 1 if you have the `_frexpl\' function. */ -+@%:@undef HAVE__FREXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FREXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FREXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_frexpl], [#if defined (HAVE__FREXPL) && ! defined (HAVE_FREXPL) -+# define HAVE_FREXPL 1 -+# define frexpl _frexpl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOTL], [/* Define to 1 if you have the `hypotl\' function. */ -+@%:@undef HAVE_HYPOTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOTL], [/* Define to 1 if you have the `_hypotl\' function. */ -+@%:@undef HAVE__HYPOTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOTL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypotl], [#if defined (HAVE__HYPOTL) && ! defined (HAVE_HYPOTL) -+# define HAVE_HYPOTL 1 -+# define hypotl _hypotl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LDEXPL], [/* Define to 1 if you have the `ldexpl\' function. */ -+@%:@undef HAVE_LDEXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LDEXPL], [/* Define to 1 if you have the `_ldexpl\' function. */ -+@%:@undef HAVE__LDEXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LDEXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LDEXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ldexpl], [#if defined (HAVE__LDEXPL) && ! defined (HAVE_LDEXPL) -+# define HAVE_LDEXPL 1 -+# define ldexpl _ldexpl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOGL], [/* Define to 1 if you have the `logl\' function. */ -+@%:@undef HAVE_LOGL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOGL], [/* Define to 1 if you have the `_logl\' function. */ -+@%:@undef HAVE__LOGL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOGL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOGL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_logl], [#if defined (HAVE__LOGL) && ! defined (HAVE_LOGL) -+# define HAVE_LOGL 1 -+# define logl _logl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOG10L], [/* Define to 1 if you have the `log10l\' function. */ -+@%:@undef HAVE_LOG10L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10L$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOG10L], [/* Define to 1 if you have the `_log10l\' function. */ -+@%:@undef HAVE__LOG10L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOG10L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOG10L$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_log10l], [#if defined (HAVE__LOG10L) && ! defined (HAVE_LOG10L) -+# define HAVE_LOG10L 1 -+# define log10l _log10l -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODFL], [/* Define to 1 if you have the `modfl\' function. */ -+@%:@undef HAVE_MODFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODFL], [/* Define to 1 if you have the `_modfl\' function. */ -+@%:@undef HAVE__MODFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODFL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modfl], [#if defined (HAVE__MODFL) && ! defined (HAVE_MODFL) -+# define HAVE_MODFL 1 -+# define modfl _modfl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POWL], [/* Define to 1 if you have the `powl\' function. */ -+@%:@undef HAVE_POWL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__POWL], [/* Define to 1 if you have the `_powl\' function. */ -+@%:@undef HAVE__POWL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__POWL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__POWL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_powl], [#if defined (HAVE__POWL) && ! defined (HAVE_POWL) -+# define HAVE_POWL 1 -+# define powl _powl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SQRTL], [/* Define to 1 if you have the `sqrtl\' function. */ -+@%:@undef HAVE_SQRTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SQRTL], [/* Define to 1 if you have the `_sqrtl\' function. */ -+@%:@undef HAVE__SQRTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SQRTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SQRTL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sqrtl], [#if defined (HAVE__SQRTL) && ! defined (HAVE_SQRTL) -+# define HAVE_SQRTL 1 -+# define sqrtl _sqrtl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOSL], [/* Define to 1 if you have the `sincosl\' function. */ -+@%:@undef HAVE_SINCOSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOSL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOSL], [/* Define to 1 if you have the `_sincosl\' function. */ -+@%:@undef HAVE__SINCOSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOSL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincosl], [#if defined (HAVE__SINCOSL) && ! defined (HAVE_SINCOSL) -+# define HAVE_SINCOSL 1 -+# define sincosl _sincosl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITEL], [/* Define to 1 if you have the `finitel\' function. */ -+@%:@undef HAVE_FINITEL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITEL], [/* Define to 1 if you have the `_finitel\' function. */ -+@%:@undef HAVE__FINITEL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITEL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITEL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finitel], [#if defined (HAVE__FINITEL) && ! defined (HAVE_FINITEL) -+# define HAVE_FINITEL 1 -+# define finitel _finitel -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_AT_QUICK_EXIT], [/* Define to 1 if you have the `at_quick_exit\' function. */ -+@%:@undef HAVE_AT_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_AT_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_AT_QUICK_EXIT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_QUICK_EXIT], [/* Define to 1 if you have the `quick_exit\' function. */ -+@%:@undef HAVE_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_QUICK_EXIT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_STRTOLD], [/* Define to 1 if you have the `strtold\' function. */ -+@%:@undef HAVE_STRTOLD]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOLD]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_STRTOLD$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_strtold], [#if defined (HAVE__STRTOLD) && ! defined (HAVE_STRTOLD) -+# define HAVE_STRTOLD 1 -+# define strtold _strtold -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_STRTOF], [/* Define to 1 if you have the `strtof\' function. */ -+@%:@undef HAVE_STRTOF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_STRTOF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_strtof], [#if defined (HAVE__STRTOF) && ! defined (HAVE_STRTOF) -+# define HAVE_STRTOF 1 -+# define strtof _strtof -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITE$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOT$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNAN$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+acinclude.m4:181: GLIBCXX_CHECK_LINKER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_LDFLAGS$]) -+m4trace:configure.ac:357: -1- AC_SUBST([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^OPT_LDFLAGS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINF], [/* Define to 1 if you have the `isinf\' function. */ -+@%:@undef HAVE_ISINF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINF], [/* Define to 1 if you have the `_isinf\' function. */ -+@%:@undef HAVE__ISINF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinf], [#if defined (HAVE__ISINF) && ! defined (HAVE_ISINF) -+# define HAVE_ISINF 1 -+# define isinf _isinf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNAN], [/* Define to 1 if you have the `isnan\' function. */ -+@%:@undef HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNAN$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNAN], [/* Define to 1 if you have the `_isnan\' function. */ -+@%:@undef HAVE__ISNAN]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNAN$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnan], [#if defined (HAVE__ISNAN) && ! defined (HAVE_ISNAN) -+# define HAVE_ISNAN 1 -+# define isnan _isnan -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITE], [/* Define to 1 if you have the `finite\' function. */ -+@%:@undef HAVE_FINITE]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITE$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITE], [/* Define to 1 if you have the `_finite\' function. */ -+@%:@undef HAVE__FINITE]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITE$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finite], [#if defined (HAVE__FINITE) && ! defined (HAVE_FINITE) -+# define HAVE_FINITE 1 -+# define finite _finite -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOS], [/* Define to 1 if you have the `sincos\' function. */ -+@%:@undef HAVE_SINCOS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOS], [/* Define to 1 if you have the `_sincos\' function. */ -+@%:@undef HAVE__SINCOS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincos], [#if defined (HAVE__SINCOS) && ! defined (HAVE_SINCOS) -+# define HAVE_SINCOS 1 -+# define sincos _sincos -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FPCLASS], [/* Define to 1 if you have the `fpclass\' function. */ -+@%:@undef HAVE_FPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FPCLASS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FPCLASS], [/* Define to 1 if you have the `_fpclass\' function. */ -+@%:@undef HAVE__FPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FPCLASS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fpclass], [#if defined (HAVE__FPCLASS) && ! defined (HAVE_FPCLASS) -+# define HAVE_FPCLASS 1 -+# define fpclass _fpclass -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_QFPCLASS], [/* Define to 1 if you have the `qfpclass\' function. */ -+@%:@undef HAVE_QFPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QFPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_QFPCLASS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__QFPCLASS], [/* Define to 1 if you have the `_qfpclass\' function. */ -+@%:@undef HAVE__QFPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__QFPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__QFPCLASS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_qfpclass], [#if defined (HAVE__QFPCLASS) && ! defined (HAVE_QFPCLASS) -+# define HAVE_QFPCLASS 1 -+# define qfpclass _qfpclass -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOT], [/* Define to 1 if you have the `hypot\' function. */ -+@%:@undef HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOT], [/* Define to 1 if you have the `_hypot\' function. */ -+@%:@undef HAVE__HYPOT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOT$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypot], [#if defined (HAVE__HYPOT) && ! defined (HAVE_HYPOT) -+# define HAVE_HYPOT 1 -+# define hypot _hypot -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ACOSF], [/* Define to 1 if you have the `acosf\' function. */ -+@%:@undef HAVE_ACOSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ASINF], [/* Define to 1 if you have the `asinf\' function. */ -+@%:@undef HAVE_ASINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATANF], [/* Define to 1 if you have the `atanf\' function. */ -+@%:@undef HAVE_ATANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSF], [/* Define to 1 if you have the `cosf\' function. */ -+@%:@undef HAVE_COSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINF], [/* Define to 1 if you have the `sinf\' function. */ -+@%:@undef HAVE_SINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANF], [/* Define to 1 if you have the `tanf\' function. */ -+@%:@undef HAVE_TANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSHF], [/* Define to 1 if you have the `coshf\' function. */ -+@%:@undef HAVE_COSHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINHF], [/* Define to 1 if you have the `sinhf\' function. */ -+@%:@undef HAVE_SINHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANHF], [/* Define to 1 if you have the `tanhf\' function. */ -+@%:@undef HAVE_TANHF]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ACOSF], [/* Define to 1 if you have the `_acosf\' function. */ -+@%:@undef HAVE__ACOSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ASINF], [/* Define to 1 if you have the `_asinf\' function. */ -+@%:@undef HAVE__ASINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATANF], [/* Define to 1 if you have the `_atanf\' function. */ -+@%:@undef HAVE__ATANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSF], [/* Define to 1 if you have the `_cosf\' function. */ -+@%:@undef HAVE__COSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINF], [/* Define to 1 if you have the `_sinf\' function. */ -+@%:@undef HAVE__SINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANF], [/* Define to 1 if you have the `_tanf\' function. */ -+@%:@undef HAVE__TANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSHF], [/* Define to 1 if you have the `_coshf\' function. */ -+@%:@undef HAVE__COSHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINHF], [/* Define to 1 if you have the `_sinhf\' function. */ -+@%:@undef HAVE__SINHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANHF], [/* Define to 1 if you have the `_tanhf\' function. */ -+@%:@undef HAVE__TANHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_acosf], [#if defined (HAVE__ACOSF) && ! defined (HAVE_ACOSF) -+# define HAVE_ACOSF 1 -+# define acosf _acosf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_asinf], [#if defined (HAVE__ASINF) && ! defined (HAVE_ASINF) -+# define HAVE_ASINF 1 -+# define asinf _asinf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atanf], [#if defined (HAVE__ATANF) && ! defined (HAVE_ATANF) -+# define HAVE_ATANF 1 -+# define atanf _atanf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_cosf], [#if defined (HAVE__COSF) && ! defined (HAVE_COSF) -+# define HAVE_COSF 1 -+# define cosf _cosf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinf], [#if defined (HAVE__SINF) && ! defined (HAVE_SINF) -+# define HAVE_SINF 1 -+# define sinf _sinf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanf], [#if defined (HAVE__TANF) && ! defined (HAVE_TANF) -+# define HAVE_TANF 1 -+# define tanf _tanf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_coshf], [#if defined (HAVE__COSHF) && ! defined (HAVE_COSHF) -+# define HAVE_COSHF 1 -+# define coshf _coshf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinhf], [#if defined (HAVE__SINHF) && ! defined (HAVE_SINHF) -+# define HAVE_SINHF 1 -+# define sinhf _sinhf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanhf], [#if defined (HAVE__TANHF) && ! defined (HAVE_TANHF) -+# define HAVE_TANHF 1 -+# define tanhf _tanhf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_CEILF], [/* Define to 1 if you have the `ceilf\' function. */ -+@%:@undef HAVE_CEILF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FLOORF], [/* Define to 1 if you have the `floorf\' function. */ -+@%:@undef HAVE_FLOORF]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__CEILF], [/* Define to 1 if you have the `_ceilf\' function. */ -+@%:@undef HAVE__CEILF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FLOORF], [/* Define to 1 if you have the `_floorf\' function. */ -+@%:@undef HAVE__FLOORF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ceilf], [#if defined (HAVE__CEILF) && ! defined (HAVE_CEILF) -+# define HAVE_CEILF 1 -+# define ceilf _ceilf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_floorf], [#if defined (HAVE__FLOORF) && ! defined (HAVE_FLOORF) -+# define HAVE_FLOORF 1 -+# define floorf _floorf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_EXPF], [/* Define to 1 if you have the `expf\' function. */ -+@%:@undef HAVE_EXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__EXPF], [/* Define to 1 if you have the `_expf\' function. */ -+@%:@undef HAVE__EXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__EXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_expf], [#if defined (HAVE__EXPF) && ! defined (HAVE_EXPF) -+# define HAVE_EXPF 1 -+# define expf _expf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNANF], [/* Define to 1 if you have the `isnanf\' function. */ -+@%:@undef HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNANF], [/* Define to 1 if you have the `_isnanf\' function. */ -+@%:@undef HAVE__ISNANF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNANF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnanf], [#if defined (HAVE__ISNANF) && ! defined (HAVE_ISNANF) -+# define HAVE_ISNANF 1 -+# define isnanf _isnanf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINFF], [/* Define to 1 if you have the `isinff\' function. */ -+@%:@undef HAVE_ISINFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINFF], [/* Define to 1 if you have the `_isinff\' function. */ -+@%:@undef HAVE__ISINFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINFF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinff], [#if defined (HAVE__ISINFF) && ! defined (HAVE_ISINFF) -+# define HAVE_ISINFF 1 -+# define isinff _isinff -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATAN2F], [/* Define to 1 if you have the `atan2f\' function. */ -+@%:@undef HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2F$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATAN2F], [/* Define to 1 if you have the `_atan2f\' function. */ -+@%:@undef HAVE__ATAN2F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ATAN2F$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atan2f], [#if defined (HAVE__ATAN2F) && ! defined (HAVE_ATAN2F) -+# define HAVE_ATAN2F 1 -+# define atan2f _atan2f -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FABSF], [/* Define to 1 if you have the `fabsf\' function. */ -+@%:@undef HAVE_FABSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FABSF], [/* Define to 1 if you have the `_fabsf\' function. */ -+@%:@undef HAVE__FABSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FABSF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fabsf], [#if defined (HAVE__FABSF) && ! defined (HAVE_FABSF) -+# define HAVE_FABSF 1 -+# define fabsf _fabsf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FMODF], [/* Define to 1 if you have the `fmodf\' function. */ -+@%:@undef HAVE_FMODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FMODF], [/* Define to 1 if you have the `_fmodf\' function. */ -+@%:@undef HAVE__FMODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FMODF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fmodf], [#if defined (HAVE__FMODF) && ! defined (HAVE_FMODF) -+# define HAVE_FMODF 1 -+# define fmodf _fmodf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FREXPF], [/* Define to 1 if you have the `frexpf\' function. */ -+@%:@undef HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FREXPF], [/* Define to 1 if you have the `_frexpf\' function. */ -+@%:@undef HAVE__FREXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FREXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_frexpf], [#if defined (HAVE__FREXPF) && ! defined (HAVE_FREXPF) -+# define HAVE_FREXPF 1 -+# define frexpf _frexpf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOTF], [/* Define to 1 if you have the `hypotf\' function. */ -+@%:@undef HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOTF], [/* Define to 1 if you have the `_hypotf\' function. */ -+@%:@undef HAVE__HYPOTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOTF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypotf], [#if defined (HAVE__HYPOTF) && ! defined (HAVE_HYPOTF) -+# define HAVE_HYPOTF 1 -+# define hypotf _hypotf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LDEXPF], [/* Define to 1 if you have the `ldexpf\' function. */ -+@%:@undef HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LDEXPF], [/* Define to 1 if you have the `_ldexpf\' function. */ -+@%:@undef HAVE__LDEXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LDEXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ldexpf], [#if defined (HAVE__LDEXPF) && ! defined (HAVE_LDEXPF) -+# define HAVE_LDEXPF 1 -+# define ldexpf _ldexpf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOGF], [/* Define to 1 if you have the `logf\' function. */ -+@%:@undef HAVE_LOGF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOGF], [/* Define to 1 if you have the `_logf\' function. */ -+@%:@undef HAVE__LOGF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOGF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_logf], [#if defined (HAVE__LOGF) && ! defined (HAVE_LOGF) -+# define HAVE_LOGF 1 -+# define logf _logf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOG10F], [/* Define to 1 if you have the `log10f\' function. */ -+@%:@undef HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10F$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOG10F], [/* Define to 1 if you have the `_log10f\' function. */ -+@%:@undef HAVE__LOG10F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOG10F$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_log10f], [#if defined (HAVE__LOG10F) && ! defined (HAVE_LOG10F) -+# define HAVE_LOG10F 1 -+# define log10f _log10f -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODFF], [/* Define to 1 if you have the `modff\' function. */ -+@%:@undef HAVE_MODFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODFF], [/* Define to 1 if you have the `_modff\' function. */ -+@%:@undef HAVE__MODFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODFF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modff], [#if defined (HAVE__MODFF) && ! defined (HAVE_MODFF) -+# define HAVE_MODFF 1 -+# define modff _modff -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODF], [/* Define to 1 if you have the `modf\' function. */ -+@%:@undef HAVE_MODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODF], [/* Define to 1 if you have the `_modf\' function. */ -+@%:@undef HAVE__MODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modf], [#if defined (HAVE__MODF) && ! defined (HAVE_MODF) -+# define HAVE_MODF 1 -+# define modf _modf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POWF], [/* Define to 1 if you have the `powf\' function. */ -+@%:@undef HAVE_POWF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__POWF], [/* Define to 1 if you have the `_powf\' function. */ -+@%:@undef HAVE__POWF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__POWF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_powf], [#if defined (HAVE__POWF) && ! defined (HAVE_POWF) -+# define HAVE_POWF 1 -+# define powf _powf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SQRTF], [/* Define to 1 if you have the `sqrtf\' function. */ -+@%:@undef HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SQRTF], [/* Define to 1 if you have the `_sqrtf\' function. */ -+@%:@undef HAVE__SQRTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SQRTF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sqrtf], [#if defined (HAVE__SQRTF) && ! defined (HAVE_SQRTF) -+# define HAVE_SQRTF 1 -+# define sqrtf _sqrtf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOSF], [/* Define to 1 if you have the `sincosf\' function. */ -+@%:@undef HAVE_SINCOSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOSF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOSF], [/* Define to 1 if you have the `_sincosf\' function. */ -+@%:@undef HAVE__SINCOSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOSF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincosf], [#if defined (HAVE__SINCOSF) && ! defined (HAVE_SINCOSF) -+# define HAVE_SINCOSF 1 -+# define sincosf _sincosf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITEF], [/* Define to 1 if you have the `finitef\' function. */ -+@%:@undef HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITEF], [/* Define to 1 if you have the `_finitef\' function. */ -+@%:@undef HAVE__FINITEF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITEF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finitef], [#if defined (HAVE__FINITEF) && ! defined (HAVE_FINITEF) -+# define HAVE_FINITEF 1 -+# define finitef _finitef -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ACOSL], [/* Define to 1 if you have the `acosl\' function. */ -+@%:@undef HAVE_ACOSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ASINL], [/* Define to 1 if you have the `asinl\' function. */ -+@%:@undef HAVE_ASINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATANL], [/* Define to 1 if you have the `atanl\' function. */ -+@%:@undef HAVE_ATANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSL], [/* Define to 1 if you have the `cosl\' function. */ -+@%:@undef HAVE_COSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINL], [/* Define to 1 if you have the `sinl\' function. */ -+@%:@undef HAVE_SINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANL], [/* Define to 1 if you have the `tanl\' function. */ -+@%:@undef HAVE_TANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSHL], [/* Define to 1 if you have the `coshl\' function. */ -+@%:@undef HAVE_COSHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINHL], [/* Define to 1 if you have the `sinhl\' function. */ -+@%:@undef HAVE_SINHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANHL], [/* Define to 1 if you have the `tanhl\' function. */ -+@%:@undef HAVE_TANHL]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ACOSL], [/* Define to 1 if you have the `_acosl\' function. */ -+@%:@undef HAVE__ACOSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ASINL], [/* Define to 1 if you have the `_asinl\' function. */ -+@%:@undef HAVE__ASINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATANL], [/* Define to 1 if you have the `_atanl\' function. */ -+@%:@undef HAVE__ATANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSL], [/* Define to 1 if you have the `_cosl\' function. */ -+@%:@undef HAVE__COSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINL], [/* Define to 1 if you have the `_sinl\' function. */ -+@%:@undef HAVE__SINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANL], [/* Define to 1 if you have the `_tanl\' function. */ -+@%:@undef HAVE__TANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSHL], [/* Define to 1 if you have the `_coshl\' function. */ -+@%:@undef HAVE__COSHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINHL], [/* Define to 1 if you have the `_sinhl\' function. */ -+@%:@undef HAVE__SINHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANHL], [/* Define to 1 if you have the `_tanhl\' function. */ -+@%:@undef HAVE__TANHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_acosl], [#if defined (HAVE__ACOSL) && ! defined (HAVE_ACOSL) -+# define HAVE_ACOSL 1 -+# define acosl _acosl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_asinl], [#if defined (HAVE__ASINL) && ! defined (HAVE_ASINL) -+# define HAVE_ASINL 1 -+# define asinl _asinl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atanl], [#if defined (HAVE__ATANL) && ! defined (HAVE_ATANL) -+# define HAVE_ATANL 1 -+# define atanl _atanl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_cosl], [#if defined (HAVE__COSL) && ! defined (HAVE_COSL) -+# define HAVE_COSL 1 -+# define cosl _cosl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinl], [#if defined (HAVE__SINL) && ! defined (HAVE_SINL) -+# define HAVE_SINL 1 -+# define sinl _sinl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanl], [#if defined (HAVE__TANL) && ! defined (HAVE_TANL) -+# define HAVE_TANL 1 -+# define tanl _tanl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_coshl], [#if defined (HAVE__COSHL) && ! defined (HAVE_COSHL) -+# define HAVE_COSHL 1 -+# define coshl _coshl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinhl], [#if defined (HAVE__SINHL) && ! defined (HAVE_SINHL) -+# define HAVE_SINHL 1 -+# define sinhl _sinhl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanhl], [#if defined (HAVE__TANHL) && ! defined (HAVE_TANHL) -+# define HAVE_TANHL 1 -+# define tanhl _tanhl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_CEILL], [/* Define to 1 if you have the `ceill\' function. */ -+@%:@undef HAVE_CEILL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FLOORL], [/* Define to 1 if you have the `floorl\' function. */ -+@%:@undef HAVE_FLOORL]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__CEILL], [/* Define to 1 if you have the `_ceill\' function. */ -+@%:@undef HAVE__CEILL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FLOORL], [/* Define to 1 if you have the `_floorl\' function. */ -+@%:@undef HAVE__FLOORL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ceill], [#if defined (HAVE__CEILL) && ! defined (HAVE_CEILL) -+# define HAVE_CEILL 1 -+# define ceill _ceill -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_floorl], [#if defined (HAVE__FLOORL) && ! defined (HAVE_FLOORL) -+# define HAVE_FLOORL 1 -+# define floorl _floorl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNANL], [/* Define to 1 if you have the `isnanl\' function. */ -+@%:@undef HAVE_ISNANL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNANL], [/* Define to 1 if you have the `_isnanl\' function. */ -+@%:@undef HAVE__ISNANL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNANL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnanl], [#if defined (HAVE__ISNANL) && ! defined (HAVE_ISNANL) -+# define HAVE_ISNANL 1 -+# define isnanl _isnanl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINFL], [/* Define to 1 if you have the `isinfl\' function. */ -+@%:@undef HAVE_ISINFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINFL], [/* Define to 1 if you have the `_isinfl\' function. */ -+@%:@undef HAVE__ISINFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINFL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinfl], [#if defined (HAVE__ISINFL) && ! defined (HAVE_ISINFL) -+# define HAVE_ISINFL 1 -+# define isinfl _isinfl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATAN2L], [/* Define to 1 if you have the `atan2l\' function. */ -+@%:@undef HAVE_ATAN2L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2L$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATAN2L], [/* Define to 1 if you have the `_atan2l\' function. */ -+@%:@undef HAVE__ATAN2L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ATAN2L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ATAN2L$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atan2l], [#if defined (HAVE__ATAN2L) && ! defined (HAVE_ATAN2L) -+# define HAVE_ATAN2L 1 -+# define atan2l _atan2l -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_EXPL], [/* Define to 1 if you have the `expl\' function. */ -+@%:@undef HAVE_EXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__EXPL], [/* Define to 1 if you have the `_expl\' function. */ -+@%:@undef HAVE__EXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__EXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__EXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_expl], [#if defined (HAVE__EXPL) && ! defined (HAVE_EXPL) -+# define HAVE_EXPL 1 -+# define expl _expl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FABSL], [/* Define to 1 if you have the `fabsl\' function. */ -+@%:@undef HAVE_FABSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FABSL], [/* Define to 1 if you have the `_fabsl\' function. */ -+@%:@undef HAVE__FABSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FABSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FABSL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fabsl], [#if defined (HAVE__FABSL) && ! defined (HAVE_FABSL) -+# define HAVE_FABSL 1 -+# define fabsl _fabsl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FMODL], [/* Define to 1 if you have the `fmodl\' function. */ -+@%:@undef HAVE_FMODL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FMODL], [/* Define to 1 if you have the `_fmodl\' function. */ -+@%:@undef HAVE__FMODL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FMODL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FMODL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fmodl], [#if defined (HAVE__FMODL) && ! defined (HAVE_FMODL) -+# define HAVE_FMODL 1 -+# define fmodl _fmodl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FREXPL], [/* Define to 1 if you have the `frexpl\' function. */ -+@%:@undef HAVE_FREXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FREXPL], [/* Define to 1 if you have the `_frexpl\' function. */ -+@%:@undef HAVE__FREXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FREXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FREXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_frexpl], [#if defined (HAVE__FREXPL) && ! defined (HAVE_FREXPL) -+# define HAVE_FREXPL 1 -+# define frexpl _frexpl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOTL], [/* Define to 1 if you have the `hypotl\' function. */ -+@%:@undef HAVE_HYPOTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOTL], [/* Define to 1 if you have the `_hypotl\' function. */ -+@%:@undef HAVE__HYPOTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOTL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypotl], [#if defined (HAVE__HYPOTL) && ! defined (HAVE_HYPOTL) -+# define HAVE_HYPOTL 1 -+# define hypotl _hypotl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LDEXPL], [/* Define to 1 if you have the `ldexpl\' function. */ -+@%:@undef HAVE_LDEXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LDEXPL], [/* Define to 1 if you have the `_ldexpl\' function. */ -+@%:@undef HAVE__LDEXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LDEXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LDEXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ldexpl], [#if defined (HAVE__LDEXPL) && ! defined (HAVE_LDEXPL) -+# define HAVE_LDEXPL 1 -+# define ldexpl _ldexpl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOGL], [/* Define to 1 if you have the `logl\' function. */ -+@%:@undef HAVE_LOGL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOGL], [/* Define to 1 if you have the `_logl\' function. */ -+@%:@undef HAVE__LOGL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOGL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOGL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_logl], [#if defined (HAVE__LOGL) && ! defined (HAVE_LOGL) -+# define HAVE_LOGL 1 -+# define logl _logl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOG10L], [/* Define to 1 if you have the `log10l\' function. */ -+@%:@undef HAVE_LOG10L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10L$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOG10L], [/* Define to 1 if you have the `_log10l\' function. */ -+@%:@undef HAVE__LOG10L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOG10L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOG10L$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_log10l], [#if defined (HAVE__LOG10L) && ! defined (HAVE_LOG10L) -+# define HAVE_LOG10L 1 -+# define log10l _log10l -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODFL], [/* Define to 1 if you have the `modfl\' function. */ -+@%:@undef HAVE_MODFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODFL], [/* Define to 1 if you have the `_modfl\' function. */ -+@%:@undef HAVE__MODFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODFL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modfl], [#if defined (HAVE__MODFL) && ! defined (HAVE_MODFL) -+# define HAVE_MODFL 1 -+# define modfl _modfl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POWL], [/* Define to 1 if you have the `powl\' function. */ -+@%:@undef HAVE_POWL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__POWL], [/* Define to 1 if you have the `_powl\' function. */ -+@%:@undef HAVE__POWL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__POWL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__POWL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_powl], [#if defined (HAVE__POWL) && ! defined (HAVE_POWL) -+# define HAVE_POWL 1 -+# define powl _powl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SQRTL], [/* Define to 1 if you have the `sqrtl\' function. */ -+@%:@undef HAVE_SQRTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SQRTL], [/* Define to 1 if you have the `_sqrtl\' function. */ -+@%:@undef HAVE__SQRTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SQRTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SQRTL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sqrtl], [#if defined (HAVE__SQRTL) && ! defined (HAVE_SQRTL) -+# define HAVE_SQRTL 1 -+# define sqrtl _sqrtl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOSL], [/* Define to 1 if you have the `sincosl\' function. */ -+@%:@undef HAVE_SINCOSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOSL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOSL], [/* Define to 1 if you have the `_sincosl\' function. */ -+@%:@undef HAVE__SINCOSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOSL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincosl], [#if defined (HAVE__SINCOSL) && ! defined (HAVE_SINCOSL) -+# define HAVE_SINCOSL 1 -+# define sincosl _sincosl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITEL], [/* Define to 1 if you have the `finitel\' function. */ -+@%:@undef HAVE_FINITEL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITEL], [/* Define to 1 if you have the `_finitel\' function. */ -+@%:@undef HAVE__FINITEL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITEL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITEL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finitel], [#if defined (HAVE__FINITEL) && ! defined (HAVE_FINITEL) -+# define HAVE_FINITEL 1 -+# define finitel _finitel -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_AT_QUICK_EXIT], [/* Define to 1 if you have the `at_quick_exit\' function. */ -+@%:@undef HAVE_AT_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_AT_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_AT_QUICK_EXIT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_QUICK_EXIT], [/* Define to 1 if you have the `quick_exit\' function. */ -+@%:@undef HAVE_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_QUICK_EXIT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_STRTOLD], [/* Define to 1 if you have the `strtold\' function. */ -+@%:@undef HAVE_STRTOLD]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOLD]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_STRTOLD$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_strtold], [#if defined (HAVE__STRTOLD) && ! defined (HAVE_STRTOLD) -+# define HAVE_STRTOLD 1 -+# define strtold _strtold -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_STRTOF], [/* Define to 1 if you have the `strtof\' function. */ -+@%:@undef HAVE_STRTOF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_STRTOF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_strtof], [#if defined (HAVE__STRTOF) && ! defined (HAVE_STRTOF) -+# define HAVE_STRTOF 1 -+# define strtof _strtof -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_DEV_RANDOM]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^_GLIBCXX_USE_DEV_RANDOM$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_RANDOM_TR1]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^_GLIBCXX_USE_RANDOM_TR1$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+../config/iconv.m4:23: AM_ICONV_LINK is expanded from... -+../config/iconv.m4:104: AM_ICONV is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+../config/iconv.m4:23: AM_ICONV_LINK is expanded from... -+../config/iconv.m4:104: AM_ICONV is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+../config/iconv.m4:23: AM_ICONV_LINK is expanded from... -+../config/iconv.m4:104: AM_ICONV is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ICONV]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ICONV$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ICONV], [/* Define if you have the iconv() function. */ -+@%:@undef HAVE_ICONV]) -+m4trace:configure.ac:357: -1- AC_SUBST([LIBICONV]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([LIBICONV]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^LIBICONV$]) -+m4trace:configure.ac:357: -1- AC_SUBST([LTLIBICONV]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([LTLIBICONV]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^LTLIBICONV$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../config/iconv.m4:104: AM_ICONV is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([ICONV_CONST]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^ICONV_CONST$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([ICONV_CONST], [/* Define as const if the declaration of iconv() needs const. */ -+@%:@undef ICONV_CONST]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_USELOCALE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_USELOCALE$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINF], [/* Define to 1 if you have the `isinf\' function. */ -+@%:@undef HAVE_ISINF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINF], [/* Define to 1 if you have the `_isinf\' function. */ -+@%:@undef HAVE__ISINF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinf], [#if defined (HAVE__ISINF) && ! defined (HAVE_ISINF) -+# define HAVE_ISINF 1 -+# define isinf _isinf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNAN], [/* Define to 1 if you have the `isnan\' function. */ -+@%:@undef HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNAN$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNAN], [/* Define to 1 if you have the `_isnan\' function. */ -+@%:@undef HAVE__ISNAN]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNAN$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnan], [#if defined (HAVE__ISNAN) && ! defined (HAVE_ISNAN) -+# define HAVE_ISNAN 1 -+# define isnan _isnan -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITE], [/* Define to 1 if you have the `finite\' function. */ -+@%:@undef HAVE_FINITE]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITE$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITE], [/* Define to 1 if you have the `_finite\' function. */ -+@%:@undef HAVE__FINITE]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITE$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finite], [#if defined (HAVE__FINITE) && ! defined (HAVE_FINITE) -+# define HAVE_FINITE 1 -+# define finite _finite -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOS], [/* Define to 1 if you have the `sincos\' function. */ -+@%:@undef HAVE_SINCOS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOS], [/* Define to 1 if you have the `_sincos\' function. */ -+@%:@undef HAVE__SINCOS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincos], [#if defined (HAVE__SINCOS) && ! defined (HAVE_SINCOS) -+# define HAVE_SINCOS 1 -+# define sincos _sincos -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FPCLASS], [/* Define to 1 if you have the `fpclass\' function. */ -+@%:@undef HAVE_FPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FPCLASS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FPCLASS], [/* Define to 1 if you have the `_fpclass\' function. */ -+@%:@undef HAVE__FPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FPCLASS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fpclass], [#if defined (HAVE__FPCLASS) && ! defined (HAVE_FPCLASS) -+# define HAVE_FPCLASS 1 -+# define fpclass _fpclass -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_QFPCLASS], [/* Define to 1 if you have the `qfpclass\' function. */ -+@%:@undef HAVE_QFPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QFPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_QFPCLASS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__QFPCLASS], [/* Define to 1 if you have the `_qfpclass\' function. */ -+@%:@undef HAVE__QFPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__QFPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__QFPCLASS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_qfpclass], [#if defined (HAVE__QFPCLASS) && ! defined (HAVE_QFPCLASS) -+# define HAVE_QFPCLASS 1 -+# define qfpclass _qfpclass -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOT], [/* Define to 1 if you have the `hypot\' function. */ -+@%:@undef HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOT], [/* Define to 1 if you have the `_hypot\' function. */ -+@%:@undef HAVE__HYPOT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOT$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypot], [#if defined (HAVE__HYPOT) && ! defined (HAVE_HYPOT) -+# define HAVE_HYPOT 1 -+# define hypot _hypot -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ACOSF], [/* Define to 1 if you have the `acosf\' function. */ -+@%:@undef HAVE_ACOSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ASINF], [/* Define to 1 if you have the `asinf\' function. */ -+@%:@undef HAVE_ASINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATANF], [/* Define to 1 if you have the `atanf\' function. */ -+@%:@undef HAVE_ATANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSF], [/* Define to 1 if you have the `cosf\' function. */ -+@%:@undef HAVE_COSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINF], [/* Define to 1 if you have the `sinf\' function. */ -+@%:@undef HAVE_SINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANF], [/* Define to 1 if you have the `tanf\' function. */ -+@%:@undef HAVE_TANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSHF], [/* Define to 1 if you have the `coshf\' function. */ -+@%:@undef HAVE_COSHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINHF], [/* Define to 1 if you have the `sinhf\' function. */ -+@%:@undef HAVE_SINHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANHF], [/* Define to 1 if you have the `tanhf\' function. */ -+@%:@undef HAVE_TANHF]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ACOSF], [/* Define to 1 if you have the `_acosf\' function. */ -+@%:@undef HAVE__ACOSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ASINF], [/* Define to 1 if you have the `_asinf\' function. */ -+@%:@undef HAVE__ASINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATANF], [/* Define to 1 if you have the `_atanf\' function. */ -+@%:@undef HAVE__ATANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSF], [/* Define to 1 if you have the `_cosf\' function. */ -+@%:@undef HAVE__COSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINF], [/* Define to 1 if you have the `_sinf\' function. */ -+@%:@undef HAVE__SINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANF], [/* Define to 1 if you have the `_tanf\' function. */ -+@%:@undef HAVE__TANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSHF], [/* Define to 1 if you have the `_coshf\' function. */ -+@%:@undef HAVE__COSHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINHF], [/* Define to 1 if you have the `_sinhf\' function. */ -+@%:@undef HAVE__SINHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANHF], [/* Define to 1 if you have the `_tanhf\' function. */ -+@%:@undef HAVE__TANHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_acosf], [#if defined (HAVE__ACOSF) && ! defined (HAVE_ACOSF) -+# define HAVE_ACOSF 1 -+# define acosf _acosf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_asinf], [#if defined (HAVE__ASINF) && ! defined (HAVE_ASINF) -+# define HAVE_ASINF 1 -+# define asinf _asinf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atanf], [#if defined (HAVE__ATANF) && ! defined (HAVE_ATANF) -+# define HAVE_ATANF 1 -+# define atanf _atanf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_cosf], [#if defined (HAVE__COSF) && ! defined (HAVE_COSF) -+# define HAVE_COSF 1 -+# define cosf _cosf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinf], [#if defined (HAVE__SINF) && ! defined (HAVE_SINF) -+# define HAVE_SINF 1 -+# define sinf _sinf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanf], [#if defined (HAVE__TANF) && ! defined (HAVE_TANF) -+# define HAVE_TANF 1 -+# define tanf _tanf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_coshf], [#if defined (HAVE__COSHF) && ! defined (HAVE_COSHF) -+# define HAVE_COSHF 1 -+# define coshf _coshf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinhf], [#if defined (HAVE__SINHF) && ! defined (HAVE_SINHF) -+# define HAVE_SINHF 1 -+# define sinhf _sinhf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanhf], [#if defined (HAVE__TANHF) && ! defined (HAVE_TANHF) -+# define HAVE_TANHF 1 -+# define tanhf _tanhf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_CEILF], [/* Define to 1 if you have the `ceilf\' function. */ -+@%:@undef HAVE_CEILF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FLOORF], [/* Define to 1 if you have the `floorf\' function. */ -+@%:@undef HAVE_FLOORF]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__CEILF], [/* Define to 1 if you have the `_ceilf\' function. */ -+@%:@undef HAVE__CEILF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FLOORF], [/* Define to 1 if you have the `_floorf\' function. */ -+@%:@undef HAVE__FLOORF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ceilf], [#if defined (HAVE__CEILF) && ! defined (HAVE_CEILF) -+# define HAVE_CEILF 1 -+# define ceilf _ceilf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_floorf], [#if defined (HAVE__FLOORF) && ! defined (HAVE_FLOORF) -+# define HAVE_FLOORF 1 -+# define floorf _floorf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_EXPF], [/* Define to 1 if you have the `expf\' function. */ -+@%:@undef HAVE_EXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__EXPF], [/* Define to 1 if you have the `_expf\' function. */ -+@%:@undef HAVE__EXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__EXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_expf], [#if defined (HAVE__EXPF) && ! defined (HAVE_EXPF) -+# define HAVE_EXPF 1 -+# define expf _expf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNANF], [/* Define to 1 if you have the `isnanf\' function. */ -+@%:@undef HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNANF], [/* Define to 1 if you have the `_isnanf\' function. */ -+@%:@undef HAVE__ISNANF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNANF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnanf], [#if defined (HAVE__ISNANF) && ! defined (HAVE_ISNANF) -+# define HAVE_ISNANF 1 -+# define isnanf _isnanf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINFF], [/* Define to 1 if you have the `isinff\' function. */ -+@%:@undef HAVE_ISINFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINFF], [/* Define to 1 if you have the `_isinff\' function. */ -+@%:@undef HAVE__ISINFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINFF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinff], [#if defined (HAVE__ISINFF) && ! defined (HAVE_ISINFF) -+# define HAVE_ISINFF 1 -+# define isinff _isinff -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATAN2F], [/* Define to 1 if you have the `atan2f\' function. */ -+@%:@undef HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2F$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATAN2F], [/* Define to 1 if you have the `_atan2f\' function. */ -+@%:@undef HAVE__ATAN2F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ATAN2F$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atan2f], [#if defined (HAVE__ATAN2F) && ! defined (HAVE_ATAN2F) -+# define HAVE_ATAN2F 1 -+# define atan2f _atan2f -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FABSF], [/* Define to 1 if you have the `fabsf\' function. */ -+@%:@undef HAVE_FABSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FABSF], [/* Define to 1 if you have the `_fabsf\' function. */ -+@%:@undef HAVE__FABSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FABSF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fabsf], [#if defined (HAVE__FABSF) && ! defined (HAVE_FABSF) -+# define HAVE_FABSF 1 -+# define fabsf _fabsf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FMODF], [/* Define to 1 if you have the `fmodf\' function. */ -+@%:@undef HAVE_FMODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FMODF], [/* Define to 1 if you have the `_fmodf\' function. */ -+@%:@undef HAVE__FMODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FMODF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fmodf], [#if defined (HAVE__FMODF) && ! defined (HAVE_FMODF) -+# define HAVE_FMODF 1 -+# define fmodf _fmodf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FREXPF], [/* Define to 1 if you have the `frexpf\' function. */ -+@%:@undef HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FREXPF], [/* Define to 1 if you have the `_frexpf\' function. */ -+@%:@undef HAVE__FREXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FREXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_frexpf], [#if defined (HAVE__FREXPF) && ! defined (HAVE_FREXPF) -+# define HAVE_FREXPF 1 -+# define frexpf _frexpf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOTF], [/* Define to 1 if you have the `hypotf\' function. */ -+@%:@undef HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOTF], [/* Define to 1 if you have the `_hypotf\' function. */ -+@%:@undef HAVE__HYPOTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOTF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypotf], [#if defined (HAVE__HYPOTF) && ! defined (HAVE_HYPOTF) -+# define HAVE_HYPOTF 1 -+# define hypotf _hypotf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LDEXPF], [/* Define to 1 if you have the `ldexpf\' function. */ -+@%:@undef HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LDEXPF], [/* Define to 1 if you have the `_ldexpf\' function. */ -+@%:@undef HAVE__LDEXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LDEXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ldexpf], [#if defined (HAVE__LDEXPF) && ! defined (HAVE_LDEXPF) -+# define HAVE_LDEXPF 1 -+# define ldexpf _ldexpf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOGF], [/* Define to 1 if you have the `logf\' function. */ -+@%:@undef HAVE_LOGF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOGF], [/* Define to 1 if you have the `_logf\' function. */ -+@%:@undef HAVE__LOGF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOGF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_logf], [#if defined (HAVE__LOGF) && ! defined (HAVE_LOGF) -+# define HAVE_LOGF 1 -+# define logf _logf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOG10F], [/* Define to 1 if you have the `log10f\' function. */ -+@%:@undef HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10F$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOG10F], [/* Define to 1 if you have the `_log10f\' function. */ -+@%:@undef HAVE__LOG10F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOG10F$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_log10f], [#if defined (HAVE__LOG10F) && ! defined (HAVE_LOG10F) -+# define HAVE_LOG10F 1 -+# define log10f _log10f -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODFF], [/* Define to 1 if you have the `modff\' function. */ -+@%:@undef HAVE_MODFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODFF], [/* Define to 1 if you have the `_modff\' function. */ -+@%:@undef HAVE__MODFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODFF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modff], [#if defined (HAVE__MODFF) && ! defined (HAVE_MODFF) -+# define HAVE_MODFF 1 -+# define modff _modff -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODF], [/* Define to 1 if you have the `modf\' function. */ -+@%:@undef HAVE_MODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODF], [/* Define to 1 if you have the `_modf\' function. */ -+@%:@undef HAVE__MODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modf], [#if defined (HAVE__MODF) && ! defined (HAVE_MODF) -+# define HAVE_MODF 1 -+# define modf _modf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POWF], [/* Define to 1 if you have the `powf\' function. */ -+@%:@undef HAVE_POWF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__POWF], [/* Define to 1 if you have the `_powf\' function. */ -+@%:@undef HAVE__POWF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__POWF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_powf], [#if defined (HAVE__POWF) && ! defined (HAVE_POWF) -+# define HAVE_POWF 1 -+# define powf _powf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SQRTF], [/* Define to 1 if you have the `sqrtf\' function. */ -+@%:@undef HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SQRTF], [/* Define to 1 if you have the `_sqrtf\' function. */ -+@%:@undef HAVE__SQRTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SQRTF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sqrtf], [#if defined (HAVE__SQRTF) && ! defined (HAVE_SQRTF) -+# define HAVE_SQRTF 1 -+# define sqrtf _sqrtf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOSF], [/* Define to 1 if you have the `sincosf\' function. */ -+@%:@undef HAVE_SINCOSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOSF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOSF], [/* Define to 1 if you have the `_sincosf\' function. */ -+@%:@undef HAVE__SINCOSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOSF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincosf], [#if defined (HAVE__SINCOSF) && ! defined (HAVE_SINCOSF) -+# define HAVE_SINCOSF 1 -+# define sincosf _sincosf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITEF], [/* Define to 1 if you have the `finitef\' function. */ -+@%:@undef HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITEF], [/* Define to 1 if you have the `_finitef\' function. */ -+@%:@undef HAVE__FINITEF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITEF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finitef], [#if defined (HAVE__FINITEF) && ! defined (HAVE_FINITEF) -+# define HAVE_FINITEF 1 -+# define finitef _finitef -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ACOSL], [/* Define to 1 if you have the `acosl\' function. */ -+@%:@undef HAVE_ACOSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ASINL], [/* Define to 1 if you have the `asinl\' function. */ -+@%:@undef HAVE_ASINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATANL], [/* Define to 1 if you have the `atanl\' function. */ -+@%:@undef HAVE_ATANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSL], [/* Define to 1 if you have the `cosl\' function. */ -+@%:@undef HAVE_COSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINL], [/* Define to 1 if you have the `sinl\' function. */ -+@%:@undef HAVE_SINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANL], [/* Define to 1 if you have the `tanl\' function. */ -+@%:@undef HAVE_TANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSHL], [/* Define to 1 if you have the `coshl\' function. */ -+@%:@undef HAVE_COSHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINHL], [/* Define to 1 if you have the `sinhl\' function. */ -+@%:@undef HAVE_SINHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANHL], [/* Define to 1 if you have the `tanhl\' function. */ -+@%:@undef HAVE_TANHL]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ACOSL], [/* Define to 1 if you have the `_acosl\' function. */ -+@%:@undef HAVE__ACOSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ASINL], [/* Define to 1 if you have the `_asinl\' function. */ -+@%:@undef HAVE__ASINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATANL], [/* Define to 1 if you have the `_atanl\' function. */ -+@%:@undef HAVE__ATANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSL], [/* Define to 1 if you have the `_cosl\' function. */ -+@%:@undef HAVE__COSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINL], [/* Define to 1 if you have the `_sinl\' function. */ -+@%:@undef HAVE__SINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANL], [/* Define to 1 if you have the `_tanl\' function. */ -+@%:@undef HAVE__TANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSHL], [/* Define to 1 if you have the `_coshl\' function. */ -+@%:@undef HAVE__COSHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINHL], [/* Define to 1 if you have the `_sinhl\' function. */ -+@%:@undef HAVE__SINHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANHL], [/* Define to 1 if you have the `_tanhl\' function. */ -+@%:@undef HAVE__TANHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_acosl], [#if defined (HAVE__ACOSL) && ! defined (HAVE_ACOSL) -+# define HAVE_ACOSL 1 -+# define acosl _acosl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_asinl], [#if defined (HAVE__ASINL) && ! defined (HAVE_ASINL) -+# define HAVE_ASINL 1 -+# define asinl _asinl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atanl], [#if defined (HAVE__ATANL) && ! defined (HAVE_ATANL) -+# define HAVE_ATANL 1 -+# define atanl _atanl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_cosl], [#if defined (HAVE__COSL) && ! defined (HAVE_COSL) -+# define HAVE_COSL 1 -+# define cosl _cosl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinl], [#if defined (HAVE__SINL) && ! defined (HAVE_SINL) -+# define HAVE_SINL 1 -+# define sinl _sinl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanl], [#if defined (HAVE__TANL) && ! defined (HAVE_TANL) -+# define HAVE_TANL 1 -+# define tanl _tanl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_coshl], [#if defined (HAVE__COSHL) && ! defined (HAVE_COSHL) -+# define HAVE_COSHL 1 -+# define coshl _coshl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinhl], [#if defined (HAVE__SINHL) && ! defined (HAVE_SINHL) -+# define HAVE_SINHL 1 -+# define sinhl _sinhl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanhl], [#if defined (HAVE__TANHL) && ! defined (HAVE_TANHL) -+# define HAVE_TANHL 1 -+# define tanhl _tanhl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_CEILL], [/* Define to 1 if you have the `ceill\' function. */ -+@%:@undef HAVE_CEILL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FLOORL], [/* Define to 1 if you have the `floorl\' function. */ -+@%:@undef HAVE_FLOORL]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__CEILL], [/* Define to 1 if you have the `_ceill\' function. */ -+@%:@undef HAVE__CEILL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FLOORL], [/* Define to 1 if you have the `_floorl\' function. */ -+@%:@undef HAVE__FLOORL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ceill], [#if defined (HAVE__CEILL) && ! defined (HAVE_CEILL) -+# define HAVE_CEILL 1 -+# define ceill _ceill -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_floorl], [#if defined (HAVE__FLOORL) && ! defined (HAVE_FLOORL) -+# define HAVE_FLOORL 1 -+# define floorl _floorl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNANL], [/* Define to 1 if you have the `isnanl\' function. */ -+@%:@undef HAVE_ISNANL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNANL], [/* Define to 1 if you have the `_isnanl\' function. */ -+@%:@undef HAVE__ISNANL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNANL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnanl], [#if defined (HAVE__ISNANL) && ! defined (HAVE_ISNANL) -+# define HAVE_ISNANL 1 -+# define isnanl _isnanl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINFL], [/* Define to 1 if you have the `isinfl\' function. */ -+@%:@undef HAVE_ISINFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINFL], [/* Define to 1 if you have the `_isinfl\' function. */ -+@%:@undef HAVE__ISINFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINFL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinfl], [#if defined (HAVE__ISINFL) && ! defined (HAVE_ISINFL) -+# define HAVE_ISINFL 1 -+# define isinfl _isinfl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATAN2L], [/* Define to 1 if you have the `atan2l\' function. */ -+@%:@undef HAVE_ATAN2L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2L$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATAN2L], [/* Define to 1 if you have the `_atan2l\' function. */ -+@%:@undef HAVE__ATAN2L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ATAN2L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ATAN2L$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atan2l], [#if defined (HAVE__ATAN2L) && ! defined (HAVE_ATAN2L) -+# define HAVE_ATAN2L 1 -+# define atan2l _atan2l -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_EXPL], [/* Define to 1 if you have the `expl\' function. */ -+@%:@undef HAVE_EXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__EXPL], [/* Define to 1 if you have the `_expl\' function. */ -+@%:@undef HAVE__EXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__EXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__EXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_expl], [#if defined (HAVE__EXPL) && ! defined (HAVE_EXPL) -+# define HAVE_EXPL 1 -+# define expl _expl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FABSL], [/* Define to 1 if you have the `fabsl\' function. */ -+@%:@undef HAVE_FABSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FABSL], [/* Define to 1 if you have the `_fabsl\' function. */ -+@%:@undef HAVE__FABSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FABSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FABSL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fabsl], [#if defined (HAVE__FABSL) && ! defined (HAVE_FABSL) -+# define HAVE_FABSL 1 -+# define fabsl _fabsl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FMODL], [/* Define to 1 if you have the `fmodl\' function. */ -+@%:@undef HAVE_FMODL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FMODL], [/* Define to 1 if you have the `_fmodl\' function. */ -+@%:@undef HAVE__FMODL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FMODL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FMODL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fmodl], [#if defined (HAVE__FMODL) && ! defined (HAVE_FMODL) -+# define HAVE_FMODL 1 -+# define fmodl _fmodl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FREXPL], [/* Define to 1 if you have the `frexpl\' function. */ -+@%:@undef HAVE_FREXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FREXPL], [/* Define to 1 if you have the `_frexpl\' function. */ -+@%:@undef HAVE__FREXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FREXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FREXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_frexpl], [#if defined (HAVE__FREXPL) && ! defined (HAVE_FREXPL) -+# define HAVE_FREXPL 1 -+# define frexpl _frexpl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOTL], [/* Define to 1 if you have the `hypotl\' function. */ -+@%:@undef HAVE_HYPOTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOTL], [/* Define to 1 if you have the `_hypotl\' function. */ -+@%:@undef HAVE__HYPOTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOTL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypotl], [#if defined (HAVE__HYPOTL) && ! defined (HAVE_HYPOTL) -+# define HAVE_HYPOTL 1 -+# define hypotl _hypotl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LDEXPL], [/* Define to 1 if you have the `ldexpl\' function. */ -+@%:@undef HAVE_LDEXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LDEXPL], [/* Define to 1 if you have the `_ldexpl\' function. */ -+@%:@undef HAVE__LDEXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LDEXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LDEXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ldexpl], [#if defined (HAVE__LDEXPL) && ! defined (HAVE_LDEXPL) -+# define HAVE_LDEXPL 1 -+# define ldexpl _ldexpl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOGL], [/* Define to 1 if you have the `logl\' function. */ -+@%:@undef HAVE_LOGL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOGL], [/* Define to 1 if you have the `_logl\' function. */ -+@%:@undef HAVE__LOGL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOGL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOGL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_logl], [#if defined (HAVE__LOGL) && ! defined (HAVE_LOGL) -+# define HAVE_LOGL 1 -+# define logl _logl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOG10L], [/* Define to 1 if you have the `log10l\' function. */ -+@%:@undef HAVE_LOG10L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10L$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOG10L], [/* Define to 1 if you have the `_log10l\' function. */ -+@%:@undef HAVE__LOG10L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOG10L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOG10L$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_log10l], [#if defined (HAVE__LOG10L) && ! defined (HAVE_LOG10L) -+# define HAVE_LOG10L 1 -+# define log10l _log10l -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODFL], [/* Define to 1 if you have the `modfl\' function. */ -+@%:@undef HAVE_MODFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODFL], [/* Define to 1 if you have the `_modfl\' function. */ -+@%:@undef HAVE__MODFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODFL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modfl], [#if defined (HAVE__MODFL) && ! defined (HAVE_MODFL) -+# define HAVE_MODFL 1 -+# define modfl _modfl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POWL], [/* Define to 1 if you have the `powl\' function. */ -+@%:@undef HAVE_POWL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__POWL], [/* Define to 1 if you have the `_powl\' function. */ -+@%:@undef HAVE__POWL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__POWL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__POWL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_powl], [#if defined (HAVE__POWL) && ! defined (HAVE_POWL) -+# define HAVE_POWL 1 -+# define powl _powl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SQRTL], [/* Define to 1 if you have the `sqrtl\' function. */ -+@%:@undef HAVE_SQRTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SQRTL], [/* Define to 1 if you have the `_sqrtl\' function. */ -+@%:@undef HAVE__SQRTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SQRTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SQRTL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sqrtl], [#if defined (HAVE__SQRTL) && ! defined (HAVE_SQRTL) -+# define HAVE_SQRTL 1 -+# define sqrtl _sqrtl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOSL], [/* Define to 1 if you have the `sincosl\' function. */ -+@%:@undef HAVE_SINCOSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOSL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOSL], [/* Define to 1 if you have the `_sincosl\' function. */ -+@%:@undef HAVE__SINCOSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOSL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincosl], [#if defined (HAVE__SINCOSL) && ! defined (HAVE_SINCOSL) -+# define HAVE_SINCOSL 1 -+# define sincosl _sincosl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITEL], [/* Define to 1 if you have the `finitel\' function. */ -+@%:@undef HAVE_FINITEL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITEL], [/* Define to 1 if you have the `_finitel\' function. */ -+@%:@undef HAVE__FINITEL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITEL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITEL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finitel], [#if defined (HAVE__FINITEL) && ! defined (HAVE_FINITEL) -+# define HAVE_FINITEL 1 -+# define finitel _finitel -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_AT_QUICK_EXIT], [/* Define to 1 if you have the `at_quick_exit\' function. */ -+@%:@undef HAVE_AT_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_AT_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_AT_QUICK_EXIT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_QUICK_EXIT], [/* Define to 1 if you have the `quick_exit\' function. */ -+@%:@undef HAVE_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_QUICK_EXIT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_STRTOLD], [/* Define to 1 if you have the `strtold\' function. */ -+@%:@undef HAVE_STRTOLD]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOLD]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_STRTOLD$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_strtold], [#if defined (HAVE__STRTOLD) && ! defined (HAVE_STRTOLD) -+# define HAVE_STRTOLD 1 -+# define strtold _strtold -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_STRTOF], [/* Define to 1 if you have the `strtof\' function. */ -+@%:@undef HAVE_STRTOF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_STRTOF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_strtof], [#if defined (HAVE__STRTOF) && ! defined (HAVE_STRTOF) -+# define HAVE_STRTOF 1 -+# define strtof _strtof -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_USELOCALE], [/* Define to 1 if you have the `uselocale\' function. */ -+@%:@undef HAVE_USELOCALE]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_USELOCALE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_USELOCALE$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNAN$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITE$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOS$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOT$]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_FLAGS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+acinclude.m4:181: GLIBCXX_CHECK_LINKER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_LDFLAGS$]) -+m4trace:configure.ac:357: -1- AC_SUBST([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^OPT_LDFLAGS$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SETENV]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SETENV$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITE$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOT$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNAN$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ACOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ACOSF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ASINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ASINF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2F$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATANF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_CEILF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_CEILF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_COSF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COSHF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_COSHF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FLOORF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FLOORF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10F$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINHF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINHF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_TANF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TANHF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_TANHF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEL$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFL$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE___CXA_THREAD_ATEXIT], [/* Define to 1 if you have the `__cxa_thread_atexit\' function. */ -+@%:@undef HAVE___CXA_THREAD_ATEXIT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE___CXA_THREAD_ATEXIT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE___CXA_THREAD_ATEXIT$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ALIGNED_ALLOC], [/* Define to 1 if you have the `aligned_alloc\' function. */ -+@%:@undef HAVE_ALIGNED_ALLOC]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POSIX_MEMALIGN], [/* Define to 1 if you have the `posix_memalign\' function. */ -+@%:@undef HAVE_POSIX_MEMALIGN]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MEMALIGN], [/* Define to 1 if you have the `memalign\' function. */ -+@%:@undef HAVE_MEMALIGN]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ALIGNED_MALLOC], [/* Define to 1 if you have the `_aligned_malloc\' function. */ -+@%:@undef HAVE__ALIGNED_MALLOC]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TIMESPEC_GET], [/* Define to 1 if you have the `timespec_get\' function. */ -+@%:@undef HAVE_TIMESPEC_GET]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TIMESPEC_GET]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_TIMESPEC_GET$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SOCKATMARK], [/* Define to 1 if you have the `sockatmark\' function. */ -+@%:@undef HAVE_SOCKATMARK]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SOCKATMARK]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SOCKATMARK$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_USELOCALE], [/* Define to 1 if you have the `uselocale\' function. */ -+@%:@undef HAVE_USELOCALE]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_USELOCALE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_USELOCALE$]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_FLAGS$]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_FLAGS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+acinclude.m4:181: GLIBCXX_CHECK_LINKER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_LDFLAGS$]) -+m4trace:configure.ac:357: -1- AC_SUBST([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^OPT_LDFLAGS$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNAN$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOT$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ACOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ACOSF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ASINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ASINF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATANF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_COSF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COSHF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_COSHF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINHF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINHF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_TANF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TANHF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_TANHF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2F$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10F$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOLD]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_STRTOLD$]) -+m4trace:configure.ac:357: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+../config/enable.m4:12: GCC_ENABLE is expanded from... -+../config/tls.m4:2: GCC_CHECK_TLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2748: AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2661: _AC_LINK_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2729: _AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2748: AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+../config/tls.m4:2: GCC_CHECK_TLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2748: AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2729: _AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2748: AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+../config/tls.m4:2: GCC_CHECK_TLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TLS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_TLS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TLS], [/* Define to 1 if the target supports thread-local storage. */ -+@%:@undef HAVE_TLS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITE$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_FLAGS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+acinclude.m4:181: GLIBCXX_CHECK_LINKER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_LDFLAGS$]) -+m4trace:configure.ac:357: -1- AC_SUBST([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^OPT_LDFLAGS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINF], [/* Define to 1 if you have the `isinf\' function. */ -+@%:@undef HAVE_ISINF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINF], [/* Define to 1 if you have the `_isinf\' function. */ -+@%:@undef HAVE__ISINF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinf], [#if defined (HAVE__ISINF) && ! defined (HAVE_ISINF) -+# define HAVE_ISINF 1 -+# define isinf _isinf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNAN], [/* Define to 1 if you have the `isnan\' function. */ -+@%:@undef HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNAN$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNAN], [/* Define to 1 if you have the `_isnan\' function. */ -+@%:@undef HAVE__ISNAN]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNAN$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnan], [#if defined (HAVE__ISNAN) && ! defined (HAVE_ISNAN) -+# define HAVE_ISNAN 1 -+# define isnan _isnan -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITE], [/* Define to 1 if you have the `finite\' function. */ -+@%:@undef HAVE_FINITE]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITE$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITE], [/* Define to 1 if you have the `_finite\' function. */ -+@%:@undef HAVE__FINITE]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITE$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finite], [#if defined (HAVE__FINITE) && ! defined (HAVE_FINITE) -+# define HAVE_FINITE 1 -+# define finite _finite -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOS], [/* Define to 1 if you have the `sincos\' function. */ -+@%:@undef HAVE_SINCOS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOS], [/* Define to 1 if you have the `_sincos\' function. */ -+@%:@undef HAVE__SINCOS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincos], [#if defined (HAVE__SINCOS) && ! defined (HAVE_SINCOS) -+# define HAVE_SINCOS 1 -+# define sincos _sincos -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FPCLASS], [/* Define to 1 if you have the `fpclass\' function. */ -+@%:@undef HAVE_FPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FPCLASS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FPCLASS], [/* Define to 1 if you have the `_fpclass\' function. */ -+@%:@undef HAVE__FPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FPCLASS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fpclass], [#if defined (HAVE__FPCLASS) && ! defined (HAVE_FPCLASS) -+# define HAVE_FPCLASS 1 -+# define fpclass _fpclass -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_QFPCLASS], [/* Define to 1 if you have the `qfpclass\' function. */ -+@%:@undef HAVE_QFPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QFPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_QFPCLASS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__QFPCLASS], [/* Define to 1 if you have the `_qfpclass\' function. */ -+@%:@undef HAVE__QFPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__QFPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__QFPCLASS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_qfpclass], [#if defined (HAVE__QFPCLASS) && ! defined (HAVE_QFPCLASS) -+# define HAVE_QFPCLASS 1 -+# define qfpclass _qfpclass -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOT], [/* Define to 1 if you have the `hypot\' function. */ -+@%:@undef HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOT], [/* Define to 1 if you have the `_hypot\' function. */ -+@%:@undef HAVE__HYPOT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOT$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypot], [#if defined (HAVE__HYPOT) && ! defined (HAVE_HYPOT) -+# define HAVE_HYPOT 1 -+# define hypot _hypot -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ACOSF], [/* Define to 1 if you have the `acosf\' function. */ -+@%:@undef HAVE_ACOSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ASINF], [/* Define to 1 if you have the `asinf\' function. */ -+@%:@undef HAVE_ASINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATANF], [/* Define to 1 if you have the `atanf\' function. */ -+@%:@undef HAVE_ATANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSF], [/* Define to 1 if you have the `cosf\' function. */ -+@%:@undef HAVE_COSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINF], [/* Define to 1 if you have the `sinf\' function. */ -+@%:@undef HAVE_SINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANF], [/* Define to 1 if you have the `tanf\' function. */ -+@%:@undef HAVE_TANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSHF], [/* Define to 1 if you have the `coshf\' function. */ -+@%:@undef HAVE_COSHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINHF], [/* Define to 1 if you have the `sinhf\' function. */ -+@%:@undef HAVE_SINHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANHF], [/* Define to 1 if you have the `tanhf\' function. */ -+@%:@undef HAVE_TANHF]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ACOSF], [/* Define to 1 if you have the `_acosf\' function. */ -+@%:@undef HAVE__ACOSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ASINF], [/* Define to 1 if you have the `_asinf\' function. */ -+@%:@undef HAVE__ASINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATANF], [/* Define to 1 if you have the `_atanf\' function. */ -+@%:@undef HAVE__ATANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSF], [/* Define to 1 if you have the `_cosf\' function. */ -+@%:@undef HAVE__COSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINF], [/* Define to 1 if you have the `_sinf\' function. */ -+@%:@undef HAVE__SINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANF], [/* Define to 1 if you have the `_tanf\' function. */ -+@%:@undef HAVE__TANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSHF], [/* Define to 1 if you have the `_coshf\' function. */ -+@%:@undef HAVE__COSHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINHF], [/* Define to 1 if you have the `_sinhf\' function. */ -+@%:@undef HAVE__SINHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANHF], [/* Define to 1 if you have the `_tanhf\' function. */ -+@%:@undef HAVE__TANHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_acosf], [#if defined (HAVE__ACOSF) && ! defined (HAVE_ACOSF) -+# define HAVE_ACOSF 1 -+# define acosf _acosf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_asinf], [#if defined (HAVE__ASINF) && ! defined (HAVE_ASINF) -+# define HAVE_ASINF 1 -+# define asinf _asinf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atanf], [#if defined (HAVE__ATANF) && ! defined (HAVE_ATANF) -+# define HAVE_ATANF 1 -+# define atanf _atanf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_cosf], [#if defined (HAVE__COSF) && ! defined (HAVE_COSF) -+# define HAVE_COSF 1 -+# define cosf _cosf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinf], [#if defined (HAVE__SINF) && ! defined (HAVE_SINF) -+# define HAVE_SINF 1 -+# define sinf _sinf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanf], [#if defined (HAVE__TANF) && ! defined (HAVE_TANF) -+# define HAVE_TANF 1 -+# define tanf _tanf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_coshf], [#if defined (HAVE__COSHF) && ! defined (HAVE_COSHF) -+# define HAVE_COSHF 1 -+# define coshf _coshf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinhf], [#if defined (HAVE__SINHF) && ! defined (HAVE_SINHF) -+# define HAVE_SINHF 1 -+# define sinhf _sinhf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanhf], [#if defined (HAVE__TANHF) && ! defined (HAVE_TANHF) -+# define HAVE_TANHF 1 -+# define tanhf _tanhf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_CEILF], [/* Define to 1 if you have the `ceilf\' function. */ -+@%:@undef HAVE_CEILF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FLOORF], [/* Define to 1 if you have the `floorf\' function. */ -+@%:@undef HAVE_FLOORF]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__CEILF], [/* Define to 1 if you have the `_ceilf\' function. */ -+@%:@undef HAVE__CEILF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FLOORF], [/* Define to 1 if you have the `_floorf\' function. */ -+@%:@undef HAVE__FLOORF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ceilf], [#if defined (HAVE__CEILF) && ! defined (HAVE_CEILF) -+# define HAVE_CEILF 1 -+# define ceilf _ceilf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_floorf], [#if defined (HAVE__FLOORF) && ! defined (HAVE_FLOORF) -+# define HAVE_FLOORF 1 -+# define floorf _floorf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_EXPF], [/* Define to 1 if you have the `expf\' function. */ -+@%:@undef HAVE_EXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__EXPF], [/* Define to 1 if you have the `_expf\' function. */ -+@%:@undef HAVE__EXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__EXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_expf], [#if defined (HAVE__EXPF) && ! defined (HAVE_EXPF) -+# define HAVE_EXPF 1 -+# define expf _expf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNANF], [/* Define to 1 if you have the `isnanf\' function. */ -+@%:@undef HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNANF], [/* Define to 1 if you have the `_isnanf\' function. */ -+@%:@undef HAVE__ISNANF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNANF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnanf], [#if defined (HAVE__ISNANF) && ! defined (HAVE_ISNANF) -+# define HAVE_ISNANF 1 -+# define isnanf _isnanf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINFF], [/* Define to 1 if you have the `isinff\' function. */ -+@%:@undef HAVE_ISINFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINFF], [/* Define to 1 if you have the `_isinff\' function. */ -+@%:@undef HAVE__ISINFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINFF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinff], [#if defined (HAVE__ISINFF) && ! defined (HAVE_ISINFF) -+# define HAVE_ISINFF 1 -+# define isinff _isinff -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATAN2F], [/* Define to 1 if you have the `atan2f\' function. */ -+@%:@undef HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2F$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATAN2F], [/* Define to 1 if you have the `_atan2f\' function. */ -+@%:@undef HAVE__ATAN2F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ATAN2F$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atan2f], [#if defined (HAVE__ATAN2F) && ! defined (HAVE_ATAN2F) -+# define HAVE_ATAN2F 1 -+# define atan2f _atan2f -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FABSF], [/* Define to 1 if you have the `fabsf\' function. */ -+@%:@undef HAVE_FABSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FABSF], [/* Define to 1 if you have the `_fabsf\' function. */ -+@%:@undef HAVE__FABSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FABSF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fabsf], [#if defined (HAVE__FABSF) && ! defined (HAVE_FABSF) -+# define HAVE_FABSF 1 -+# define fabsf _fabsf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FMODF], [/* Define to 1 if you have the `fmodf\' function. */ -+@%:@undef HAVE_FMODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FMODF], [/* Define to 1 if you have the `_fmodf\' function. */ -+@%:@undef HAVE__FMODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FMODF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fmodf], [#if defined (HAVE__FMODF) && ! defined (HAVE_FMODF) -+# define HAVE_FMODF 1 -+# define fmodf _fmodf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FREXPF], [/* Define to 1 if you have the `frexpf\' function. */ -+@%:@undef HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FREXPF], [/* Define to 1 if you have the `_frexpf\' function. */ -+@%:@undef HAVE__FREXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FREXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_frexpf], [#if defined (HAVE__FREXPF) && ! defined (HAVE_FREXPF) -+# define HAVE_FREXPF 1 -+# define frexpf _frexpf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOTF], [/* Define to 1 if you have the `hypotf\' function. */ -+@%:@undef HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOTF], [/* Define to 1 if you have the `_hypotf\' function. */ -+@%:@undef HAVE__HYPOTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOTF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypotf], [#if defined (HAVE__HYPOTF) && ! defined (HAVE_HYPOTF) -+# define HAVE_HYPOTF 1 -+# define hypotf _hypotf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LDEXPF], [/* Define to 1 if you have the `ldexpf\' function. */ -+@%:@undef HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LDEXPF], [/* Define to 1 if you have the `_ldexpf\' function. */ -+@%:@undef HAVE__LDEXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LDEXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ldexpf], [#if defined (HAVE__LDEXPF) && ! defined (HAVE_LDEXPF) -+# define HAVE_LDEXPF 1 -+# define ldexpf _ldexpf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOGF], [/* Define to 1 if you have the `logf\' function. */ -+@%:@undef HAVE_LOGF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOGF], [/* Define to 1 if you have the `_logf\' function. */ -+@%:@undef HAVE__LOGF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOGF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_logf], [#if defined (HAVE__LOGF) && ! defined (HAVE_LOGF) -+# define HAVE_LOGF 1 -+# define logf _logf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOG10F], [/* Define to 1 if you have the `log10f\' function. */ -+@%:@undef HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10F$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOG10F], [/* Define to 1 if you have the `_log10f\' function. */ -+@%:@undef HAVE__LOG10F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOG10F$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_log10f], [#if defined (HAVE__LOG10F) && ! defined (HAVE_LOG10F) -+# define HAVE_LOG10F 1 -+# define log10f _log10f -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODFF], [/* Define to 1 if you have the `modff\' function. */ -+@%:@undef HAVE_MODFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODFF], [/* Define to 1 if you have the `_modff\' function. */ -+@%:@undef HAVE__MODFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODFF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modff], [#if defined (HAVE__MODFF) && ! defined (HAVE_MODFF) -+# define HAVE_MODFF 1 -+# define modff _modff -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODF], [/* Define to 1 if you have the `modf\' function. */ -+@%:@undef HAVE_MODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODF], [/* Define to 1 if you have the `_modf\' function. */ -+@%:@undef HAVE__MODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modf], [#if defined (HAVE__MODF) && ! defined (HAVE_MODF) -+# define HAVE_MODF 1 -+# define modf _modf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POWF], [/* Define to 1 if you have the `powf\' function. */ -+@%:@undef HAVE_POWF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__POWF], [/* Define to 1 if you have the `_powf\' function. */ -+@%:@undef HAVE__POWF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__POWF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_powf], [#if defined (HAVE__POWF) && ! defined (HAVE_POWF) -+# define HAVE_POWF 1 -+# define powf _powf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SQRTF], [/* Define to 1 if you have the `sqrtf\' function. */ -+@%:@undef HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SQRTF], [/* Define to 1 if you have the `_sqrtf\' function. */ -+@%:@undef HAVE__SQRTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SQRTF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sqrtf], [#if defined (HAVE__SQRTF) && ! defined (HAVE_SQRTF) -+# define HAVE_SQRTF 1 -+# define sqrtf _sqrtf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOSF], [/* Define to 1 if you have the `sincosf\' function. */ -+@%:@undef HAVE_SINCOSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOSF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOSF], [/* Define to 1 if you have the `_sincosf\' function. */ -+@%:@undef HAVE__SINCOSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOSF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincosf], [#if defined (HAVE__SINCOSF) && ! defined (HAVE_SINCOSF) -+# define HAVE_SINCOSF 1 -+# define sincosf _sincosf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITEF], [/* Define to 1 if you have the `finitef\' function. */ -+@%:@undef HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITEF], [/* Define to 1 if you have the `_finitef\' function. */ -+@%:@undef HAVE__FINITEF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITEF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finitef], [#if defined (HAVE__FINITEF) && ! defined (HAVE_FINITEF) -+# define HAVE_FINITEF 1 -+# define finitef _finitef -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ACOSL], [/* Define to 1 if you have the `acosl\' function. */ -+@%:@undef HAVE_ACOSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ASINL], [/* Define to 1 if you have the `asinl\' function. */ -+@%:@undef HAVE_ASINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATANL], [/* Define to 1 if you have the `atanl\' function. */ -+@%:@undef HAVE_ATANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSL], [/* Define to 1 if you have the `cosl\' function. */ -+@%:@undef HAVE_COSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINL], [/* Define to 1 if you have the `sinl\' function. */ -+@%:@undef HAVE_SINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANL], [/* Define to 1 if you have the `tanl\' function. */ -+@%:@undef HAVE_TANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSHL], [/* Define to 1 if you have the `coshl\' function. */ -+@%:@undef HAVE_COSHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINHL], [/* Define to 1 if you have the `sinhl\' function. */ -+@%:@undef HAVE_SINHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANHL], [/* Define to 1 if you have the `tanhl\' function. */ -+@%:@undef HAVE_TANHL]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ACOSL], [/* Define to 1 if you have the `_acosl\' function. */ -+@%:@undef HAVE__ACOSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ASINL], [/* Define to 1 if you have the `_asinl\' function. */ -+@%:@undef HAVE__ASINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATANL], [/* Define to 1 if you have the `_atanl\' function. */ -+@%:@undef HAVE__ATANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSL], [/* Define to 1 if you have the `_cosl\' function. */ -+@%:@undef HAVE__COSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINL], [/* Define to 1 if you have the `_sinl\' function. */ -+@%:@undef HAVE__SINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANL], [/* Define to 1 if you have the `_tanl\' function. */ -+@%:@undef HAVE__TANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSHL], [/* Define to 1 if you have the `_coshl\' function. */ -+@%:@undef HAVE__COSHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINHL], [/* Define to 1 if you have the `_sinhl\' function. */ -+@%:@undef HAVE__SINHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANHL], [/* Define to 1 if you have the `_tanhl\' function. */ -+@%:@undef HAVE__TANHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_acosl], [#if defined (HAVE__ACOSL) && ! defined (HAVE_ACOSL) -+# define HAVE_ACOSL 1 -+# define acosl _acosl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_asinl], [#if defined (HAVE__ASINL) && ! defined (HAVE_ASINL) -+# define HAVE_ASINL 1 -+# define asinl _asinl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atanl], [#if defined (HAVE__ATANL) && ! defined (HAVE_ATANL) -+# define HAVE_ATANL 1 -+# define atanl _atanl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_cosl], [#if defined (HAVE__COSL) && ! defined (HAVE_COSL) -+# define HAVE_COSL 1 -+# define cosl _cosl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinl], [#if defined (HAVE__SINL) && ! defined (HAVE_SINL) -+# define HAVE_SINL 1 -+# define sinl _sinl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanl], [#if defined (HAVE__TANL) && ! defined (HAVE_TANL) -+# define HAVE_TANL 1 -+# define tanl _tanl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_coshl], [#if defined (HAVE__COSHL) && ! defined (HAVE_COSHL) -+# define HAVE_COSHL 1 -+# define coshl _coshl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinhl], [#if defined (HAVE__SINHL) && ! defined (HAVE_SINHL) -+# define HAVE_SINHL 1 -+# define sinhl _sinhl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanhl], [#if defined (HAVE__TANHL) && ! defined (HAVE_TANHL) -+# define HAVE_TANHL 1 -+# define tanhl _tanhl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_CEILL], [/* Define to 1 if you have the `ceill\' function. */ -+@%:@undef HAVE_CEILL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FLOORL], [/* Define to 1 if you have the `floorl\' function. */ -+@%:@undef HAVE_FLOORL]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__CEILL], [/* Define to 1 if you have the `_ceill\' function. */ -+@%:@undef HAVE__CEILL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FLOORL], [/* Define to 1 if you have the `_floorl\' function. */ -+@%:@undef HAVE__FLOORL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ceill], [#if defined (HAVE__CEILL) && ! defined (HAVE_CEILL) -+# define HAVE_CEILL 1 -+# define ceill _ceill -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_floorl], [#if defined (HAVE__FLOORL) && ! defined (HAVE_FLOORL) -+# define HAVE_FLOORL 1 -+# define floorl _floorl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNANL], [/* Define to 1 if you have the `isnanl\' function. */ -+@%:@undef HAVE_ISNANL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNANL], [/* Define to 1 if you have the `_isnanl\' function. */ -+@%:@undef HAVE__ISNANL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNANL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnanl], [#if defined (HAVE__ISNANL) && ! defined (HAVE_ISNANL) -+# define HAVE_ISNANL 1 -+# define isnanl _isnanl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINFL], [/* Define to 1 if you have the `isinfl\' function. */ -+@%:@undef HAVE_ISINFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINFL], [/* Define to 1 if you have the `_isinfl\' function. */ -+@%:@undef HAVE__ISINFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINFL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinfl], [#if defined (HAVE__ISINFL) && ! defined (HAVE_ISINFL) -+# define HAVE_ISINFL 1 -+# define isinfl _isinfl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATAN2L], [/* Define to 1 if you have the `atan2l\' function. */ -+@%:@undef HAVE_ATAN2L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2L$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATAN2L], [/* Define to 1 if you have the `_atan2l\' function. */ -+@%:@undef HAVE__ATAN2L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ATAN2L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ATAN2L$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atan2l], [#if defined (HAVE__ATAN2L) && ! defined (HAVE_ATAN2L) -+# define HAVE_ATAN2L 1 -+# define atan2l _atan2l -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_EXPL], [/* Define to 1 if you have the `expl\' function. */ -+@%:@undef HAVE_EXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__EXPL], [/* Define to 1 if you have the `_expl\' function. */ -+@%:@undef HAVE__EXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__EXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__EXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_expl], [#if defined (HAVE__EXPL) && ! defined (HAVE_EXPL) -+# define HAVE_EXPL 1 -+# define expl _expl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FABSL], [/* Define to 1 if you have the `fabsl\' function. */ -+@%:@undef HAVE_FABSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FABSL], [/* Define to 1 if you have the `_fabsl\' function. */ -+@%:@undef HAVE__FABSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FABSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FABSL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fabsl], [#if defined (HAVE__FABSL) && ! defined (HAVE_FABSL) -+# define HAVE_FABSL 1 -+# define fabsl _fabsl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FMODL], [/* Define to 1 if you have the `fmodl\' function. */ -+@%:@undef HAVE_FMODL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FMODL], [/* Define to 1 if you have the `_fmodl\' function. */ -+@%:@undef HAVE__FMODL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FMODL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FMODL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fmodl], [#if defined (HAVE__FMODL) && ! defined (HAVE_FMODL) -+# define HAVE_FMODL 1 -+# define fmodl _fmodl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FREXPL], [/* Define to 1 if you have the `frexpl\' function. */ -+@%:@undef HAVE_FREXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FREXPL], [/* Define to 1 if you have the `_frexpl\' function. */ -+@%:@undef HAVE__FREXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FREXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FREXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_frexpl], [#if defined (HAVE__FREXPL) && ! defined (HAVE_FREXPL) -+# define HAVE_FREXPL 1 -+# define frexpl _frexpl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOTL], [/* Define to 1 if you have the `hypotl\' function. */ -+@%:@undef HAVE_HYPOTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOTL], [/* Define to 1 if you have the `_hypotl\' function. */ -+@%:@undef HAVE__HYPOTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOTL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypotl], [#if defined (HAVE__HYPOTL) && ! defined (HAVE_HYPOTL) -+# define HAVE_HYPOTL 1 -+# define hypotl _hypotl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LDEXPL], [/* Define to 1 if you have the `ldexpl\' function. */ -+@%:@undef HAVE_LDEXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LDEXPL], [/* Define to 1 if you have the `_ldexpl\' function. */ -+@%:@undef HAVE__LDEXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LDEXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LDEXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ldexpl], [#if defined (HAVE__LDEXPL) && ! defined (HAVE_LDEXPL) -+# define HAVE_LDEXPL 1 -+# define ldexpl _ldexpl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOGL], [/* Define to 1 if you have the `logl\' function. */ -+@%:@undef HAVE_LOGL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOGL], [/* Define to 1 if you have the `_logl\' function. */ -+@%:@undef HAVE__LOGL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOGL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOGL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_logl], [#if defined (HAVE__LOGL) && ! defined (HAVE_LOGL) -+# define HAVE_LOGL 1 -+# define logl _logl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOG10L], [/* Define to 1 if you have the `log10l\' function. */ -+@%:@undef HAVE_LOG10L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10L$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOG10L], [/* Define to 1 if you have the `_log10l\' function. */ -+@%:@undef HAVE__LOG10L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOG10L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOG10L$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_log10l], [#if defined (HAVE__LOG10L) && ! defined (HAVE_LOG10L) -+# define HAVE_LOG10L 1 -+# define log10l _log10l -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODFL], [/* Define to 1 if you have the `modfl\' function. */ -+@%:@undef HAVE_MODFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODFL], [/* Define to 1 if you have the `_modfl\' function. */ -+@%:@undef HAVE__MODFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODFL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modfl], [#if defined (HAVE__MODFL) && ! defined (HAVE_MODFL) -+# define HAVE_MODFL 1 -+# define modfl _modfl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POWL], [/* Define to 1 if you have the `powl\' function. */ -+@%:@undef HAVE_POWL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__POWL], [/* Define to 1 if you have the `_powl\' function. */ -+@%:@undef HAVE__POWL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__POWL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__POWL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_powl], [#if defined (HAVE__POWL) && ! defined (HAVE_POWL) -+# define HAVE_POWL 1 -+# define powl _powl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SQRTL], [/* Define to 1 if you have the `sqrtl\' function. */ -+@%:@undef HAVE_SQRTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SQRTL], [/* Define to 1 if you have the `_sqrtl\' function. */ -+@%:@undef HAVE__SQRTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SQRTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SQRTL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sqrtl], [#if defined (HAVE__SQRTL) && ! defined (HAVE_SQRTL) -+# define HAVE_SQRTL 1 -+# define sqrtl _sqrtl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOSL], [/* Define to 1 if you have the `sincosl\' function. */ -+@%:@undef HAVE_SINCOSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOSL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOSL], [/* Define to 1 if you have the `_sincosl\' function. */ -+@%:@undef HAVE__SINCOSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOSL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincosl], [#if defined (HAVE__SINCOSL) && ! defined (HAVE_SINCOSL) -+# define HAVE_SINCOSL 1 -+# define sincosl _sincosl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITEL], [/* Define to 1 if you have the `finitel\' function. */ -+@%:@undef HAVE_FINITEL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITEL], [/* Define to 1 if you have the `_finitel\' function. */ -+@%:@undef HAVE__FINITEL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITEL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITEL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finitel], [#if defined (HAVE__FINITEL) && ! defined (HAVE_FINITEL) -+# define HAVE_FINITEL 1 -+# define finitel _finitel -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_AT_QUICK_EXIT], [/* Define to 1 if you have the `at_quick_exit\' function. */ -+@%:@undef HAVE_AT_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_AT_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_AT_QUICK_EXIT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_QUICK_EXIT], [/* Define to 1 if you have the `quick_exit\' function. */ -+@%:@undef HAVE_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_QUICK_EXIT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_STRTOLD], [/* Define to 1 if you have the `strtold\' function. */ -+@%:@undef HAVE_STRTOLD]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOLD]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_STRTOLD$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_strtold], [#if defined (HAVE__STRTOLD) && ! defined (HAVE_STRTOLD) -+# define HAVE_STRTOLD 1 -+# define strtold _strtold -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_STRTOF], [/* Define to 1 if you have the `strtof\' function. */ -+@%:@undef HAVE_STRTOF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_STRTOF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_strtof], [#if defined (HAVE__STRTOF) && ! defined (HAVE_STRTOF) -+# define HAVE_STRTOF 1 -+# define strtof _strtof -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_DEV_RANDOM]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^_GLIBCXX_USE_DEV_RANDOM$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_RANDOM_TR1]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^_GLIBCXX_USE_RANDOM_TR1$]) -+m4trace:configure.ac:357: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+../config/enable.m4:12: GCC_ENABLE is expanded from... -+../config/tls.m4:2: GCC_CHECK_TLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2748: AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2661: _AC_LINK_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2729: _AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2748: AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+../config/tls.m4:2: GCC_CHECK_TLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2748: AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2729: _AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2748: AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+../config/tls.m4:2: GCC_CHECK_TLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TLS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_TLS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TLS], [/* Define to 1 if the target supports thread-local storage. */ -+@%:@undef HAVE_TLS]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE___CXA_THREAD_ATEXIT_IMPL], [/* Define to 1 if you have the `__cxa_thread_atexit_impl\' function. */ -+@%:@undef HAVE___CXA_THREAD_ATEXIT_IMPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE___CXA_THREAD_ATEXIT_IMPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE___CXA_THREAD_ATEXIT_IMPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ALIGNED_ALLOC], [/* Define to 1 if you have the `aligned_alloc\' function. */ -+@%:@undef HAVE_ALIGNED_ALLOC]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POSIX_MEMALIGN], [/* Define to 1 if you have the `posix_memalign\' function. */ -+@%:@undef HAVE_POSIX_MEMALIGN]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MEMALIGN], [/* Define to 1 if you have the `memalign\' function. */ -+@%:@undef HAVE_MEMALIGN]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ALIGNED_MALLOC], [/* Define to 1 if you have the `_aligned_malloc\' function. */ -+@%:@undef HAVE__ALIGNED_MALLOC]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TIMESPEC_GET], [/* Define to 1 if you have the `timespec_get\' function. */ -+@%:@undef HAVE_TIMESPEC_GET]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TIMESPEC_GET]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_TIMESPEC_GET$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SOCKATMARK], [/* Define to 1 if you have the `sockatmark\' function. */ -+@%:@undef HAVE_SOCKATMARK]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SOCKATMARK]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SOCKATMARK$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_USELOCALE], [/* Define to 1 if you have the `uselocale\' function. */ -+@%:@undef HAVE_USELOCALE]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_USELOCALE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_USELOCALE$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+../config/iconv.m4:23: AM_ICONV_LINK is expanded from... -+../config/iconv.m4:104: AM_ICONV is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+../config/iconv.m4:23: AM_ICONV_LINK is expanded from... -+../config/iconv.m4:104: AM_ICONV is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+../config/iconv.m4:23: AM_ICONV_LINK is expanded from... -+../config/iconv.m4:104: AM_ICONV is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ICONV]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ICONV$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ICONV], [/* Define if you have the iconv() function. */ -+@%:@undef HAVE_ICONV]) -+m4trace:configure.ac:357: -1- AC_SUBST([LIBICONV]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([LIBICONV]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^LIBICONV$]) -+m4trace:configure.ac:357: -1- AC_SUBST([LTLIBICONV]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([LTLIBICONV]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^LTLIBICONV$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../config/iconv.m4:104: AM_ICONV is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([ICONV_CONST]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^ICONV_CONST$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([ICONV_CONST], [/* Define as const if the declaration of iconv() needs const. */ -+@%:@undef ICONV_CONST]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+acinclude.m4:181: GLIBCXX_CHECK_LINKER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_LDFLAGS$]) -+m4trace:configure.ac:357: -1- AC_SUBST([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^OPT_LDFLAGS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINF], [/* Define to 1 if you have the `isinf\' function. */ -+@%:@undef HAVE_ISINF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINF], [/* Define to 1 if you have the `_isinf\' function. */ -+@%:@undef HAVE__ISINF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinf], [#if defined (HAVE__ISINF) && ! defined (HAVE_ISINF) -+# define HAVE_ISINF 1 -+# define isinf _isinf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNAN], [/* Define to 1 if you have the `isnan\' function. */ -+@%:@undef HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNAN$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNAN], [/* Define to 1 if you have the `_isnan\' function. */ -+@%:@undef HAVE__ISNAN]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNAN$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnan], [#if defined (HAVE__ISNAN) && ! defined (HAVE_ISNAN) -+# define HAVE_ISNAN 1 -+# define isnan _isnan -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITE], [/* Define to 1 if you have the `finite\' function. */ -+@%:@undef HAVE_FINITE]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITE$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITE], [/* Define to 1 if you have the `_finite\' function. */ -+@%:@undef HAVE__FINITE]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITE$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finite], [#if defined (HAVE__FINITE) && ! defined (HAVE_FINITE) -+# define HAVE_FINITE 1 -+# define finite _finite -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOS], [/* Define to 1 if you have the `sincos\' function. */ -+@%:@undef HAVE_SINCOS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOS], [/* Define to 1 if you have the `_sincos\' function. */ -+@%:@undef HAVE__SINCOS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincos], [#if defined (HAVE__SINCOS) && ! defined (HAVE_SINCOS) -+# define HAVE_SINCOS 1 -+# define sincos _sincos -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FPCLASS], [/* Define to 1 if you have the `fpclass\' function. */ -+@%:@undef HAVE_FPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FPCLASS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FPCLASS], [/* Define to 1 if you have the `_fpclass\' function. */ -+@%:@undef HAVE__FPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FPCLASS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fpclass], [#if defined (HAVE__FPCLASS) && ! defined (HAVE_FPCLASS) -+# define HAVE_FPCLASS 1 -+# define fpclass _fpclass -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_QFPCLASS], [/* Define to 1 if you have the `qfpclass\' function. */ -+@%:@undef HAVE_QFPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QFPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_QFPCLASS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__QFPCLASS], [/* Define to 1 if you have the `_qfpclass\' function. */ -+@%:@undef HAVE__QFPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__QFPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__QFPCLASS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_qfpclass], [#if defined (HAVE__QFPCLASS) && ! defined (HAVE_QFPCLASS) -+# define HAVE_QFPCLASS 1 -+# define qfpclass _qfpclass -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOT], [/* Define to 1 if you have the `hypot\' function. */ -+@%:@undef HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOT], [/* Define to 1 if you have the `_hypot\' function. */ -+@%:@undef HAVE__HYPOT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOT$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypot], [#if defined (HAVE__HYPOT) && ! defined (HAVE_HYPOT) -+# define HAVE_HYPOT 1 -+# define hypot _hypot -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ACOSF], [/* Define to 1 if you have the `acosf\' function. */ -+@%:@undef HAVE_ACOSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ASINF], [/* Define to 1 if you have the `asinf\' function. */ -+@%:@undef HAVE_ASINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATANF], [/* Define to 1 if you have the `atanf\' function. */ -+@%:@undef HAVE_ATANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSF], [/* Define to 1 if you have the `cosf\' function. */ -+@%:@undef HAVE_COSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINF], [/* Define to 1 if you have the `sinf\' function. */ -+@%:@undef HAVE_SINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANF], [/* Define to 1 if you have the `tanf\' function. */ -+@%:@undef HAVE_TANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSHF], [/* Define to 1 if you have the `coshf\' function. */ -+@%:@undef HAVE_COSHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINHF], [/* Define to 1 if you have the `sinhf\' function. */ -+@%:@undef HAVE_SINHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANHF], [/* Define to 1 if you have the `tanhf\' function. */ -+@%:@undef HAVE_TANHF]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ACOSF], [/* Define to 1 if you have the `_acosf\' function. */ -+@%:@undef HAVE__ACOSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ASINF], [/* Define to 1 if you have the `_asinf\' function. */ -+@%:@undef HAVE__ASINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATANF], [/* Define to 1 if you have the `_atanf\' function. */ -+@%:@undef HAVE__ATANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSF], [/* Define to 1 if you have the `_cosf\' function. */ -+@%:@undef HAVE__COSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINF], [/* Define to 1 if you have the `_sinf\' function. */ -+@%:@undef HAVE__SINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANF], [/* Define to 1 if you have the `_tanf\' function. */ -+@%:@undef HAVE__TANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSHF], [/* Define to 1 if you have the `_coshf\' function. */ -+@%:@undef HAVE__COSHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINHF], [/* Define to 1 if you have the `_sinhf\' function. */ -+@%:@undef HAVE__SINHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANHF], [/* Define to 1 if you have the `_tanhf\' function. */ -+@%:@undef HAVE__TANHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_acosf], [#if defined (HAVE__ACOSF) && ! defined (HAVE_ACOSF) -+# define HAVE_ACOSF 1 -+# define acosf _acosf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_asinf], [#if defined (HAVE__ASINF) && ! defined (HAVE_ASINF) -+# define HAVE_ASINF 1 -+# define asinf _asinf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atanf], [#if defined (HAVE__ATANF) && ! defined (HAVE_ATANF) -+# define HAVE_ATANF 1 -+# define atanf _atanf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_cosf], [#if defined (HAVE__COSF) && ! defined (HAVE_COSF) -+# define HAVE_COSF 1 -+# define cosf _cosf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinf], [#if defined (HAVE__SINF) && ! defined (HAVE_SINF) -+# define HAVE_SINF 1 -+# define sinf _sinf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanf], [#if defined (HAVE__TANF) && ! defined (HAVE_TANF) -+# define HAVE_TANF 1 -+# define tanf _tanf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_coshf], [#if defined (HAVE__COSHF) && ! defined (HAVE_COSHF) -+# define HAVE_COSHF 1 -+# define coshf _coshf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinhf], [#if defined (HAVE__SINHF) && ! defined (HAVE_SINHF) -+# define HAVE_SINHF 1 -+# define sinhf _sinhf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanhf], [#if defined (HAVE__TANHF) && ! defined (HAVE_TANHF) -+# define HAVE_TANHF 1 -+# define tanhf _tanhf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_CEILF], [/* Define to 1 if you have the `ceilf\' function. */ -+@%:@undef HAVE_CEILF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FLOORF], [/* Define to 1 if you have the `floorf\' function. */ -+@%:@undef HAVE_FLOORF]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__CEILF], [/* Define to 1 if you have the `_ceilf\' function. */ -+@%:@undef HAVE__CEILF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FLOORF], [/* Define to 1 if you have the `_floorf\' function. */ -+@%:@undef HAVE__FLOORF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ceilf], [#if defined (HAVE__CEILF) && ! defined (HAVE_CEILF) -+# define HAVE_CEILF 1 -+# define ceilf _ceilf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_floorf], [#if defined (HAVE__FLOORF) && ! defined (HAVE_FLOORF) -+# define HAVE_FLOORF 1 -+# define floorf _floorf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_EXPF], [/* Define to 1 if you have the `expf\' function. */ -+@%:@undef HAVE_EXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__EXPF], [/* Define to 1 if you have the `_expf\' function. */ -+@%:@undef HAVE__EXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__EXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_expf], [#if defined (HAVE__EXPF) && ! defined (HAVE_EXPF) -+# define HAVE_EXPF 1 -+# define expf _expf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNANF], [/* Define to 1 if you have the `isnanf\' function. */ -+@%:@undef HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNANF], [/* Define to 1 if you have the `_isnanf\' function. */ -+@%:@undef HAVE__ISNANF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNANF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnanf], [#if defined (HAVE__ISNANF) && ! defined (HAVE_ISNANF) -+# define HAVE_ISNANF 1 -+# define isnanf _isnanf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINFF], [/* Define to 1 if you have the `isinff\' function. */ -+@%:@undef HAVE_ISINFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINFF], [/* Define to 1 if you have the `_isinff\' function. */ -+@%:@undef HAVE__ISINFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINFF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinff], [#if defined (HAVE__ISINFF) && ! defined (HAVE_ISINFF) -+# define HAVE_ISINFF 1 -+# define isinff _isinff -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATAN2F], [/* Define to 1 if you have the `atan2f\' function. */ -+@%:@undef HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2F$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATAN2F], [/* Define to 1 if you have the `_atan2f\' function. */ -+@%:@undef HAVE__ATAN2F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ATAN2F$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atan2f], [#if defined (HAVE__ATAN2F) && ! defined (HAVE_ATAN2F) -+# define HAVE_ATAN2F 1 -+# define atan2f _atan2f -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FABSF], [/* Define to 1 if you have the `fabsf\' function. */ -+@%:@undef HAVE_FABSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FABSF], [/* Define to 1 if you have the `_fabsf\' function. */ -+@%:@undef HAVE__FABSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FABSF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fabsf], [#if defined (HAVE__FABSF) && ! defined (HAVE_FABSF) -+# define HAVE_FABSF 1 -+# define fabsf _fabsf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FMODF], [/* Define to 1 if you have the `fmodf\' function. */ -+@%:@undef HAVE_FMODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FMODF], [/* Define to 1 if you have the `_fmodf\' function. */ -+@%:@undef HAVE__FMODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FMODF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fmodf], [#if defined (HAVE__FMODF) && ! defined (HAVE_FMODF) -+# define HAVE_FMODF 1 -+# define fmodf _fmodf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FREXPF], [/* Define to 1 if you have the `frexpf\' function. */ -+@%:@undef HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FREXPF], [/* Define to 1 if you have the `_frexpf\' function. */ -+@%:@undef HAVE__FREXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FREXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_frexpf], [#if defined (HAVE__FREXPF) && ! defined (HAVE_FREXPF) -+# define HAVE_FREXPF 1 -+# define frexpf _frexpf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOTF], [/* Define to 1 if you have the `hypotf\' function. */ -+@%:@undef HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOTF], [/* Define to 1 if you have the `_hypotf\' function. */ -+@%:@undef HAVE__HYPOTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOTF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypotf], [#if defined (HAVE__HYPOTF) && ! defined (HAVE_HYPOTF) -+# define HAVE_HYPOTF 1 -+# define hypotf _hypotf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LDEXPF], [/* Define to 1 if you have the `ldexpf\' function. */ -+@%:@undef HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LDEXPF], [/* Define to 1 if you have the `_ldexpf\' function. */ -+@%:@undef HAVE__LDEXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LDEXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ldexpf], [#if defined (HAVE__LDEXPF) && ! defined (HAVE_LDEXPF) -+# define HAVE_LDEXPF 1 -+# define ldexpf _ldexpf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOGF], [/* Define to 1 if you have the `logf\' function. */ -+@%:@undef HAVE_LOGF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOGF], [/* Define to 1 if you have the `_logf\' function. */ -+@%:@undef HAVE__LOGF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOGF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_logf], [#if defined (HAVE__LOGF) && ! defined (HAVE_LOGF) -+# define HAVE_LOGF 1 -+# define logf _logf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOG10F], [/* Define to 1 if you have the `log10f\' function. */ -+@%:@undef HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10F$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOG10F], [/* Define to 1 if you have the `_log10f\' function. */ -+@%:@undef HAVE__LOG10F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOG10F$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_log10f], [#if defined (HAVE__LOG10F) && ! defined (HAVE_LOG10F) -+# define HAVE_LOG10F 1 -+# define log10f _log10f -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODFF], [/* Define to 1 if you have the `modff\' function. */ -+@%:@undef HAVE_MODFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODFF], [/* Define to 1 if you have the `_modff\' function. */ -+@%:@undef HAVE__MODFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODFF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modff], [#if defined (HAVE__MODFF) && ! defined (HAVE_MODFF) -+# define HAVE_MODFF 1 -+# define modff _modff -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODF], [/* Define to 1 if you have the `modf\' function. */ -+@%:@undef HAVE_MODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODF], [/* Define to 1 if you have the `_modf\' function. */ -+@%:@undef HAVE__MODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modf], [#if defined (HAVE__MODF) && ! defined (HAVE_MODF) -+# define HAVE_MODF 1 -+# define modf _modf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POWF], [/* Define to 1 if you have the `powf\' function. */ -+@%:@undef HAVE_POWF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__POWF], [/* Define to 1 if you have the `_powf\' function. */ -+@%:@undef HAVE__POWF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__POWF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_powf], [#if defined (HAVE__POWF) && ! defined (HAVE_POWF) -+# define HAVE_POWF 1 -+# define powf _powf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SQRTF], [/* Define to 1 if you have the `sqrtf\' function. */ -+@%:@undef HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SQRTF], [/* Define to 1 if you have the `_sqrtf\' function. */ -+@%:@undef HAVE__SQRTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SQRTF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sqrtf], [#if defined (HAVE__SQRTF) && ! defined (HAVE_SQRTF) -+# define HAVE_SQRTF 1 -+# define sqrtf _sqrtf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOSF], [/* Define to 1 if you have the `sincosf\' function. */ -+@%:@undef HAVE_SINCOSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOSF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOSF], [/* Define to 1 if you have the `_sincosf\' function. */ -+@%:@undef HAVE__SINCOSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOSF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincosf], [#if defined (HAVE__SINCOSF) && ! defined (HAVE_SINCOSF) -+# define HAVE_SINCOSF 1 -+# define sincosf _sincosf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITEF], [/* Define to 1 if you have the `finitef\' function. */ -+@%:@undef HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITEF], [/* Define to 1 if you have the `_finitef\' function. */ -+@%:@undef HAVE__FINITEF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITEF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finitef], [#if defined (HAVE__FINITEF) && ! defined (HAVE_FINITEF) -+# define HAVE_FINITEF 1 -+# define finitef _finitef -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ACOSL], [/* Define to 1 if you have the `acosl\' function. */ -+@%:@undef HAVE_ACOSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ASINL], [/* Define to 1 if you have the `asinl\' function. */ -+@%:@undef HAVE_ASINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATANL], [/* Define to 1 if you have the `atanl\' function. */ -+@%:@undef HAVE_ATANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSL], [/* Define to 1 if you have the `cosl\' function. */ -+@%:@undef HAVE_COSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINL], [/* Define to 1 if you have the `sinl\' function. */ -+@%:@undef HAVE_SINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANL], [/* Define to 1 if you have the `tanl\' function. */ -+@%:@undef HAVE_TANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSHL], [/* Define to 1 if you have the `coshl\' function. */ -+@%:@undef HAVE_COSHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINHL], [/* Define to 1 if you have the `sinhl\' function. */ -+@%:@undef HAVE_SINHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANHL], [/* Define to 1 if you have the `tanhl\' function. */ -+@%:@undef HAVE_TANHL]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ACOSL], [/* Define to 1 if you have the `_acosl\' function. */ -+@%:@undef HAVE__ACOSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ASINL], [/* Define to 1 if you have the `_asinl\' function. */ -+@%:@undef HAVE__ASINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATANL], [/* Define to 1 if you have the `_atanl\' function. */ -+@%:@undef HAVE__ATANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSL], [/* Define to 1 if you have the `_cosl\' function. */ -+@%:@undef HAVE__COSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINL], [/* Define to 1 if you have the `_sinl\' function. */ -+@%:@undef HAVE__SINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANL], [/* Define to 1 if you have the `_tanl\' function. */ -+@%:@undef HAVE__TANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSHL], [/* Define to 1 if you have the `_coshl\' function. */ -+@%:@undef HAVE__COSHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINHL], [/* Define to 1 if you have the `_sinhl\' function. */ -+@%:@undef HAVE__SINHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANHL], [/* Define to 1 if you have the `_tanhl\' function. */ -+@%:@undef HAVE__TANHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_acosl], [#if defined (HAVE__ACOSL) && ! defined (HAVE_ACOSL) -+# define HAVE_ACOSL 1 -+# define acosl _acosl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_asinl], [#if defined (HAVE__ASINL) && ! defined (HAVE_ASINL) -+# define HAVE_ASINL 1 -+# define asinl _asinl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atanl], [#if defined (HAVE__ATANL) && ! defined (HAVE_ATANL) -+# define HAVE_ATANL 1 -+# define atanl _atanl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_cosl], [#if defined (HAVE__COSL) && ! defined (HAVE_COSL) -+# define HAVE_COSL 1 -+# define cosl _cosl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinl], [#if defined (HAVE__SINL) && ! defined (HAVE_SINL) -+# define HAVE_SINL 1 -+# define sinl _sinl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanl], [#if defined (HAVE__TANL) && ! defined (HAVE_TANL) -+# define HAVE_TANL 1 -+# define tanl _tanl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_coshl], [#if defined (HAVE__COSHL) && ! defined (HAVE_COSHL) -+# define HAVE_COSHL 1 -+# define coshl _coshl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinhl], [#if defined (HAVE__SINHL) && ! defined (HAVE_SINHL) -+# define HAVE_SINHL 1 -+# define sinhl _sinhl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanhl], [#if defined (HAVE__TANHL) && ! defined (HAVE_TANHL) -+# define HAVE_TANHL 1 -+# define tanhl _tanhl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_CEILL], [/* Define to 1 if you have the `ceill\' function. */ -+@%:@undef HAVE_CEILL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FLOORL], [/* Define to 1 if you have the `floorl\' function. */ -+@%:@undef HAVE_FLOORL]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__CEILL], [/* Define to 1 if you have the `_ceill\' function. */ -+@%:@undef HAVE__CEILL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FLOORL], [/* Define to 1 if you have the `_floorl\' function. */ -+@%:@undef HAVE__FLOORL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ceill], [#if defined (HAVE__CEILL) && ! defined (HAVE_CEILL) -+# define HAVE_CEILL 1 -+# define ceill _ceill -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_floorl], [#if defined (HAVE__FLOORL) && ! defined (HAVE_FLOORL) -+# define HAVE_FLOORL 1 -+# define floorl _floorl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNANL], [/* Define to 1 if you have the `isnanl\' function. */ -+@%:@undef HAVE_ISNANL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNANL], [/* Define to 1 if you have the `_isnanl\' function. */ -+@%:@undef HAVE__ISNANL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNANL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnanl], [#if defined (HAVE__ISNANL) && ! defined (HAVE_ISNANL) -+# define HAVE_ISNANL 1 -+# define isnanl _isnanl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINFL], [/* Define to 1 if you have the `isinfl\' function. */ -+@%:@undef HAVE_ISINFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINFL], [/* Define to 1 if you have the `_isinfl\' function. */ -+@%:@undef HAVE__ISINFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINFL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinfl], [#if defined (HAVE__ISINFL) && ! defined (HAVE_ISINFL) -+# define HAVE_ISINFL 1 -+# define isinfl _isinfl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATAN2L], [/* Define to 1 if you have the `atan2l\' function. */ -+@%:@undef HAVE_ATAN2L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2L$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATAN2L], [/* Define to 1 if you have the `_atan2l\' function. */ -+@%:@undef HAVE__ATAN2L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ATAN2L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ATAN2L$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atan2l], [#if defined (HAVE__ATAN2L) && ! defined (HAVE_ATAN2L) -+# define HAVE_ATAN2L 1 -+# define atan2l _atan2l -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_EXPL], [/* Define to 1 if you have the `expl\' function. */ -+@%:@undef HAVE_EXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__EXPL], [/* Define to 1 if you have the `_expl\' function. */ -+@%:@undef HAVE__EXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__EXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__EXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_expl], [#if defined (HAVE__EXPL) && ! defined (HAVE_EXPL) -+# define HAVE_EXPL 1 -+# define expl _expl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FABSL], [/* Define to 1 if you have the `fabsl\' function. */ -+@%:@undef HAVE_FABSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FABSL], [/* Define to 1 if you have the `_fabsl\' function. */ -+@%:@undef HAVE__FABSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FABSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FABSL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fabsl], [#if defined (HAVE__FABSL) && ! defined (HAVE_FABSL) -+# define HAVE_FABSL 1 -+# define fabsl _fabsl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FMODL], [/* Define to 1 if you have the `fmodl\' function. */ -+@%:@undef HAVE_FMODL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FMODL], [/* Define to 1 if you have the `_fmodl\' function. */ -+@%:@undef HAVE__FMODL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FMODL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FMODL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fmodl], [#if defined (HAVE__FMODL) && ! defined (HAVE_FMODL) -+# define HAVE_FMODL 1 -+# define fmodl _fmodl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FREXPL], [/* Define to 1 if you have the `frexpl\' function. */ -+@%:@undef HAVE_FREXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FREXPL], [/* Define to 1 if you have the `_frexpl\' function. */ -+@%:@undef HAVE__FREXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FREXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FREXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_frexpl], [#if defined (HAVE__FREXPL) && ! defined (HAVE_FREXPL) -+# define HAVE_FREXPL 1 -+# define frexpl _frexpl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOTL], [/* Define to 1 if you have the `hypotl\' function. */ -+@%:@undef HAVE_HYPOTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOTL], [/* Define to 1 if you have the `_hypotl\' function. */ -+@%:@undef HAVE__HYPOTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOTL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypotl], [#if defined (HAVE__HYPOTL) && ! defined (HAVE_HYPOTL) -+# define HAVE_HYPOTL 1 -+# define hypotl _hypotl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LDEXPL], [/* Define to 1 if you have the `ldexpl\' function. */ -+@%:@undef HAVE_LDEXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LDEXPL], [/* Define to 1 if you have the `_ldexpl\' function. */ -+@%:@undef HAVE__LDEXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LDEXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LDEXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ldexpl], [#if defined (HAVE__LDEXPL) && ! defined (HAVE_LDEXPL) -+# define HAVE_LDEXPL 1 -+# define ldexpl _ldexpl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOGL], [/* Define to 1 if you have the `logl\' function. */ -+@%:@undef HAVE_LOGL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOGL], [/* Define to 1 if you have the `_logl\' function. */ -+@%:@undef HAVE__LOGL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOGL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOGL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_logl], [#if defined (HAVE__LOGL) && ! defined (HAVE_LOGL) -+# define HAVE_LOGL 1 -+# define logl _logl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOG10L], [/* Define to 1 if you have the `log10l\' function. */ -+@%:@undef HAVE_LOG10L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10L$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOG10L], [/* Define to 1 if you have the `_log10l\' function. */ -+@%:@undef HAVE__LOG10L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOG10L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOG10L$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_log10l], [#if defined (HAVE__LOG10L) && ! defined (HAVE_LOG10L) -+# define HAVE_LOG10L 1 -+# define log10l _log10l -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODFL], [/* Define to 1 if you have the `modfl\' function. */ -+@%:@undef HAVE_MODFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODFL], [/* Define to 1 if you have the `_modfl\' function. */ -+@%:@undef HAVE__MODFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODFL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modfl], [#if defined (HAVE__MODFL) && ! defined (HAVE_MODFL) -+# define HAVE_MODFL 1 -+# define modfl _modfl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POWL], [/* Define to 1 if you have the `powl\' function. */ -+@%:@undef HAVE_POWL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__POWL], [/* Define to 1 if you have the `_powl\' function. */ -+@%:@undef HAVE__POWL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__POWL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__POWL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_powl], [#if defined (HAVE__POWL) && ! defined (HAVE_POWL) -+# define HAVE_POWL 1 -+# define powl _powl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SQRTL], [/* Define to 1 if you have the `sqrtl\' function. */ -+@%:@undef HAVE_SQRTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SQRTL], [/* Define to 1 if you have the `_sqrtl\' function. */ -+@%:@undef HAVE__SQRTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SQRTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SQRTL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sqrtl], [#if defined (HAVE__SQRTL) && ! defined (HAVE_SQRTL) -+# define HAVE_SQRTL 1 -+# define sqrtl _sqrtl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOSL], [/* Define to 1 if you have the `sincosl\' function. */ -+@%:@undef HAVE_SINCOSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOSL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOSL], [/* Define to 1 if you have the `_sincosl\' function. */ -+@%:@undef HAVE__SINCOSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOSL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincosl], [#if defined (HAVE__SINCOSL) && ! defined (HAVE_SINCOSL) -+# define HAVE_SINCOSL 1 -+# define sincosl _sincosl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITEL], [/* Define to 1 if you have the `finitel\' function. */ -+@%:@undef HAVE_FINITEL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITEL], [/* Define to 1 if you have the `_finitel\' function. */ -+@%:@undef HAVE__FINITEL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITEL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITEL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finitel], [#if defined (HAVE__FINITEL) && ! defined (HAVE_FINITEL) -+# define HAVE_FINITEL 1 -+# define finitel _finitel -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_AT_QUICK_EXIT], [/* Define to 1 if you have the `at_quick_exit\' function. */ -+@%:@undef HAVE_AT_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_AT_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_AT_QUICK_EXIT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_QUICK_EXIT], [/* Define to 1 if you have the `quick_exit\' function. */ -+@%:@undef HAVE_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_QUICK_EXIT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_STRTOLD], [/* Define to 1 if you have the `strtold\' function. */ -+@%:@undef HAVE_STRTOLD]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOLD]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_STRTOLD$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_strtold], [#if defined (HAVE__STRTOLD) && ! defined (HAVE_STRTOLD) -+# define HAVE_STRTOLD 1 -+# define strtold _strtold -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_STRTOF], [/* Define to 1 if you have the `strtof\' function. */ -+@%:@undef HAVE_STRTOF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_STRTOF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_strtof], [#if defined (HAVE__STRTOF) && ! defined (HAVE_STRTOF) -+# define HAVE_STRTOF 1 -+# define strtof _strtof -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ALIGNED_ALLOC], [/* Define to 1 if you have the `aligned_alloc\' function. */ -+@%:@undef HAVE_ALIGNED_ALLOC]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POSIX_MEMALIGN], [/* Define to 1 if you have the `posix_memalign\' function. */ -+@%:@undef HAVE_POSIX_MEMALIGN]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MEMALIGN], [/* Define to 1 if you have the `memalign\' function. */ -+@%:@undef HAVE_MEMALIGN]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ALIGNED_MALLOC], [/* Define to 1 if you have the `_aligned_malloc\' function. */ -+@%:@undef HAVE__ALIGNED_MALLOC]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__WFOPEN], [/* Define to 1 if you have the `_wfopen\' function. */ -+@%:@undef HAVE__WFOPEN]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__WFOPEN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__WFOPEN$]) -+m4trace:configure.ac:357: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+../config/enable.m4:12: GCC_ENABLE is expanded from... -+../config/tls.m4:2: GCC_CHECK_TLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2748: AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2661: _AC_LINK_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2729: _AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2748: AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+../config/tls.m4:2: GCC_CHECK_TLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2748: AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2729: _AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2748: AC_RUN_IFELSE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+../config/tls.m4:2: GCC_CHECK_TLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TLS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_TLS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TLS], [/* Define to 1 if the target supports thread-local storage. */ -+@%:@undef HAVE_TLS]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_FLAGS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+acinclude.m4:181: GLIBCXX_CHECK_LINKER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_LDFLAGS$]) -+m4trace:configure.ac:357: -1- AC_SUBST([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^OPT_LDFLAGS$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITE$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNAN$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEL$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFL$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ALIGNED_ALLOC], [/* Define to 1 if you have the `aligned_alloc\' function. */ -+@%:@undef HAVE_ALIGNED_ALLOC]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POSIX_MEMALIGN], [/* Define to 1 if you have the `posix_memalign\' function. */ -+@%:@undef HAVE_POSIX_MEMALIGN]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MEMALIGN], [/* Define to 1 if you have the `memalign\' function. */ -+@%:@undef HAVE_MEMALIGN]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ALIGNED_MALLOC], [/* Define to 1 if you have the `_aligned_malloc\' function. */ -+@%:@undef HAVE__ALIGNED_MALLOC]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TIMESPEC_GET], [/* Define to 1 if you have the `timespec_get\' function. */ -+@%:@undef HAVE_TIMESPEC_GET]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TIMESPEC_GET]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_TIMESPEC_GET$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SOCKATMARK], [/* Define to 1 if you have the `sockatmark\' function. */ -+@%:@undef HAVE_SOCKATMARK]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SOCKATMARK]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SOCKATMARK$]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_FLAGS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+acinclude.m4:181: GLIBCXX_CHECK_LINKER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_LDFLAGS$]) -+m4trace:configure.ac:357: -1- AC_SUBST([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^OPT_LDFLAGS$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_COSF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_COSL$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COSHF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_COSHF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COSHL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_COSHL$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGL$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10F$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10L$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINL$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINHF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINHF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINHL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINHL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:134: GLIBCXX_CHECK_COMPILER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_FLAGS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+acinclude.m4:181: GLIBCXX_CHECK_LINKER_FEATURES is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_LDFLAGS$]) -+m4trace:configure.ac:357: -1- AC_SUBST([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([OPT_LDFLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^OPT_LDFLAGS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINF], [/* Define to 1 if you have the `isinf\' function. */ -+@%:@undef HAVE_ISINF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINF], [/* Define to 1 if you have the `_isinf\' function. */ -+@%:@undef HAVE__ISINF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinf], [#if defined (HAVE__ISINF) && ! defined (HAVE_ISINF) -+# define HAVE_ISINF 1 -+# define isinf _isinf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNAN], [/* Define to 1 if you have the `isnan\' function. */ -+@%:@undef HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNAN$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNAN], [/* Define to 1 if you have the `_isnan\' function. */ -+@%:@undef HAVE__ISNAN]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNAN$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnan], [#if defined (HAVE__ISNAN) && ! defined (HAVE_ISNAN) -+# define HAVE_ISNAN 1 -+# define isnan _isnan -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITE], [/* Define to 1 if you have the `finite\' function. */ -+@%:@undef HAVE_FINITE]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITE$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITE], [/* Define to 1 if you have the `_finite\' function. */ -+@%:@undef HAVE__FINITE]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITE$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finite], [#if defined (HAVE__FINITE) && ! defined (HAVE_FINITE) -+# define HAVE_FINITE 1 -+# define finite _finite -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOS], [/* Define to 1 if you have the `sincos\' function. */ -+@%:@undef HAVE_SINCOS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOS], [/* Define to 1 if you have the `_sincos\' function. */ -+@%:@undef HAVE__SINCOS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincos], [#if defined (HAVE__SINCOS) && ! defined (HAVE_SINCOS) -+# define HAVE_SINCOS 1 -+# define sincos _sincos -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FPCLASS], [/* Define to 1 if you have the `fpclass\' function. */ -+@%:@undef HAVE_FPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FPCLASS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FPCLASS], [/* Define to 1 if you have the `_fpclass\' function. */ -+@%:@undef HAVE__FPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FPCLASS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fpclass], [#if defined (HAVE__FPCLASS) && ! defined (HAVE_FPCLASS) -+# define HAVE_FPCLASS 1 -+# define fpclass _fpclass -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_QFPCLASS], [/* Define to 1 if you have the `qfpclass\' function. */ -+@%:@undef HAVE_QFPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QFPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_QFPCLASS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__QFPCLASS], [/* Define to 1 if you have the `_qfpclass\' function. */ -+@%:@undef HAVE__QFPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__QFPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__QFPCLASS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_qfpclass], [#if defined (HAVE__QFPCLASS) && ! defined (HAVE_QFPCLASS) -+# define HAVE_QFPCLASS 1 -+# define qfpclass _qfpclass -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOT], [/* Define to 1 if you have the `hypot\' function. */ -+@%:@undef HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOT], [/* Define to 1 if you have the `_hypot\' function. */ -+@%:@undef HAVE__HYPOT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOT$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypot], [#if defined (HAVE__HYPOT) && ! defined (HAVE_HYPOT) -+# define HAVE_HYPOT 1 -+# define hypot _hypot -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ACOSF], [/* Define to 1 if you have the `acosf\' function. */ -+@%:@undef HAVE_ACOSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ASINF], [/* Define to 1 if you have the `asinf\' function. */ -+@%:@undef HAVE_ASINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATANF], [/* Define to 1 if you have the `atanf\' function. */ -+@%:@undef HAVE_ATANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSF], [/* Define to 1 if you have the `cosf\' function. */ -+@%:@undef HAVE_COSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINF], [/* Define to 1 if you have the `sinf\' function. */ -+@%:@undef HAVE_SINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANF], [/* Define to 1 if you have the `tanf\' function. */ -+@%:@undef HAVE_TANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSHF], [/* Define to 1 if you have the `coshf\' function. */ -+@%:@undef HAVE_COSHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINHF], [/* Define to 1 if you have the `sinhf\' function. */ -+@%:@undef HAVE_SINHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANHF], [/* Define to 1 if you have the `tanhf\' function. */ -+@%:@undef HAVE_TANHF]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ACOSF], [/* Define to 1 if you have the `_acosf\' function. */ -+@%:@undef HAVE__ACOSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ASINF], [/* Define to 1 if you have the `_asinf\' function. */ -+@%:@undef HAVE__ASINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATANF], [/* Define to 1 if you have the `_atanf\' function. */ -+@%:@undef HAVE__ATANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSF], [/* Define to 1 if you have the `_cosf\' function. */ -+@%:@undef HAVE__COSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINF], [/* Define to 1 if you have the `_sinf\' function. */ -+@%:@undef HAVE__SINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANF], [/* Define to 1 if you have the `_tanf\' function. */ -+@%:@undef HAVE__TANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSHF], [/* Define to 1 if you have the `_coshf\' function. */ -+@%:@undef HAVE__COSHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINHF], [/* Define to 1 if you have the `_sinhf\' function. */ -+@%:@undef HAVE__SINHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANHF], [/* Define to 1 if you have the `_tanhf\' function. */ -+@%:@undef HAVE__TANHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_acosf], [#if defined (HAVE__ACOSF) && ! defined (HAVE_ACOSF) -+# define HAVE_ACOSF 1 -+# define acosf _acosf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_asinf], [#if defined (HAVE__ASINF) && ! defined (HAVE_ASINF) -+# define HAVE_ASINF 1 -+# define asinf _asinf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atanf], [#if defined (HAVE__ATANF) && ! defined (HAVE_ATANF) -+# define HAVE_ATANF 1 -+# define atanf _atanf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_cosf], [#if defined (HAVE__COSF) && ! defined (HAVE_COSF) -+# define HAVE_COSF 1 -+# define cosf _cosf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinf], [#if defined (HAVE__SINF) && ! defined (HAVE_SINF) -+# define HAVE_SINF 1 -+# define sinf _sinf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanf], [#if defined (HAVE__TANF) && ! defined (HAVE_TANF) -+# define HAVE_TANF 1 -+# define tanf _tanf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_coshf], [#if defined (HAVE__COSHF) && ! defined (HAVE_COSHF) -+# define HAVE_COSHF 1 -+# define coshf _coshf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinhf], [#if defined (HAVE__SINHF) && ! defined (HAVE_SINHF) -+# define HAVE_SINHF 1 -+# define sinhf _sinhf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanhf], [#if defined (HAVE__TANHF) && ! defined (HAVE_TANHF) -+# define HAVE_TANHF 1 -+# define tanhf _tanhf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_CEILF], [/* Define to 1 if you have the `ceilf\' function. */ -+@%:@undef HAVE_CEILF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FLOORF], [/* Define to 1 if you have the `floorf\' function. */ -+@%:@undef HAVE_FLOORF]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__CEILF], [/* Define to 1 if you have the `_ceilf\' function. */ -+@%:@undef HAVE__CEILF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FLOORF], [/* Define to 1 if you have the `_floorf\' function. */ -+@%:@undef HAVE__FLOORF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ceilf], [#if defined (HAVE__CEILF) && ! defined (HAVE_CEILF) -+# define HAVE_CEILF 1 -+# define ceilf _ceilf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_floorf], [#if defined (HAVE__FLOORF) && ! defined (HAVE_FLOORF) -+# define HAVE_FLOORF 1 -+# define floorf _floorf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_EXPF], [/* Define to 1 if you have the `expf\' function. */ -+@%:@undef HAVE_EXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__EXPF], [/* Define to 1 if you have the `_expf\' function. */ -+@%:@undef HAVE__EXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__EXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_expf], [#if defined (HAVE__EXPF) && ! defined (HAVE_EXPF) -+# define HAVE_EXPF 1 -+# define expf _expf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNANF], [/* Define to 1 if you have the `isnanf\' function. */ -+@%:@undef HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNANF], [/* Define to 1 if you have the `_isnanf\' function. */ -+@%:@undef HAVE__ISNANF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNANF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnanf], [#if defined (HAVE__ISNANF) && ! defined (HAVE_ISNANF) -+# define HAVE_ISNANF 1 -+# define isnanf _isnanf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINFF], [/* Define to 1 if you have the `isinff\' function. */ -+@%:@undef HAVE_ISINFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINFF], [/* Define to 1 if you have the `_isinff\' function. */ -+@%:@undef HAVE__ISINFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINFF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinff], [#if defined (HAVE__ISINFF) && ! defined (HAVE_ISINFF) -+# define HAVE_ISINFF 1 -+# define isinff _isinff -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATAN2F], [/* Define to 1 if you have the `atan2f\' function. */ -+@%:@undef HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2F$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATAN2F], [/* Define to 1 if you have the `_atan2f\' function. */ -+@%:@undef HAVE__ATAN2F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ATAN2F$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atan2f], [#if defined (HAVE__ATAN2F) && ! defined (HAVE_ATAN2F) -+# define HAVE_ATAN2F 1 -+# define atan2f _atan2f -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FABSF], [/* Define to 1 if you have the `fabsf\' function. */ -+@%:@undef HAVE_FABSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FABSF], [/* Define to 1 if you have the `_fabsf\' function. */ -+@%:@undef HAVE__FABSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FABSF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fabsf], [#if defined (HAVE__FABSF) && ! defined (HAVE_FABSF) -+# define HAVE_FABSF 1 -+# define fabsf _fabsf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FMODF], [/* Define to 1 if you have the `fmodf\' function. */ -+@%:@undef HAVE_FMODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FMODF], [/* Define to 1 if you have the `_fmodf\' function. */ -+@%:@undef HAVE__FMODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FMODF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fmodf], [#if defined (HAVE__FMODF) && ! defined (HAVE_FMODF) -+# define HAVE_FMODF 1 -+# define fmodf _fmodf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FREXPF], [/* Define to 1 if you have the `frexpf\' function. */ -+@%:@undef HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FREXPF], [/* Define to 1 if you have the `_frexpf\' function. */ -+@%:@undef HAVE__FREXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FREXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_frexpf], [#if defined (HAVE__FREXPF) && ! defined (HAVE_FREXPF) -+# define HAVE_FREXPF 1 -+# define frexpf _frexpf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOTF], [/* Define to 1 if you have the `hypotf\' function. */ -+@%:@undef HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOTF], [/* Define to 1 if you have the `_hypotf\' function. */ -+@%:@undef HAVE__HYPOTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOTF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypotf], [#if defined (HAVE__HYPOTF) && ! defined (HAVE_HYPOTF) -+# define HAVE_HYPOTF 1 -+# define hypotf _hypotf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LDEXPF], [/* Define to 1 if you have the `ldexpf\' function. */ -+@%:@undef HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LDEXPF], [/* Define to 1 if you have the `_ldexpf\' function. */ -+@%:@undef HAVE__LDEXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LDEXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ldexpf], [#if defined (HAVE__LDEXPF) && ! defined (HAVE_LDEXPF) -+# define HAVE_LDEXPF 1 -+# define ldexpf _ldexpf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOGF], [/* Define to 1 if you have the `logf\' function. */ -+@%:@undef HAVE_LOGF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOGF], [/* Define to 1 if you have the `_logf\' function. */ -+@%:@undef HAVE__LOGF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOGF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_logf], [#if defined (HAVE__LOGF) && ! defined (HAVE_LOGF) -+# define HAVE_LOGF 1 -+# define logf _logf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOG10F], [/* Define to 1 if you have the `log10f\' function. */ -+@%:@undef HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10F$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOG10F], [/* Define to 1 if you have the `_log10f\' function. */ -+@%:@undef HAVE__LOG10F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOG10F$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_log10f], [#if defined (HAVE__LOG10F) && ! defined (HAVE_LOG10F) -+# define HAVE_LOG10F 1 -+# define log10f _log10f -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODFF], [/* Define to 1 if you have the `modff\' function. */ -+@%:@undef HAVE_MODFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODFF], [/* Define to 1 if you have the `_modff\' function. */ -+@%:@undef HAVE__MODFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODFF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modff], [#if defined (HAVE__MODFF) && ! defined (HAVE_MODFF) -+# define HAVE_MODFF 1 -+# define modff _modff -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODF], [/* Define to 1 if you have the `modf\' function. */ -+@%:@undef HAVE_MODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODF], [/* Define to 1 if you have the `_modf\' function. */ -+@%:@undef HAVE__MODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modf], [#if defined (HAVE__MODF) && ! defined (HAVE_MODF) -+# define HAVE_MODF 1 -+# define modf _modf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POWF], [/* Define to 1 if you have the `powf\' function. */ -+@%:@undef HAVE_POWF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__POWF], [/* Define to 1 if you have the `_powf\' function. */ -+@%:@undef HAVE__POWF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__POWF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_powf], [#if defined (HAVE__POWF) && ! defined (HAVE_POWF) -+# define HAVE_POWF 1 -+# define powf _powf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SQRTF], [/* Define to 1 if you have the `sqrtf\' function. */ -+@%:@undef HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SQRTF], [/* Define to 1 if you have the `_sqrtf\' function. */ -+@%:@undef HAVE__SQRTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SQRTF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sqrtf], [#if defined (HAVE__SQRTF) && ! defined (HAVE_SQRTF) -+# define HAVE_SQRTF 1 -+# define sqrtf _sqrtf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOSF], [/* Define to 1 if you have the `sincosf\' function. */ -+@%:@undef HAVE_SINCOSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOSF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOSF], [/* Define to 1 if you have the `_sincosf\' function. */ -+@%:@undef HAVE__SINCOSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOSF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincosf], [#if defined (HAVE__SINCOSF) && ! defined (HAVE_SINCOSF) -+# define HAVE_SINCOSF 1 -+# define sincosf _sincosf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITEF], [/* Define to 1 if you have the `finitef\' function. */ -+@%:@undef HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITEF], [/* Define to 1 if you have the `_finitef\' function. */ -+@%:@undef HAVE__FINITEF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITEF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finitef], [#if defined (HAVE__FINITEF) && ! defined (HAVE_FINITEF) -+# define HAVE_FINITEF 1 -+# define finitef _finitef -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ACOSL], [/* Define to 1 if you have the `acosl\' function. */ -+@%:@undef HAVE_ACOSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ASINL], [/* Define to 1 if you have the `asinl\' function. */ -+@%:@undef HAVE_ASINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATANL], [/* Define to 1 if you have the `atanl\' function. */ -+@%:@undef HAVE_ATANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSL], [/* Define to 1 if you have the `cosl\' function. */ -+@%:@undef HAVE_COSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINL], [/* Define to 1 if you have the `sinl\' function. */ -+@%:@undef HAVE_SINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANL], [/* Define to 1 if you have the `tanl\' function. */ -+@%:@undef HAVE_TANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSHL], [/* Define to 1 if you have the `coshl\' function. */ -+@%:@undef HAVE_COSHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINHL], [/* Define to 1 if you have the `sinhl\' function. */ -+@%:@undef HAVE_SINHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANHL], [/* Define to 1 if you have the `tanhl\' function. */ -+@%:@undef HAVE_TANHL]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ACOSL], [/* Define to 1 if you have the `_acosl\' function. */ -+@%:@undef HAVE__ACOSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ASINL], [/* Define to 1 if you have the `_asinl\' function. */ -+@%:@undef HAVE__ASINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATANL], [/* Define to 1 if you have the `_atanl\' function. */ -+@%:@undef HAVE__ATANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSL], [/* Define to 1 if you have the `_cosl\' function. */ -+@%:@undef HAVE__COSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINL], [/* Define to 1 if you have the `_sinl\' function. */ -+@%:@undef HAVE__SINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANL], [/* Define to 1 if you have the `_tanl\' function. */ -+@%:@undef HAVE__TANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSHL], [/* Define to 1 if you have the `_coshl\' function. */ -+@%:@undef HAVE__COSHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINHL], [/* Define to 1 if you have the `_sinhl\' function. */ -+@%:@undef HAVE__SINHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANHL], [/* Define to 1 if you have the `_tanhl\' function. */ -+@%:@undef HAVE__TANHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_acosl], [#if defined (HAVE__ACOSL) && ! defined (HAVE_ACOSL) -+# define HAVE_ACOSL 1 -+# define acosl _acosl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_asinl], [#if defined (HAVE__ASINL) && ! defined (HAVE_ASINL) -+# define HAVE_ASINL 1 -+# define asinl _asinl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atanl], [#if defined (HAVE__ATANL) && ! defined (HAVE_ATANL) -+# define HAVE_ATANL 1 -+# define atanl _atanl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_cosl], [#if defined (HAVE__COSL) && ! defined (HAVE_COSL) -+# define HAVE_COSL 1 -+# define cosl _cosl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinl], [#if defined (HAVE__SINL) && ! defined (HAVE_SINL) -+# define HAVE_SINL 1 -+# define sinl _sinl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanl], [#if defined (HAVE__TANL) && ! defined (HAVE_TANL) -+# define HAVE_TANL 1 -+# define tanl _tanl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_coshl], [#if defined (HAVE__COSHL) && ! defined (HAVE_COSHL) -+# define HAVE_COSHL 1 -+# define coshl _coshl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinhl], [#if defined (HAVE__SINHL) && ! defined (HAVE_SINHL) -+# define HAVE_SINHL 1 -+# define sinhl _sinhl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanhl], [#if defined (HAVE__TANHL) && ! defined (HAVE_TANHL) -+# define HAVE_TANHL 1 -+# define tanhl _tanhl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_CEILL], [/* Define to 1 if you have the `ceill\' function. */ -+@%:@undef HAVE_CEILL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FLOORL], [/* Define to 1 if you have the `floorl\' function. */ -+@%:@undef HAVE_FLOORL]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__CEILL], [/* Define to 1 if you have the `_ceill\' function. */ -+@%:@undef HAVE__CEILL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FLOORL], [/* Define to 1 if you have the `_floorl\' function. */ -+@%:@undef HAVE__FLOORL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ceill], [#if defined (HAVE__CEILL) && ! defined (HAVE_CEILL) -+# define HAVE_CEILL 1 -+# define ceill _ceill -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_floorl], [#if defined (HAVE__FLOORL) && ! defined (HAVE_FLOORL) -+# define HAVE_FLOORL 1 -+# define floorl _floorl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNANL], [/* Define to 1 if you have the `isnanl\' function. */ -+@%:@undef HAVE_ISNANL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNANL], [/* Define to 1 if you have the `_isnanl\' function. */ -+@%:@undef HAVE__ISNANL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNANL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnanl], [#if defined (HAVE__ISNANL) && ! defined (HAVE_ISNANL) -+# define HAVE_ISNANL 1 -+# define isnanl _isnanl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINFL], [/* Define to 1 if you have the `isinfl\' function. */ -+@%:@undef HAVE_ISINFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINFL], [/* Define to 1 if you have the `_isinfl\' function. */ -+@%:@undef HAVE__ISINFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINFL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinfl], [#if defined (HAVE__ISINFL) && ! defined (HAVE_ISINFL) -+# define HAVE_ISINFL 1 -+# define isinfl _isinfl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATAN2L], [/* Define to 1 if you have the `atan2l\' function. */ -+@%:@undef HAVE_ATAN2L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2L$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATAN2L], [/* Define to 1 if you have the `_atan2l\' function. */ -+@%:@undef HAVE__ATAN2L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ATAN2L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ATAN2L$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atan2l], [#if defined (HAVE__ATAN2L) && ! defined (HAVE_ATAN2L) -+# define HAVE_ATAN2L 1 -+# define atan2l _atan2l -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_EXPL], [/* Define to 1 if you have the `expl\' function. */ -+@%:@undef HAVE_EXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__EXPL], [/* Define to 1 if you have the `_expl\' function. */ -+@%:@undef HAVE__EXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__EXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__EXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_expl], [#if defined (HAVE__EXPL) && ! defined (HAVE_EXPL) -+# define HAVE_EXPL 1 -+# define expl _expl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FABSL], [/* Define to 1 if you have the `fabsl\' function. */ -+@%:@undef HAVE_FABSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FABSL], [/* Define to 1 if you have the `_fabsl\' function. */ -+@%:@undef HAVE__FABSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FABSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FABSL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fabsl], [#if defined (HAVE__FABSL) && ! defined (HAVE_FABSL) -+# define HAVE_FABSL 1 -+# define fabsl _fabsl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FMODL], [/* Define to 1 if you have the `fmodl\' function. */ -+@%:@undef HAVE_FMODL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FMODL], [/* Define to 1 if you have the `_fmodl\' function. */ -+@%:@undef HAVE__FMODL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FMODL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FMODL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fmodl], [#if defined (HAVE__FMODL) && ! defined (HAVE_FMODL) -+# define HAVE_FMODL 1 -+# define fmodl _fmodl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FREXPL], [/* Define to 1 if you have the `frexpl\' function. */ -+@%:@undef HAVE_FREXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FREXPL], [/* Define to 1 if you have the `_frexpl\' function. */ -+@%:@undef HAVE__FREXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FREXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FREXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_frexpl], [#if defined (HAVE__FREXPL) && ! defined (HAVE_FREXPL) -+# define HAVE_FREXPL 1 -+# define frexpl _frexpl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOTL], [/* Define to 1 if you have the `hypotl\' function. */ -+@%:@undef HAVE_HYPOTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOTL], [/* Define to 1 if you have the `_hypotl\' function. */ -+@%:@undef HAVE__HYPOTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOTL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypotl], [#if defined (HAVE__HYPOTL) && ! defined (HAVE_HYPOTL) -+# define HAVE_HYPOTL 1 -+# define hypotl _hypotl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LDEXPL], [/* Define to 1 if you have the `ldexpl\' function. */ -+@%:@undef HAVE_LDEXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LDEXPL], [/* Define to 1 if you have the `_ldexpl\' function. */ -+@%:@undef HAVE__LDEXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LDEXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LDEXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ldexpl], [#if defined (HAVE__LDEXPL) && ! defined (HAVE_LDEXPL) -+# define HAVE_LDEXPL 1 -+# define ldexpl _ldexpl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOGL], [/* Define to 1 if you have the `logl\' function. */ -+@%:@undef HAVE_LOGL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOGL], [/* Define to 1 if you have the `_logl\' function. */ -+@%:@undef HAVE__LOGL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOGL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOGL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_logl], [#if defined (HAVE__LOGL) && ! defined (HAVE_LOGL) -+# define HAVE_LOGL 1 -+# define logl _logl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOG10L], [/* Define to 1 if you have the `log10l\' function. */ -+@%:@undef HAVE_LOG10L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10L$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOG10L], [/* Define to 1 if you have the `_log10l\' function. */ -+@%:@undef HAVE__LOG10L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOG10L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOG10L$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_log10l], [#if defined (HAVE__LOG10L) && ! defined (HAVE_LOG10L) -+# define HAVE_LOG10L 1 -+# define log10l _log10l -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODFL], [/* Define to 1 if you have the `modfl\' function. */ -+@%:@undef HAVE_MODFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODFL], [/* Define to 1 if you have the `_modfl\' function. */ -+@%:@undef HAVE__MODFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODFL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modfl], [#if defined (HAVE__MODFL) && ! defined (HAVE_MODFL) -+# define HAVE_MODFL 1 -+# define modfl _modfl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POWL], [/* Define to 1 if you have the `powl\' function. */ -+@%:@undef HAVE_POWL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__POWL], [/* Define to 1 if you have the `_powl\' function. */ -+@%:@undef HAVE__POWL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__POWL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__POWL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_powl], [#if defined (HAVE__POWL) && ! defined (HAVE_POWL) -+# define HAVE_POWL 1 -+# define powl _powl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SQRTL], [/* Define to 1 if you have the `sqrtl\' function. */ -+@%:@undef HAVE_SQRTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SQRTL], [/* Define to 1 if you have the `_sqrtl\' function. */ -+@%:@undef HAVE__SQRTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SQRTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SQRTL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sqrtl], [#if defined (HAVE__SQRTL) && ! defined (HAVE_SQRTL) -+# define HAVE_SQRTL 1 -+# define sqrtl _sqrtl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOSL], [/* Define to 1 if you have the `sincosl\' function. */ -+@%:@undef HAVE_SINCOSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOSL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOSL], [/* Define to 1 if you have the `_sincosl\' function. */ -+@%:@undef HAVE__SINCOSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOSL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincosl], [#if defined (HAVE__SINCOSL) && ! defined (HAVE_SINCOSL) -+# define HAVE_SINCOSL 1 -+# define sincosl _sincosl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITEL], [/* Define to 1 if you have the `finitel\' function. */ -+@%:@undef HAVE_FINITEL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITEL], [/* Define to 1 if you have the `_finitel\' function. */ -+@%:@undef HAVE__FINITEL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITEL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITEL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finitel], [#if defined (HAVE__FINITEL) && ! defined (HAVE_FINITEL) -+# define HAVE_FINITEL 1 -+# define finitel _finitel -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_AT_QUICK_EXIT], [/* Define to 1 if you have the `at_quick_exit\' function. */ -+@%:@undef HAVE_AT_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_AT_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_AT_QUICK_EXIT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_QUICK_EXIT], [/* Define to 1 if you have the `quick_exit\' function. */ -+@%:@undef HAVE_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_QUICK_EXIT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_STRTOLD], [/* Define to 1 if you have the `strtold\' function. */ -+@%:@undef HAVE_STRTOLD]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOLD]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_STRTOLD$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_strtold], [#if defined (HAVE__STRTOLD) && ! defined (HAVE_STRTOLD) -+# define HAVE_STRTOLD 1 -+# define strtold _strtold -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_STRTOF], [/* Define to 1 if you have the `strtof\' function. */ -+@%:@undef HAVE_STRTOF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_STRTOF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_strtof], [#if defined (HAVE__STRTOF) && ! defined (HAVE_STRTOF) -+# define HAVE_STRTOF 1 -+# define strtof _strtof -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_SUBST([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- AC_SUBST_TRACE([SECTION_FLAGS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^SECTION_FLAGS$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITE$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNAN$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOS$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOSF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEL$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTL$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFL$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINF], [/* Define to 1 if you have the `isinf\' function. */ -+@%:@undef HAVE_ISINF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINF], [/* Define to 1 if you have the `_isinf\' function. */ -+@%:@undef HAVE__ISINF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinf], [#if defined (HAVE__ISINF) && ! defined (HAVE_ISINF) -+# define HAVE_ISINF 1 -+# define isinf _isinf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNAN], [/* Define to 1 if you have the `isnan\' function. */ -+@%:@undef HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNAN$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNAN], [/* Define to 1 if you have the `_isnan\' function. */ -+@%:@undef HAVE__ISNAN]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNAN]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNAN$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnan], [#if defined (HAVE__ISNAN) && ! defined (HAVE_ISNAN) -+# define HAVE_ISNAN 1 -+# define isnan _isnan -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITE], [/* Define to 1 if you have the `finite\' function. */ -+@%:@undef HAVE_FINITE]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITE$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITE], [/* Define to 1 if you have the `_finite\' function. */ -+@%:@undef HAVE__FINITE]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITE]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITE$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finite], [#if defined (HAVE__FINITE) && ! defined (HAVE_FINITE) -+# define HAVE_FINITE 1 -+# define finite _finite -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOS], [/* Define to 1 if you have the `sincos\' function. */ -+@%:@undef HAVE_SINCOS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOS], [/* Define to 1 if you have the `_sincos\' function. */ -+@%:@undef HAVE__SINCOS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincos], [#if defined (HAVE__SINCOS) && ! defined (HAVE_SINCOS) -+# define HAVE_SINCOS 1 -+# define sincos _sincos -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FPCLASS], [/* Define to 1 if you have the `fpclass\' function. */ -+@%:@undef HAVE_FPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FPCLASS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FPCLASS], [/* Define to 1 if you have the `_fpclass\' function. */ -+@%:@undef HAVE__FPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FPCLASS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fpclass], [#if defined (HAVE__FPCLASS) && ! defined (HAVE_FPCLASS) -+# define HAVE_FPCLASS 1 -+# define fpclass _fpclass -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_QFPCLASS], [/* Define to 1 if you have the `qfpclass\' function. */ -+@%:@undef HAVE_QFPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QFPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_QFPCLASS$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__QFPCLASS], [/* Define to 1 if you have the `_qfpclass\' function. */ -+@%:@undef HAVE__QFPCLASS]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__QFPCLASS]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__QFPCLASS$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_qfpclass], [#if defined (HAVE__QFPCLASS) && ! defined (HAVE_QFPCLASS) -+# define HAVE_QFPCLASS 1 -+# define qfpclass _qfpclass -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOT], [/* Define to 1 if you have the `hypot\' function. */ -+@%:@undef HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOT], [/* Define to 1 if you have the `_hypot\' function. */ -+@%:@undef HAVE__HYPOT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOT$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypot], [#if defined (HAVE__HYPOT) && ! defined (HAVE_HYPOT) -+# define HAVE_HYPOT 1 -+# define hypot _hypot -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ACOSF], [/* Define to 1 if you have the `acosf\' function. */ -+@%:@undef HAVE_ACOSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ASINF], [/* Define to 1 if you have the `asinf\' function. */ -+@%:@undef HAVE_ASINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATANF], [/* Define to 1 if you have the `atanf\' function. */ -+@%:@undef HAVE_ATANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSF], [/* Define to 1 if you have the `cosf\' function. */ -+@%:@undef HAVE_COSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINF], [/* Define to 1 if you have the `sinf\' function. */ -+@%:@undef HAVE_SINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANF], [/* Define to 1 if you have the `tanf\' function. */ -+@%:@undef HAVE_TANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSHF], [/* Define to 1 if you have the `coshf\' function. */ -+@%:@undef HAVE_COSHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINHF], [/* Define to 1 if you have the `sinhf\' function. */ -+@%:@undef HAVE_SINHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANHF], [/* Define to 1 if you have the `tanhf\' function. */ -+@%:@undef HAVE_TANHF]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ACOSF], [/* Define to 1 if you have the `_acosf\' function. */ -+@%:@undef HAVE__ACOSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ASINF], [/* Define to 1 if you have the `_asinf\' function. */ -+@%:@undef HAVE__ASINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATANF], [/* Define to 1 if you have the `_atanf\' function. */ -+@%:@undef HAVE__ATANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSF], [/* Define to 1 if you have the `_cosf\' function. */ -+@%:@undef HAVE__COSF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINF], [/* Define to 1 if you have the `_sinf\' function. */ -+@%:@undef HAVE__SINF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANF], [/* Define to 1 if you have the `_tanf\' function. */ -+@%:@undef HAVE__TANF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSHF], [/* Define to 1 if you have the `_coshf\' function. */ -+@%:@undef HAVE__COSHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINHF], [/* Define to 1 if you have the `_sinhf\' function. */ -+@%:@undef HAVE__SINHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANHF], [/* Define to 1 if you have the `_tanhf\' function. */ -+@%:@undef HAVE__TANHF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_acosf], [#if defined (HAVE__ACOSF) && ! defined (HAVE_ACOSF) -+# define HAVE_ACOSF 1 -+# define acosf _acosf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_asinf], [#if defined (HAVE__ASINF) && ! defined (HAVE_ASINF) -+# define HAVE_ASINF 1 -+# define asinf _asinf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atanf], [#if defined (HAVE__ATANF) && ! defined (HAVE_ATANF) -+# define HAVE_ATANF 1 -+# define atanf _atanf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_cosf], [#if defined (HAVE__COSF) && ! defined (HAVE_COSF) -+# define HAVE_COSF 1 -+# define cosf _cosf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinf], [#if defined (HAVE__SINF) && ! defined (HAVE_SINF) -+# define HAVE_SINF 1 -+# define sinf _sinf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanf], [#if defined (HAVE__TANF) && ! defined (HAVE_TANF) -+# define HAVE_TANF 1 -+# define tanf _tanf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_coshf], [#if defined (HAVE__COSHF) && ! defined (HAVE_COSHF) -+# define HAVE_COSHF 1 -+# define coshf _coshf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinhf], [#if defined (HAVE__SINHF) && ! defined (HAVE_SINHF) -+# define HAVE_SINHF 1 -+# define sinhf _sinhf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanhf], [#if defined (HAVE__TANHF) && ! defined (HAVE_TANHF) -+# define HAVE_TANHF 1 -+# define tanhf _tanhf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_CEILF], [/* Define to 1 if you have the `ceilf\' function. */ -+@%:@undef HAVE_CEILF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FLOORF], [/* Define to 1 if you have the `floorf\' function. */ -+@%:@undef HAVE_FLOORF]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__CEILF], [/* Define to 1 if you have the `_ceilf\' function. */ -+@%:@undef HAVE__CEILF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FLOORF], [/* Define to 1 if you have the `_floorf\' function. */ -+@%:@undef HAVE__FLOORF]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ceilf], [#if defined (HAVE__CEILF) && ! defined (HAVE_CEILF) -+# define HAVE_CEILF 1 -+# define ceilf _ceilf -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_floorf], [#if defined (HAVE__FLOORF) && ! defined (HAVE_FLOORF) -+# define HAVE_FLOORF 1 -+# define floorf _floorf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_EXPF], [/* Define to 1 if you have the `expf\' function. */ -+@%:@undef HAVE_EXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__EXPF], [/* Define to 1 if you have the `_expf\' function. */ -+@%:@undef HAVE__EXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__EXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_expf], [#if defined (HAVE__EXPF) && ! defined (HAVE_EXPF) -+# define HAVE_EXPF 1 -+# define expf _expf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNANF], [/* Define to 1 if you have the `isnanf\' function. */ -+@%:@undef HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNANF], [/* Define to 1 if you have the `_isnanf\' function. */ -+@%:@undef HAVE__ISNANF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNANF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnanf], [#if defined (HAVE__ISNANF) && ! defined (HAVE_ISNANF) -+# define HAVE_ISNANF 1 -+# define isnanf _isnanf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINFF], [/* Define to 1 if you have the `isinff\' function. */ -+@%:@undef HAVE_ISINFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINFF], [/* Define to 1 if you have the `_isinff\' function. */ -+@%:@undef HAVE__ISINFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINFF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinff], [#if defined (HAVE__ISINFF) && ! defined (HAVE_ISINFF) -+# define HAVE_ISINFF 1 -+# define isinff _isinff -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATAN2F], [/* Define to 1 if you have the `atan2f\' function. */ -+@%:@undef HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2F$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATAN2F], [/* Define to 1 if you have the `_atan2f\' function. */ -+@%:@undef HAVE__ATAN2F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ATAN2F$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atan2f], [#if defined (HAVE__ATAN2F) && ! defined (HAVE_ATAN2F) -+# define HAVE_ATAN2F 1 -+# define atan2f _atan2f -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FABSF], [/* Define to 1 if you have the `fabsf\' function. */ -+@%:@undef HAVE_FABSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FABSF], [/* Define to 1 if you have the `_fabsf\' function. */ -+@%:@undef HAVE__FABSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FABSF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fabsf], [#if defined (HAVE__FABSF) && ! defined (HAVE_FABSF) -+# define HAVE_FABSF 1 -+# define fabsf _fabsf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FMODF], [/* Define to 1 if you have the `fmodf\' function. */ -+@%:@undef HAVE_FMODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FMODF], [/* Define to 1 if you have the `_fmodf\' function. */ -+@%:@undef HAVE__FMODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FMODF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fmodf], [#if defined (HAVE__FMODF) && ! defined (HAVE_FMODF) -+# define HAVE_FMODF 1 -+# define fmodf _fmodf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FREXPF], [/* Define to 1 if you have the `frexpf\' function. */ -+@%:@undef HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FREXPF], [/* Define to 1 if you have the `_frexpf\' function. */ -+@%:@undef HAVE__FREXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FREXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_frexpf], [#if defined (HAVE__FREXPF) && ! defined (HAVE_FREXPF) -+# define HAVE_FREXPF 1 -+# define frexpf _frexpf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOTF], [/* Define to 1 if you have the `hypotf\' function. */ -+@%:@undef HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOTF], [/* Define to 1 if you have the `_hypotf\' function. */ -+@%:@undef HAVE__HYPOTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOTF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypotf], [#if defined (HAVE__HYPOTF) && ! defined (HAVE_HYPOTF) -+# define HAVE_HYPOTF 1 -+# define hypotf _hypotf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LDEXPF], [/* Define to 1 if you have the `ldexpf\' function. */ -+@%:@undef HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LDEXPF], [/* Define to 1 if you have the `_ldexpf\' function. */ -+@%:@undef HAVE__LDEXPF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LDEXPF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ldexpf], [#if defined (HAVE__LDEXPF) && ! defined (HAVE_LDEXPF) -+# define HAVE_LDEXPF 1 -+# define ldexpf _ldexpf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOGF], [/* Define to 1 if you have the `logf\' function. */ -+@%:@undef HAVE_LOGF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOGF], [/* Define to 1 if you have the `_logf\' function. */ -+@%:@undef HAVE__LOGF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOGF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_logf], [#if defined (HAVE__LOGF) && ! defined (HAVE_LOGF) -+# define HAVE_LOGF 1 -+# define logf _logf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOG10F], [/* Define to 1 if you have the `log10f\' function. */ -+@%:@undef HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10F$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOG10F], [/* Define to 1 if you have the `_log10f\' function. */ -+@%:@undef HAVE__LOG10F]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOG10F$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_log10f], [#if defined (HAVE__LOG10F) && ! defined (HAVE_LOG10F) -+# define HAVE_LOG10F 1 -+# define log10f _log10f -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODFF], [/* Define to 1 if you have the `modff\' function. */ -+@%:@undef HAVE_MODFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODFF], [/* Define to 1 if you have the `_modff\' function. */ -+@%:@undef HAVE__MODFF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODFF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modff], [#if defined (HAVE__MODFF) && ! defined (HAVE_MODFF) -+# define HAVE_MODFF 1 -+# define modff _modff -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODF], [/* Define to 1 if you have the `modf\' function. */ -+@%:@undef HAVE_MODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODF], [/* Define to 1 if you have the `_modf\' function. */ -+@%:@undef HAVE__MODF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modf], [#if defined (HAVE__MODF) && ! defined (HAVE_MODF) -+# define HAVE_MODF 1 -+# define modf _modf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POWF], [/* Define to 1 if you have the `powf\' function. */ -+@%:@undef HAVE_POWF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__POWF], [/* Define to 1 if you have the `_powf\' function. */ -+@%:@undef HAVE__POWF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__POWF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_powf], [#if defined (HAVE__POWF) && ! defined (HAVE_POWF) -+# define HAVE_POWF 1 -+# define powf _powf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SQRTF], [/* Define to 1 if you have the `sqrtf\' function. */ -+@%:@undef HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SQRTF], [/* Define to 1 if you have the `_sqrtf\' function. */ -+@%:@undef HAVE__SQRTF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SQRTF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sqrtf], [#if defined (HAVE__SQRTF) && ! defined (HAVE_SQRTF) -+# define HAVE_SQRTF 1 -+# define sqrtf _sqrtf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOSF], [/* Define to 1 if you have the `sincosf\' function. */ -+@%:@undef HAVE_SINCOSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOSF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOSF], [/* Define to 1 if you have the `_sincosf\' function. */ -+@%:@undef HAVE__SINCOSF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOSF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincosf], [#if defined (HAVE__SINCOSF) && ! defined (HAVE_SINCOSF) -+# define HAVE_SINCOSF 1 -+# define sincosf _sincosf -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITEF], [/* Define to 1 if you have the `finitef\' function. */ -+@%:@undef HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITEF], [/* Define to 1 if you have the `_finitef\' function. */ -+@%:@undef HAVE__FINITEF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITEF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITEF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finitef], [#if defined (HAVE__FINITEF) && ! defined (HAVE_FINITEF) -+# define HAVE_FINITEF 1 -+# define finitef _finitef -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ACOSL], [/* Define to 1 if you have the `acosl\' function. */ -+@%:@undef HAVE_ACOSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ASINL], [/* Define to 1 if you have the `asinl\' function. */ -+@%:@undef HAVE_ASINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATANL], [/* Define to 1 if you have the `atanl\' function. */ -+@%:@undef HAVE_ATANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSL], [/* Define to 1 if you have the `cosl\' function. */ -+@%:@undef HAVE_COSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINL], [/* Define to 1 if you have the `sinl\' function. */ -+@%:@undef HAVE_SINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANL], [/* Define to 1 if you have the `tanl\' function. */ -+@%:@undef HAVE_TANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_COSHL], [/* Define to 1 if you have the `coshl\' function. */ -+@%:@undef HAVE_COSHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINHL], [/* Define to 1 if you have the `sinhl\' function. */ -+@%:@undef HAVE_SINHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_TANHL], [/* Define to 1 if you have the `tanhl\' function. */ -+@%:@undef HAVE_TANHL]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ACOSL], [/* Define to 1 if you have the `_acosl\' function. */ -+@%:@undef HAVE__ACOSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ASINL], [/* Define to 1 if you have the `_asinl\' function. */ -+@%:@undef HAVE__ASINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATANL], [/* Define to 1 if you have the `_atanl\' function. */ -+@%:@undef HAVE__ATANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSL], [/* Define to 1 if you have the `_cosl\' function. */ -+@%:@undef HAVE__COSL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINL], [/* Define to 1 if you have the `_sinl\' function. */ -+@%:@undef HAVE__SINL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANL], [/* Define to 1 if you have the `_tanl\' function. */ -+@%:@undef HAVE__TANL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__COSHL], [/* Define to 1 if you have the `_coshl\' function. */ -+@%:@undef HAVE__COSHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINHL], [/* Define to 1 if you have the `_sinhl\' function. */ -+@%:@undef HAVE__SINHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__TANHL], [/* Define to 1 if you have the `_tanhl\' function. */ -+@%:@undef HAVE__TANHL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_acosl], [#if defined (HAVE__ACOSL) && ! defined (HAVE_ACOSL) -+# define HAVE_ACOSL 1 -+# define acosl _acosl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_asinl], [#if defined (HAVE__ASINL) && ! defined (HAVE_ASINL) -+# define HAVE_ASINL 1 -+# define asinl _asinl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atanl], [#if defined (HAVE__ATANL) && ! defined (HAVE_ATANL) -+# define HAVE_ATANL 1 -+# define atanl _atanl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_cosl], [#if defined (HAVE__COSL) && ! defined (HAVE_COSL) -+# define HAVE_COSL 1 -+# define cosl _cosl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinl], [#if defined (HAVE__SINL) && ! defined (HAVE_SINL) -+# define HAVE_SINL 1 -+# define sinl _sinl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanl], [#if defined (HAVE__TANL) && ! defined (HAVE_TANL) -+# define HAVE_TANL 1 -+# define tanl _tanl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_coshl], [#if defined (HAVE__COSHL) && ! defined (HAVE_COSHL) -+# define HAVE_COSHL 1 -+# define coshl _coshl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sinhl], [#if defined (HAVE__SINHL) && ! defined (HAVE_SINHL) -+# define HAVE_SINHL 1 -+# define sinhl _sinhl -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_tanhl], [#if defined (HAVE__TANHL) && ! defined (HAVE_TANHL) -+# define HAVE_TANHL 1 -+# define tanhl _tanhl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_CEILL], [/* Define to 1 if you have the `ceill\' function. */ -+@%:@undef HAVE_CEILL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FLOORL], [/* Define to 1 if you have the `floorl\' function. */ -+@%:@undef HAVE_FLOORL]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__CEILL], [/* Define to 1 if you have the `_ceill\' function. */ -+@%:@undef HAVE__CEILL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FLOORL], [/* Define to 1 if you have the `_floorl\' function. */ -+@%:@undef HAVE__FLOORL]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ceill], [#if defined (HAVE__CEILL) && ! defined (HAVE_CEILL) -+# define HAVE_CEILL 1 -+# define ceill _ceill -+#endif]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_floorl], [#if defined (HAVE__FLOORL) && ! defined (HAVE_FLOORL) -+# define HAVE_FLOORL 1 -+# define floorl _floorl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:79: GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISNANL], [/* Define to 1 if you have the `isnanl\' function. */ -+@%:@undef HAVE_ISNANL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISNANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISNANL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISNANL], [/* Define to 1 if you have the `_isnanl\' function. */ -+@%:@undef HAVE__ISNANL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISNANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISNANL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isnanl], [#if defined (HAVE__ISNANL) && ! defined (HAVE_ISNANL) -+# define HAVE_ISNANL 1 -+# define isnanl _isnanl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ISINFL], [/* Define to 1 if you have the `isinfl\' function. */ -+@%:@undef HAVE_ISINFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ISINFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ISINFL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ISINFL], [/* Define to 1 if you have the `_isinfl\' function. */ -+@%:@undef HAVE__ISINFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ISINFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ISINFL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_isinfl], [#if defined (HAVE__ISINFL) && ! defined (HAVE_ISINFL) -+# define HAVE_ISINFL 1 -+# define isinfl _isinfl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_ATAN2L], [/* Define to 1 if you have the `atan2l\' function. */ -+@%:@undef HAVE_ATAN2L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2L$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__ATAN2L], [/* Define to 1 if you have the `_atan2l\' function. */ -+@%:@undef HAVE__ATAN2L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ATAN2L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__ATAN2L$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_atan2l], [#if defined (HAVE__ATAN2L) && ! defined (HAVE_ATAN2L) -+# define HAVE_ATAN2L 1 -+# define atan2l _atan2l -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_EXPL], [/* Define to 1 if you have the `expl\' function. */ -+@%:@undef HAVE_EXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__EXPL], [/* Define to 1 if you have the `_expl\' function. */ -+@%:@undef HAVE__EXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__EXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__EXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_expl], [#if defined (HAVE__EXPL) && ! defined (HAVE_EXPL) -+# define HAVE_EXPL 1 -+# define expl _expl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FABSL], [/* Define to 1 if you have the `fabsl\' function. */ -+@%:@undef HAVE_FABSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FABSL], [/* Define to 1 if you have the `_fabsl\' function. */ -+@%:@undef HAVE__FABSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FABSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FABSL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fabsl], [#if defined (HAVE__FABSL) && ! defined (HAVE_FABSL) -+# define HAVE_FABSL 1 -+# define fabsl _fabsl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FMODL], [/* Define to 1 if you have the `fmodl\' function. */ -+@%:@undef HAVE_FMODL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FMODL], [/* Define to 1 if you have the `_fmodl\' function. */ -+@%:@undef HAVE__FMODL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FMODL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FMODL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_fmodl], [#if defined (HAVE__FMODL) && ! defined (HAVE_FMODL) -+# define HAVE_FMODL 1 -+# define fmodl _fmodl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FREXPL], [/* Define to 1 if you have the `frexpl\' function. */ -+@%:@undef HAVE_FREXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FREXPL], [/* Define to 1 if you have the `_frexpl\' function. */ -+@%:@undef HAVE__FREXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FREXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FREXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_frexpl], [#if defined (HAVE__FREXPL) && ! defined (HAVE_FREXPL) -+# define HAVE_FREXPL 1 -+# define frexpl _frexpl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_HYPOTL], [/* Define to 1 if you have the `hypotl\' function. */ -+@%:@undef HAVE_HYPOTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__HYPOTL], [/* Define to 1 if you have the `_hypotl\' function. */ -+@%:@undef HAVE__HYPOTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__HYPOTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__HYPOTL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_hypotl], [#if defined (HAVE__HYPOTL) && ! defined (HAVE_HYPOTL) -+# define HAVE_HYPOTL 1 -+# define hypotl _hypotl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LDEXPL], [/* Define to 1 if you have the `ldexpl\' function. */ -+@%:@undef HAVE_LDEXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LDEXPL], [/* Define to 1 if you have the `_ldexpl\' function. */ -+@%:@undef HAVE__LDEXPL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LDEXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LDEXPL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_ldexpl], [#if defined (HAVE__LDEXPL) && ! defined (HAVE_LDEXPL) -+# define HAVE_LDEXPL 1 -+# define ldexpl _ldexpl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOGL], [/* Define to 1 if you have the `logl\' function. */ -+@%:@undef HAVE_LOGL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOGL], [/* Define to 1 if you have the `_logl\' function. */ -+@%:@undef HAVE__LOGL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOGL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOGL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_logl], [#if defined (HAVE__LOGL) && ! defined (HAVE_LOGL) -+# define HAVE_LOGL 1 -+# define logl _logl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_LOG10L], [/* Define to 1 if you have the `log10l\' function. */ -+@%:@undef HAVE_LOG10L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10L$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__LOG10L], [/* Define to 1 if you have the `_log10l\' function. */ -+@%:@undef HAVE__LOG10L]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__LOG10L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__LOG10L$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_log10l], [#if defined (HAVE__LOG10L) && ! defined (HAVE_LOG10L) -+# define HAVE_LOG10L 1 -+# define log10l _log10l -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_MODFL], [/* Define to 1 if you have the `modfl\' function. */ -+@%:@undef HAVE_MODFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__MODFL], [/* Define to 1 if you have the `_modfl\' function. */ -+@%:@undef HAVE__MODFL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__MODFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__MODFL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_modfl], [#if defined (HAVE__MODFL) && ! defined (HAVE_MODFL) -+# define HAVE_MODFL 1 -+# define modfl _modfl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_POWL], [/* Define to 1 if you have the `powl\' function. */ -+@%:@undef HAVE_POWL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:118: GLIBCXX_CHECK_MATH_DECL_2 is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__POWL], [/* Define to 1 if you have the `_powl\' function. */ -+@%:@undef HAVE__POWL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__POWL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__POWL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_powl], [#if defined (HAVE__POWL) && ! defined (HAVE_POWL) -+# define HAVE_POWL 1 -+# define powl _powl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:145: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SQRTL], [/* Define to 1 if you have the `sqrtl\' function. */ -+@%:@undef HAVE_SQRTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SQRTL], [/* Define to 1 if you have the `_sqrtl\' function. */ -+@%:@undef HAVE__SQRTL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SQRTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SQRTL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sqrtl], [#if defined (HAVE__SQRTL) && ! defined (HAVE_SQRTL) -+# define HAVE_SQRTL 1 -+# define sqrtl _sqrtl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_SINCOSL], [/* Define to 1 if you have the `sincosl\' function. */ -+@%:@undef HAVE_SINCOSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINCOSL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:165: GLIBCXX_CHECK_MATH_DECL_3 is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__SINCOSL], [/* Define to 1 if you have the `_sincosl\' function. */ -+@%:@undef HAVE__SINCOSL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__SINCOSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__SINCOSL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_sincosl], [#if defined (HAVE__SINCOSL) && ! defined (HAVE_SINCOSL) -+# define HAVE_SINCOSL 1 -+# define sincosl _sincosl -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:192: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_FINITEL], [/* Define to 1 if you have the `finitel\' function. */ -+@%:@undef HAVE_FINITEL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FINITEL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FINITEL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:11: GLIBCXX_CHECK_MATH_DECL_1 is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE__FINITEL], [/* Define to 1 if you have the `_finitel\' function. */ -+@%:@undef HAVE__FINITEL]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE__FINITEL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE__FINITEL$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_finitel], [#if defined (HAVE__FINITEL) && ! defined (HAVE_FINITEL) -+# define HAVE_FINITEL 1 -+# define finitel _finitel -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:60: GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:356: GLIBCXX_CHECK_MATH_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_AT_QUICK_EXIT], [/* Define to 1 if you have the `at_quick_exit\' function. */ -+@%:@undef HAVE_AT_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_AT_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_AT_QUICK_EXIT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:245: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_1 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_QUICK_EXIT], [/* Define to 1 if you have the `quick_exit\' function. */ -+@%:@undef HAVE_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QUICK_EXIT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_QUICK_EXIT$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_STRTOLD], [/* Define to 1 if you have the `strtold\' function. */ -+@%:@undef HAVE_STRTOLD]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOLD]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_STRTOLD$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_strtold], [#if defined (HAVE__STRTOLD) && ! defined (HAVE_STRTOLD) -+# define HAVE_STRTOLD 1 -+# define strtold _strtold -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([HAVE_STRTOF], [/* Define to 1 if you have the `strtof\' function. */ -+@%:@undef HAVE_STRTOF]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRTOF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_STRTOF$]) -+m4trace:configure.ac:357: -1- AH_OUTPUT([_strtof], [#if defined (HAVE__STRTOF) && ! defined (HAVE_STRTOF) -+# define HAVE_STRTOF 1 -+# define strtof _strtof -+#endif]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+linkage.m4:37: GLIBCXX_MAYBE_UNDERSCORED_FUNCS is expanded from... -+linkage.m4:274: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2 is expanded from... -+linkage.m4:333: GLIBCXX_CHECK_STDLIB_SUPPORT is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ACOSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ACOSF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ASINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ASINF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2F$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATANF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_CEILF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_CEILF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_COSF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COSHF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_COSHF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FLOORF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FLOORF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOT]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOT$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10F]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10F$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINHF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINHF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TANF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_TANF$]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TANHF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_TANHF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ACOSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ACOSL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ASINL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ASINL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATAN2L$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_ATANL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_CEILL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_CEILL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_COSL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COSHL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_COSHL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_EXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FABSL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FLOORL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FLOORL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FMODL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10L]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOG10L$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LOGL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_POWL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINHL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SINHL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_SQRTL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TANL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_TANL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TANHL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_TANHL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTL]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTL$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_LDEXPF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_MODFF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_HYPOTF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_HYPOTF$]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:72: AC_LANG_C is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+crossconfig.m4:341: GLIBCXX_CHECK_MATH_DECL is expanded from... -+crossconfig.m4:373: GLIBCXX_CHECK_MATH_DECLS is expanded from... -+crossconfig.m4:5: GLIBCXX_CROSSCONFIG is expanded from... -+configure.ac:357: the top level]) -+m4trace:configure.ac:357: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPF]) -+m4trace:configure.ac:357: -1- m4_pattern_allow([^HAVE_FREXPF$]) -+m4trace:configure.ac:364: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ACOSL]) -+m4trace:configure.ac:364: -1- m4_pattern_allow([^HAVE_ACOSL$]) -+m4trace:configure.ac:365: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ASINL]) -+m4trace:configure.ac:365: -1- m4_pattern_allow([^HAVE_ASINL$]) -+m4trace:configure.ac:366: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATAN2L]) -+m4trace:configure.ac:366: -1- m4_pattern_allow([^HAVE_ATAN2L$]) -+m4trace:configure.ac:367: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATANL]) -+m4trace:configure.ac:367: -1- m4_pattern_allow([^HAVE_ATANL$]) -+m4trace:configure.ac:368: -1- AC_DEFINE_TRACE_LITERAL([HAVE_CEILL]) -+m4trace:configure.ac:368: -1- m4_pattern_allow([^HAVE_CEILL$]) -+m4trace:configure.ac:369: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COSL]) -+m4trace:configure.ac:369: -1- m4_pattern_allow([^HAVE_COSL$]) -+m4trace:configure.ac:370: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COSHL]) -+m4trace:configure.ac:370: -1- m4_pattern_allow([^HAVE_COSHL$]) -+m4trace:configure.ac:371: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPL]) -+m4trace:configure.ac:371: -1- m4_pattern_allow([^HAVE_EXPL$]) -+m4trace:configure.ac:372: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FABSL]) -+m4trace:configure.ac:372: -1- m4_pattern_allow([^HAVE_FABSL$]) -+m4trace:configure.ac:373: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FLOORL]) -+m4trace:configure.ac:373: -1- m4_pattern_allow([^HAVE_FLOORL$]) -+m4trace:configure.ac:374: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FMODL]) -+m4trace:configure.ac:374: -1- m4_pattern_allow([^HAVE_FMODL$]) -+m4trace:configure.ac:375: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FREXPL]) -+m4trace:configure.ac:375: -1- m4_pattern_allow([^HAVE_FREXPL$]) -+m4trace:configure.ac:376: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDEXPL]) -+m4trace:configure.ac:376: -1- m4_pattern_allow([^HAVE_LDEXPL$]) -+m4trace:configure.ac:377: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOG10L]) -+m4trace:configure.ac:377: -1- m4_pattern_allow([^HAVE_LOG10L$]) -+m4trace:configure.ac:378: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LOGL]) -+m4trace:configure.ac:378: -1- m4_pattern_allow([^HAVE_LOGL$]) -+m4trace:configure.ac:379: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MODFL]) -+m4trace:configure.ac:379: -1- m4_pattern_allow([^HAVE_MODFL$]) -+m4trace:configure.ac:380: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POWL]) -+m4trace:configure.ac:380: -1- m4_pattern_allow([^HAVE_POWL$]) -+m4trace:configure.ac:381: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINCOSL]) -+m4trace:configure.ac:381: -1- m4_pattern_allow([^HAVE_SINCOSL$]) -+m4trace:configure.ac:382: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINL]) -+m4trace:configure.ac:382: -1- m4_pattern_allow([^HAVE_SINL$]) -+m4trace:configure.ac:383: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SINHL]) -+m4trace:configure.ac:383: -1- m4_pattern_allow([^HAVE_SINHL$]) -+m4trace:configure.ac:384: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SQRTL]) -+m4trace:configure.ac:384: -1- m4_pattern_allow([^HAVE_SQRTL$]) -+m4trace:configure.ac:385: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TANL]) -+m4trace:configure.ac:385: -1- m4_pattern_allow([^HAVE_TANL$]) -+m4trace:configure.ac:386: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TANHL]) -+m4trace:configure.ac:386: -1- m4_pattern_allow([^HAVE_TANHL$]) -+m4trace:configure.ac:391: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETIPINFO]) -+m4trace:configure.ac:391: -1- m4_pattern_allow([^HAVE_GETIPINFO$]) -+m4trace:configure.ac:391: -1- AH_OUTPUT([HAVE_GETIPINFO], [/* Define if _Unwind_GetIPInfo is available. */ -+@%:@undef HAVE_GETIPINFO]) -+m4trace:configure.ac:393: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+../config/enable.m4:12: GCC_ENABLE is expanded from... -+../config/futex.m4:8: GCC_LINUX_FUTEX is expanded from... -+configure.ac:393: the top level]) -+m4trace:configure.ac:393: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LINUX_FUTEX]) -+m4trace:configure.ac:393: -1- m4_pattern_allow([^HAVE_LINUX_FUTEX$]) -+m4trace:configure.ac:393: -1- AH_OUTPUT([HAVE_LINUX_FUTEX], [/* Define if futex syscall is available. */ -+@%:@undef HAVE_LINUX_FUTEX]) -+m4trace:configure.ac:398: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_VOID_P]) -+m4trace:configure.ac:398: -1- m4_pattern_allow([^SIZEOF_VOID_P$]) -+m4trace:configure.ac:398: -1- AH_OUTPUT([SIZEOF_VOID_P], [/* The size of `void *\', as computed by sizeof. */ -+@%:@undef SIZEOF_VOID_P]) -+m4trace:configure.ac:398: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_LONG]) -+m4trace:configure.ac:398: -1- m4_pattern_allow([^SIZEOF_LONG$]) -+m4trace:configure.ac:398: -1- AH_OUTPUT([SIZEOF_LONG], [/* The size of `long\', as computed by sizeof. */ -+@%:@undef SIZEOF_LONG]) -+m4trace:configure.ac:398: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_INT]) -+m4trace:configure.ac:398: -1- m4_pattern_allow([^SIZEOF_INT$]) -+m4trace:configure.ac:398: -1- AH_OUTPUT([SIZEOF_INT], [/* The size of `int\', as computed by sizeof. */ -+@%:@undef SIZEOF_INT]) -+m4trace:configure.ac:398: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_SHORT]) -+m4trace:configure.ac:398: -1- m4_pattern_allow([^SIZEOF_SHORT$]) -+m4trace:configure.ac:398: -1- AH_OUTPUT([SIZEOF_SHORT], [/* The size of `short\', as computed by sizeof. */ -+@%:@undef SIZEOF_SHORT]) -+m4trace:configure.ac:398: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_CHAR]) -+m4trace:configure.ac:398: -1- m4_pattern_allow([^SIZEOF_CHAR$]) -+m4trace:configure.ac:398: -1- AH_OUTPUT([SIZEOF_CHAR], [/* The size of `char\', as computed by sizeof. */ -+@%:@undef SIZEOF_CHAR]) -+m4trace:configure.ac:401: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:3690: GLIBCXX_ENABLE_SYMVERS is expanded from... -+configure.ac:401: the top level]) -+m4trace:configure.ac:401: -1- AC_SUBST([CXXFILT]) -+m4trace:configure.ac:401: -1- AC_SUBST_TRACE([CXXFILT]) -+m4trace:configure.ac:401: -1- m4_pattern_allow([^CXXFILT$]) -+m4trace:configure.ac:401: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+acinclude.m4:3690: GLIBCXX_ENABLE_SYMVERS is expanded from... -+configure.ac:401: the top level]) -+m4trace:configure.ac:401: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+acinclude.m4:3690: GLIBCXX_ENABLE_SYMVERS is expanded from... -+configure.ac:401: the top level]) -+m4trace:configure.ac:401: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_SYMVER_GNU]) -+m4trace:configure.ac:401: -1- m4_pattern_allow([^_GLIBCXX_SYMVER_GNU$]) -+m4trace:configure.ac:401: -1- AH_OUTPUT([_GLIBCXX_SYMVER_GNU], [/* Define to use GNU versioning in the shared library. */ -+@%:@undef _GLIBCXX_SYMVER_GNU]) -+m4trace:configure.ac:401: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_SYMVER_GNU_NAMESPACE]) -+m4trace:configure.ac:401: -1- m4_pattern_allow([^_GLIBCXX_SYMVER_GNU_NAMESPACE$]) -+m4trace:configure.ac:401: -1- AH_OUTPUT([_GLIBCXX_SYMVER_GNU_NAMESPACE], [/* Define to use GNU namespace versioning in the shared library. */ -+@%:@undef _GLIBCXX_SYMVER_GNU_NAMESPACE]) -+m4trace:configure.ac:401: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_SYMVER_DARWIN]) -+m4trace:configure.ac:401: -1- m4_pattern_allow([^_GLIBCXX_SYMVER_DARWIN$]) -+m4trace:configure.ac:401: -1- AH_OUTPUT([_GLIBCXX_SYMVER_DARWIN], [/* Define to use darwin versioning in the shared library. */ -+@%:@undef _GLIBCXX_SYMVER_DARWIN]) -+m4trace:configure.ac:401: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_SYMVER_SUN]) -+m4trace:configure.ac:401: -1- m4_pattern_allow([^_GLIBCXX_SYMVER_SUN$]) -+m4trace:configure.ac:401: -1- AH_OUTPUT([_GLIBCXX_SYMVER_SUN], [/* Define to use Sun versioning in the shared library. */ -+@%:@undef _GLIBCXX_SYMVER_SUN]) -+m4trace:configure.ac:401: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_SYMVER]) -+m4trace:configure.ac:401: -1- m4_pattern_allow([^_GLIBCXX_SYMVER$]) -+m4trace:configure.ac:401: -1- AH_OUTPUT([_GLIBCXX_SYMVER], [/* Define to use symbol versioning in the shared library. */ -+@%:@undef _GLIBCXX_SYMVER]) -+m4trace:configure.ac:401: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:3690: GLIBCXX_ENABLE_SYMVERS is expanded from... -+configure.ac:401: the top level]) -+m4trace:configure.ac:401: -1- AC_DEFINE_TRACE_LITERAL([HAVE_AS_SYMVER_DIRECTIVE]) -+m4trace:configure.ac:401: -1- m4_pattern_allow([^HAVE_AS_SYMVER_DIRECTIVE$]) -+m4trace:configure.ac:401: -1- AH_OUTPUT([HAVE_AS_SYMVER_DIRECTIVE], [/* Define to 1 if the target assembler supports .symver directive. */ -+@%:@undef HAVE_AS_SYMVER_DIRECTIVE]) -+m4trace:configure.ac:401: -1- AC_SUBST([SYMVER_FILE]) -+m4trace:configure.ac:401: -1- AC_SUBST_TRACE([SYMVER_FILE]) -+m4trace:configure.ac:401: -1- m4_pattern_allow([^SYMVER_FILE$]) -+m4trace:configure.ac:401: -1- AC_SUBST([port_specific_symbol_files]) -+m4trace:configure.ac:401: -1- AC_SUBST_TRACE([port_specific_symbol_files]) -+m4trace:configure.ac:401: -1- m4_pattern_allow([^port_specific_symbol_files$]) -+m4trace:configure.ac:401: -2- AM_CONDITIONAL([ENABLE_SYMVERS], [test $enable_symvers != no]) -+m4trace:configure.ac:401: -2- AC_SUBST([ENABLE_SYMVERS_TRUE]) -+m4trace:configure.ac:401: -2- AC_SUBST_TRACE([ENABLE_SYMVERS_TRUE]) -+m4trace:configure.ac:401: -2- m4_pattern_allow([^ENABLE_SYMVERS_TRUE$]) -+m4trace:configure.ac:401: -2- AC_SUBST([ENABLE_SYMVERS_FALSE]) -+m4trace:configure.ac:401: -2- AC_SUBST_TRACE([ENABLE_SYMVERS_FALSE]) -+m4trace:configure.ac:401: -2- m4_pattern_allow([^ENABLE_SYMVERS_FALSE$]) -+m4trace:configure.ac:401: -2- _AM_SUBST_NOTMAKE([ENABLE_SYMVERS_TRUE]) -+m4trace:configure.ac:401: -2- _AM_SUBST_NOTMAKE([ENABLE_SYMVERS_FALSE]) -+m4trace:configure.ac:401: -2- AM_CONDITIONAL([ENABLE_SYMVERS_GNU], [test $enable_symvers = gnu]) -+m4trace:configure.ac:401: -2- AC_SUBST([ENABLE_SYMVERS_GNU_TRUE]) -+m4trace:configure.ac:401: -2- AC_SUBST_TRACE([ENABLE_SYMVERS_GNU_TRUE]) -+m4trace:configure.ac:401: -2- m4_pattern_allow([^ENABLE_SYMVERS_GNU_TRUE$]) -+m4trace:configure.ac:401: -2- AC_SUBST([ENABLE_SYMVERS_GNU_FALSE]) -+m4trace:configure.ac:401: -2- AC_SUBST_TRACE([ENABLE_SYMVERS_GNU_FALSE]) -+m4trace:configure.ac:401: -2- m4_pattern_allow([^ENABLE_SYMVERS_GNU_FALSE$]) -+m4trace:configure.ac:401: -2- _AM_SUBST_NOTMAKE([ENABLE_SYMVERS_GNU_TRUE]) -+m4trace:configure.ac:401: -2- _AM_SUBST_NOTMAKE([ENABLE_SYMVERS_GNU_FALSE]) -+m4trace:configure.ac:401: -2- AM_CONDITIONAL([ENABLE_SYMVERS_GNU_NAMESPACE], [test $enable_symvers = gnu-versioned-namespace]) -+m4trace:configure.ac:401: -2- AC_SUBST([ENABLE_SYMVERS_GNU_NAMESPACE_TRUE]) -+m4trace:configure.ac:401: -2- AC_SUBST_TRACE([ENABLE_SYMVERS_GNU_NAMESPACE_TRUE]) -+m4trace:configure.ac:401: -2- m4_pattern_allow([^ENABLE_SYMVERS_GNU_NAMESPACE_TRUE$]) -+m4trace:configure.ac:401: -2- AC_SUBST([ENABLE_SYMVERS_GNU_NAMESPACE_FALSE]) -+m4trace:configure.ac:401: -2- AC_SUBST_TRACE([ENABLE_SYMVERS_GNU_NAMESPACE_FALSE]) -+m4trace:configure.ac:401: -2- m4_pattern_allow([^ENABLE_SYMVERS_GNU_NAMESPACE_FALSE$]) -+m4trace:configure.ac:401: -2- _AM_SUBST_NOTMAKE([ENABLE_SYMVERS_GNU_NAMESPACE_TRUE]) -+m4trace:configure.ac:401: -2- _AM_SUBST_NOTMAKE([ENABLE_SYMVERS_GNU_NAMESPACE_FALSE]) -+m4trace:configure.ac:401: -2- AM_CONDITIONAL([ENABLE_SYMVERS_DARWIN], [test $enable_symvers = darwin]) -+m4trace:configure.ac:401: -2- AC_SUBST([ENABLE_SYMVERS_DARWIN_TRUE]) -+m4trace:configure.ac:401: -2- AC_SUBST_TRACE([ENABLE_SYMVERS_DARWIN_TRUE]) -+m4trace:configure.ac:401: -2- m4_pattern_allow([^ENABLE_SYMVERS_DARWIN_TRUE$]) -+m4trace:configure.ac:401: -2- AC_SUBST([ENABLE_SYMVERS_DARWIN_FALSE]) -+m4trace:configure.ac:401: -2- AC_SUBST_TRACE([ENABLE_SYMVERS_DARWIN_FALSE]) -+m4trace:configure.ac:401: -2- m4_pattern_allow([^ENABLE_SYMVERS_DARWIN_FALSE$]) -+m4trace:configure.ac:401: -2- _AM_SUBST_NOTMAKE([ENABLE_SYMVERS_DARWIN_TRUE]) -+m4trace:configure.ac:401: -2- _AM_SUBST_NOTMAKE([ENABLE_SYMVERS_DARWIN_FALSE]) -+m4trace:configure.ac:401: -2- AM_CONDITIONAL([ENABLE_SYMVERS_SUN], [test $enable_symvers = sun]) -+m4trace:configure.ac:401: -2- AC_SUBST([ENABLE_SYMVERS_SUN_TRUE]) -+m4trace:configure.ac:401: -2- AC_SUBST_TRACE([ENABLE_SYMVERS_SUN_TRUE]) -+m4trace:configure.ac:401: -2- m4_pattern_allow([^ENABLE_SYMVERS_SUN_TRUE$]) -+m4trace:configure.ac:401: -2- AC_SUBST([ENABLE_SYMVERS_SUN_FALSE]) -+m4trace:configure.ac:401: -2- AC_SUBST_TRACE([ENABLE_SYMVERS_SUN_FALSE]) -+m4trace:configure.ac:401: -2- m4_pattern_allow([^ENABLE_SYMVERS_SUN_FALSE$]) -+m4trace:configure.ac:401: -2- _AM_SUBST_NOTMAKE([ENABLE_SYMVERS_SUN_TRUE]) -+m4trace:configure.ac:401: -2- _AM_SUBST_NOTMAKE([ENABLE_SYMVERS_SUN_FALSE]) -+m4trace:configure.ac:401: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT]) -+m4trace:configure.ac:401: -1- m4_pattern_allow([^HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT$]) -+m4trace:configure.ac:401: -1- AH_OUTPUT([HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT], [/* Define to 1 if the target runtime linker supports binding the same symbol -+ to different versions. */ -+@%:@undef HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT]) -+m4trace:configure.ac:401: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:3690: GLIBCXX_ENABLE_SYMVERS is expanded from... -+configure.ac:401: the top level]) -+m4trace:configure.ac:401: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_SIZE_T_IS_UINT]) -+m4trace:configure.ac:401: -1- m4_pattern_allow([^_GLIBCXX_SIZE_T_IS_UINT$]) -+m4trace:configure.ac:401: -1- AH_OUTPUT([_GLIBCXX_SIZE_T_IS_UINT], [/* Define if size_t is unsigned int. */ -+@%:@undef _GLIBCXX_SIZE_T_IS_UINT]) -+m4trace:configure.ac:401: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:3690: GLIBCXX_ENABLE_SYMVERS is expanded from... -+configure.ac:401: the top level]) -+m4trace:configure.ac:401: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_PTRDIFF_T_IS_INT]) -+m4trace:configure.ac:401: -1- m4_pattern_allow([^_GLIBCXX_PTRDIFF_T_IS_INT$]) -+m4trace:configure.ac:401: -1- AH_OUTPUT([_GLIBCXX_PTRDIFF_T_IS_INT], [/* Define if ptrdiff_t is int. */ -+@%:@undef _GLIBCXX_PTRDIFF_T_IS_INT]) -+m4trace:configure.ac:402: -1- AC_SUBST([libtool_VERSION]) -+m4trace:configure.ac:402: -1- AC_SUBST_TRACE([libtool_VERSION]) -+m4trace:configure.ac:402: -1- m4_pattern_allow([^libtool_VERSION$]) -+m4trace:configure.ac:404: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:3648: GLIBCXX_ENABLE_LIBSTDCXX_VISIBILITY is expanded from... -+configure.ac:404: the top level]) -+m4trace:configure.ac:404: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:3648: GLIBCXX_ENABLE_LIBSTDCXX_VISIBILITY is expanded from... -+configure.ac:404: the top level]) -+m4trace:configure.ac:404: -2- AM_CONDITIONAL([ENABLE_VISIBILITY], [test $enable_libstdcxx_visibility = yes]) -+m4trace:configure.ac:404: -2- AC_SUBST([ENABLE_VISIBILITY_TRUE]) -+m4trace:configure.ac:404: -2- AC_SUBST_TRACE([ENABLE_VISIBILITY_TRUE]) -+m4trace:configure.ac:404: -2- m4_pattern_allow([^ENABLE_VISIBILITY_TRUE$]) -+m4trace:configure.ac:404: -2- AC_SUBST([ENABLE_VISIBILITY_FALSE]) -+m4trace:configure.ac:404: -2- AC_SUBST_TRACE([ENABLE_VISIBILITY_FALSE]) -+m4trace:configure.ac:404: -2- m4_pattern_allow([^ENABLE_VISIBILITY_FALSE$]) -+m4trace:configure.ac:404: -2- _AM_SUBST_NOTMAKE([ENABLE_VISIBILITY_TRUE]) -+m4trace:configure.ac:404: -2- _AM_SUBST_NOTMAKE([ENABLE_VISIBILITY_FALSE]) -+m4trace:configure.ac:406: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:4449: GLIBCXX_ENABLE_LIBSTDCXX_DUAL_ABI is expanded from... -+configure.ac:406: the top level]) -+m4trace:configure.ac:406: -2- AM_CONDITIONAL([ENABLE_DUAL_ABI], [test $enable_libstdcxx_dual_abi = yes]) -+m4trace:configure.ac:406: -2- AC_SUBST([ENABLE_DUAL_ABI_TRUE]) -+m4trace:configure.ac:406: -2- AC_SUBST_TRACE([ENABLE_DUAL_ABI_TRUE]) -+m4trace:configure.ac:406: -2- m4_pattern_allow([^ENABLE_DUAL_ABI_TRUE$]) -+m4trace:configure.ac:406: -2- AC_SUBST([ENABLE_DUAL_ABI_FALSE]) -+m4trace:configure.ac:406: -2- AC_SUBST_TRACE([ENABLE_DUAL_ABI_FALSE]) -+m4trace:configure.ac:406: -2- m4_pattern_allow([^ENABLE_DUAL_ABI_FALSE$]) -+m4trace:configure.ac:406: -2- _AM_SUBST_NOTMAKE([ENABLE_DUAL_ABI_TRUE]) -+m4trace:configure.ac:406: -2- _AM_SUBST_NOTMAKE([ENABLE_DUAL_ABI_FALSE]) -+m4trace:configure.ac:407: -1- AC_SUBST([glibcxx_cxx98_abi]) -+m4trace:configure.ac:407: -1- AC_SUBST_TRACE([glibcxx_cxx98_abi]) -+m4trace:configure.ac:407: -1- m4_pattern_allow([^glibcxx_cxx98_abi$]) -+m4trace:configure.ac:407: -2- AM_CONDITIONAL([ENABLE_CXX11_ABI], [test $glibcxx_cxx11_abi = 1]) -+m4trace:configure.ac:407: -2- AC_SUBST([ENABLE_CXX11_ABI_TRUE]) -+m4trace:configure.ac:407: -2- AC_SUBST_TRACE([ENABLE_CXX11_ABI_TRUE]) -+m4trace:configure.ac:407: -2- m4_pattern_allow([^ENABLE_CXX11_ABI_TRUE$]) -+m4trace:configure.ac:407: -2- AC_SUBST([ENABLE_CXX11_ABI_FALSE]) -+m4trace:configure.ac:407: -2- AC_SUBST_TRACE([ENABLE_CXX11_ABI_FALSE]) -+m4trace:configure.ac:407: -2- m4_pattern_allow([^ENABLE_CXX11_ABI_FALSE$]) -+m4trace:configure.ac:407: -2- _AM_SUBST_NOTMAKE([ENABLE_CXX11_ABI_TRUE]) -+m4trace:configure.ac:407: -2- _AM_SUBST_NOTMAKE([ENABLE_CXX11_ABI_FALSE]) -+m4trace:configure.ac:420: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+configure.ac:420: the top level]) -+m4trace:configure.ac:426: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_LONG_DOUBLE_COMPAT]) -+m4trace:configure.ac:426: -1- m4_pattern_allow([^_GLIBCXX_LONG_DOUBLE_COMPAT$]) -+m4trace:configure.ac:426: -1- AH_OUTPUT([_GLIBCXX_LONG_DOUBLE_COMPAT], [/* Define if compatibility should be provided for -mlong-double-64. */ -+@%:@undef _GLIBCXX_LONG_DOUBLE_COMPAT]) -+m4trace:configure.ac:438: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+configure.ac:438: the top level]) -+m4trace:configure.ac:452: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_LONG_DOUBLE_ALT128_COMPAT]) -+m4trace:configure.ac:452: -1- m4_pattern_allow([^_GLIBCXX_LONG_DOUBLE_ALT128_COMPAT$]) -+m4trace:configure.ac:452: -1- AH_OUTPUT([_GLIBCXX_LONG_DOUBLE_ALT128_COMPAT], [/* Define if compatibility should be provided for alternative 128-bit long -+ double formats. */ -+@%:@undef _GLIBCXX_LONG_DOUBLE_ALT128_COMPAT]) -+m4trace:configure.ac:463: -1- AC_SUBST([LONG_DOUBLE_COMPAT_FLAGS]) -+m4trace:configure.ac:463: -1- AC_SUBST_TRACE([LONG_DOUBLE_COMPAT_FLAGS]) -+m4trace:configure.ac:463: -1- m4_pattern_allow([^LONG_DOUBLE_COMPAT_FLAGS$]) -+m4trace:configure.ac:464: -1- AC_SUBST([LONG_DOUBLE_128_FLAGS]) -+m4trace:configure.ac:464: -1- AC_SUBST_TRACE([LONG_DOUBLE_128_FLAGS]) -+m4trace:configure.ac:464: -1- m4_pattern_allow([^LONG_DOUBLE_128_FLAGS$]) -+m4trace:configure.ac:465: -1- AC_SUBST([LONG_DOUBLE_ALT128_COMPAT_FLAGS]) -+m4trace:configure.ac:465: -1- AC_SUBST_TRACE([LONG_DOUBLE_ALT128_COMPAT_FLAGS]) -+m4trace:configure.ac:465: -1- m4_pattern_allow([^LONG_DOUBLE_ALT128_COMPAT_FLAGS$]) -+m4trace:configure.ac:466: -2- AM_CONDITIONAL([GLIBCXX_LDBL_COMPAT], [test $ac_ldbl_compat = yes]) -+m4trace:configure.ac:466: -2- AC_SUBST([GLIBCXX_LDBL_COMPAT_TRUE]) -+m4trace:configure.ac:466: -2- AC_SUBST_TRACE([GLIBCXX_LDBL_COMPAT_TRUE]) -+m4trace:configure.ac:466: -2- m4_pattern_allow([^GLIBCXX_LDBL_COMPAT_TRUE$]) -+m4trace:configure.ac:466: -2- AC_SUBST([GLIBCXX_LDBL_COMPAT_FALSE]) -+m4trace:configure.ac:466: -2- AC_SUBST_TRACE([GLIBCXX_LDBL_COMPAT_FALSE]) -+m4trace:configure.ac:466: -2- m4_pattern_allow([^GLIBCXX_LDBL_COMPAT_FALSE$]) -+m4trace:configure.ac:466: -2- _AM_SUBST_NOTMAKE([GLIBCXX_LDBL_COMPAT_TRUE]) -+m4trace:configure.ac:466: -2- _AM_SUBST_NOTMAKE([GLIBCXX_LDBL_COMPAT_FALSE]) -+m4trace:configure.ac:467: -2- AM_CONDITIONAL([GLIBCXX_LDBL_ALT128_COMPAT], [test $ac_ldbl_alt128_compat = yes]) -+m4trace:configure.ac:467: -2- AC_SUBST([GLIBCXX_LDBL_ALT128_COMPAT_TRUE]) -+m4trace:configure.ac:467: -2- AC_SUBST_TRACE([GLIBCXX_LDBL_ALT128_COMPAT_TRUE]) -+m4trace:configure.ac:467: -2- m4_pattern_allow([^GLIBCXX_LDBL_ALT128_COMPAT_TRUE$]) -+m4trace:configure.ac:467: -2- AC_SUBST([GLIBCXX_LDBL_ALT128_COMPAT_FALSE]) -+m4trace:configure.ac:467: -2- AC_SUBST_TRACE([GLIBCXX_LDBL_ALT128_COMPAT_FALSE]) -+m4trace:configure.ac:467: -2- m4_pattern_allow([^GLIBCXX_LDBL_ALT128_COMPAT_FALSE$]) -+m4trace:configure.ac:467: -2- _AM_SUBST_NOTMAKE([GLIBCXX_LDBL_ALT128_COMPAT_TRUE]) -+m4trace:configure.ac:467: -2- _AM_SUBST_NOTMAKE([GLIBCXX_LDBL_ALT128_COMPAT_FALSE]) -+m4trace:configure.ac:470: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/hwcaps.m4:8: GCC_CHECK_ASSEMBLER_HWCAP is expanded from... -+configure.ac:470: the top level]) -+m4trace:configure.ac:470: -1- AC_SUBST([HWCAP_CFLAGS]) -+m4trace:configure.ac:470: -1- AC_SUBST_TRACE([HWCAP_CFLAGS]) -+m4trace:configure.ac:470: -1- m4_pattern_allow([^HWCAP_CFLAGS$]) -+m4trace:configure.ac:473: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4088: GLIBCXX_CHECK_X86_RDRAND is expanded from... -+configure.ac:473: the top level]) -+m4trace:configure.ac:473: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_X86_RDRAND]) -+m4trace:configure.ac:473: -1- m4_pattern_allow([^_GLIBCXX_X86_RDRAND$]) -+m4trace:configure.ac:473: -1- AH_OUTPUT([_GLIBCXX_X86_RDRAND], [/* Defined if as can handle rdrand. */ -+@%:@undef _GLIBCXX_X86_RDRAND]) -+m4trace:configure.ac:475: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4107: GLIBCXX_CHECK_X86_RDSEED is expanded from... -+configure.ac:475: the top level]) -+m4trace:configure.ac:475: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_X86_RDSEED]) -+m4trace:configure.ac:475: -1- m4_pattern_allow([^_GLIBCXX_X86_RDSEED$]) -+m4trace:configure.ac:475: -1- AH_OUTPUT([_GLIBCXX_X86_RDSEED], [/* Defined if as can handle rdseed. */ -+@%:@undef _GLIBCXX_X86_RDSEED]) -+m4trace:configure.ac:478: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:4877: GLIBCXX_CHECK_GETENTROPY is expanded from... -+configure.ac:478: the top level]) -+m4trace:configure.ac:478: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:4877: GLIBCXX_CHECK_GETENTROPY is expanded from... -+configure.ac:478: the top level]) -+m4trace:configure.ac:478: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4877: GLIBCXX_CHECK_GETENTROPY is expanded from... -+configure.ac:478: the top level]) -+m4trace:configure.ac:478: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4877: GLIBCXX_CHECK_GETENTROPY is expanded from... -+configure.ac:478: the top level]) -+m4trace:configure.ac:478: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETENTROPY]) -+m4trace:configure.ac:478: -1- m4_pattern_allow([^HAVE_GETENTROPY$]) -+m4trace:configure.ac:478: -1- AH_OUTPUT([HAVE_GETENTROPY], [/* Define if getentropy is available in <unistd.h>. */ -+@%:@undef HAVE_GETENTROPY]) -+m4trace:configure.ac:478: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:4877: GLIBCXX_CHECK_GETENTROPY is expanded from... -+configure.ac:478: the top level]) -+m4trace:configure.ac:479: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:4898: GLIBCXX_CHECK_ARC4RANDOM is expanded from... -+configure.ac:479: the top level]) -+m4trace:configure.ac:479: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:4898: GLIBCXX_CHECK_ARC4RANDOM is expanded from... -+configure.ac:479: the top level]) -+m4trace:configure.ac:479: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4898: GLIBCXX_CHECK_ARC4RANDOM is expanded from... -+configure.ac:479: the top level]) -+m4trace:configure.ac:479: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4898: GLIBCXX_CHECK_ARC4RANDOM is expanded from... -+configure.ac:479: the top level]) -+m4trace:configure.ac:479: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ARC4RANDOM]) -+m4trace:configure.ac:479: -1- m4_pattern_allow([^HAVE_ARC4RANDOM$]) -+m4trace:configure.ac:479: -1- AH_OUTPUT([HAVE_ARC4RANDOM], [/* Define if arc4random is available in <stdlib.h>. */ -+@%:@undef HAVE_ARC4RANDOM]) -+m4trace:configure.ac:479: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:4898: GLIBCXX_CHECK_ARC4RANDOM is expanded from... -+configure.ac:479: the top level]) -+m4trace:configure.ac:482: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:331: GLIBCXX_CHECK_SETRLIMIT is expanded from... -+acinclude.m4:548: GLIBCXX_CONFIGURE_TESTSUITE is expanded from... -+configure.ac:482: the top level]) -+m4trace:configure.ac:482: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:331: GLIBCXX_CHECK_SETRLIMIT is expanded from... -+acinclude.m4:548: GLIBCXX_CONFIGURE_TESTSUITE is expanded from... -+configure.ac:482: the top level]) -+m4trace:configure.ac:482: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */ -+@%:@undef HAVE_UNISTD_H]) -+m4trace:configure.ac:482: -1- AH_OUTPUT([HAVE_SYS_TIME_H], [/* Define to 1 if you have the <sys/time.h> header file. */ -+@%:@undef HAVE_SYS_TIME_H]) -+m4trace:configure.ac:482: -1- AH_OUTPUT([HAVE_SYS_RESOURCE_H], [/* Define to 1 if you have the <sys/resource.h> header file. */ -+@%:@undef HAVE_SYS_RESOURCE_H]) -+m4trace:configure.ac:482: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:316: GLIBCXX_CHECK_SETRLIMIT_ancilliary is expanded from... -+acinclude.m4:331: GLIBCXX_CHECK_SETRLIMIT is expanded from... -+acinclude.m4:548: GLIBCXX_CONFIGURE_TESTSUITE is expanded from... -+configure.ac:482: the top level]) -+m4trace:configure.ac:482: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIMIT_DATA]) -+m4trace:configure.ac:482: -1- m4_pattern_allow([^HAVE_LIMIT_DATA$]) -+m4trace:configure.ac:482: -1- AH_OUTPUT([HAVE_LIMIT_DATA], [/* Only used in build directory testsuite_hooks.h. */ -+@%:@undef HAVE_LIMIT_DATA]) -+m4trace:configure.ac:482: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:316: GLIBCXX_CHECK_SETRLIMIT_ancilliary is expanded from... -+acinclude.m4:331: GLIBCXX_CHECK_SETRLIMIT is expanded from... -+acinclude.m4:548: GLIBCXX_CONFIGURE_TESTSUITE is expanded from... -+configure.ac:482: the top level]) -+m4trace:configure.ac:482: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIMIT_RSS]) -+m4trace:configure.ac:482: -1- m4_pattern_allow([^HAVE_LIMIT_RSS$]) -+m4trace:configure.ac:482: -1- AH_OUTPUT([HAVE_LIMIT_RSS], [/* Only used in build directory testsuite_hooks.h. */ -+@%:@undef HAVE_LIMIT_RSS]) -+m4trace:configure.ac:482: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:316: GLIBCXX_CHECK_SETRLIMIT_ancilliary is expanded from... -+acinclude.m4:331: GLIBCXX_CHECK_SETRLIMIT is expanded from... -+acinclude.m4:548: GLIBCXX_CONFIGURE_TESTSUITE is expanded from... -+configure.ac:482: the top level]) -+m4trace:configure.ac:482: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIMIT_VMEM]) -+m4trace:configure.ac:482: -1- m4_pattern_allow([^HAVE_LIMIT_VMEM$]) -+m4trace:configure.ac:482: -1- AH_OUTPUT([HAVE_LIMIT_VMEM], [/* Only used in build directory testsuite_hooks.h. */ -+@%:@undef HAVE_LIMIT_VMEM]) -+m4trace:configure.ac:482: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:316: GLIBCXX_CHECK_SETRLIMIT_ancilliary is expanded from... -+acinclude.m4:331: GLIBCXX_CHECK_SETRLIMIT is expanded from... -+acinclude.m4:548: GLIBCXX_CONFIGURE_TESTSUITE is expanded from... -+configure.ac:482: the top level]) -+m4trace:configure.ac:482: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIMIT_AS]) -+m4trace:configure.ac:482: -1- m4_pattern_allow([^HAVE_LIMIT_AS$]) -+m4trace:configure.ac:482: -1- AH_OUTPUT([HAVE_LIMIT_AS], [/* Only used in build directory testsuite_hooks.h. */ -+@%:@undef HAVE_LIMIT_AS]) -+m4trace:configure.ac:482: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:316: GLIBCXX_CHECK_SETRLIMIT_ancilliary is expanded from... -+acinclude.m4:331: GLIBCXX_CHECK_SETRLIMIT is expanded from... -+acinclude.m4:548: GLIBCXX_CONFIGURE_TESTSUITE is expanded from... -+configure.ac:482: the top level]) -+m4trace:configure.ac:482: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIMIT_FSIZE]) -+m4trace:configure.ac:482: -1- m4_pattern_allow([^HAVE_LIMIT_FSIZE$]) -+m4trace:configure.ac:482: -1- AH_OUTPUT([HAVE_LIMIT_FSIZE], [/* Only used in build directory testsuite_hooks.h. */ -+@%:@undef HAVE_LIMIT_FSIZE]) -+m4trace:configure.ac:482: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:331: GLIBCXX_CHECK_SETRLIMIT is expanded from... -+acinclude.m4:548: GLIBCXX_CONFIGURE_TESTSUITE is expanded from... -+configure.ac:482: the top level]) -+m4trace:configure.ac:482: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_RES_LIMITS]) -+m4trace:configure.ac:482: -1- m4_pattern_allow([^_GLIBCXX_RES_LIMITS$]) -+m4trace:configure.ac:482: -1- AH_OUTPUT([_GLIBCXX_RES_LIMITS], [/* Define if using setrlimit to set resource limits during "make check" */ -+@%:@undef _GLIBCXX_RES_LIMITS]) -+m4trace:configure.ac:482: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:331: GLIBCXX_CHECK_SETRLIMIT is expanded from... -+acinclude.m4:548: GLIBCXX_CONFIGURE_TESTSUITE is expanded from... -+configure.ac:482: the top level]) -+m4trace:configure.ac:482: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:304: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_3 is expanded from... -+acinclude.m4:548: GLIBCXX_CONFIGURE_TESTSUITE is expanded from... -+configure.ac:482: the top level]) -+m4trace:configure.ac:482: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:304: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_3 is expanded from... -+acinclude.m4:548: GLIBCXX_CONFIGURE_TESTSUITE is expanded from... -+configure.ac:482: the top level]) -+m4trace:configure.ac:482: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:304: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_3 is expanded from... -+acinclude.m4:548: GLIBCXX_CONFIGURE_TESTSUITE is expanded from... -+configure.ac:482: the top level]) -+m4trace:configure.ac:482: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+linkage.m4:304: GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_3 is expanded from... -+acinclude.m4:548: GLIBCXX_CONFIGURE_TESTSUITE is expanded from... -+configure.ac:482: the top level]) -+m4trace:configure.ac:482: -1- AH_OUTPUT([HAVE_SETENV], [/* Define to 1 if you have the `setenv\' function. */ -+@%:@undef HAVE_SETENV]) -+m4trace:configure.ac:482: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SETENV]) -+m4trace:configure.ac:482: -1- m4_pattern_allow([^HAVE_SETENV$]) -+m4trace:configure.ac:482: -1- AC_SUBST([baseline_dir]) -+m4trace:configure.ac:482: -1- AC_SUBST_TRACE([baseline_dir]) -+m4trace:configure.ac:482: -1- m4_pattern_allow([^baseline_dir$]) -+m4trace:configure.ac:482: -1- AC_SUBST([baseline_subdir_switch]) -+m4trace:configure.ac:482: -1- AC_SUBST_TRACE([baseline_subdir_switch]) -+m4trace:configure.ac:482: -1- m4_pattern_allow([^baseline_subdir_switch$]) -+m4trace:configure.ac:485: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:3950: GLIBCXX_CHECK_GTHREADS is expanded from... -+configure.ac:485: the top level]) -+m4trace:configure.ac:485: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:3950: GLIBCXX_CHECK_GTHREADS is expanded from... -+configure.ac:485: the top level]) -+m4trace:configure.ac:485: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:3950: GLIBCXX_CHECK_GTHREADS is expanded from... -+configure.ac:485: the top level]) -+m4trace:configure.ac:485: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:3950: GLIBCXX_CHECK_GTHREADS is expanded from... -+configure.ac:485: the top level]) -+m4trace:configure.ac:485: -1- AC_DEFINE_TRACE_LITERAL([_GTHREAD_USE_MUTEX_TIMEDLOCK]) -+m4trace:configure.ac:485: -1- m4_pattern_allow([^_GTHREAD_USE_MUTEX_TIMEDLOCK$]) -+m4trace:configure.ac:485: -1- AH_OUTPUT([_GTHREAD_USE_MUTEX_TIMEDLOCK], [/* Define to 1 if mutex_timedlock is available. */ -+@%:@undef _GTHREAD_USE_MUTEX_TIMEDLOCK]) -+m4trace:configure.ac:485: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:3950: GLIBCXX_CHECK_GTHREADS is expanded from... -+configure.ac:485: the top level]) -+m4trace:configure.ac:485: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_HAS_GTHREADS]) -+m4trace:configure.ac:485: -1- m4_pattern_allow([^_GLIBCXX_HAS_GTHREADS$]) -+m4trace:configure.ac:485: -1- AH_OUTPUT([_GLIBCXX_HAS_GTHREADS], [/* Define if gthreads library is available. */ -+@%:@undef _GLIBCXX_HAS_GTHREADS]) -+m4trace:configure.ac:485: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:3950: GLIBCXX_CHECK_GTHREADS is expanded from... -+configure.ac:485: the top level]) -+m4trace:configure.ac:485: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_PTHREAD_RWLOCK_T]) -+m4trace:configure.ac:485: -1- m4_pattern_allow([^_GLIBCXX_USE_PTHREAD_RWLOCK_T$]) -+m4trace:configure.ac:485: -1- AH_OUTPUT([_GLIBCXX_USE_PTHREAD_RWLOCK_T], [/* Define if POSIX read/write locks are available in <gthr.h>. */ -+@%:@undef _GLIBCXX_USE_PTHREAD_RWLOCK_T]) -+m4trace:configure.ac:485: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/headers.m4:129: _AC_CHECK_HEADER_MONGREL is expanded from... -+../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from... -+acinclude.m4:3950: GLIBCXX_CHECK_GTHREADS is expanded from... -+configure.ac:485: the top level]) -+m4trace:configure.ac:485: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POSIX_SEMAPHORE]) -+m4trace:configure.ac:485: -1- m4_pattern_allow([^HAVE_POSIX_SEMAPHORE$]) -+m4trace:configure.ac:485: -1- AH_OUTPUT([HAVE_POSIX_SEMAPHORE], [/* Define to 1 if POSIX Semaphores with sem_timedwait are available in -+ <semaphore.h>. */ -+@%:@undef HAVE_POSIX_SEMAPHORE]) -+m4trace:configure.ac:485: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:3950: GLIBCXX_CHECK_GTHREADS is expanded from... -+configure.ac:485: the top level]) -+m4trace:configure.ac:488: -1- AH_OUTPUT([HAVE_FCNTL_H], [/* Define to 1 if you have the <fcntl.h> header file. */ -+@%:@undef HAVE_FCNTL_H]) -+m4trace:configure.ac:488: -1- AH_OUTPUT([HAVE_DIRENT_H], [/* Define to 1 if you have the <dirent.h> header file. */ -+@%:@undef HAVE_DIRENT_H]) -+m4trace:configure.ac:488: -1- AH_OUTPUT([HAVE_SYS_STATVFS_H], [/* Define to 1 if you have the <sys/statvfs.h> header file. */ -+@%:@undef HAVE_SYS_STATVFS_H]) -+m4trace:configure.ac:488: -1- AH_OUTPUT([HAVE_UTIME_H], [/* Define to 1 if you have the <utime.h> header file. */ -+@%:@undef HAVE_UTIME_H]) -+m4trace:configure.ac:489: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:4502: GLIBCXX_ENABLE_FILESYSTEM_TS is expanded from... -+configure.ac:489: the top level]) -+m4trace:configure.ac:489: -2- AM_CONDITIONAL([ENABLE_FILESYSTEM_TS], [test $enable_libstdcxx_filesystem_ts = yes]) -+m4trace:configure.ac:489: -2- AC_SUBST([ENABLE_FILESYSTEM_TS_TRUE]) -+m4trace:configure.ac:489: -2- AC_SUBST_TRACE([ENABLE_FILESYSTEM_TS_TRUE]) -+m4trace:configure.ac:489: -2- m4_pattern_allow([^ENABLE_FILESYSTEM_TS_TRUE$]) -+m4trace:configure.ac:489: -2- AC_SUBST([ENABLE_FILESYSTEM_TS_FALSE]) -+m4trace:configure.ac:489: -2- AC_SUBST_TRACE([ENABLE_FILESYSTEM_TS_FALSE]) -+m4trace:configure.ac:489: -2- m4_pattern_allow([^ENABLE_FILESYSTEM_TS_FALSE$]) -+m4trace:configure.ac:489: -2- _AM_SUBST_NOTMAKE([ENABLE_FILESYSTEM_TS_TRUE]) -+m4trace:configure.ac:489: -2- _AM_SUBST_NOTMAKE([ENABLE_FILESYSTEM_TS_FALSE]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:125: AC_LANG_SAVE is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_LANG_CPLUSPLUS' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/c.m4:252: AC_LANG_CPLUSPLUS is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_DIRENT_D_TYPE]) -+m4trace:configure.ac:490: -1- m4_pattern_allow([^HAVE_STRUCT_DIRENT_D_TYPE$]) -+m4trace:configure.ac:490: -1- AH_OUTPUT([HAVE_STRUCT_DIRENT_D_TYPE], [/* Define to 1 if `d_type\' is a member of `struct dirent\'. */ -+@%:@undef HAVE_STRUCT_DIRENT_D_TYPE]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_REALPATH]) -+m4trace:configure.ac:490: -1- m4_pattern_allow([^_GLIBCXX_USE_REALPATH$]) -+m4trace:configure.ac:490: -1- AH_OUTPUT([_GLIBCXX_USE_REALPATH], [/* Define if usable realpath is available in <stdlib.h>. */ -+@%:@undef _GLIBCXX_USE_REALPATH]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_UTIMENSAT]) -+m4trace:configure.ac:490: -1- m4_pattern_allow([^_GLIBCXX_USE_UTIMENSAT$]) -+m4trace:configure.ac:490: -1- AH_OUTPUT([_GLIBCXX_USE_UTIMENSAT], [/* Define if utimensat and UTIME_OMIT are available in <sys/stat.h> and -+ AT_FDCWD in <fcntl.h>. */ -+@%:@undef _GLIBCXX_USE_UTIMENSAT]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_UTIME]) -+m4trace:configure.ac:490: -1- m4_pattern_allow([^_GLIBCXX_USE_UTIME$]) -+m4trace:configure.ac:490: -1- AH_OUTPUT([_GLIBCXX_USE_UTIME], [/* Define if utime is available in <utime.h>. */ -+@%:@undef _GLIBCXX_USE_UTIME]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_LSTAT]) -+m4trace:configure.ac:490: -1- m4_pattern_allow([^_GLIBCXX_USE_LSTAT$]) -+m4trace:configure.ac:490: -1- AH_OUTPUT([_GLIBCXX_USE_LSTAT], [/* Define if lstat is available in <sys/stat.h>. */ -+@%:@undef _GLIBCXX_USE_LSTAT]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_ST_MTIM]) -+m4trace:configure.ac:490: -1- m4_pattern_allow([^_GLIBCXX_USE_ST_MTIM$]) -+m4trace:configure.ac:490: -1- AH_OUTPUT([_GLIBCXX_USE_ST_MTIM], [/* Define if struct stat has timespec members. */ -+@%:@undef _GLIBCXX_USE_ST_MTIM]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_FCHMOD]) -+m4trace:configure.ac:490: -1- m4_pattern_allow([^_GLIBCXX_USE_FCHMOD$]) -+m4trace:configure.ac:490: -1- AH_OUTPUT([_GLIBCXX_USE_FCHMOD], [/* Define if fchmod is available in <sys/stat.h>. */ -+@%:@undef _GLIBCXX_USE_FCHMOD]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_FCHMODAT]) -+m4trace:configure.ac:490: -1- m4_pattern_allow([^_GLIBCXX_USE_FCHMODAT$]) -+m4trace:configure.ac:490: -1- AH_OUTPUT([_GLIBCXX_USE_FCHMODAT], [/* Define if fchmodat is available in <sys/stat.h>. */ -+@%:@undef _GLIBCXX_USE_FCHMODAT]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_USE_SENDFILE]) -+m4trace:configure.ac:490: -1- m4_pattern_allow([^_GLIBCXX_USE_SENDFILE$]) -+m4trace:configure.ac:490: -1- AH_OUTPUT([_GLIBCXX_USE_SENDFILE], [/* Define if sendfile is available in <sys/sendfile.h>. */ -+@%:@undef _GLIBCXX_USE_SENDFILE]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LINK]) -+m4trace:configure.ac:490: -1- m4_pattern_allow([^HAVE_LINK$]) -+m4trace:configure.ac:490: -1- AH_OUTPUT([HAVE_LINK], [/* Define if link is available in <unistd.h>. */ -+@%:@undef HAVE_LINK]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- AC_DEFINE_TRACE_LITERAL([HAVE_READLINK]) -+m4trace:configure.ac:490: -1- m4_pattern_allow([^HAVE_READLINK$]) -+m4trace:configure.ac:490: -1- AH_OUTPUT([HAVE_READLINK], [/* Define if readlink is available in <unistd.h>. */ -+@%:@undef HAVE_READLINK]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYMLINK]) -+m4trace:configure.ac:490: -1- m4_pattern_allow([^HAVE_SYMLINK$]) -+m4trace:configure.ac:490: -1- AH_OUTPUT([HAVE_SYMLINK], [/* Define if symlink is available in <unistd.h>. */ -+@%:@undef HAVE_SYMLINK]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TRUNCATE]) -+m4trace:configure.ac:490: -1- m4_pattern_allow([^HAVE_TRUNCATE$]) -+m4trace:configure.ac:490: -1- AH_OUTPUT([HAVE_TRUNCATE], [/* Define if truncate is available in <unistd.h>. */ -+@%:@undef HAVE_TRUNCATE]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FDOPENDIR]) -+m4trace:configure.ac:490: -1- m4_pattern_allow([^HAVE_FDOPENDIR$]) -+m4trace:configure.ac:490: -1- AH_OUTPUT([HAVE_FDOPENDIR], [/* Define if fdopendir is available in <dirent.h>. */ -+@%:@undef HAVE_FDOPENDIR]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DIRFD]) -+m4trace:configure.ac:490: -1- m4_pattern_allow([^HAVE_DIRFD$]) -+m4trace:configure.ac:490: -1- AH_OUTPUT([HAVE_DIRFD], [/* Define if dirfd is available in <dirent.h>. */ -+@%:@undef HAVE_DIRFD]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- AC_DEFINE_TRACE_LITERAL([HAVE_OPENAT]) -+m4trace:configure.ac:490: -1- m4_pattern_allow([^HAVE_OPENAT$]) -+m4trace:configure.ac:490: -1- AH_OUTPUT([HAVE_OPENAT], [/* Define if openat is available in <fcntl.h>. */ -+@%:@undef HAVE_OPENAT]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:490: -1- AC_DEFINE_TRACE_LITERAL([HAVE_UNLINKAT]) -+m4trace:configure.ac:490: -1- m4_pattern_allow([^HAVE_UNLINKAT$]) -+m4trace:configure.ac:490: -1- AH_OUTPUT([HAVE_UNLINKAT], [/* Define if unlinkat is available in <fcntl.h>. */ -+@%:@undef HAVE_UNLINKAT]) -+m4trace:configure.ac:490: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/lang.m4:134: AC_LANG_RESTORE is expanded from... -+acinclude.m4:4552: GLIBCXX_CHECK_FILESYSTEM_DEPS is expanded from... -+configure.ac:490: the top level]) -+m4trace:configure.ac:492: -3- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:4920: GLIBCXX_ENABLE_BACKTRACE is expanded from... -+configure.ac:492: the top level]) -+m4trace:configure.ac:492: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4920: GLIBCXX_ENABLE_BACKTRACE is expanded from... -+configure.ac:492: the top level]) -+m4trace:configure.ac:492: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -+../config/no-executables.m4:66: GCC_TRY_COMPILE_OR_LINK is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4920: GLIBCXX_ENABLE_BACKTRACE is expanded from... -+configure.ac:492: the top level]) -+m4trace:configure.ac:492: -1- AH_OUTPUT([HAVE_LINK_H], [/* Define to 1 if you have the <link.h> header file. */ -+@%:@undef HAVE_LINK_H]) -+m4trace:configure.ac:492: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LINK_H]) -+m4trace:configure.ac:492: -1- m4_pattern_allow([^HAVE_LINK_H$]) -+m4trace:configure.ac:492: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL_STRNLEN]) -+m4trace:configure.ac:492: -1- m4_pattern_allow([^HAVE_DECL_STRNLEN$]) -+m4trace:configure.ac:492: -1- AH_OUTPUT([HAVE_DECL_STRNLEN], [/* Define to 1 if you have the declaration of `strnlen\', and to 0 if you -+ don\'t. */ -+@%:@undef HAVE_DECL_STRNLEN]) -+m4trace:configure.ac:492: -1- AC_SUBST([FORMAT_FILE]) -+m4trace:configure.ac:492: -1- AC_SUBST_TRACE([FORMAT_FILE]) -+m4trace:configure.ac:492: -1- m4_pattern_allow([^FORMAT_FILE$]) -+m4trace:configure.ac:492: -1- AH_OUTPUT([HAVE_SYS_MMAN_H], [/* Define to 1 if you have the <sys/mman.h> header file. */ -+@%:@undef HAVE_SYS_MMAN_H]) -+m4trace:configure.ac:492: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYS_MMAN_H]) -+m4trace:configure.ac:492: -1- m4_pattern_allow([^HAVE_SYS_MMAN_H$]) -+m4trace:configure.ac:492: -1- AC_SUBST([VIEW_FILE]) -+m4trace:configure.ac:492: -1- AC_SUBST_TRACE([VIEW_FILE]) -+m4trace:configure.ac:492: -1- m4_pattern_allow([^VIEW_FILE$]) -+m4trace:configure.ac:492: -1- AC_SUBST([ALLOC_FILE]) -+m4trace:configure.ac:492: -1- AC_SUBST_TRACE([ALLOC_FILE]) -+m4trace:configure.ac:492: -1- m4_pattern_allow([^ALLOC_FILE$]) -+m4trace:configure.ac:492: -1- AC_SUBST([BACKTRACE_CPPFLAGS]) -+m4trace:configure.ac:492: -1- AC_SUBST_TRACE([BACKTRACE_CPPFLAGS]) -+m4trace:configure.ac:492: -1- m4_pattern_allow([^BACKTRACE_CPPFLAGS$]) -+m4trace:configure.ac:492: -1- AC_SUBST([BACKTRACE_SUPPORTED]) -+m4trace:configure.ac:492: -1- AC_SUBST_TRACE([BACKTRACE_SUPPORTED]) -+m4trace:configure.ac:492: -1- m4_pattern_allow([^BACKTRACE_SUPPORTED$]) -+m4trace:configure.ac:492: -1- AC_SUBST([BACKTRACE_USES_MALLOC]) -+m4trace:configure.ac:492: -1- AC_SUBST_TRACE([BACKTRACE_USES_MALLOC]) -+m4trace:configure.ac:492: -1- m4_pattern_allow([^BACKTRACE_USES_MALLOC$]) -+m4trace:configure.ac:492: -1- AC_SUBST([BACKTRACE_SUPPORTS_THREADS]) -+m4trace:configure.ac:492: -1- AC_SUBST_TRACE([BACKTRACE_SUPPORTS_THREADS]) -+m4trace:configure.ac:492: -1- m4_pattern_allow([^BACKTRACE_SUPPORTS_THREADS$]) -+m4trace:configure.ac:492: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STACKTRACE]) -+m4trace:configure.ac:492: -1- m4_pattern_allow([^HAVE_STACKTRACE$]) -+m4trace:configure.ac:492: -1- AH_OUTPUT([HAVE_STACKTRACE], [/* Define if the <stacktrace> header is supported. */ -+@%:@undef HAVE_STACKTRACE]) -+m4trace:configure.ac:492: -2- AM_CONDITIONAL([ENABLE_BACKTRACE], [test "$enable_libstdcxx_backtrace" = yes]) -+m4trace:configure.ac:492: -2- AC_SUBST([ENABLE_BACKTRACE_TRUE]) -+m4trace:configure.ac:492: -2- AC_SUBST_TRACE([ENABLE_BACKTRACE_TRUE]) -+m4trace:configure.ac:492: -2- m4_pattern_allow([^ENABLE_BACKTRACE_TRUE$]) -+m4trace:configure.ac:492: -2- AC_SUBST([ENABLE_BACKTRACE_FALSE]) -+m4trace:configure.ac:492: -2- AC_SUBST_TRACE([ENABLE_BACKTRACE_FALSE]) -+m4trace:configure.ac:492: -2- m4_pattern_allow([^ENABLE_BACKTRACE_FALSE$]) -+m4trace:configure.ac:492: -2- _AM_SUBST_NOTMAKE([ENABLE_BACKTRACE_TRUE]) -+m4trace:configure.ac:492: -2- _AM_SUBST_NOTMAKE([ENABLE_BACKTRACE_FALSE]) -+m4trace:configure.ac:495: -1- AH_OUTPUT([HAVE_FCNTL_H], [/* Define to 1 if you have the <fcntl.h> header file. */ -+@%:@undef HAVE_FCNTL_H]) -+m4trace:configure.ac:495: -1- AH_OUTPUT([HAVE_SYS_IOCTL_H], [/* Define to 1 if you have the <sys/ioctl.h> header file. */ -+@%:@undef HAVE_SYS_IOCTL_H]) -+m4trace:configure.ac:495: -1- AH_OUTPUT([HAVE_SYS_SOCKET_H], [/* Define to 1 if you have the <sys/socket.h> header file. */ -+@%:@undef HAVE_SYS_SOCKET_H]) -+m4trace:configure.ac:495: -1- AH_OUTPUT([HAVE_SYS_UIO_H], [/* Define to 1 if you have the <sys/uio.h> header file. */ -+@%:@undef HAVE_SYS_UIO_H]) -+m4trace:configure.ac:495: -1- AH_OUTPUT([HAVE_POLL_H], [/* Define to 1 if you have the <poll.h> header file. */ -+@%:@undef HAVE_POLL_H]) -+m4trace:configure.ac:495: -1- AH_OUTPUT([HAVE_NETDB_H], [/* Define to 1 if you have the <netdb.h> header file. */ -+@%:@undef HAVE_NETDB_H]) -+m4trace:configure.ac:495: -1- AH_OUTPUT([HAVE_ARPA_INET_H], [/* Define to 1 if you have the <arpa/inet.h> header file. */ -+@%:@undef HAVE_ARPA_INET_H]) -+m4trace:configure.ac:495: -1- AH_OUTPUT([HAVE_NETINET_IN_H], [/* Define to 1 if you have the <netinet/in.h> header file. */ -+@%:@undef HAVE_NETINET_IN_H]) -+m4trace:configure.ac:495: -1- AH_OUTPUT([HAVE_NETINET_TCP_H], [/* Define to 1 if you have the <netinet/tcp.h> header file. */ -+@%:@undef HAVE_NETINET_TCP_H]) -+m4trace:configure.ac:503: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4808: GLIBCXX_CHECK_SIZE_T_MANGLING is expanded from... -+configure.ac:503: the top level]) -+m4trace:configure.ac:503: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4808: GLIBCXX_CHECK_SIZE_T_MANGLING is expanded from... -+configure.ac:503: the top level]) -+m4trace:configure.ac:503: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4808: GLIBCXX_CHECK_SIZE_T_MANGLING is expanded from... -+configure.ac:503: the top level]) -+m4trace:configure.ac:503: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4808: GLIBCXX_CHECK_SIZE_T_MANGLING is expanded from... -+configure.ac:503: the top level]) -+m4trace:configure.ac:503: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from... -+../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -+../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -+../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -+acinclude.m4:4808: GLIBCXX_CHECK_SIZE_T_MANGLING is expanded from... -+configure.ac:503: the top level]) -+m4trace:configure.ac:503: -1- AC_DEFINE_TRACE_LITERAL([_GLIBCXX_MANGLE_SIZE_T]) -+m4trace:configure.ac:503: -1- m4_pattern_allow([^_GLIBCXX_MANGLE_SIZE_T$]) -+m4trace:configure.ac:503: -1- AH_OUTPUT([_GLIBCXX_MANGLE_SIZE_T], [/* Define to the letter to which size_t is mangled. */ -+@%:@undef _GLIBCXX_MANGLE_SIZE_T]) -+m4trace:configure.ac:506: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -+acinclude.m4:4844: GLIBCXX_CHECK_EXCEPTION_PTR_SYMVER is expanded from... -+configure.ac:506: the top level]) -+m4trace:configure.ac:506: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXCEPTION_PTR_SINCE_GCC46]) -+m4trace:configure.ac:506: -1- m4_pattern_allow([^HAVE_EXCEPTION_PTR_SINCE_GCC46$]) -+m4trace:configure.ac:506: -1- AH_OUTPUT([HAVE_EXCEPTION_PTR_SINCE_GCC46], [/* Define to 1 if GCC 4.6 supported std::exception_ptr for the target */ -+@%:@undef HAVE_EXCEPTION_PTR_SINCE_GCC46]) -+m4trace:configure.ac:512: -1- AC_SUBST([MAKEINFO]) -+m4trace:configure.ac:512: -1- AC_SUBST_TRACE([MAKEINFO]) -+m4trace:configure.ac:512: -1- m4_pattern_allow([^MAKEINFO$]) -+m4trace:configure.ac:515: -1- AM_CONDITIONAL([BUILD_INFO], [test $gcc_cv_prog_makeinfo_modern = "yes"]) -+m4trace:configure.ac:515: -1- AC_SUBST([BUILD_INFO_TRUE]) -+m4trace:configure.ac:515: -1- AC_SUBST_TRACE([BUILD_INFO_TRUE]) -+m4trace:configure.ac:515: -1- m4_pattern_allow([^BUILD_INFO_TRUE$]) -+m4trace:configure.ac:515: -1- AC_SUBST([BUILD_INFO_FALSE]) -+m4trace:configure.ac:515: -1- AC_SUBST_TRACE([BUILD_INFO_FALSE]) -+m4trace:configure.ac:515: -1- m4_pattern_allow([^BUILD_INFO_FALSE$]) -+m4trace:configure.ac:515: -1- _AM_SUBST_NOTMAKE([BUILD_INFO_TRUE]) -+m4trace:configure.ac:515: -1- _AM_SUBST_NOTMAKE([BUILD_INFO_FALSE]) -+m4trace:configure.ac:518: -1- AC_SUBST([DOXYGEN]) -+m4trace:configure.ac:518: -1- AC_SUBST_TRACE([DOXYGEN]) -+m4trace:configure.ac:518: -1- m4_pattern_allow([^DOXYGEN$]) -+m4trace:configure.ac:519: -1- AC_SUBST([DOT]) -+m4trace:configure.ac:519: -1- AC_SUBST_TRACE([DOT]) -+m4trace:configure.ac:519: -1- m4_pattern_allow([^DOT$]) -+m4trace:configure.ac:522: -1- AC_SUBST([XMLCATALOG]) -+m4trace:configure.ac:522: -1- AC_SUBST_TRACE([XMLCATALOG]) -+m4trace:configure.ac:522: -1- m4_pattern_allow([^XMLCATALOG$]) -+m4trace:configure.ac:523: -1- AC_SUBST([XSLTPROC]) -+m4trace:configure.ac:523: -1- AC_SUBST_TRACE([XSLTPROC]) -+m4trace:configure.ac:523: -1- m4_pattern_allow([^XSLTPROC$]) -+m4trace:configure.ac:524: -1- AC_SUBST([XMLLINT]) -+m4trace:configure.ac:524: -1- AC_SUBST_TRACE([XMLLINT]) -+m4trace:configure.ac:524: -1- m4_pattern_allow([^XMLLINT$]) -+m4trace:configure.ac:525: -1- AC_SUBST([XSL_STYLE_DIR]) -+m4trace:configure.ac:525: -1- AC_SUBST_TRACE([XSL_STYLE_DIR]) -+m4trace:configure.ac:525: -1- m4_pattern_allow([^XSL_STYLE_DIR$]) -+m4trace:configure.ac:525: -1- AM_CONDITIONAL([BUILD_EPUB], [test x"$glibcxx_epub_stylesheets" = x"yes"]) -+m4trace:configure.ac:525: -1- AC_SUBST([BUILD_EPUB_TRUE]) -+m4trace:configure.ac:525: -1- AC_SUBST_TRACE([BUILD_EPUB_TRUE]) -+m4trace:configure.ac:525: -1- m4_pattern_allow([^BUILD_EPUB_TRUE$]) -+m4trace:configure.ac:525: -1- AC_SUBST([BUILD_EPUB_FALSE]) -+m4trace:configure.ac:525: -1- AC_SUBST_TRACE([BUILD_EPUB_FALSE]) -+m4trace:configure.ac:525: -1- m4_pattern_allow([^BUILD_EPUB_FALSE$]) -+m4trace:configure.ac:525: -1- _AM_SUBST_NOTMAKE([BUILD_EPUB_TRUE]) -+m4trace:configure.ac:525: -1- _AM_SUBST_NOTMAKE([BUILD_EPUB_FALSE]) -+m4trace:configure.ac:528: -1- AM_CONDITIONAL([BUILD_XML], [test $ac_cv_prog_DOXYGEN = "yes" && -+ test $ac_cv_prog_DOT = "yes" && -+ test $ac_cv_prog_XSLTPROC = "yes" && -+ test $ac_cv_prog_XMLLINT = "yes" && -+ test $glibcxx_stylesheets = "yes"]) -+m4trace:configure.ac:528: -1- AC_SUBST([BUILD_XML_TRUE]) -+m4trace:configure.ac:528: -1- AC_SUBST_TRACE([BUILD_XML_TRUE]) -+m4trace:configure.ac:528: -1- m4_pattern_allow([^BUILD_XML_TRUE$]) -+m4trace:configure.ac:528: -1- AC_SUBST([BUILD_XML_FALSE]) -+m4trace:configure.ac:528: -1- AC_SUBST_TRACE([BUILD_XML_FALSE]) -+m4trace:configure.ac:528: -1- m4_pattern_allow([^BUILD_XML_FALSE$]) -+m4trace:configure.ac:528: -1- _AM_SUBST_NOTMAKE([BUILD_XML_TRUE]) -+m4trace:configure.ac:528: -1- _AM_SUBST_NOTMAKE([BUILD_XML_FALSE]) -+m4trace:configure.ac:535: -1- AM_CONDITIONAL([BUILD_HTML], [test $ac_cv_prog_DOXYGEN = "yes" && -+ test $ac_cv_prog_DOT = "yes" && -+ test $ac_cv_prog_XSLTPROC = "yes" && -+ test $ac_cv_prog_XMLLINT = "yes" && -+ test $glibcxx_stylesheets = "yes"]) -+m4trace:configure.ac:535: -1- AC_SUBST([BUILD_HTML_TRUE]) -+m4trace:configure.ac:535: -1- AC_SUBST_TRACE([BUILD_HTML_TRUE]) -+m4trace:configure.ac:535: -1- m4_pattern_allow([^BUILD_HTML_TRUE$]) -+m4trace:configure.ac:535: -1- AC_SUBST([BUILD_HTML_FALSE]) -+m4trace:configure.ac:535: -1- AC_SUBST_TRACE([BUILD_HTML_FALSE]) -+m4trace:configure.ac:535: -1- m4_pattern_allow([^BUILD_HTML_FALSE$]) -+m4trace:configure.ac:535: -1- _AM_SUBST_NOTMAKE([BUILD_HTML_TRUE]) -+m4trace:configure.ac:535: -1- _AM_SUBST_NOTMAKE([BUILD_HTML_FALSE]) -+m4trace:configure.ac:543: -1- AM_CONDITIONAL([BUILD_MAN], [test $ac_cv_prog_DOXYGEN = "yes" && -+ test $ac_cv_prog_DOT = "yes"]) -+m4trace:configure.ac:543: -1- AC_SUBST([BUILD_MAN_TRUE]) -+m4trace:configure.ac:543: -1- AC_SUBST_TRACE([BUILD_MAN_TRUE]) -+m4trace:configure.ac:543: -1- m4_pattern_allow([^BUILD_MAN_TRUE$]) -+m4trace:configure.ac:543: -1- AC_SUBST([BUILD_MAN_FALSE]) -+m4trace:configure.ac:543: -1- AC_SUBST_TRACE([BUILD_MAN_FALSE]) -+m4trace:configure.ac:543: -1- m4_pattern_allow([^BUILD_MAN_FALSE$]) -+m4trace:configure.ac:543: -1- _AM_SUBST_NOTMAKE([BUILD_MAN_TRUE]) -+m4trace:configure.ac:543: -1- _AM_SUBST_NOTMAKE([BUILD_MAN_FALSE]) -+m4trace:configure.ac:548: -1- AC_SUBST([DBLATEX]) -+m4trace:configure.ac:548: -1- AC_SUBST_TRACE([DBLATEX]) -+m4trace:configure.ac:548: -1- m4_pattern_allow([^DBLATEX$]) -+m4trace:configure.ac:549: -1- AC_SUBST([PDFLATEX]) -+m4trace:configure.ac:549: -1- AC_SUBST_TRACE([PDFLATEX]) -+m4trace:configure.ac:549: -1- m4_pattern_allow([^PDFLATEX$]) -+m4trace:configure.ac:550: -1- AM_CONDITIONAL([BUILD_PDF], [test $ac_cv_prog_DOXYGEN = "yes" && -+ test $ac_cv_prog_DOT = "yes" && -+ test $ac_cv_prog_XSLTPROC = "yes" && -+ test $ac_cv_prog_XMLLINT = "yes" && -+ test $ac_cv_prog_DBLATEX = "yes" && -+ test $ac_cv_prog_PDFLATEX = "yes"]) -+m4trace:configure.ac:550: -1- AC_SUBST([BUILD_PDF_TRUE]) -+m4trace:configure.ac:550: -1- AC_SUBST_TRACE([BUILD_PDF_TRUE]) -+m4trace:configure.ac:550: -1- m4_pattern_allow([^BUILD_PDF_TRUE$]) -+m4trace:configure.ac:550: -1- AC_SUBST([BUILD_PDF_FALSE]) -+m4trace:configure.ac:550: -1- AC_SUBST_TRACE([BUILD_PDF_FALSE]) -+m4trace:configure.ac:550: -1- m4_pattern_allow([^BUILD_PDF_FALSE$]) -+m4trace:configure.ac:550: -1- _AM_SUBST_NOTMAKE([BUILD_PDF_TRUE]) -+m4trace:configure.ac:550: -1- _AM_SUBST_NOTMAKE([BUILD_PDF_FALSE]) -+m4trace:configure.ac:562: -1- AM_CONDITIONAL([INCLUDE_DIR_NOTPARALLEL], [test $glibcxx_include_dir_notparallel = "yes"]) -+m4trace:configure.ac:562: -1- AC_SUBST([INCLUDE_DIR_NOTPARALLEL_TRUE]) -+m4trace:configure.ac:562: -1- AC_SUBST_TRACE([INCLUDE_DIR_NOTPARALLEL_TRUE]) -+m4trace:configure.ac:562: -1- m4_pattern_allow([^INCLUDE_DIR_NOTPARALLEL_TRUE$]) -+m4trace:configure.ac:562: -1- AC_SUBST([INCLUDE_DIR_NOTPARALLEL_FALSE]) -+m4trace:configure.ac:562: -1- AC_SUBST_TRACE([INCLUDE_DIR_NOTPARALLEL_FALSE]) -+m4trace:configure.ac:562: -1- m4_pattern_allow([^INCLUDE_DIR_NOTPARALLEL_FALSE$]) -+m4trace:configure.ac:562: -1- _AM_SUBST_NOTMAKE([INCLUDE_DIR_NOTPARALLEL_TRUE]) -+m4trace:configure.ac:562: -1- _AM_SUBST_NOTMAKE([INCLUDE_DIR_NOTPARALLEL_FALSE]) -+m4trace:configure.ac:575: -1- AC_SUBST([ATOMICITY_SRCDIR]) -+m4trace:configure.ac:575: -1- AC_SUBST_TRACE([ATOMICITY_SRCDIR]) -+m4trace:configure.ac:575: -1- m4_pattern_allow([^ATOMICITY_SRCDIR$]) -+m4trace:configure.ac:576: -1- AC_SUBST([ATOMIC_WORD_SRCDIR]) -+m4trace:configure.ac:576: -1- AC_SUBST_TRACE([ATOMIC_WORD_SRCDIR]) -+m4trace:configure.ac:576: -1- m4_pattern_allow([^ATOMIC_WORD_SRCDIR$]) -+m4trace:configure.ac:577: -1- AC_SUBST([ATOMIC_FLAGS]) -+m4trace:configure.ac:577: -1- AC_SUBST_TRACE([ATOMIC_FLAGS]) -+m4trace:configure.ac:577: -1- m4_pattern_allow([^ATOMIC_FLAGS$]) -+m4trace:configure.ac:578: -1- AC_SUBST([CPU_DEFINES_SRCDIR]) -+m4trace:configure.ac:578: -1- AC_SUBST_TRACE([CPU_DEFINES_SRCDIR]) -+m4trace:configure.ac:578: -1- m4_pattern_allow([^CPU_DEFINES_SRCDIR$]) -+m4trace:configure.ac:579: -1- AC_SUBST([ABI_TWEAKS_SRCDIR]) -+m4trace:configure.ac:579: -1- AC_SUBST_TRACE([ABI_TWEAKS_SRCDIR]) -+m4trace:configure.ac:579: -1- m4_pattern_allow([^ABI_TWEAKS_SRCDIR$]) -+m4trace:configure.ac:580: -1- AC_SUBST([OS_INC_SRCDIR]) -+m4trace:configure.ac:580: -1- AC_SUBST_TRACE([OS_INC_SRCDIR]) -+m4trace:configure.ac:580: -1- m4_pattern_allow([^OS_INC_SRCDIR$]) -+m4trace:configure.ac:581: -1- AC_SUBST([ERROR_CONSTANTS_SRCDIR]) -+m4trace:configure.ac:581: -1- AC_SUBST_TRACE([ERROR_CONSTANTS_SRCDIR]) -+m4trace:configure.ac:581: -1- m4_pattern_allow([^ERROR_CONSTANTS_SRCDIR$]) -+m4trace:configure.ac:582: -1- AC_SUBST([CPU_OPT_EXT_RANDOM]) -+m4trace:configure.ac:582: -1- AC_SUBST_TRACE([CPU_OPT_EXT_RANDOM]) -+m4trace:configure.ac:582: -1- m4_pattern_allow([^CPU_OPT_EXT_RANDOM$]) -+m4trace:configure.ac:583: -1- AC_SUBST([CPU_OPT_BITS_RANDOM]) -+m4trace:configure.ac:583: -1- AC_SUBST_TRACE([CPU_OPT_BITS_RANDOM]) -+m4trace:configure.ac:583: -1- m4_pattern_allow([^CPU_OPT_BITS_RANDOM$]) -+m4trace:configure.ac:595: -1- AC_SUBST([tmake_file]) -+m4trace:configure.ac:595: -1- AC_SUBST_TRACE([tmake_file]) -+m4trace:configure.ac:595: -1- m4_pattern_allow([^tmake_file$]) -+m4trace:configure.ac:598: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+../config/enable.m4:12: GCC_ENABLE is expanded from... -+../config/cet.m4:5: GCC_CET_FLAGS is expanded from... -+configure.ac:598: the top level]) -+m4trace:configure.ac:601: -1- AC_SUBST([EXTRA_CFLAGS]) -+m4trace:configure.ac:601: -1- AC_SUBST_TRACE([EXTRA_CFLAGS]) -+m4trace:configure.ac:601: -1- m4_pattern_allow([^EXTRA_CFLAGS$]) -+m4trace:configure.ac:602: -1- AC_SUBST([EXTRA_CXX_FLAGS]) -+m4trace:configure.ac:602: -1- AC_SUBST_TRACE([EXTRA_CXX_FLAGS]) -+m4trace:configure.ac:602: -1- m4_pattern_allow([^EXTRA_CXX_FLAGS$]) -+m4trace:configure.ac:618: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:710: GLIBCXX_EXPORT_INSTALL_INFO is expanded from... -+configure.ac:618: the top level]) -+m4trace:configure.ac:618: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from... -+acinclude.m4:710: GLIBCXX_EXPORT_INSTALL_INFO is expanded from... -+configure.ac:618: the top level]) -+m4trace:configure.ac:618: -1- AC_SUBST([glibcxx_prefixdir]) -+m4trace:configure.ac:618: -1- AC_SUBST_TRACE([glibcxx_prefixdir]) -+m4trace:configure.ac:618: -1- m4_pattern_allow([^glibcxx_prefixdir$]) -+m4trace:configure.ac:618: -1- AC_SUBST([gxx_include_dir]) -+m4trace:configure.ac:618: -1- AC_SUBST_TRACE([gxx_include_dir]) -+m4trace:configure.ac:618: -1- m4_pattern_allow([^gxx_include_dir$]) -+m4trace:configure.ac:618: -1- AC_SUBST([glibcxx_toolexecdir]) -+m4trace:configure.ac:618: -1- AC_SUBST_TRACE([glibcxx_toolexecdir]) -+m4trace:configure.ac:618: -1- m4_pattern_allow([^glibcxx_toolexecdir$]) -+m4trace:configure.ac:618: -1- AC_SUBST([glibcxx_toolexeclibdir]) -+m4trace:configure.ac:618: -1- AC_SUBST_TRACE([glibcxx_toolexeclibdir]) -+m4trace:configure.ac:618: -1- m4_pattern_allow([^glibcxx_toolexeclibdir$]) -+m4trace:configure.ac:621: -1- AC_SUBST([GLIBCXX_INCLUDES]) -+m4trace:configure.ac:621: -1- AC_SUBST_TRACE([GLIBCXX_INCLUDES]) -+m4trace:configure.ac:621: -1- m4_pattern_allow([^GLIBCXX_INCLUDES$]) -+m4trace:configure.ac:621: -1- AC_SUBST([TOPLEVEL_INCLUDES]) -+m4trace:configure.ac:621: -1- AC_SUBST_TRACE([TOPLEVEL_INCLUDES]) -+m4trace:configure.ac:621: -1- m4_pattern_allow([^TOPLEVEL_INCLUDES$]) -+m4trace:configure.ac:622: -1- AC_SUBST([OPTIMIZE_CXXFLAGS]) -+m4trace:configure.ac:622: -1- AC_SUBST_TRACE([OPTIMIZE_CXXFLAGS]) -+m4trace:configure.ac:622: -1- m4_pattern_allow([^OPTIMIZE_CXXFLAGS$]) -+m4trace:configure.ac:622: -1- AC_SUBST([WARN_FLAGS]) -+m4trace:configure.ac:622: -1- AC_SUBST_TRACE([WARN_FLAGS]) -+m4trace:configure.ac:622: -1- m4_pattern_allow([^WARN_FLAGS$]) -+m4trace:configure.ac:625: -1- AC_SUBST([get_gcc_base_ver]) -+m4trace:configure.ac:625: -1- AC_SUBST_TRACE([get_gcc_base_ver]) -+m4trace:configure.ac:625: -1- m4_pattern_allow([^get_gcc_base_ver$]) -+m4trace:configure.ac:630: -1- AC_CONFIG_FILES([Makefile]) -+m4trace:configure.ac:631: -1- AC_CONFIG_FILES([scripts/testsuite_flags], [chmod +x scripts/testsuite_flags]) -+m4trace:configure.ac:632: -1- AC_CONFIG_FILES([scripts/extract_symvers], [chmod +x scripts/extract_symvers]) -+m4trace:configure.ac:633: -1- AC_CONFIG_FILES([doc/xsl/customization.xsl]) -+m4trace:configure.ac:634: -1- AC_CONFIG_FILES([src/libbacktrace/backtrace-supported.h]) -+m4trace:configure.ac:644: -2- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete. -+You should run autoupdate.], [../../lib/autoconf/general.m4:194: AC_FOREACH is expanded from... -+configure.ac:644: the top level]) -+m4trace:configure.ac:644: -1- AC_CONFIG_FILES([include/Makefile libsupc++/Makefile src/Makefile src/c++98/Makefile src/c++11/Makefile src/c++17/Makefile src/c++20/Makefile src/filesystem/Makefile src/libbacktrace/Makefile doc/Makefile po/Makefile testsuite/Makefile python/Makefile ], [cat > vpsed$$ << \_EOF -+s!`test -f '$<' || echo '$(srcdir)/'`!! -+_EOF -+ sed -f vpsed$$ $ac_file > tmp$$ -+ mv tmp$$ $ac_file -+ rm vpsed$$ -+ echo 'MULTISUBDIR =' >> $ac_file -+ ml_norecursion=yes -+ . ${multi_basedir}/config-ml.in -+ AS_UNSET([ml_norecursion]) -+]) -+m4trace:configure.ac:661: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs]) -+m4trace:configure.ac:661: -1- AC_SUBST_TRACE([LIB@&t@OBJS]) -+m4trace:configure.ac:661: -1- m4_pattern_allow([^LIB@&t@OBJS$]) -+m4trace:configure.ac:661: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs]) -+m4trace:configure.ac:661: -1- AC_SUBST_TRACE([LTLIBOBJS]) -+m4trace:configure.ac:661: -1- m4_pattern_allow([^LTLIBOBJS$]) -+m4trace:configure.ac:661: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"]) -+m4trace:configure.ac:661: -1- AC_SUBST([am__EXEEXT_TRUE]) -+m4trace:configure.ac:661: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE]) -+m4trace:configure.ac:661: -1- m4_pattern_allow([^am__EXEEXT_TRUE$]) -+m4trace:configure.ac:661: -1- AC_SUBST([am__EXEEXT_FALSE]) -+m4trace:configure.ac:661: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE]) -+m4trace:configure.ac:661: -1- m4_pattern_allow([^am__EXEEXT_FALSE$]) -+m4trace:configure.ac:661: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE]) -+m4trace:configure.ac:661: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE]) -+m4trace:configure.ac:661: -1- AC_SUBST_TRACE([top_builddir]) -+m4trace:configure.ac:661: -1- AC_SUBST_TRACE([top_build_prefix]) -+m4trace:configure.ac:661: -1- AC_SUBST_TRACE([srcdir]) -+m4trace:configure.ac:661: -1- AC_SUBST_TRACE([abs_srcdir]) -+m4trace:configure.ac:661: -1- AC_SUBST_TRACE([top_srcdir]) -+m4trace:configure.ac:661: -1- AC_SUBST_TRACE([abs_top_srcdir]) -+m4trace:configure.ac:661: -1- AC_SUBST_TRACE([builddir]) -+m4trace:configure.ac:661: -1- AC_SUBST_TRACE([abs_builddir]) -+m4trace:configure.ac:661: -1- AC_SUBST_TRACE([abs_top_builddir]) -+m4trace:configure.ac:661: -1- AC_SUBST_TRACE([INSTALL]) -+m4trace:configure.ac:661: -1- AC_SUBST_TRACE([MKDIR_P]) -+m4trace:configure.ac:661: -1- AC_REQUIRE_AUX_FILE([ltmain.sh]) -diff -ruN gcc-12.2.0/libstdc++-v3/configure gcc-12.2.0-banan/libstdc++-v3/configure ---- gcc-12.2.0/libstdc++-v3/configure 2022-08-19 11:09:55.416698774 +0300 -+++ gcc-12.2.0-banan/libstdc++-v3/configure 2023-04-05 21:57:18.136349251 +0300 -@@ -29245,6 +29245,5980 @@ - # This is a freestanding configuration; there is nothing to do here. + i[34567]86-*-darwin*) + tmake_file="$tmake_file i386/t-crtpc t-crtfm i386/t-msabi" + tm_file="$tm_file i386/darwin-lib.h" +diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure +index eac60392121..56408e36d30 100755 +--- a/libstdc++-v3/configure ++++ b/libstdc++-v3/configure +@@ -41420,6 +41420,5980 @@ _ACEOF + ;; + *-banan_os*) @@ -137710,23 +6108,27 @@ diff -ruN gcc-12.2.0/libstdc++-v3/configure gcc-12.2.0-banan/libstdc++-v3/config + + ;; + - avr*-*-*) - $as_echo "#define HAVE_ACOSF 1" >>confdefs.h - -diff -ruN gcc-12.2.0/libstdc++-v3/crossconfig.m4 gcc-12.2.0-banan/libstdc++-v3/crossconfig.m4 ---- gcc-12.2.0/libstdc++-v3/crossconfig.m4 2022-08-19 11:09:55.420698825 +0300 -+++ gcc-12.2.0-banan/libstdc++-v3/crossconfig.m4 2023-04-05 21:57:01.943281129 +0300 -@@ -9,6 +9,13 @@ - # This is a freestanding configuration; there is nothing to do here. + *-darwin*) + # Darwin versions vary, but the linker should work in a cross environment, + # so we just check for all the features here. +diff --git a/libstdc++-v3/crossconfig.m4 b/libstdc++-v3/crossconfig.m4 +index ae5283b7ad3..fce33776b92 100644 +--- a/libstdc++-v3/crossconfig.m4 ++++ b/libstdc++-v3/crossconfig.m4 +@@ -67,6 +67,13 @@ case "${host}" in + AC_DEFINE(HAVE_USELOCALE) ;; + *-banan_os*) + GLIBCXX_CHECK_COMPILER_FEATURES -+ GLIBCXX_CHECK_LINKER_FEATURES -+ GLIBCXX_CHECK_MATH_SUPPORT -+ GLIBCXX_CHECK_STDLIB_SUPPORT ++ GLIBCXX_CHECK_LINKER_FEATURES ++ GLIBCXX_CHECK_MATH_SUPPORT ++ GLIBCXX_CHECK_STDLIB_SUPPORT + ;; + - avr*-*-*) - AC_DEFINE(HAVE_ACOSF) - AC_DEFINE(HAVE_ASINF) + *-darwin*) + # Darwin versions vary, but the linker should work in a cross environment, + # so we just check for all the features here. +-- +2.42.0 + From f05b9a6877afe1b353b2a43e2600c83e0ebc809b Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 30 Oct 2023 11:06:13 +0200 Subject: [PATCH 161/240] Kernel/LibC: Add crt* files to LibC and remove crt0 from kernel There was no reason for libc get crt0 from kernel. --- kernel/CMakeLists.txt | 15 ++------------- libc/CMakeLists.txt | 16 +++++++++++++++- {kernel => libc}/arch/x86_64/crt0.S | 11 ++++++----- libc/arch/x86_64/crti.S | 16 ++++++++++++++++ libc/arch/x86_64/crtn.S | 10 ++++++++++ 5 files changed, 49 insertions(+), 19 deletions(-) rename {kernel => libc}/arch/x86_64/crt0.S (63%) create mode 100644 libc/arch/x86_64/crti.S create mode 100644 libc/arch/x86_64/crtn.S diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index 2c29fa36..d7e140a5 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -162,17 +162,6 @@ endif() target_link_options(kernel PUBLIC -ffreestanding -nostdlib) -add_custom_target(crt0 - COMMAND ${CMAKE_CXX_COMPILER} -c ${CMAKE_CURRENT_SOURCE_DIR}/arch/${BANAN_ARCH}/crt0.S -o ${CMAKE_CURRENT_BINARY_DIR}/crt0.o - DEPENDS headers -) - -add_custom_command( - TARGET crt0 - POST_BUILD - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/crt0.o ${BANAN_LIB}/ -) - add_custom_target(kernel-headers COMMAND sudo rsync -a ${CMAKE_CURRENT_SOURCE_DIR}/include/ ${BANAN_INCLUDE}/ COMMAND sudo rsync -a ${CMAKE_CURRENT_SOURCE_DIR}/lai/include/ ${BANAN_INCLUDE}/ @@ -193,8 +182,8 @@ add_custom_command( TARGET kernel PRE_LINK COMMAND ${CMAKE_CXX_COMPILER} -MD -c ${CMAKE_CURRENT_SOURCE_DIR}/arch/${BANAN_ARCH}/crti.S ${COMPILE_OPTIONS} COMMAND ${CMAKE_CXX_COMPILER} -MD -c ${CMAKE_CURRENT_SOURCE_DIR}/arch/${BANAN_ARCH}/crtn.S ${COMPILE_OPTIONS} - COMMAND cp ${CRTBEGIN} . - COMMAND cp ${CRTEND} . + COMMAND ${CMAKE_COMMAND} -E copy ${CRTBEGIN} . + COMMAND ${CMAKE_COMMAND} -E copy ${CRTEND} . ) #add_custom_command( diff --git a/libc/CMakeLists.txt b/libc/CMakeLists.txt index 76c4f766..5432b6f0 100644 --- a/libc/CMakeLists.txt +++ b/libc/CMakeLists.txt @@ -31,8 +31,22 @@ add_custom_target(libc-headers USES_TERMINAL ) +add_custom_target(crtx + COMMAND ${CMAKE_C_COMPILER} -c ${CMAKE_CURRENT_SOURCE_DIR}/arch/${BANAN_ARCH}/crt0.S -o crt0.o + COMMAND ${CMAKE_C_COMPILER} -c ${CMAKE_CURRENT_SOURCE_DIR}/arch/${BANAN_ARCH}/crti.S -o crti.o + COMMAND ${CMAKE_C_COMPILER} -c ${CMAKE_CURRENT_SOURCE_DIR}/arch/${BANAN_ARCH}/crtn.S -o crtn.o +) + +add_custom_target(crtx-install + COMMAND sudo cp crt0.o ${BANAN_LIB}/ + COMMAND sudo cp crti.o ${BANAN_LIB}/ + COMMAND sudo cp crtn.o ${BANAN_LIB}/ + DEPENDS crtx + USES_TERMINAL +) + add_library(libc ${LIBC_SOURCES}) -add_dependencies(libc headers crt0) +add_dependencies(libc headers crtx-install) target_compile_options(libc PRIVATE -g -Wstack-usage=512) diff --git a/kernel/arch/x86_64/crt0.S b/libc/arch/x86_64/crt0.S similarity index 63% rename from kernel/arch/x86_64/crt0.S rename to libc/arch/x86_64/crt0.S index dc3fdffc..67804f19 100644 --- a/kernel/arch/x86_64/crt0.S +++ b/libc/arch/x86_64/crt0.S @@ -8,19 +8,19 @@ _start: pushq %rbp # rbp=0 movq %rsp, %rbp - # We need those in a moment when we call main. + # Save argc, argv, environ pushq %rdx pushq %rsi pushq %rdi - # Prepare signals, memory allocation, stdio and such. + # Prepare malloc, environment movq %rdx, %rdi call _init_libc - # Run the global constructors. + # Call global constructos call _init - # Restore argc and argv. + # Restore argc, argv, environ popq %rdi popq %rsi popq %rdx @@ -28,7 +28,8 @@ _start: # Run main call main - # Terminate the process with the exit code. + # Cleanly exit the process movl %eax, %edi call exit + .size _start, . - _start diff --git a/libc/arch/x86_64/crti.S b/libc/arch/x86_64/crti.S new file mode 100644 index 00000000..7c9624cc --- /dev/null +++ b/libc/arch/x86_64/crti.S @@ -0,0 +1,16 @@ +/* x86-64 crti.s */ +.section .init +.global _init +.type _init, @function +_init: + pushq %rbp + movq %rsp, %rbp + /* gcc will nicely put the contents of crtbegin.o's .init section here. */ + +.section .fini +.global _fini +.type _fini, @function +_fini: + pushq %rbp + movq %rsp, %rbp + /* gcc will nicely put the contents of crtbegin.o's .fini section here. */ diff --git a/libc/arch/x86_64/crtn.S b/libc/arch/x86_64/crtn.S new file mode 100644 index 00000000..5d6f1e9a --- /dev/null +++ b/libc/arch/x86_64/crtn.S @@ -0,0 +1,10 @@ +/* x86-64 crtn.s */ +.section .init + /* gcc will nicely put the contents of crtend.o's .init section here. */ + popq %rbp + ret + +.section .fini + /* gcc will nicely put the contents of crtend.o's .fini section here. */ + popq %rbp + ret From bc1d1bf9195d3875f6953144c8ce4b1f0b466f7e Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 30 Oct 2023 11:10:08 +0200 Subject: [PATCH 162/240] LibC: implement and call __cxa_finalize() on exit() This allows global destructors to be actually called --- libc/icxxabi.cpp | 50 ++++++++++++++++++++++-------------------- libc/include/icxxabi.h | 10 +++++++++ libc/stdlib.cpp | 3 +++ 3 files changed, 39 insertions(+), 24 deletions(-) create mode 100644 libc/include/icxxabi.h diff --git a/libc/icxxabi.cpp b/libc/icxxabi.cpp index fb234e60..5484137a 100644 --- a/libc/icxxabi.cpp +++ b/libc/icxxabi.cpp @@ -1,35 +1,37 @@ +#include <icxxabi.h> + #define ATEXIT_MAX_FUNCS 128 -#ifdef __cplusplus -extern "C" { -#endif - -typedef unsigned uarch_t; - struct atexit_func_entry_t { - /* - * Each member is at least 4 bytes large. Such that each entry is 12bytes. - * 128 * 12 = 1.5KB exact. - **/ - void (*destructor_func)(void *); - void *obj_ptr; - void *dso_handle; + void (*destructor)(void*); + void* data; + void* dso_handle; }; -atexit_func_entry_t __atexit_funcs[ATEXIT_MAX_FUNCS]; -uarch_t __atexit_func_count = 0; +static atexit_func_entry_t __atexit_funcs[ATEXIT_MAX_FUNCS]; +static int __atexit_func_count = 0; -int __cxa_atexit(void (*f)(void *), void *objptr, void *dso) +int __cxa_atexit(void (*func)(void*), void* data, void* dso_handle) { - if (__atexit_func_count >= ATEXIT_MAX_FUNCS) {return -1;}; - __atexit_funcs[__atexit_func_count].destructor_func = f; - __atexit_funcs[__atexit_func_count].obj_ptr = objptr; - __atexit_funcs[__atexit_func_count].dso_handle = dso; + if (__atexit_func_count >= ATEXIT_MAX_FUNCS) + return -1;; + __atexit_funcs[__atexit_func_count].destructor = func; + __atexit_funcs[__atexit_func_count].data = data; + __atexit_funcs[__atexit_func_count].dso_handle = dso_handle; __atexit_func_count++; - return 0; /*I would prefer if functions returned 1 on success, but the ABI says...*/ + return 0; }; -#ifdef __cplusplus -}; -#endif +void __cxa_finalize(void* func) +{ + for (int i = __atexit_func_count - 1; i >= 0; i--) + { + if (func && func != __atexit_funcs[i].destructor) + continue; + if (__atexit_funcs[i].destructor == nullptr) + continue; + __atexit_funcs[i].destructor(__atexit_funcs[i].data); + __atexit_funcs[i].destructor = nullptr; + } +} diff --git a/libc/include/icxxabi.h b/libc/include/icxxabi.h new file mode 100644 index 00000000..68840a90 --- /dev/null +++ b/libc/include/icxxabi.h @@ -0,0 +1,10 @@ +#pragma once + +#include <sys/cdefs.h> + +__BEGIN_DECLS + +int __cxa_atexit(void (*func)(void*), void* data, void* dso_handle); +void __cxa_finalize(void* func); + +__END_DECLS diff --git a/libc/stdlib.cpp b/libc/stdlib.cpp index 4d5e9570..d9bd9ab3 100644 --- a/libc/stdlib.cpp +++ b/libc/stdlib.cpp @@ -7,6 +7,8 @@ #include <sys/syscall.h> #include <unistd.h> +#include <icxxabi.h> + extern "C" char** environ; extern "C" void _fini(); @@ -21,6 +23,7 @@ void abort(void) void exit(int status) { fflush(nullptr); + __cxa_finalize(nullptr); _fini(); _exit(status); ASSERT_NOT_REACHED(); From 382f9d9bb3b9aa39b10a1dd4db6975c8ce593eb7 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 30 Oct 2023 11:11:10 +0200 Subject: [PATCH 163/240] Userspace: Add quick test for global ctors and dtors --- userspace/CMakeLists.txt | 1 + userspace/test-globals/CMakeLists.txt | 17 +++++++++++++++++ userspace/test-globals/main.cpp | 14 ++++++++++++++ 3 files changed, 32 insertions(+) create mode 100644 userspace/test-globals/CMakeLists.txt create mode 100644 userspace/test-globals/main.cpp diff --git a/userspace/CMakeLists.txt b/userspace/CMakeLists.txt index 9874d570..79a7ab8a 100644 --- a/userspace/CMakeLists.txt +++ b/userspace/CMakeLists.txt @@ -23,6 +23,7 @@ set(USERSPACE_PROJECTS sync tee test + test-globals touch u8sum whoami diff --git a/userspace/test-globals/CMakeLists.txt b/userspace/test-globals/CMakeLists.txt new file mode 100644 index 00000000..8fe4151a --- /dev/null +++ b/userspace/test-globals/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 3.26) + +project(test-globals CXX) + +set(SOURCES + main.cpp +) + +add_executable(test-globals ${SOURCES}) +target_compile_options(test-globals PUBLIC -O2 -g) +target_link_libraries(test-globals PUBLIC libc) + +add_custom_target(test-globals-install + COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/test-globals ${BANAN_BIN}/ + DEPENDS test-globals + USES_TERMINAL +) diff --git a/userspace/test-globals/main.cpp b/userspace/test-globals/main.cpp new file mode 100644 index 00000000..bf156ae4 --- /dev/null +++ b/userspace/test-globals/main.cpp @@ -0,0 +1,14 @@ +#include <stdio.h> + +struct foo_t +{ + foo_t() { printf("global constructor works\n"); } + ~foo_t() { printf("global destructor works\n"); } +}; + +foo_t foo; + +int main() +{ + +} From f72fdeeb59ad4d07a98f4cf89e9011a504d49897 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 30 Oct 2023 11:13:16 +0200 Subject: [PATCH 164/240] BAN: String now uses union for its sso storage This allows String to shrink by 8 bytes since Variant's 8 index is no longer stored in here. This required me to make Strings max size one bit less, but that should still be fine. There should never be strings with size of over half of the computer's address space. --- BAN/BAN/String.cpp | 69 ++++++++++++++++++++-------------------- BAN/include/BAN/String.h | 14 +++++--- 2 files changed, 43 insertions(+), 40 deletions(-) diff --git a/BAN/BAN/String.cpp b/BAN/BAN/String.cpp index 5f94a52b..07dc2657 100644 --- a/BAN/BAN/String.cpp +++ b/BAN/BAN/String.cpp @@ -1,6 +1,5 @@ #include <BAN/String.h> #include <BAN/New.h> -#include <BAN/Variant.h> namespace BAN { @@ -32,8 +31,7 @@ namespace BAN String& String::operator=(const String& other) { clear(); - if (!other.fits_in_sso()) - MUST(ensure_capacity(other.size())); + MUST(ensure_capacity(other.size())); memcpy(data(), other.data(), other.size() + 1); m_size = other.size(); return *this; @@ -43,14 +41,18 @@ namespace BAN { clear(); - if (other.fits_in_sso()) + if (other.has_sso()) memcpy(data(), other.data(), other.size() + 1); else - m_storage = other.m_storage.get<GeneralStorage>(); + { + m_storage.general_storage = other.m_storage.general_storage; + m_has_sso = false; + } m_size = other.m_size; other.m_size = 0; - other.m_storage = SSOStorage(); + other.m_storage.sso_storage = SSOStorage(); + other.m_has_sso = true; return *this; } @@ -58,8 +60,7 @@ namespace BAN String& String::operator=(StringView other) { clear(); - if (!fits_in_sso(other.size())) - MUST(ensure_capacity(other.size())); + MUST(ensure_capacity(other.size())); memcpy(data(), other.data(), other.size()); m_size = other.size(); data()[m_size] = '\0'; @@ -125,8 +126,9 @@ namespace BAN { if (!has_sso()) { - deallocator(m_storage.get<GeneralStorage>().data); - m_storage = SSOStorage(); + deallocator(m_storage.general_storage.data); + m_storage.sso_storage = SSOStorage(); + m_has_sso = true; } m_size = 0; data()[m_size] = '\0'; @@ -166,15 +168,6 @@ namespace BAN data()[m_size] = '\0'; return {}; } - - // shrink general -> sso - if (!has_sso() && fits_in_sso(new_size)) - { - char* data = m_storage.get<GeneralStorage>().data; - m_storage = SSOStorage(); - memcpy(m_storage.get<SSOStorage>().storage, data, new_size); - deallocator(data); - } m_size = new_size; data()[m_size] = '\0'; @@ -194,20 +187,21 @@ namespace BAN if (fits_in_sso()) { - char* data = m_storage.get<GeneralStorage>().data; - m_storage = SSOStorage(); - memcpy(m_storage.get<SSOStorage>().storage, data, m_size + 1); + char* data = m_storage.general_storage.data; + m_storage.sso_storage = SSOStorage(); + m_has_sso = true; + memcpy(this->data(), data, m_size + 1); deallocator(data); return {}; } - GeneralStorage& storage = m_storage.get<GeneralStorage>(); + GeneralStorage& storage = m_storage.general_storage; if (storage.capacity == m_size) return {}; char* new_data = (char*)allocator(m_size + 1); if (new_data == nullptr) - return BAN::Error::from_errno(ENOMEM); + return Error::from_errno(ENOMEM); memcpy(new_data, storage.data, m_size); deallocator(storage.data); @@ -222,40 +216,45 @@ namespace BAN { if (has_sso()) return sso_capacity; - return m_storage.get<GeneralStorage>().capacity; + return m_storage.general_storage.capacity; } char* String::data() { if (has_sso()) - return m_storage.get<SSOStorage>().storage; - return m_storage.get<GeneralStorage>().data; + return m_storage.sso_storage.data; + return m_storage.general_storage.data; } const char* String::data() const { if (has_sso()) - return m_storage.get<SSOStorage>().storage; - return m_storage.get<GeneralStorage>().data; + return m_storage.sso_storage.data; + return m_storage.general_storage.data; } ErrorOr<void> String::ensure_capacity(size_type new_size) { - if (m_size >= new_size || fits_in_sso(new_size)) + if (m_size >= new_size) + return {}; + if (has_sso() && fits_in_sso(new_size)) return {}; char* new_data = (char*)allocator(new_size + 1); if (new_data == nullptr) - return BAN::Error::from_errno(ENOMEM); + return Error::from_errno(ENOMEM); memcpy(new_data, data(), m_size + 1); if (has_sso()) - m_storage = GeneralStorage(); + { + m_storage.general_storage = GeneralStorage(); + m_has_sso = false; + } else - deallocator(m_storage.get<GeneralStorage>().data); + deallocator(m_storage.general_storage.data); - auto& storage = m_storage.get<GeneralStorage>(); + auto& storage = m_storage.general_storage; storage.capacity = new_size; storage.data = new_data; @@ -264,7 +263,7 @@ namespace BAN bool String::has_sso() const { - return m_storage.has<SSOStorage>(); + return m_has_sso; } } diff --git a/BAN/include/BAN/String.h b/BAN/include/BAN/String.h index 26685afd..3eecccd8 100644 --- a/BAN/include/BAN/String.h +++ b/BAN/include/BAN/String.h @@ -82,17 +82,21 @@ namespace BAN private: struct SSOStorage { - char storage[sso_capacity + 1] {}; + char data[sso_capacity + 1] {}; }; struct GeneralStorage { - size_type capacity { 0 }; - char* data; + size_type capacity { 0 }; + char* data { nullptr }; }; private: - Variant<SSOStorage, GeneralStorage> m_storage { SSOStorage() }; - size_type m_size { 0 }; + union { + SSOStorage sso_storage; + GeneralStorage general_storage; + } m_storage { .sso_storage = SSOStorage() }; + size_type m_size : sizeof(size_type) * 8 - 1 { 0 }; + size_type m_has_sso : 1 { true }; }; template<typename... Args> From 3d899d2e44239784c25776aa67681131adf0a1b1 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 30 Oct 2023 12:14:12 +0200 Subject: [PATCH 165/240] Kernel/LibELF: Map pages always as RW so kernel can write to them Kernel doesn't seem to require W permissions to a page without UEFI so this had not been found earlier. --- LibELF/LibELF/LoadableELF.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/LibELF/LibELF/LoadableELF.cpp b/LibELF/LibELF/LoadableELF.cpp index c5475bef..0897b282 100644 --- a/LibELF/LibELF/LoadableELF.cpp +++ b/LibELF/LibELF/LoadableELF.cpp @@ -226,7 +226,8 @@ namespace LibELF if (paddr == 0) return BAN::Error::from_errno(ENOMEM); - m_page_table.map_page_at(paddr, vaddr, flags); + // Temporarily map page as RW so kernel can write to it + m_page_table.map_page_at(paddr, vaddr, PageTable::Flags::ReadWrite | PageTable::Flags::Present); m_physical_page_count++; memset((void*)vaddr, 0x00, PAGE_SIZE); @@ -245,6 +246,9 @@ namespace LibELF TRY(m_inode->read(program_header.p_offset + file_offset, { (uint8_t*)vaddr + vaddr_offset, bytes })); } + // Map page with the correct flags + m_page_table.map_page_at(paddr, vaddr, flags); + return {}; } default: From 5d34cebecae6cb581fe1594d94cbe752de28eed8 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 30 Oct 2023 12:17:08 +0200 Subject: [PATCH 166/240] Kernel: Fix stack OOB detection I now check both interrupt and normal stack to detect OOB. Processes are killed if they encouner stack over/under flow. --- kernel/arch/x86_64/IDT.cpp | 22 ++++++++++++++-------- kernel/include/kernel/Thread.h | 1 + 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/kernel/arch/x86_64/IDT.cpp b/kernel/arch/x86_64/IDT.cpp index 67ac57dc..30d8abcc 100644 --- a/kernel/arch/x86_64/IDT.cpp +++ b/kernel/arch/x86_64/IDT.cpp @@ -181,14 +181,20 @@ namespace Kernel::IDT { // Check if stack is OOB auto& stack = Thread::current().stack(); - if (interrupt_stack.rsp < stack.vaddr()) + auto& istack = Thread::current().interrupt_stack(); + if (stack.vaddr() < interrupt_stack.rsp && interrupt_stack.rsp <= stack.vaddr() + stack.size()) + ; // using normal stack + else if (istack.vaddr() < interrupt_stack.rsp && interrupt_stack.rsp <= istack.vaddr() + istack.size()) + ; // using interrupt stack + else { - derrorln("Stack overflow"); - goto done; - } - if (interrupt_stack.rsp >= stack.vaddr() + stack.size()) - { - derrorln("Stack underflow"); + derrorln("Stack pointer out of bounds!"); + derrorln("rsp {H}, stack {H}->{H}, istack {H}->{H}", + interrupt_stack.rsp, + stack.vaddr(), stack.vaddr() + stack.size(), + istack.vaddr(), istack.vaddr() + istack.size() + ); + Thread::current().handle_signal(SIGKILL); goto done; } @@ -207,7 +213,7 @@ namespace Kernel::IDT if (result.is_error()) { dwarnln("Demand paging: {}", result.error()); - Thread::current().handle_signal(SIGTERM); + Thread::current().handle_signal(SIGKILL); goto done; } } diff --git a/kernel/include/kernel/Thread.h b/kernel/include/kernel/Thread.h index c988f7af..3d5383b0 100644 --- a/kernel/include/kernel/Thread.h +++ b/kernel/include/kernel/Thread.h @@ -71,6 +71,7 @@ namespace Kernel vaddr_t stack_base() const { return m_stack->vaddr(); } size_t stack_size() const { return m_stack->size(); } VirtualRange& stack() { return *m_stack; } + VirtualRange& interrupt_stack() { return *m_interrupt_stack; } vaddr_t interrupt_stack_base() const { return m_interrupt_stack ? m_interrupt_stack->vaddr() : 0; } size_t interrupt_stack_size() const { return m_interrupt_stack ? m_interrupt_stack->size() : 0; } From 8a10853ba7ed6bfd03a7de2f96841c803c8612e5 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 30 Oct 2023 12:23:22 +0200 Subject: [PATCH 167/240] Kernel: Enable Write Protect. This seems to be good for security --- kernel/arch/x86_64/PageTable.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/kernel/arch/x86_64/PageTable.cpp b/kernel/arch/x86_64/PageTable.cpp index ef0db19f..861522a0 100644 --- a/kernel/arch/x86_64/PageTable.cpp +++ b/kernel/arch/x86_64/PageTable.cpp @@ -92,6 +92,13 @@ namespace Kernel s_has_pge = true; } + // enable write protect to kernel + asm volatile( + "movq %cr0, %rax;" + "orq $0x10000, %rax;" + "movq %rax, %cr0;" + ); + ASSERT(s_kernel == nullptr); s_kernel = new PageTable(); ASSERT(s_kernel); From 0405461742d80a883143b18064de2e09bbe990c2 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 30 Oct 2023 15:12:38 +0200 Subject: [PATCH 168/240] BAN: Implement better ASSERT macros Implement macros for all basic binary ops. These macros print failed values when the fail. --- BAN/include/BAN/Assert.h | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/BAN/include/BAN/Assert.h b/BAN/include/BAN/Assert.h index e24761d0..9e9de1b3 100644 --- a/BAN/include/BAN/Assert.h +++ b/BAN/include/BAN/Assert.h @@ -1,11 +1,33 @@ #pragma once +#include <BAN/Traits.h> + #if defined(__is_kernel) #include <kernel/Panic.h> - #define ASSERT(cond) do { if (!(cond)) Kernel::panic("ASSERT("#cond") failed"); } while (false) + + #define ASSERT(cond) \ + do { \ + if (!(cond)) \ + Kernel::panic("ASSERT(" #cond ") failed"); \ + } while (false) + + #define __ASSERT_BIN_OP(lhs, rhs, name, op) \ + do { \ + auto&& _lhs = lhs; \ + auto&& _rhs = rhs; \ + if (!(_lhs op _rhs)) \ + Kernel::panic(name "(" #lhs ", " #rhs ") ({} " #op " {}) failed", _lhs, _rhs); \ + } while (false) + + #define ASSERT_LT(lhs, rhs) __ASSERT_BIN_OP(lhs, rhs, "ASSERT_LT", <) + #define ASSERT_LE(lhs, rhs) __ASSERT_BIN_OP(lhs, rhs, "ASSERT_LE", <=) + #define ASSERT_GT(lhs, rhs) __ASSERT_BIN_OP(lhs, rhs, "ASSERT_GT", >) + #define ASSERT_GE(lhs, rhs) __ASSERT_BIN_OP(lhs, rhs, "ASSERT_GE", >=) + #define ASSERT_EQ(lhs, rhs) __ASSERT_BIN_OP(lhs, rhs, "ASSERT_EQ", ==) + #define ASSERT_NE(lhs, rhs) __ASSERT_BIN_OP(lhs, rhs, "ASSERT_NE", !=) #define ASSERT_NOT_REACHED() Kernel::panic("ASSERT_NOT_REACHED() failed") #else #include <assert.h> #define ASSERT(cond) assert((cond) && "ASSERT("#cond") failed") #define ASSERT_NOT_REACHED() do { assert(false && "ASSERT_NOT_REACHED() failed"); __builtin_unreachable(); } while (false) -#endif \ No newline at end of file +#endif From 26c7aee32748deca15917b31280d5204ffd42845 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 30 Oct 2023 15:33:18 +0200 Subject: [PATCH 169/240] Kernel: only map kernel from g_kernel_start onwards --- kernel/arch/x86_64/PageTable.cpp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/kernel/arch/x86_64/PageTable.cpp b/kernel/arch/x86_64/PageTable.cpp index 861522a0..69b827db 100644 --- a/kernel/arch/x86_64/PageTable.cpp +++ b/kernel/arch/x86_64/PageTable.cpp @@ -143,8 +143,14 @@ namespace Kernel uint64_t* pml4 = (uint64_t*)P2V(m_highest_paging_struct); pml4[511] = s_global_pml4e; - // Map (0 -> phys_kernel_end) to (KERNEL_OFFSET -> virt_kernel_end) - map_range_at(0, KERNEL_OFFSET, (uintptr_t)g_kernel_end - KERNEL_OFFSET, Flags::ReadWrite | Flags::Present); + // Map (phys_kernel_start -> phys_kernel_end) to (virt_kernel_start -> virt_kernel_end) + ASSERT((vaddr_t)g_kernel_start % PAGE_SIZE == 0); + map_range_at( + V2P(g_kernel_start), + (vaddr_t)g_kernel_start, + g_kernel_end - g_kernel_start, + Flags::ReadWrite | Flags::Present + ); // Map executable kernel memory as executable map_range_at( @@ -437,6 +443,8 @@ namespace Kernel vaddr_t PageTable::reserve_free_page(vaddr_t first_address, vaddr_t last_address) { + if (first_address >= KERNEL_OFFSET && first_address < (vaddr_t)g_kernel_end) + first_address = (vaddr_t)g_kernel_end; if (size_t rem = first_address % PAGE_SIZE) first_address += PAGE_SIZE - rem; if (size_t rem = last_address % PAGE_SIZE) From 4e785a133cc49b025f8db7164d2d70e521b8a067 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 30 Oct 2023 15:34:25 +0200 Subject: [PATCH 170/240] Kernel: Fix ext2 small link deallocation Also fix deallocation bug --- kernel/kernel/FS/Ext2/Inode.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/kernel/kernel/FS/Ext2/Inode.cpp b/kernel/kernel/FS/Ext2/Inode.cpp index 0729ec85..0103a6e9 100644 --- a/kernel/kernel/FS/Ext2/Inode.cpp +++ b/kernel/kernel/FS/Ext2/Inode.cpp @@ -274,6 +274,9 @@ namespace Kernel { ASSERT(m_inode.links_count == 0); + if (mode().iflnk() && (size_t)size() < sizeof(m_inode.block)) + goto done; + // cleanup direct blocks for (uint32_t i = 0; i < 12; i++) if (m_inode.block[i]) @@ -287,6 +290,7 @@ namespace Kernel if (m_inode.block[14]) cleanup_indirect_block(m_inode.block[14], 3); +done: // mark blocks as deleted memset(m_inode.block, 0x00, sizeof(m_inode.block)); @@ -759,7 +763,7 @@ needs_new_block: if (data_block_index < indices_per_fs_block * indices_per_fs_block) return TRY(allocate_new_block_to_indirect_block(m_inode.block[13], data_block_index, 2)); - data_block_index -= indices_per_fs_block; + data_block_index -= indices_per_fs_block * indices_per_fs_block; if (data_block_index < indices_per_fs_block * indices_per_fs_block * indices_per_fs_block) return TRY(allocate_new_block_to_indirect_block(m_inode.block[14], data_block_index, 3)); From ce2461d0e83e55f2f297212e872f0e3e0b77897a Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 30 Oct 2023 16:17:26 +0200 Subject: [PATCH 171/240] Kernel: panic takes arguments as rvalue references --- kernel/include/kernel/Panic.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/include/kernel/Panic.h b/kernel/include/kernel/Panic.h index 74d82eca..4ef0f285 100644 --- a/kernel/include/kernel/Panic.h +++ b/kernel/include/kernel/Panic.h @@ -11,11 +11,11 @@ namespace Kernel::detail template<typename... Args> __attribute__((__noreturn__)) - static void panic_impl(const char* file, int line, const char* message, Args... args) + static void panic_impl(const char* file, int line, const char* message, Args&&... args) { asm volatile("cli"); derrorln("Kernel panic at {}:{}", file, line); - derrorln(message, args...); + derrorln(message, BAN::forward<Args>(args)...); if (!g_paniced) { g_paniced = true; From 1c5985148c8e03fddb1df1e4dccc10b14f2b583f Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 30 Oct 2023 17:51:18 +0200 Subject: [PATCH 172/240] Kernel: Allow offsetof with packed fields This is not standard C++ but should be fine with my toolchain. --- kernel/CMakeLists.txt | 3 +++ kernel/kernel/ACPI.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index d7e140a5..bbc24efc 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -148,6 +148,9 @@ target_compile_options(kernel PUBLIC $<$<COMPILE_LANGUAGE:CXX>:-Wno-literal-suff target_compile_options(kernel PUBLIC -fmacro-prefix-map=${CMAKE_CURRENT_SOURCE_DIR}=.) target_compile_options(kernel PUBLIC -fstack-protector -ffreestanding -Wall -Werror=return-type -Wstack-usage=1024 -fno-omit-frame-pointer -mgeneral-regs-only) +# This might not work with other toolchains +target_compile_options(kernel PUBLIC $<$<COMPILE_LANGUAGE:CXX>:-Wno-invalid-offsetof>) + if(ENABLE_KERNEL_UBSAN) target_compile_options(kernel PUBLIC -fsanitize=undefined) endif() diff --git a/kernel/kernel/ACPI.cpp b/kernel/kernel/ACPI.cpp index 86ac0a3a..e853a253 100644 --- a/kernel/kernel/ACPI.cpp +++ b/kernel/kernel/ACPI.cpp @@ -213,7 +213,7 @@ namespace Kernel auto* fadt = (FADT*)header; paddr_t dsdt_paddr = 0; - if (fadt->length > 140) // 140 is the offset of x_dsdt + if (fadt->length > offsetof(FADT, x_dsdt)) dsdt_paddr = fadt->x_dsdt; if (dsdt_paddr == 0 || !PageTable::is_valid_pointer(dsdt_paddr)) dsdt_paddr = fadt->dsdt; From 4dbe15aa0e7f4fcbc9367418808b28822eb0551a Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 30 Oct 2023 18:13:17 +0200 Subject: [PATCH 173/240] Kernel: Remove GeneralAllocator since it was not used --- kernel/CMakeLists.txt | 1 - .../include/kernel/Memory/GeneralAllocator.h | 46 ------ kernel/kernel/Memory/GeneralAllocator.cpp | 145 ------------------ kernel/kernel/Memory/kmalloc.cpp | 1 - 4 files changed, 193 deletions(-) delete mode 100644 kernel/include/kernel/Memory/GeneralAllocator.h delete mode 100644 kernel/kernel/Memory/GeneralAllocator.cpp diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index bbc24efc..a61cc1a4 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -36,7 +36,6 @@ set(KERNEL_SOURCES kernel/kernel.cpp kernel/Memory/DMARegion.cpp kernel/Memory/FileBackedRegion.cpp - kernel/Memory/GeneralAllocator.cpp kernel/Memory/Heap.cpp kernel/Memory/kmalloc.cpp kernel/Memory/MemoryBackedRegion.cpp diff --git a/kernel/include/kernel/Memory/GeneralAllocator.h b/kernel/include/kernel/Memory/GeneralAllocator.h deleted file mode 100644 index f96d0f92..00000000 --- a/kernel/include/kernel/Memory/GeneralAllocator.h +++ /dev/null @@ -1,46 +0,0 @@ -#pragma once - -#include <BAN/LinkedList.h> -#include <BAN/Optional.h> -#include <BAN/UniqPtr.h> -#include <kernel/Memory/Heap.h> -#include <kernel/Memory/PageTable.h> - -namespace Kernel -{ - - class GeneralAllocator - { - BAN_NON_COPYABLE(GeneralAllocator); - BAN_NON_MOVABLE(GeneralAllocator); - - public: - static BAN::ErrorOr<BAN::UniqPtr<GeneralAllocator>> create(PageTable&, vaddr_t first_vaddr); - ~GeneralAllocator(); - - BAN::ErrorOr<BAN::UniqPtr<GeneralAllocator>> clone(PageTable&); - - BAN::Optional<paddr_t> paddr_of(vaddr_t); - - vaddr_t allocate(size_t); - bool deallocate(vaddr_t); - - private: - GeneralAllocator(PageTable&, vaddr_t first_vaddr); - - private: - struct Allocation - { - vaddr_t address { 0 }; - BAN::Vector<paddr_t> pages; - - bool contains(vaddr_t); - }; - - private: - PageTable& m_page_table; - BAN::LinkedList<Allocation> m_allocations; - const vaddr_t m_first_vaddr; - }; - -} \ No newline at end of file diff --git a/kernel/kernel/Memory/GeneralAllocator.cpp b/kernel/kernel/Memory/GeneralAllocator.cpp deleted file mode 100644 index fd6d95d2..00000000 --- a/kernel/kernel/Memory/GeneralAllocator.cpp +++ /dev/null @@ -1,145 +0,0 @@ -#include <kernel/Memory/GeneralAllocator.h> - -namespace Kernel -{ - - BAN::ErrorOr<BAN::UniqPtr<GeneralAllocator>> GeneralAllocator::create(PageTable& page_table, vaddr_t first_vaddr) - { - auto* allocator = new GeneralAllocator(page_table, first_vaddr); - if (allocator == nullptr) - return BAN::Error::from_errno(ENOMEM); - return BAN::UniqPtr<GeneralAllocator>::adopt(allocator); - } - - GeneralAllocator::GeneralAllocator(PageTable& page_table, vaddr_t first_vaddr) - : m_page_table(page_table) - , m_first_vaddr(first_vaddr) - { } - - GeneralAllocator::~GeneralAllocator() - { - while (!m_allocations.empty()) - deallocate(m_allocations.front().address); - } - - vaddr_t GeneralAllocator::allocate(size_t bytes) - { - size_t needed_pages = BAN::Math::div_round_up<size_t>(bytes, PAGE_SIZE); - - Allocation allocation; - if (allocation.pages.resize(needed_pages, 0).is_error()) - return 0; - - for (size_t i = 0; i < needed_pages; i++) - { - paddr_t paddr = Heap::get().take_free_page(); - if (paddr == 0) - { - for (size_t j = 0; j < i; j++) - Heap::get().release_page(allocation.pages[j]); - return 0; - } - allocation.pages[i] = paddr; - } - - m_page_table.lock(); - - allocation.address = m_page_table.reserve_free_contiguous_pages(needed_pages, m_first_vaddr); - ASSERT(allocation.address); - - for (size_t i = 0; i < needed_pages; i++) - { - vaddr_t vaddr = allocation.address + i * PAGE_SIZE; - m_page_table.map_page_at(allocation.pages[i], vaddr, PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present); - } - - if (&m_page_table == &PageTable::current()) - m_page_table.load(); - - m_page_table.unlock(); - - MUST(m_allocations.push_back(BAN::move(allocation))); - return allocation.address; - } - - bool GeneralAllocator::deallocate(vaddr_t address) - { - for (auto it = m_allocations.begin(); it != m_allocations.end(); it++) - { - if (it->address != address) - continue; - - m_page_table.unmap_range(it->address, it->pages.size() * PAGE_SIZE); - for (auto paddr : it->pages) - Heap::get().release_page(paddr); - - m_allocations.remove(it); - - return true; - } - - return false; - } - - BAN::ErrorOr<BAN::UniqPtr<GeneralAllocator>> GeneralAllocator::clone(PageTable& new_page_table) - { - auto allocator = TRY(GeneralAllocator::create(new_page_table, m_first_vaddr)); - - m_page_table.lock(); - - ASSERT(m_page_table.is_page_free(0)); - - for (auto& allocation : m_allocations) - { - Allocation new_allocation; - ASSERT(new_page_table.is_range_free(allocation.address, allocation.pages.size() * PAGE_SIZE)); - - new_allocation.address = allocation.address; - MUST(new_allocation.pages.reserve(allocation.pages.size())); - - PageTable::flags_t flags = m_page_table.get_page_flags(allocation.address); - for (size_t i = 0; i < allocation.pages.size(); i++) - { - paddr_t paddr = Heap::get().take_free_page(); - ASSERT(paddr); - - vaddr_t vaddr = allocation.address + i * PAGE_SIZE; - - MUST(new_allocation.pages.push_back(paddr)); - new_page_table.map_page_at(paddr, vaddr, flags); - - m_page_table.map_page_at(paddr, 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); - memcpy((void*)0, (void*)vaddr, PAGE_SIZE); - } - - MUST(allocator->m_allocations.push_back(BAN::move(new_allocation))); - } - m_page_table.unmap_page(0); - - m_page_table.unlock(); - - return allocator; - } - - BAN::Optional<paddr_t> GeneralAllocator::paddr_of(vaddr_t vaddr) - { - for (auto& allocation : m_allocations) - { - if (!allocation.contains(vaddr)) - continue; - - size_t offset = vaddr - allocation.address; - size_t page_index = offset / PAGE_SIZE; - size_t page_offset = offset % PAGE_SIZE; - return allocation.pages[page_index] + page_offset; - } - - return {}; - } - - bool GeneralAllocator::Allocation::contains(vaddr_t vaddr) - { - return this->address <= vaddr && vaddr < this->address + this->pages.size() * PAGE_SIZE; - } - -} \ No newline at end of file diff --git a/kernel/kernel/Memory/kmalloc.cpp b/kernel/kernel/Memory/kmalloc.cpp index 7d24da52..eb3fa32c 100644 --- a/kernel/kernel/Memory/kmalloc.cpp +++ b/kernel/kernel/Memory/kmalloc.cpp @@ -1,7 +1,6 @@ #include <BAN/Errors.h> #include <kernel/CriticalScope.h> #include <kernel/kprint.h> -#include <kernel/Memory/GeneralAllocator.h> #include <kernel/Memory/kmalloc.h> #include <kernel/Thread.h> From 3bac19e51812fe6b3e682fa2e5240a681e9b0306 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 30 Oct 2023 19:02:09 +0200 Subject: [PATCH 174/240] Kernel: Add fast page to page table Add "fast page" to KERNEL_OFFSET. This is always present in page tables and only requires changing the page table entry to map. This requires no interrupts since it should only be for very operations like memcpy. I used to map all temporary mappings to vaddr 0, but this is much better. C++ standard always says that nullptr access is undefined and this gets rid of it. Fixed some bugs I found along the way --- LibELF/LibELF/LoadableELF.cpp | 10 +- kernel/arch/x86_64/PageTable.cpp | 96 +++++++++++++++++-- .../include/kernel/Memory/FileBackedRegion.h | 1 + kernel/include/kernel/Memory/PageTable.h | 21 +++- kernel/kernel/ACPI.cpp | 34 +++---- kernel/kernel/Memory/FileBackedRegion.cpp | 44 +++------ kernel/kernel/Memory/MemoryBackedRegion.cpp | 24 ++--- kernel/kernel/Memory/VirtualRange.cpp | 66 ++++++------- kernel/kernel/Storage/DiskCache.cpp | 31 +++--- 9 files changed, 193 insertions(+), 134 deletions(-) diff --git a/LibELF/LibELF/LoadableELF.cpp b/LibELF/LibELF/LoadableELF.cpp index 0897b282..20d19b8a 100644 --- a/LibELF/LibELF/LoadableELF.cpp +++ b/LibELF/LibELF/LoadableELF.cpp @@ -1,4 +1,5 @@ #include <BAN/ScopeGuard.h> +#include <kernel/CriticalScope.h> #include <kernel/Memory/Heap.h> #include <kernel/LockGuard.h> #include <LibELF/LoadableELF.h> @@ -306,9 +307,12 @@ namespace LibELF if (paddr == 0) return BAN::Error::from_errno(ENOMEM); - m_page_table.map_page_at(paddr, 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); - memcpy((void*)0, (void*)(start + i * PAGE_SIZE), PAGE_SIZE); - m_page_table.unmap_page(0); + { + CriticalScope _; + PageTable::map_fast_page(paddr); + memcpy(PageTable::fast_page_as_ptr(), (void*)(start + i * PAGE_SIZE), PAGE_SIZE); + PageTable::unmap_fast_page(); + } new_page_table.map_page_at(paddr, start + i * PAGE_SIZE, flags); elf->m_physical_page_count++; diff --git a/kernel/arch/x86_64/PageTable.cpp b/kernel/arch/x86_64/PageTable.cpp index 69b827db..bc2f4d40 100644 --- a/kernel/arch/x86_64/PageTable.cpp +++ b/kernel/arch/x86_64/PageTable.cpp @@ -1,6 +1,6 @@ -#include <BAN/Errors.h> #include <kernel/Arch.h> #include <kernel/CPUID.h> +#include <kernel/InterruptController.h> #include <kernel/LockGuard.h> #include <kernel/Memory/kmalloc.h> #include <kernel/Memory/PageTable.h> @@ -143,6 +143,8 @@ namespace Kernel uint64_t* pml4 = (uint64_t*)P2V(m_highest_paging_struct); pml4[511] = s_global_pml4e; + prepare_fast_page(); + // Map (phys_kernel_start -> phys_kernel_end) to (virt_kernel_start -> virt_kernel_end) ASSERT((vaddr_t)g_kernel_start % PAGE_SIZE == 0); map_range_at( @@ -185,6 +187,76 @@ namespace Kernel g_multiboot2_info = (multiboot2_info_t*)(multiboot2_vaddr + ((vaddr_t)g_multiboot2_info % PAGE_SIZE)); } + void PageTable::prepare_fast_page() + { + constexpr vaddr_t uc_vaddr = uncanonicalize(fast_page()); + constexpr uint64_t pml4e = (uc_vaddr >> 39) & 0x1FF; + constexpr uint64_t pdpte = (uc_vaddr >> 30) & 0x1FF; + constexpr uint64_t pde = (uc_vaddr >> 21) & 0x1FF; + constexpr uint64_t pte = (uc_vaddr >> 12) & 0x1FF; + + uint64_t* pml4 = (uint64_t*)P2V(m_highest_paging_struct); + ASSERT(!(pml4[pml4e] & Flags::Present)); + pml4[pml4e] = V2P(allocate_zeroed_page_aligned_page()) | Flags::ReadWrite | Flags::Present; + + uint64_t* pdpt = (uint64_t*)P2V(pml4[pml4e] & PAGE_ADDR_MASK); + ASSERT(!(pdpt[pdpte] & Flags::Present)); + pdpt[pdpte] = V2P(allocate_zeroed_page_aligned_page()) | Flags::ReadWrite | Flags::Present; + + uint64_t* pd = (uint64_t*)P2V(pdpt[pdpte] & PAGE_ADDR_MASK); + ASSERT(!(pd[pde] & Flags::Present)); + pd[pde] = V2P(allocate_zeroed_page_aligned_page()) | Flags::ReadWrite | Flags::Present; + + uint64_t* pt = (uint64_t*)P2V(pd[pde] & PAGE_ADDR_MASK); + ASSERT(!(pt[pte] & Flags::Present)); + pt[pte] = V2P(allocate_zeroed_page_aligned_page()); + } + + void PageTable::map_fast_page(paddr_t paddr) + { + ASSERT(s_kernel); + ASSERT_GE(paddr, 0); + ASSERT(!interrupts_enabled()); + + constexpr vaddr_t uc_vaddr = uncanonicalize(fast_page()); + constexpr uint64_t pml4e = (uc_vaddr >> 39) & 0x1FF; + constexpr uint64_t pdpte = (uc_vaddr >> 30) & 0x1FF; + constexpr uint64_t pde = (uc_vaddr >> 21) & 0x1FF; + constexpr uint64_t pte = (uc_vaddr >> 12) & 0x1FF; + + uint64_t* pml4 = (uint64_t*)P2V(s_kernel->m_highest_paging_struct); + uint64_t* pdpt = (uint64_t*)P2V(pml4[pml4e] & PAGE_ADDR_MASK); + uint64_t* pd = (uint64_t*)P2V(pdpt[pdpte] & PAGE_ADDR_MASK); + uint64_t* pt = (uint64_t*)P2V(pd[pde] & PAGE_ADDR_MASK); + + ASSERT(!(pt[pte] & Flags::Present)); + pt[pte] = paddr | Flags::ReadWrite | Flags::Present; + + invalidate(fast_page()); + } + + void PageTable::unmap_fast_page() + { + ASSERT(s_kernel); + ASSERT(!interrupts_enabled()); + + constexpr vaddr_t uc_vaddr = uncanonicalize(fast_page()); + constexpr uint64_t pml4e = (uc_vaddr >> 39) & 0x1FF; + constexpr uint64_t pdpte = (uc_vaddr >> 30) & 0x1FF; + constexpr uint64_t pde = (uc_vaddr >> 21) & 0x1FF; + constexpr uint64_t pte = (uc_vaddr >> 12) & 0x1FF; + + uint64_t* pml4 = (uint64_t*)P2V(s_kernel->m_highest_paging_struct); + uint64_t* pdpt = (uint64_t*)P2V(pml4[pml4e] & PAGE_ADDR_MASK); + uint64_t* pd = (uint64_t*)P2V(pdpt[pdpte] & PAGE_ADDR_MASK); + uint64_t* pt = (uint64_t*)P2V(pd[pde] & PAGE_ADDR_MASK); + + ASSERT(pt[pte] & Flags::Present); + pt[pte] = 0; + + invalidate(fast_page()); + } + BAN::ErrorOr<PageTable*> PageTable::create_userspace() { LockGuard _(s_kernel->m_lock); @@ -246,13 +318,16 @@ namespace Kernel void PageTable::invalidate(vaddr_t vaddr) { ASSERT(vaddr % PAGE_SIZE == 0); - if (this == s_current) - asm volatile("invlpg (%0)" :: "r"(vaddr) : "memory"); + asm volatile("invlpg (%0)" :: "r"(vaddr) : "memory"); } void PageTable::unmap_page(vaddr_t vaddr) { - if (vaddr && (vaddr >= KERNEL_OFFSET) != (this == s_kernel)) + ASSERT(vaddr); + ASSERT(vaddr != fast_page()); + if (vaddr >= KERNEL_OFFSET) + ASSERT_GE(vaddr, (vaddr_t)g_kernel_start); + if ((vaddr >= KERNEL_OFFSET) != (this == s_kernel)) Kernel::panic("unmapping {8H}, kernel: {}", vaddr, this == s_kernel); ASSERT(is_canonical(vaddr)); @@ -294,7 +369,11 @@ namespace Kernel void PageTable::map_page_at(paddr_t paddr, vaddr_t vaddr, flags_t flags) { - if (vaddr && (vaddr >= KERNEL_OFFSET) != (this == s_kernel)) + ASSERT(vaddr); + ASSERT(vaddr != fast_page()); + if (vaddr >= KERNEL_OFFSET) + ASSERT_GE(vaddr, (vaddr_t)g_kernel_start); + if ((vaddr >= KERNEL_OFFSET) != (this == s_kernel)) Kernel::panic("mapping {8H} to {8H}, kernel: {}", paddr, vaddr, this == s_kernel); ASSERT(is_canonical(vaddr)); @@ -361,12 +440,11 @@ namespace Kernel { ASSERT(is_canonical(vaddr)); + ASSERT(vaddr); ASSERT(paddr % PAGE_SIZE == 0); ASSERT(vaddr % PAGE_SIZE == 0); - size_t first_page = vaddr / PAGE_SIZE; - size_t last_page = (vaddr + size - 1) / PAGE_SIZE; - size_t page_count = last_page - first_page + 1; + size_t page_count = range_page_count(vaddr, size); LockGuard _(m_lock); for (size_t page = 0; page < page_count; page++) @@ -527,6 +605,8 @@ namespace Kernel vaddr_t PageTable::reserve_free_contiguous_pages(size_t page_count, vaddr_t first_address, vaddr_t last_address) { + if (first_address >= KERNEL_OFFSET && first_address < (vaddr_t)g_kernel_start) + first_address = (vaddr_t)g_kernel_start; if (size_t rem = first_address % PAGE_SIZE) first_address += PAGE_SIZE - rem; if (size_t rem = last_address % PAGE_SIZE) diff --git a/kernel/include/kernel/Memory/FileBackedRegion.h b/kernel/include/kernel/Memory/FileBackedRegion.h index a6160eaa..8943197c 100644 --- a/kernel/include/kernel/Memory/FileBackedRegion.h +++ b/kernel/include/kernel/Memory/FileBackedRegion.h @@ -38,6 +38,7 @@ namespace Kernel BAN::RefPtr<Inode> m_inode; const off_t m_offset; + // FIXME: is this even synchronized? BAN::RefPtr<SharedFileData> m_shared_data; }; diff --git a/kernel/include/kernel/Memory/PageTable.h b/kernel/include/kernel/Memory/PageTable.h index 18a21bc2..705853ba 100644 --- a/kernel/include/kernel/Memory/PageTable.h +++ b/kernel/include/kernel/Memory/PageTable.h @@ -29,6 +29,24 @@ namespace Kernel static PageTable& kernel(); static PageTable& current(); + static void map_fast_page(paddr_t); + static void unmap_fast_page(); + static constexpr vaddr_t fast_page() { return KERNEL_OFFSET; } + + // FIXME: implement sized checks, return span, etc + static void* fast_page_as_ptr(size_t offset = 0) + { + ASSERT(offset <= PAGE_SIZE); + return reinterpret_cast<void*>(fast_page() + offset); + } + + template<typename T> + static T& fast_page_as(size_t offset = 0) + { + ASSERT(offset + sizeof(T) <= PAGE_SIZE); + return *reinterpret_cast<T*>(fast_page() + offset); + } + static bool is_valid_pointer(uintptr_t); static BAN::ErrorOr<PageTable*> create_userspace(); @@ -64,7 +82,8 @@ namespace Kernel uint64_t get_page_data(vaddr_t) const; void initialize_kernel(); void map_kernel_memory(); - void invalidate(vaddr_t); + void prepare_fast_page(); + static void invalidate(vaddr_t); private: paddr_t m_highest_paging_struct { 0 }; diff --git a/kernel/kernel/ACPI.cpp b/kernel/kernel/ACPI.cpp index e853a253..d5de89cb 100644 --- a/kernel/kernel/ACPI.cpp +++ b/kernel/kernel/ACPI.cpp @@ -117,33 +117,33 @@ namespace Kernel if (rsdp->revision >= 2) { - PageTable::kernel().map_page_at(rsdp->xsdt_address & PAGE_ADDR_MASK, 0, PageTable::Flags::Present); - const XSDT* xsdt = (const XSDT*)(rsdp->xsdt_address % PAGE_SIZE); - BAN::ScopeGuard _([xsdt] { PageTable::kernel().unmap_page(0); }); + PageTable::map_fast_page(rsdp->xsdt_address & PAGE_ADDR_MASK); + auto& xsdt = PageTable::fast_page_as<const XSDT>(rsdp->xsdt_address % PAGE_SIZE); + BAN::ScopeGuard _([] { PageTable::unmap_fast_page(); }); - if (memcmp(xsdt->signature, "XSDT", 4) != 0) + if (memcmp(xsdt.signature, "XSDT", 4) != 0) return BAN::Error::from_error_code(ErrorCode::ACPI_RootInvalid); - if (!is_valid_std_header(xsdt)) + if (!is_valid_std_header(&xsdt)) return BAN::Error::from_error_code(ErrorCode::ACPI_RootInvalid); - m_header_table_paddr = (paddr_t)xsdt->entries + (rsdp->rsdt_address & PAGE_ADDR_MASK); + m_header_table_paddr = rsdp->xsdt_address + offsetof(XSDT, entries); m_entry_size = 8; - root_entry_count = (xsdt->length - sizeof(SDTHeader)) / 8; + root_entry_count = (xsdt.length - sizeof(SDTHeader)) / 8; } else { - PageTable::kernel().map_page_at(rsdp->rsdt_address & PAGE_ADDR_MASK, 0, PageTable::Flags::Present); - const RSDT* rsdt = (const RSDT*)((vaddr_t)rsdp->rsdt_address % PAGE_SIZE); - BAN::ScopeGuard _([rsdt] { PageTable::kernel().unmap_page(0); }); + PageTable::map_fast_page(rsdp->rsdt_address & PAGE_ADDR_MASK); + auto& rsdt = PageTable::fast_page_as<const RSDT>(rsdp->rsdt_address % PAGE_SIZE); + BAN::ScopeGuard _([] { PageTable::unmap_fast_page(); }); - if (memcmp(rsdt->signature, "RSDT", 4) != 0) + if (memcmp(rsdt.signature, "RSDT", 4) != 0) return BAN::Error::from_error_code(ErrorCode::ACPI_RootInvalid); - if (!is_valid_std_header(rsdt)) + if (!is_valid_std_header(&rsdt)) return BAN::Error::from_error_code(ErrorCode::ACPI_RootInvalid); - m_header_table_paddr = (paddr_t)rsdt->entries + (rsdp->rsdt_address & PAGE_ADDR_MASK); + m_header_table_paddr = rsdp->rsdt_address + offsetof(RSDT, entries); m_entry_size = 4; - root_entry_count = (rsdt->length - sizeof(SDTHeader)) / 4; + root_entry_count = (rsdt.length - sizeof(SDTHeader)) / 4; } size_t needed_pages = range_page_count(m_header_table_paddr, root_entry_count * m_entry_size); @@ -162,9 +162,9 @@ namespace Kernel auto map_header = [](paddr_t header_paddr) -> vaddr_t { - PageTable::kernel().map_page_at(header_paddr & PAGE_ADDR_MASK, 0, PageTable::Flags::Present); - size_t header_length = ((SDTHeader*)(header_paddr % PAGE_SIZE))->length; - PageTable::kernel().unmap_page(0); + PageTable::map_fast_page(header_paddr & PAGE_ADDR_MASK); + size_t header_length = PageTable::fast_page_as<SDTHeader>(header_paddr % PAGE_SIZE).length; + PageTable::unmap_fast_page(); size_t needed_pages = range_page_count(header_paddr, header_length); vaddr_t page_vaddr = PageTable::kernel().reserve_free_contiguous_pages(needed_pages, KERNEL_OFFSET); diff --git a/kernel/kernel/Memory/FileBackedRegion.cpp b/kernel/kernel/Memory/FileBackedRegion.cpp index 0592be5b..39837d70 100644 --- a/kernel/kernel/Memory/FileBackedRegion.cpp +++ b/kernel/kernel/Memory/FileBackedRegion.cpp @@ -1,3 +1,4 @@ +#include <kernel/CriticalScope.h> #include <kernel/LockGuard.h> #include <kernel/Memory/FileBackedRegion.h> #include <kernel/Memory/Heap.h> @@ -71,13 +72,10 @@ namespace Kernel continue; { - auto& page_table = PageTable::current(); - LockGuard _(page_table); - ASSERT(page_table.is_page_free(0)); - - page_table.map_page_at(pages[i], 0, PageTable::Flags::Present); - memcpy(page_buffer, (void*)0, PAGE_SIZE); - page_table.unmap_page(0); + CriticalScope _; + PageTable::map_fast_page(pages[i]); + memcpy(page_buffer, PageTable::fast_page_as_ptr(), PAGE_SIZE); + PageTable::unmap_fast_page(); } if (auto ret = inode->write(i * PAGE_SIZE, BAN::ConstByteSpan::from(page_buffer)); ret.is_error()) @@ -105,23 +103,8 @@ namespace Kernel size_t file_offset = m_offset + (vaddr - m_vaddr); size_t bytes = BAN::Math::min<size_t>(m_size - file_offset, PAGE_SIZE); - BAN::ErrorOr<size_t> read_ret = 0; - - // Zero out the new page - if (&PageTable::current() == &m_page_table) - read_ret = m_inode->read(file_offset, BAN::ByteSpan((uint8_t*)vaddr, bytes)); - else - { - auto& page_table = PageTable::current(); - - LockGuard _(page_table); - ASSERT(page_table.is_page_free(0)); - - page_table.map_page_at(paddr, 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); - read_ret = m_inode->read(file_offset, BAN::ByteSpan((uint8_t*)0, bytes)); - memset((void*)0, 0x00, PAGE_SIZE); - page_table.unmap_page(0); - } + ASSERT_EQ(&PageTable::current(), &m_page_table); + auto read_ret = m_inode->read(file_offset, BAN::ByteSpan((uint8_t*)vaddr, bytes)); if (read_ret.is_error()) { @@ -158,15 +141,10 @@ namespace Kernel TRY(m_inode->read(offset, BAN::ByteSpan(m_shared_data->page_buffer, bytes))); - auto& page_table = PageTable::current(); - - // TODO: check if this can cause deadlock? - LockGuard page_table_lock(page_table); - ASSERT(page_table.is_page_free(0)); - - page_table.map_page_at(pages[page_index], 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); - memcpy((void*)0, m_shared_data->page_buffer, PAGE_SIZE); - page_table.unmap_page(0); + CriticalScope _; + PageTable::map_fast_page(pages[page_index]); + memcpy(PageTable::fast_page_as_ptr(), m_shared_data->page_buffer, PAGE_SIZE); + PageTable::unmap_fast_page(); } paddr_t paddr = pages[page_index]; diff --git a/kernel/kernel/Memory/MemoryBackedRegion.cpp b/kernel/kernel/Memory/MemoryBackedRegion.cpp index 6554d7c5..cefb18ec 100644 --- a/kernel/kernel/Memory/MemoryBackedRegion.cpp +++ b/kernel/kernel/Memory/MemoryBackedRegion.cpp @@ -1,3 +1,4 @@ +#include <kernel/CriticalScope.h> #include <kernel/LockGuard.h> #include <kernel/Memory/Heap.h> #include <kernel/Memory/MemoryBackedRegion.h> @@ -60,12 +61,10 @@ namespace Kernel memset((void*)vaddr, 0x00, PAGE_SIZE); else { - LockGuard _(PageTable::current()); - ASSERT(PageTable::current().is_page_free(0)); - - PageTable::current().map_page_at(paddr, 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); - memset((void*)0, 0x00, PAGE_SIZE); - PageTable::current().unmap_page(0); + CriticalScope _; + PageTable::map_fast_page(paddr); + memset(PageTable::fast_page_as_ptr(), 0x00, PAGE_SIZE); + PageTable::unmap_fast_page(); } return true; @@ -105,15 +104,10 @@ namespace Kernel memcpy((void*)write_vaddr, (void*)(buffer + written), bytes); else { - paddr_t paddr = m_page_table.physical_address_of(write_vaddr & PAGE_ADDR_MASK); - ASSERT(paddr); - - LockGuard _(PageTable::current()); - ASSERT(PageTable::current().is_page_free(0)); - - PageTable::current().map_page_at(paddr, 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); - memcpy((void*)page_offset, (void*)(buffer + written), bytes); - PageTable::current().unmap_page(0); + CriticalScope _; + PageTable::map_fast_page(m_page_table.physical_address_of(write_vaddr & PAGE_ADDR_MASK)); + memcpy(PageTable::fast_page_as_ptr(page_offset), (void*)(buffer + written), bytes); + PageTable::unmap_fast_page(); } written += bytes; diff --git a/kernel/kernel/Memory/VirtualRange.cpp b/kernel/kernel/Memory/VirtualRange.cpp index 670a0b2b..69bcdb69 100644 --- a/kernel/kernel/Memory/VirtualRange.cpp +++ b/kernel/kernel/Memory/VirtualRange.cpp @@ -1,3 +1,4 @@ +#include <kernel/CriticalScope.h> #include <kernel/LockGuard.h> #include <kernel/Memory/Heap.h> #include <kernel/Memory/VirtualRange.h> @@ -124,7 +125,6 @@ namespace Kernel auto result = TRY(create_to_vaddr(page_table, vaddr(), size(), flags(), m_preallocated)); LockGuard _(m_page_table); - ASSERT(m_page_table.is_page_free(0)); for (size_t offset = 0; offset < size(); offset += PAGE_SIZE) { if (!m_preallocated && m_page_table.physical_address_of(vaddr() + offset)) @@ -134,10 +134,12 @@ namespace Kernel return BAN::Error::from_errno(ENOMEM); result->m_page_table.map_page_at(paddr, vaddr() + offset, m_flags); } - m_page_table.map_page_at(result->m_page_table.physical_address_of(vaddr() + offset), 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); - memcpy((void*)0, (void*)(vaddr() + offset), PAGE_SIZE); + + CriticalScope _; + PageTable::map_fast_page(result->m_page_table.physical_address_of(vaddr() + offset)); + memcpy(PageTable::fast_page_as_ptr(), (void*)(vaddr() + offset), PAGE_SIZE); + PageTable::unmap_fast_page(); } - m_page_table.unmap_page(0); return result; } @@ -172,14 +174,13 @@ namespace Kernel return; } - LockGuard _(page_table); - ASSERT(page_table.is_page_free(0)); for (size_t offset = 0; offset < size(); offset += PAGE_SIZE) { - page_table.map_page_at(m_page_table.physical_address_of(vaddr() + offset), 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); - memset((void*)0, 0, PAGE_SIZE); + CriticalScope _; + PageTable::map_fast_page(m_page_table.physical_address_of(vaddr() + offset)); + memset(PageTable::fast_page_as_ptr(), 0x00, PAGE_SIZE); + PageTable::unmap_fast_page(); } - page_table.unmap_page(0); } void VirtualRange::copy_from(size_t offset, const uint8_t* buffer, size_t bytes) @@ -187,47 +188,34 @@ namespace Kernel if (bytes == 0) return; - // NOTE: Handling overflow - ASSERT(offset <= size()); - ASSERT(bytes <= size()); - ASSERT(offset + bytes <= size()); + // Verify no overflow + ASSERT_LE(bytes, size()); + ASSERT_LE(offset, size()); + ASSERT_LE(offset, size() - bytes); - PageTable& page_table = PageTable::current(); - - if (m_kmalloc || &page_table == &m_page_table) + if (m_kmalloc || &PageTable::current() == &m_page_table) { memcpy((void*)(vaddr() + offset), buffer, bytes); return; } - LockGuard _(page_table); - ASSERT(page_table.is_page_free(0)); - - size_t off = offset % PAGE_SIZE; - size_t i = offset / PAGE_SIZE; - - // NOTE: we map the first page separately since it needs extra calculations - page_table.map_page_at(m_page_table.physical_address_of(vaddr() + i * PAGE_SIZE), 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); - - memcpy((void*)off, buffer, PAGE_SIZE - off); - - buffer += PAGE_SIZE - off; - bytes -= PAGE_SIZE - off; - i++; + size_t page_offset = offset % PAGE_SIZE; + size_t page_index = offset / PAGE_SIZE; while (bytes > 0) { - size_t len = BAN::Math::min<size_t>(PAGE_SIZE, bytes); + { + CriticalScope _; + PageTable::map_fast_page(m_page_table.physical_address_of(vaddr() + page_index * PAGE_SIZE)); + memcpy(PageTable::fast_page_as_ptr(page_offset), buffer, PAGE_SIZE - page_offset); + PageTable::unmap_fast_page(); + } - page_table.map_page_at(m_page_table.physical_address_of(vaddr() + i * PAGE_SIZE), 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); - - memcpy((void*)0, buffer, len); - - buffer += len; - bytes -= len; - i++; + buffer += PAGE_SIZE - page_offset; + bytes -= PAGE_SIZE - page_offset; + page_offset = 0; + page_index++; } - page_table.unmap_page(0); } } \ No newline at end of file diff --git a/kernel/kernel/Storage/DiskCache.cpp b/kernel/kernel/Storage/DiskCache.cpp index 05803ad7..4f6e3d52 100644 --- a/kernel/kernel/Storage/DiskCache.cpp +++ b/kernel/kernel/Storage/DiskCache.cpp @@ -47,9 +47,9 @@ namespace Kernel continue; CriticalScope _; - page_table.map_page_at(cache.paddr, 0, PageTable::Flags::Present); - memcpy(buffer.data(), (void*)(page_cache_offset * m_sector_size), m_sector_size); - page_table.unmap_page(0); + PageTable::map_fast_page(cache.paddr); + memcpy(buffer.data(), PageTable::fast_page_as_ptr(page_cache_offset * m_sector_size), m_sector_size); + PageTable::unmap_fast_page(); return true; } @@ -82,9 +82,9 @@ namespace Kernel { CriticalScope _; - page_table.map_page_at(cache.paddr, 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); - memcpy((void*)(page_cache_offset * m_sector_size), buffer.data(), m_sector_size); - page_table.unmap_page(0); + PageTable::map_fast_page(cache.paddr); + memcpy(PageTable::fast_page_as_ptr(page_cache_offset * m_sector_size), buffer.data(), m_sector_size); + PageTable::unmap_fast_page(); } cache.sector_mask |= 1 << page_cache_offset; @@ -113,9 +113,9 @@ namespace Kernel { CriticalScope _; - page_table.map_page_at(cache.paddr, 0, PageTable::Flags::ReadWrite | PageTable::Flags::Present); - memcpy((void*)(page_cache_offset * m_sector_size), buffer.data(), m_sector_size); - page_table.unmap_page(0); + PageTable::map_fast_page(cache.paddr); + memcpy(PageTable::fast_page_as_ptr(page_cache_offset * m_sector_size), buffer.data(), m_sector_size); + PageTable::unmap_fast_page(); } return {}; @@ -123,21 +123,16 @@ namespace Kernel BAN::ErrorOr<void> DiskCache::sync() { - ASSERT(&PageTable::current() == &PageTable::kernel()); - auto& page_table = PageTable::kernel(); - for (auto& cache : m_cache) { if (cache.dirty_mask == 0) continue; { - LockGuard _(page_table); - ASSERT(page_table.is_page_free(0)); - - page_table.map_page_at(cache.paddr, 0, PageTable::Flags::Present); - memcpy(m_sync_cache.data(), (void*)0, PAGE_SIZE); - page_table.unmap_page(0); + CriticalScope _; + PageTable::map_fast_page(cache.paddr); + memcpy(m_sync_cache.data(), PageTable::fast_page_as_ptr(), PAGE_SIZE); + PageTable::unmap_fast_page(); } uint8_t sector_start = 0; From a44482639d01d69a7473ea2107b4601049bb5cba Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 30 Oct 2023 19:08:33 +0200 Subject: [PATCH 175/240] Kernel: Temporarily force FileBackedRegion mappings writable Now that write-protect bit is enabled this is neccessary. --- kernel/kernel/Memory/FileBackedRegion.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/kernel/kernel/Memory/FileBackedRegion.cpp b/kernel/kernel/Memory/FileBackedRegion.cpp index 39837d70..97742cf0 100644 --- a/kernel/kernel/Memory/FileBackedRegion.cpp +++ b/kernel/kernel/Memory/FileBackedRegion.cpp @@ -98,7 +98,9 @@ namespace Kernel paddr_t paddr = Heap::get().take_free_page(); if (paddr == 0) return BAN::Error::from_errno(ENOMEM); - m_page_table.map_page_at(paddr, vaddr, m_flags); + + // Temporarily force mapping to be writable so kernel can write to it + m_page_table.map_page_at(paddr, vaddr, m_flags | PageTable::Flags::ReadWrite); size_t file_offset = m_offset + (vaddr - m_vaddr); size_t bytes = BAN::Math::min<size_t>(m_size - file_offset, PAGE_SIZE); @@ -120,6 +122,10 @@ namespace Kernel m_page_table.unmap_page(vaddr); return BAN::Error::from_errno(EIO); } + + // Disable writable if not wanted + if (!(m_flags & PageTable::Flags::ReadWrite)) + m_page_table.map_page_at(paddr, vaddr, m_flags); } else if (m_type == Type::SHARED) { From 5e396851f46cbe10b909ab8382b8aeea5e4361d0 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 30 Oct 2023 19:09:31 +0200 Subject: [PATCH 176/240] Kernel: Remove unused externs in kernel.cpp --- kernel/kernel/kernel.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/kernel/kernel/kernel.cpp b/kernel/kernel/kernel.cpp index 08ce725d..5c5e1382 100644 --- a/kernel/kernel/kernel.cpp +++ b/kernel/kernel/kernel.cpp @@ -79,9 +79,6 @@ static void parse_command_line() } } -extern "C" uint8_t g_userspace_start[]; -extern "C" uint8_t g_userspace_end[]; - TerminalDriver* g_terminal_driver = nullptr; static void init2(void*); From 4f25c20c97c4eb00892e09494a99eaebdfecaaa7 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 30 Oct 2023 19:20:17 +0200 Subject: [PATCH 177/240] Kernel: Canonicalize vaddr before using it --- kernel/arch/x86_64/PageTable.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kernel/arch/x86_64/PageTable.cpp b/kernel/arch/x86_64/PageTable.cpp index bc2f4d40..d3c53570 100644 --- a/kernel/arch/x86_64/PageTable.cpp +++ b/kernel/arch/x86_64/PageTable.cpp @@ -580,8 +580,9 @@ namespace Kernel vaddr |= (uint64_t)pdpte << 30; vaddr |= (uint64_t)pde << 21; vaddr |= (uint64_t)pte << 12; + vaddr = canonicalize(vaddr); ASSERT(reserve_page(vaddr)); - return canonicalize(vaddr); + return vaddr; } } } From 120f7329b1156c3bf6e2cec9edc5af5b8be6c03a Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Thu, 2 Nov 2023 00:01:12 +0200 Subject: [PATCH 178/240] BAN: Update ASSERT api its now much harder to mix < with <= and > with >= --- BAN/include/BAN/Assert.h | 12 ++++++------ kernel/arch/x86_64/PageTable.cpp | 6 +++--- kernel/kernel/Memory/VirtualRange.cpp | 6 +++--- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/BAN/include/BAN/Assert.h b/BAN/include/BAN/Assert.h index 9e9de1b3..139d33e8 100644 --- a/BAN/include/BAN/Assert.h +++ b/BAN/include/BAN/Assert.h @@ -19,12 +19,12 @@ Kernel::panic(name "(" #lhs ", " #rhs ") ({} " #op " {}) failed", _lhs, _rhs); \ } while (false) - #define ASSERT_LT(lhs, rhs) __ASSERT_BIN_OP(lhs, rhs, "ASSERT_LT", <) - #define ASSERT_LE(lhs, rhs) __ASSERT_BIN_OP(lhs, rhs, "ASSERT_LE", <=) - #define ASSERT_GT(lhs, rhs) __ASSERT_BIN_OP(lhs, rhs, "ASSERT_GT", >) - #define ASSERT_GE(lhs, rhs) __ASSERT_BIN_OP(lhs, rhs, "ASSERT_GE", >=) - #define ASSERT_EQ(lhs, rhs) __ASSERT_BIN_OP(lhs, rhs, "ASSERT_EQ", ==) - #define ASSERT_NE(lhs, rhs) __ASSERT_BIN_OP(lhs, rhs, "ASSERT_NE", !=) + #define ASSERT_LT(lhs, rhs) __ASSERT_BIN_OP(lhs, rhs, "ASSERT_LT", <) + #define ASSERT_LTE(lhs, rhs) __ASSERT_BIN_OP(lhs, rhs, "ASSERT_LTE", <=) + #define ASSERT_GT(lhs, rhs) __ASSERT_BIN_OP(lhs, rhs, "ASSERT_GT", >) + #define ASSERT_GTE(lhs, rhs) __ASSERT_BIN_OP(lhs, rhs, "ASSERT_GTE", >=) + #define ASSERT_EQ(lhs, rhs) __ASSERT_BIN_OP(lhs, rhs, "ASSERT_EQ", ==) + #define ASSERT_NEQ(lhs, rhs) __ASSERT_BIN_OP(lhs, rhs, "ASSERT_NEQ", !=) #define ASSERT_NOT_REACHED() Kernel::panic("ASSERT_NOT_REACHED() failed") #else #include <assert.h> diff --git a/kernel/arch/x86_64/PageTable.cpp b/kernel/arch/x86_64/PageTable.cpp index d3c53570..2abd768a 100644 --- a/kernel/arch/x86_64/PageTable.cpp +++ b/kernel/arch/x86_64/PageTable.cpp @@ -215,7 +215,7 @@ namespace Kernel void PageTable::map_fast_page(paddr_t paddr) { ASSERT(s_kernel); - ASSERT_GE(paddr, 0); + ASSERT_NEQ(paddr, 0); ASSERT(!interrupts_enabled()); constexpr vaddr_t uc_vaddr = uncanonicalize(fast_page()); @@ -326,7 +326,7 @@ namespace Kernel ASSERT(vaddr); ASSERT(vaddr != fast_page()); if (vaddr >= KERNEL_OFFSET) - ASSERT_GE(vaddr, (vaddr_t)g_kernel_start); + ASSERT_GTE(vaddr, (vaddr_t)g_kernel_start); if ((vaddr >= KERNEL_OFFSET) != (this == s_kernel)) Kernel::panic("unmapping {8H}, kernel: {}", vaddr, this == s_kernel); @@ -372,7 +372,7 @@ namespace Kernel ASSERT(vaddr); ASSERT(vaddr != fast_page()); if (vaddr >= KERNEL_OFFSET) - ASSERT_GE(vaddr, (vaddr_t)g_kernel_start); + ASSERT_GTE(vaddr, (vaddr_t)g_kernel_start); if ((vaddr >= KERNEL_OFFSET) != (this == s_kernel)) Kernel::panic("mapping {8H} to {8H}, kernel: {}", paddr, vaddr, this == s_kernel); diff --git a/kernel/kernel/Memory/VirtualRange.cpp b/kernel/kernel/Memory/VirtualRange.cpp index 69bcdb69..0d9031de 100644 --- a/kernel/kernel/Memory/VirtualRange.cpp +++ b/kernel/kernel/Memory/VirtualRange.cpp @@ -189,9 +189,9 @@ namespace Kernel return; // Verify no overflow - ASSERT_LE(bytes, size()); - ASSERT_LE(offset, size()); - ASSERT_LE(offset, size() - bytes); + ASSERT_LTE(bytes, size()); + ASSERT_LTE(offset, size()); + ASSERT_LTE(offset, size() - bytes); if (m_kmalloc || &PageTable::current() == &m_page_table) { From 6d899aa6ce479fdd5aa11d0f8a426f89bfc1f140 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Sat, 4 Nov 2023 17:50:43 +0200 Subject: [PATCH 179/240] BuildSystem: using sysroot doesn't need root privileges anymore! Sysroot is now created with fakeroot. This allows root access to be only needed for disk image creation, since it uses loopback devices. --- .gitignore | 2 +- BAN/CMakeLists.txt | 6 ++-- CMakeLists.txt | 5 ++- LibELF/CMakeLists.txt | 3 +- README.md | 6 ++-- kernel/CMakeLists.txt | 8 ++--- libc/CMakeLists.txt | 13 +++---- script/build.sh | 16 +++++---- script/config.sh | 1 + script/{image-full.sh => image-create.sh} | 2 +- script/image.sh | 44 ++++++++++------------- toolchain/Toolchain.txt | 12 ++++++- userspace/Shell/CMakeLists.txt | 3 +- userspace/cat-mmap/CMakeLists.txt | 3 +- userspace/cat/CMakeLists.txt | 3 +- userspace/chmod/CMakeLists.txt | 3 +- userspace/cp/CMakeLists.txt | 3 +- userspace/create_program.sh | 3 +- userspace/dd/CMakeLists.txt | 3 +- userspace/echo/CMakeLists.txt | 3 +- userspace/id/CMakeLists.txt | 3 +- userspace/init/CMakeLists.txt | 3 +- userspace/ls/CMakeLists.txt | 3 +- userspace/meminfo/CMakeLists.txt | 3 +- userspace/mkdir/CMakeLists.txt | 3 +- userspace/mmap-shared-test/CMakeLists.txt | 3 +- userspace/poweroff/CMakeLists.txt | 3 +- userspace/rm/CMakeLists.txt | 3 +- userspace/snake/CMakeLists.txt | 3 +- userspace/stat/CMakeLists.txt | 3 +- userspace/sync/CMakeLists.txt | 3 +- userspace/tee/CMakeLists.txt | 3 +- userspace/test-globals/CMakeLists.txt | 3 +- userspace/test/CMakeLists.txt | 3 +- userspace/touch/CMakeLists.txt | 3 +- userspace/u8sum/CMakeLists.txt | 3 +- userspace/whoami/CMakeLists.txt | 3 +- userspace/yes/CMakeLists.txt | 3 +- 38 files changed, 83 insertions(+), 113 deletions(-) rename script/{image-full.sh => image-create.sh} (98%) diff --git a/.gitignore b/.gitignore index a9328e85..6f2b0700 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,4 @@ .idea/ build/ base/ - +script/fakeroot-context diff --git a/BAN/CMakeLists.txt b/BAN/CMakeLists.txt index f48b5393..30aa004c 100644 --- a/BAN/CMakeLists.txt +++ b/BAN/CMakeLists.txt @@ -10,17 +10,15 @@ set(BAN_SOURCES ) add_custom_target(ban-headers - COMMAND sudo rsync -a ${CMAKE_CURRENT_SOURCE_DIR}/include/ ${BANAN_INCLUDE}/ + COMMAND ${CMAKE_COMMAND} -E copy_directory_if_different ${CMAKE_CURRENT_SOURCE_DIR}/include/ ${BANAN_INCLUDE}/ DEPENDS sysroot - USES_TERMINAL ) add_library(ban ${BAN_SOURCES}) add_dependencies(ban headers libc-install) add_custom_target(ban-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/libban.a ${BANAN_LIB}/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_BINARY_DIR}/libban.a ${BANAN_LIB}/ DEPENDS ban BYPRODUCTS ${BANAN_LIB}/libban.a - USES_TERMINAL ) diff --git a/CMakeLists.txt b/CMakeLists.txt index e6533eba..ad304de9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,6 @@ add_compile_definitions(__enable_sse=0) project(banan-os CXX C ASM) set(BANAN_BASE_SYSROOT ${CMAKE_SOURCE_DIR}/base-sysroot.tar.gz) -set(BANAN_SYSROOT ${CMAKE_BINARY_DIR}/sysroot) set(BANAN_INCLUDE ${BANAN_SYSROOT}/usr/include) set(BANAN_LIB ${BANAN_SYSROOT}/usr/lib) set(BANAN_BIN ${BANAN_SYSROOT}/usr/bin) @@ -24,8 +23,7 @@ add_subdirectory(userspace) add_custom_target(sysroot COMMAND ${CMAKE_COMMAND} -E make_directory ${BANAN_SYSROOT} - COMMAND cd ${BANAN_SYSROOT} && sudo tar xf ${BANAN_BASE_SYSROOT} - USES_TERMINAL + COMMAND cd ${BANAN_SYSROOT} && tar xf ${BANAN_BASE_SYSROOT} ) add_custom_target(headers @@ -36,6 +34,7 @@ add_custom_target(headers ) add_custom_target(install-sysroot + COMMAND cd ${BANAN_SYSROOT} && tar cf ${BANAN_SYSROOT_TAR} * DEPENDS kernel-install DEPENDS ban-install DEPENDS libc-install diff --git a/LibELF/CMakeLists.txt b/LibELF/CMakeLists.txt index 57006114..b9ce4fd1 100644 --- a/LibELF/CMakeLists.txt +++ b/LibELF/CMakeLists.txt @@ -3,9 +3,8 @@ cmake_minimum_required(VERSION 3.26) project(LibELF CXX) add_custom_target(libelf-headers - COMMAND sudo rsync -a ${CMAKE_CURRENT_SOURCE_DIR}/include/ ${BANAN_INCLUDE}/ + COMMAND ${CMAKE_COMMAND} -E copy_directory_if_different ${CMAKE_CURRENT_SOURCE_DIR}/include/ ${BANAN_INCLUDE}/ DEPENDS sysroot - USES_TERMINAL ) add_custom_target(libelf-install diff --git a/README.md b/README.md index 959f09a4..9b315c21 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # banan-os -This is my hobby operating system written in C++. Currently supports only x86_64 architecture. We have a ext2 filesystem, basic ramfs, IDE disk drivers in ATA PIO mode, ATA AHCI drivers, userspace processes, executable loading from ELF format, linear VBE graphics and multithreaded processing on single core. +This is my hobby operating system written in C++. Currently supports only x86\_64 architecture. We have a ext2 filesystem, basic ramfs, IDE disk drivers in ATA PIO mode, ATA AHCI drivers, userspace processes, executable loading from ELF format, linear VBE graphics and multithreaded processing on single core. ![screenshot from qemu running banan-os](assets/banan-os.png) @@ -20,7 +20,7 @@ To build the toolchain for this os. You can run the following command. ./script/build.sh toolchain ``` -To build the os itself you can run one of the following commands. You will need root access since the sysroot has "proper" permissions. +To build the os itself you can run one of the following commands. You will need root access for disk image creation/modification. ```sh ./script/build.sh qemu ./script/build.sh qemu-nographic @@ -39,8 +39,6 @@ If you have corrupted your disk image or want to create new one, you can either ./script/build.sh image-full ``` -> ***NOTE*** ```ninja clean``` has to be ran with root permissions, since it deletes from the banan-so sysroot. - If you feel like ```./script/build.sh``` is too verbose, there exists a symlink _bos_ in this projects root directory. All build commands can be used with ```./bos args...``` instead. I have also created shell completion script for zsh. You can either copy the file in _script/shell-completion/zsh/\_bos_ to _/usr/share/zsh/site-functions/_ or add the _script/shell-completion/zsh_ to your fpath in _.zshrc_. diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index a61cc1a4..770c57b0 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -165,16 +165,14 @@ endif() target_link_options(kernel PUBLIC -ffreestanding -nostdlib) add_custom_target(kernel-headers - COMMAND sudo rsync -a ${CMAKE_CURRENT_SOURCE_DIR}/include/ ${BANAN_INCLUDE}/ - COMMAND sudo rsync -a ${CMAKE_CURRENT_SOURCE_DIR}/lai/include/ ${BANAN_INCLUDE}/ + COMMAND ${CMAKE_COMMAND} -E copy_directory_if_different ${CMAKE_CURRENT_SOURCE_DIR}/include/ ${BANAN_INCLUDE}/ + COMMAND ${CMAKE_COMMAND} -E copy_directory_if_different ${CMAKE_CURRENT_SOURCE_DIR}/lai/include/ ${BANAN_INCLUDE}/ DEPENDS sysroot - USES_TERMINAL ) add_custom_target(kernel-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/kernel ${BANAN_BOOT}/banan-os.kernel + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/kernel ${BANAN_BOOT}/banan-os.kernel DEPENDS kernel - USES_TERMINAL ) execute_process(COMMAND ${CMAKE_CXX_COMPILER} -print-file-name=crtbegin.o OUTPUT_VARIABLE CRTBEGIN OUTPUT_STRIP_TRAILING_WHITESPACE) diff --git a/libc/CMakeLists.txt b/libc/CMakeLists.txt index 5432b6f0..82081493 100644 --- a/libc/CMakeLists.txt +++ b/libc/CMakeLists.txt @@ -26,9 +26,8 @@ set(LIBC_SOURCES ) add_custom_target(libc-headers - COMMAND sudo rsync -a ${CMAKE_CURRENT_SOURCE_DIR}/include/ ${BANAN_INCLUDE}/ + COMMAND ${CMAKE_COMMAND} -E copy_directory_if_different ${CMAKE_CURRENT_SOURCE_DIR}/include/ ${BANAN_INCLUDE}/ DEPENDS sysroot - USES_TERMINAL ) add_custom_target(crtx @@ -38,11 +37,10 @@ add_custom_target(crtx ) add_custom_target(crtx-install - COMMAND sudo cp crt0.o ${BANAN_LIB}/ - COMMAND sudo cp crti.o ${BANAN_LIB}/ - COMMAND sudo cp crtn.o ${BANAN_LIB}/ + COMMAND ${CMAKE_COMMAND} -E copy crt0.o ${BANAN_LIB}/ + COMMAND ${CMAKE_COMMAND} -E copy crti.o ${BANAN_LIB}/ + COMMAND ${CMAKE_COMMAND} -E copy crtn.o ${BANAN_LIB}/ DEPENDS crtx - USES_TERMINAL ) add_library(libc ${LIBC_SOURCES}) @@ -51,10 +49,9 @@ add_dependencies(libc headers crtx-install) target_compile_options(libc PRIVATE -g -Wstack-usage=512) add_custom_target(libc-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/libc.a ${BANAN_LIB}/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_BINARY_DIR}/libc.a ${BANAN_LIB}/ DEPENDS libc BYPRODUCTS ${BANAN_LIB}/libc.a - USES_TERMINAL ) set(CMAKE_STATIC_LIBRARY_PREFIX "") diff --git a/script/build.sh b/script/build.sh index c8399d7c..3bfedc21 100755 --- a/script/build.sh +++ b/script/build.sh @@ -4,6 +4,12 @@ set -e export BANAN_SCRIPT_DIR=$(dirname $(realpath $0)) source $BANAN_SCRIPT_DIR/config.sh +FAKEROOT_FILE="$BANAN_BUILD_DIR/fakeroot-context" + +run_fakeroot() { + fakeroot -i $FAKEROOT_FILE -s $FAKEROOT_FILE -- /bin/bash -c '$@' bash $@ +} + make_build_dir () { mkdir -p $BANAN_BUILD_DIR cd $BANAN_BUILD_DIR @@ -19,7 +25,7 @@ build_target () { exit 1 fi cd $BANAN_BUILD_DIR - ninja $1 + run_fakeroot ninja $1 } build_toolchain () { @@ -39,11 +45,7 @@ build_toolchain () { create_image () { build_target install-sysroot - if [[ "$1" == "full" ]]; then - $BANAN_SCRIPT_DIR/image-full.sh - else - $BANAN_SCRIPT_DIR/image.sh - fi + $BANAN_SCRIPT_DIR/image.sh "$1" } run_qemu () { @@ -56,7 +58,7 @@ run_bochs () { $BANAN_SCRIPT_DIR/bochs.sh $@ } -if [[ "$(uname)" == "Linux" ]]; then +if [[ -c /dev/kvm ]]; then QEMU_ACCEL="-accel kvm" fi diff --git a/script/config.sh b/script/config.sh index ebdfc1f7..a42f8a51 100644 --- a/script/config.sh +++ b/script/config.sh @@ -18,6 +18,7 @@ export BANAN_TOOLCHAIN_TRIPLE_PREFIX=$BANAN_ARCH-banan_os export BANAN_BUILD_DIR=$BANAN_ROOT_DIR/build export BANAN_SYSROOT=$BANAN_BUILD_DIR/sysroot +export BANAN_SYSROOT_TAR=$BANAN_SYSROOT.tar export BANAN_DISK_IMAGE_PATH=$BANAN_BUILD_DIR/banan-os.img diff --git a/script/image-full.sh b/script/image-create.sh similarity index 98% rename from script/image-full.sh rename to script/image-create.sh index 061dd10d..bce3e001 100755 --- a/script/image-full.sh +++ b/script/image-create.sh @@ -72,7 +72,7 @@ sudo partprobe $LOOP_DEV PARTITION1=${LOOP_DEV}p1 PARTITION2=${LOOP_DEV}p2 -sudo mkfs.ext2 -d $BANAN_SYSROOT -b 1024 -q $PARTITION2 +sudo mkfs.ext2 -b 1024 -q $PARTITION2 if [[ "$BANAN_UEFI_BOOT" == "1" ]]; then sudo mkfs.fat $PARTITION1 > /dev/null diff --git a/script/image.sh b/script/image.sh index 26061b47..ae39bdfb 100755 --- a/script/image.sh +++ b/script/image.sh @@ -1,44 +1,38 @@ #!/bin/bash -if [[ -z $BANAN_ROOT_DIR ]]; then - echo "You must set the BANAN_ROOT_DIR environment variable" >&2 - exit 1 -fi - if [[ -z $BANAN_DISK_IMAGE_PATH ]]; then echo "You must set the BANAN_DISK_IMAGE_PATH environment variable" >&2 exit 1 fi -if [[ -z $BANAN_SYSROOT ]]; then - echo "You must set the BANAN_SYSROOT environment variable" >&2 +if [[ -z $BANAN_SYSROOT_TAR ]]; then + echo "You must set the BANAN_SYSROOT_TAR environment variable" >&2 exit 1 fi -if [[ ! -f $BANAN_DISK_IMAGE_PATH ]]; then - $BANAN_SCRIPT_DIR/image-full.sh - exit 0 +if [[ "$1" == "full" ]] || [[ ! -f $BANAN_DISK_IMAGE_PATH ]]; then + $BANAN_SCRIPT_DIR/image-create.sh +else + fdisk -l $BANAN_DISK_IMAGE_PATH | grep -q 'EFI System'; IMAGE_IS_UEFI=$? + [[ $BANAN_UEFI_BOOT == 1 ]]; CREATE_IS_UEFI=$? + + if [[ $IMAGE_IS_UEFI -ne $CREATE_IS_UEFI ]]; then + echo Converting disk image to/from UEFI + $BANAN_SCRIPT_DIR/image-create.sh + fi fi -fdisk -l $BANAN_DISK_IMAGE_PATH | grep -q 'EFI System'; IMAGE_IS_UEFI=$? -[[ $BANAN_UEFI_BOOT == 1 ]]; CREATE_IS_UEFI=$? - -if [[ $IMAGE_IS_UEFI -ne $CREATE_IS_UEFI ]]; then - echo Converting disk image to/from UEFI - $BANAN_SCRIPT_DIR/image-full.sh - exit 0 -fi - -MOUNT_DIR=/mnt - -LOOP_DEV=$(sudo losetup -f --show $BANAN_DISK_IMAGE_PATH) +LOOP_DEV=$(sudo losetup --show -f "$BANAN_DISK_IMAGE_PATH") sudo partprobe $LOOP_DEV -ROOT_PARTITON=${LOOP_DEV}p2 +ROOT_PARTITION=${LOOP_DEV}p2 +MOUNT_DIR=/mnt -sudo mount $ROOT_PARTITON $MOUNT_DIR +sudo mount $ROOT_PARTITION $MOUNT_DIR -sudo rsync -a ${BANAN_SYSROOT}/* ${MOUNT_DIR}/ +cd $MOUNT_DIR +sudo tar xf $BANAN_SYSROOT_TAR +cd sudo umount $MOUNT_DIR diff --git a/toolchain/Toolchain.txt b/toolchain/Toolchain.txt index c208fd94..8acce806 100644 --- a/toolchain/Toolchain.txt +++ b/toolchain/Toolchain.txt @@ -1,9 +1,19 @@ if (NOT DEFINED ENV{BANAN_ARCH}) message(FATAL_ERROR "environment variable BANAN_ARCH not defined") endif () - set(BANAN_ARCH $ENV{BANAN_ARCH}) +if (NOT DEFINED ENV{BANAN_SYSROOT}) + message(FATAL_ERROR "environment variable BANAN_SYSROOT not defined") +endif () +set(BANAN_SYSROOT $ENV{BANAN_SYSROOT}) + +if (NOT DEFINED ENV{BANAN_SYSROOT_TAR}) + message(FATAL_ERROR "environment variable BANAN_SYSROOT_TAR not defined") +endif () +set(BANAN_SYSROOT_TAR $ENV{BANAN_SYSROOT_TAR}) + + set(TOOLCHAIN_PREFIX ${CMAKE_SOURCE_DIR}/toolchain/local) set(CMAKE_SYSTEM_NAME banan-os) diff --git a/userspace/Shell/CMakeLists.txt b/userspace/Shell/CMakeLists.txt index f77316e6..ac2e606a 100644 --- a/userspace/Shell/CMakeLists.txt +++ b/userspace/Shell/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(Shell PUBLIC -O2 -g) target_link_libraries(Shell PUBLIC libc ban) add_custom_target(Shell-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/Shell ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/Shell ${BANAN_BIN}/ DEPENDS Shell - USES_TERMINAL ) diff --git a/userspace/cat-mmap/CMakeLists.txt b/userspace/cat-mmap/CMakeLists.txt index 54562be3..b5d06b7c 100644 --- a/userspace/cat-mmap/CMakeLists.txt +++ b/userspace/cat-mmap/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(cat-mmap PUBLIC -O2 -g) target_link_libraries(cat-mmap PUBLIC libc) add_custom_target(cat-mmap-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/cat-mmap ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/cat-mmap ${BANAN_BIN}/ DEPENDS cat-mmap - USES_TERMINAL ) diff --git a/userspace/cat/CMakeLists.txt b/userspace/cat/CMakeLists.txt index 9008d7b2..999d539c 100644 --- a/userspace/cat/CMakeLists.txt +++ b/userspace/cat/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(cat PUBLIC -O2 -g) target_link_libraries(cat PUBLIC libc) add_custom_target(cat-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/cat ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/cat ${BANAN_BIN}/ DEPENDS cat - USES_TERMINAL ) diff --git a/userspace/chmod/CMakeLists.txt b/userspace/chmod/CMakeLists.txt index 29b3c28d..076db1d1 100644 --- a/userspace/chmod/CMakeLists.txt +++ b/userspace/chmod/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(chmod PUBLIC -O2 -g) target_link_libraries(chmod PUBLIC libc) add_custom_target(chmod-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/chmod ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/chmod ${BANAN_BIN}/ DEPENDS chmod - USES_TERMINAL ) diff --git a/userspace/cp/CMakeLists.txt b/userspace/cp/CMakeLists.txt index 89f6e2af..cd68633c 100644 --- a/userspace/cp/CMakeLists.txt +++ b/userspace/cp/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(cp PUBLIC -O2 -g) target_link_libraries(cp PUBLIC libc ban) add_custom_target(cp-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/cp ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/cp ${BANAN_BIN}/ DEPENDS cp - USES_TERMINAL ) diff --git a/userspace/create_program.sh b/userspace/create_program.sh index 3fc45f0f..0f770cfb 100755 --- a/userspace/create_program.sh +++ b/userspace/create_program.sh @@ -20,9 +20,8 @@ target_compile_options($PROGRAM_NAME PUBLIC -O2 -g) target_link_libraries($PROGRAM_NAME PUBLIC libc) add_custom_target($PROGRAM_NAME-install - COMMAND sudo cp \${CMAKE_CURRENT_BINARY_DIR}/$PROGRAM_NAME \${BANAN_BIN}/ + COMMAND \${CMAKE_COMMAND} -E copy \${CMAKE_CURRENT_BINARY_DIR}/$PROGRAM_NAME \${BANAN_BIN}/ DEPENDS $PROGRAM_NAME - USES_TERMINAL ) EOF diff --git a/userspace/dd/CMakeLists.txt b/userspace/dd/CMakeLists.txt index 5e88c869..b86d31ff 100644 --- a/userspace/dd/CMakeLists.txt +++ b/userspace/dd/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(dd PUBLIC -O2 -g) target_link_libraries(dd PUBLIC libc) add_custom_target(dd-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/dd ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/dd ${BANAN_BIN}/ DEPENDS dd - USES_TERMINAL ) diff --git a/userspace/echo/CMakeLists.txt b/userspace/echo/CMakeLists.txt index bd7e2d9a..bb2f607d 100644 --- a/userspace/echo/CMakeLists.txt +++ b/userspace/echo/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(echo PUBLIC -O2 -g) target_link_libraries(echo PUBLIC libc) add_custom_target(echo-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/echo ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/echo ${BANAN_BIN}/ DEPENDS echo - USES_TERMINAL ) diff --git a/userspace/id/CMakeLists.txt b/userspace/id/CMakeLists.txt index 0b23db13..3d4e37b8 100644 --- a/userspace/id/CMakeLists.txt +++ b/userspace/id/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(id PUBLIC -O2 -g) target_link_libraries(id PUBLIC libc ban) add_custom_target(id-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/id ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/id ${BANAN_BIN}/ DEPENDS id - USES_TERMINAL ) diff --git a/userspace/init/CMakeLists.txt b/userspace/init/CMakeLists.txt index 325d076a..71227f56 100644 --- a/userspace/init/CMakeLists.txt +++ b/userspace/init/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(init PUBLIC -O2 -g) target_link_libraries(init PUBLIC libc ban) add_custom_target(init-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/init ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/init ${BANAN_BIN}/ DEPENDS init - USES_TERMINAL ) diff --git a/userspace/ls/CMakeLists.txt b/userspace/ls/CMakeLists.txt index bbf2c3c6..4f0bcbef 100644 --- a/userspace/ls/CMakeLists.txt +++ b/userspace/ls/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(ls PUBLIC -O2 -g) target_link_libraries(ls PUBLIC libc) add_custom_target(ls-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/ls ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/ls ${BANAN_BIN}/ DEPENDS ls - USES_TERMINAL ) diff --git a/userspace/meminfo/CMakeLists.txt b/userspace/meminfo/CMakeLists.txt index 0094e797..1fa350b9 100644 --- a/userspace/meminfo/CMakeLists.txt +++ b/userspace/meminfo/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(meminfo PUBLIC -O2 -g) target_link_libraries(meminfo PUBLIC libc) add_custom_target(meminfo-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/meminfo ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/meminfo ${BANAN_BIN}/ DEPENDS meminfo - USES_TERMINAL ) diff --git a/userspace/mkdir/CMakeLists.txt b/userspace/mkdir/CMakeLists.txt index 9568f08f..8111b649 100644 --- a/userspace/mkdir/CMakeLists.txt +++ b/userspace/mkdir/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(mkdir PUBLIC -O2 -g) target_link_libraries(mkdir PUBLIC libc) add_custom_target(mkdir-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/mkdir ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/mkdir ${BANAN_BIN}/ DEPENDS mkdir - USES_TERMINAL ) diff --git a/userspace/mmap-shared-test/CMakeLists.txt b/userspace/mmap-shared-test/CMakeLists.txt index b44dabf9..59981ab6 100644 --- a/userspace/mmap-shared-test/CMakeLists.txt +++ b/userspace/mmap-shared-test/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(mmap-shared-test PUBLIC -O2 -g) target_link_libraries(mmap-shared-test PUBLIC libc) add_custom_target(mmap-shared-test-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/mmap-shared-test ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/mmap-shared-test ${BANAN_BIN}/ DEPENDS mmap-shared-test - USES_TERMINAL ) diff --git a/userspace/poweroff/CMakeLists.txt b/userspace/poweroff/CMakeLists.txt index a9e65e2d..d2ada922 100644 --- a/userspace/poweroff/CMakeLists.txt +++ b/userspace/poweroff/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(poweroff PUBLIC -O2 -g) target_link_libraries(poweroff PUBLIC libc) add_custom_target(poweroff-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/poweroff ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/poweroff ${BANAN_BIN}/ DEPENDS poweroff - USES_TERMINAL ) diff --git a/userspace/rm/CMakeLists.txt b/userspace/rm/CMakeLists.txt index 2cf60338..c7ed5335 100644 --- a/userspace/rm/CMakeLists.txt +++ b/userspace/rm/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(rm PUBLIC -O2 -g) target_link_libraries(rm PUBLIC libc ban) add_custom_target(rm-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/rm ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/rm ${BANAN_BIN}/ DEPENDS rm - USES_TERMINAL ) diff --git a/userspace/snake/CMakeLists.txt b/userspace/snake/CMakeLists.txt index a5b7066c..59dc04a8 100644 --- a/userspace/snake/CMakeLists.txt +++ b/userspace/snake/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(snake PUBLIC -O2 -g) target_link_libraries(snake PUBLIC libc) add_custom_target(snake-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/snake ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/snake ${BANAN_BIN}/ DEPENDS snake - USES_TERMINAL ) diff --git a/userspace/stat/CMakeLists.txt b/userspace/stat/CMakeLists.txt index 2e6c6d30..fb690eca 100644 --- a/userspace/stat/CMakeLists.txt +++ b/userspace/stat/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(stat PUBLIC -O2 -g) target_link_libraries(stat PUBLIC libc ban) add_custom_target(stat-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/stat ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/stat ${BANAN_BIN}/ DEPENDS stat - USES_TERMINAL ) diff --git a/userspace/sync/CMakeLists.txt b/userspace/sync/CMakeLists.txt index 236e313a..611e7f55 100644 --- a/userspace/sync/CMakeLists.txt +++ b/userspace/sync/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(sync PUBLIC -O2 -g) target_link_libraries(sync PUBLIC libc) add_custom_target(sync-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/sync ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/sync ${BANAN_BIN}/ DEPENDS sync - USES_TERMINAL ) diff --git a/userspace/tee/CMakeLists.txt b/userspace/tee/CMakeLists.txt index 84225e62..4697ff52 100644 --- a/userspace/tee/CMakeLists.txt +++ b/userspace/tee/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(tee PUBLIC -O2 -g) target_link_libraries(tee PUBLIC libc) add_custom_target(tee-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/tee ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/tee ${BANAN_BIN}/ DEPENDS tee - USES_TERMINAL ) diff --git a/userspace/test-globals/CMakeLists.txt b/userspace/test-globals/CMakeLists.txt index 8fe4151a..6c7aa366 100644 --- a/userspace/test-globals/CMakeLists.txt +++ b/userspace/test-globals/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(test-globals PUBLIC -O2 -g) target_link_libraries(test-globals PUBLIC libc) add_custom_target(test-globals-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/test-globals ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/test-globals ${BANAN_BIN}/ DEPENDS test-globals - USES_TERMINAL ) diff --git a/userspace/test/CMakeLists.txt b/userspace/test/CMakeLists.txt index 963278c7..0de2c685 100644 --- a/userspace/test/CMakeLists.txt +++ b/userspace/test/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(test PUBLIC -O2 -g) target_link_libraries(test PUBLIC libc) add_custom_target(test-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/test ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/test ${BANAN_BIN}/ DEPENDS test - USES_TERMINAL ) diff --git a/userspace/touch/CMakeLists.txt b/userspace/touch/CMakeLists.txt index 6504f14f..c4542c64 100644 --- a/userspace/touch/CMakeLists.txt +++ b/userspace/touch/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(touch PUBLIC -O2 -g) target_link_libraries(touch PUBLIC libc) add_custom_target(touch-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/touch ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/touch ${BANAN_BIN}/ DEPENDS touch - USES_TERMINAL ) diff --git a/userspace/u8sum/CMakeLists.txt b/userspace/u8sum/CMakeLists.txt index c19849dc..249d160d 100644 --- a/userspace/u8sum/CMakeLists.txt +++ b/userspace/u8sum/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(u8sum PUBLIC -O2 -g) target_link_libraries(u8sum PUBLIC libc) add_custom_target(u8sum-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/u8sum ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/u8sum ${BANAN_BIN}/ DEPENDS u8sum - USES_TERMINAL ) diff --git a/userspace/whoami/CMakeLists.txt b/userspace/whoami/CMakeLists.txt index 81308242..1a9a3aac 100644 --- a/userspace/whoami/CMakeLists.txt +++ b/userspace/whoami/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(whoami PUBLIC -O2 -g) target_link_libraries(whoami PUBLIC libc ban) add_custom_target(whoami-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/whoami ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/whoami ${BANAN_BIN}/ DEPENDS whoami - USES_TERMINAL ) diff --git a/userspace/yes/CMakeLists.txt b/userspace/yes/CMakeLists.txt index bf217e44..6ef982bd 100644 --- a/userspace/yes/CMakeLists.txt +++ b/userspace/yes/CMakeLists.txt @@ -11,7 +11,6 @@ target_compile_options(yes PUBLIC -O2 -g) target_link_libraries(yes PUBLIC libc) add_custom_target(yes-install - COMMAND sudo cp ${CMAKE_CURRENT_BINARY_DIR}/yes ${BANAN_BIN}/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/yes ${BANAN_BIN}/ DEPENDS yes - USES_TERMINAL ) From 061d10e635ea8dda11e94d017893cd80d543aad6 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Sat, 4 Nov 2023 18:12:46 +0200 Subject: [PATCH 180/240] BAN: Update bytespan -> span API --- BAN/include/BAN/ByteSpan.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/BAN/include/BAN/ByteSpan.h b/BAN/include/BAN/ByteSpan.h index e86ba8f8..d54403e3 100644 --- a/BAN/include/BAN/ByteSpan.h +++ b/BAN/include/BAN/ByteSpan.h @@ -97,8 +97,7 @@ namespace BAN } template<typename S> - requires(is_const_v<S>) - Span<S> as_span() const + const Span<S> as_span() const { ASSERT(m_data); return Span<S>(reinterpret_cast<S*>(m_data), m_size / sizeof(S)); From e5ffadb109719e082b7021257964dab748061405 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Sat, 4 Nov 2023 18:13:16 +0200 Subject: [PATCH 181/240] Kernel: Add better APIs for fast page --- kernel/include/kernel/Memory/PageTable.h | 25 ++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/kernel/include/kernel/Memory/PageTable.h b/kernel/include/kernel/Memory/PageTable.h index 705853ba..96c527a9 100644 --- a/kernel/include/kernel/Memory/PageTable.h +++ b/kernel/include/kernel/Memory/PageTable.h @@ -1,12 +1,20 @@ #pragma once #include <BAN/Errors.h> +#include <BAN/Traits.h> +#include <kernel/CriticalScope.h> #include <kernel/Memory/Types.h> #include <kernel/SpinLock.h> namespace Kernel { + template<typename F> + concept with_fast_page_callback = requires(F func) + { + requires BAN::is_same_v<decltype(func()), void>; + }; + class PageTable { public: @@ -33,6 +41,15 @@ namespace Kernel static void unmap_fast_page(); static constexpr vaddr_t fast_page() { return KERNEL_OFFSET; } + template<with_fast_page_callback F> + static void with_fast_page(paddr_t paddr, F callback) + { + CriticalScope _; + map_fast_page(paddr); + callback(); + unmap_fast_page(); + } + // FIXME: implement sized checks, return span, etc static void* fast_page_as_ptr(size_t offset = 0) { @@ -47,6 +64,14 @@ namespace Kernel return *reinterpret_cast<T*>(fast_page() + offset); } + // Retrieves index'th element from fast_page + template<typename T> + static T& fast_page_as_sized(size_t index) + { + ASSERT((index + 1) * sizeof(T) <= PAGE_SIZE); + return *reinterpret_cast<T*>(fast_page() + index * sizeof(T)); + } + static bool is_valid_pointer(uintptr_t); static BAN::ErrorOr<PageTable*> create_userspace(); From f9bf47ab30a95e77519522318c3547ccf9c69b7d Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Sat, 4 Nov 2023 18:13:52 +0200 Subject: [PATCH 182/240] Kernel: Start work on proper TmpFS in Heap instead of kmalloc memory --- kernel/CMakeLists.txt | 2 + kernel/include/kernel/FS/TmpFS/Definitions.h | 53 ++++ kernel/include/kernel/FS/TmpFS/FileSystem.h | 119 ++++++++ kernel/include/kernel/FS/TmpFS/Inode.h | 103 +++++++ kernel/kernel/FS/TmpFS/FileSystem.cpp | 268 ++++++++++++++++ kernel/kernel/FS/TmpFS/Inode.cpp | 303 +++++++++++++++++++ 6 files changed, 848 insertions(+) create mode 100644 kernel/include/kernel/FS/TmpFS/Definitions.h create mode 100644 kernel/include/kernel/FS/TmpFS/FileSystem.h create mode 100644 kernel/include/kernel/FS/TmpFS/Inode.h create mode 100644 kernel/kernel/FS/TmpFS/FileSystem.cpp create mode 100644 kernel/kernel/FS/TmpFS/Inode.cpp diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index 770c57b0..f1d65417 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -28,6 +28,8 @@ set(KERNEL_SOURCES kernel/FS/ProcFS/Inode.cpp kernel/FS/RamFS/FileSystem.cpp kernel/FS/RamFS/Inode.cpp + kernel/FS/TmpFS/FileSystem.cpp + kernel/FS/TmpFS/Inode.cpp kernel/FS/VirtualFileSystem.cpp kernel/Input/PS2Controller.cpp kernel/Input/PS2Keyboard.cpp diff --git a/kernel/include/kernel/FS/TmpFS/Definitions.h b/kernel/include/kernel/FS/TmpFS/Definitions.h new file mode 100644 index 00000000..92543775 --- /dev/null +++ b/kernel/include/kernel/FS/TmpFS/Definitions.h @@ -0,0 +1,53 @@ +#pragma once + +#include <BAN/Array.h> +#include <kernel/Memory/Types.h> + +#include <sys/types.h> +#include <time.h> + +namespace Kernel +{ + + struct TmpInodeInfo + { + mode_t mode { 0 }; + uid_t uid { 0 }; + gid_t gid { 0 }; + timespec atime { 0 }; + timespec ctime { 0 }; + timespec mtime { 0 }; + nlink_t nlink { 0 }; + size_t size { 0 }; + blkcnt_t blocks { 0 }; + + // 2x direct blocks + // 1x singly indirect + // 1x doubly indirect + // 1x triply indirect + BAN::Array<paddr_t, 5> block; + static constexpr size_t direct_block_count = 2; + static constexpr size_t max_size = + direct_block_count * PAGE_SIZE + + (PAGE_SIZE / sizeof(paddr_t)) * PAGE_SIZE + + (PAGE_SIZE / sizeof(paddr_t)) * (PAGE_SIZE / sizeof(paddr_t)) * PAGE_SIZE + + (PAGE_SIZE / sizeof(paddr_t)) * (PAGE_SIZE / sizeof(paddr_t)) * (PAGE_SIZE / sizeof(paddr_t)) * PAGE_SIZE; + }; + static_assert(sizeof(TmpInodeInfo) == 128); + + struct TmpDirectoryEntry + { + ino_t ino; + uint8_t type; + size_t name_len; + size_t rec_len; + char name[]; + + BAN::StringView name_sv() const + { + ASSERT(type != DT_UNKNOWN); + return BAN::StringView(name, name_len); + } + }; + +} diff --git a/kernel/include/kernel/FS/TmpFS/FileSystem.h b/kernel/include/kernel/FS/TmpFS/FileSystem.h new file mode 100644 index 00000000..3e87e369 --- /dev/null +++ b/kernel/include/kernel/FS/TmpFS/FileSystem.h @@ -0,0 +1,119 @@ +#pragma once + +#include <BAN/HashMap.h> +#include <BAN/Iteration.h> +#include <kernel/FS/FileSystem.h> +#include <kernel/FS/TmpFS/Inode.h> +#include <kernel/SpinLock.h> + +namespace Kernel +{ + + template<typename F> + concept for_each_indirect_paddr_allocating_callback = requires(F func, paddr_t paddr, bool was_allocated) + { + requires BAN::is_same_v<decltype(func(paddr, was_allocated)), BAN::Iteration>; + }; + + class TmpFileSystem : public FileSystem + { + public: + static constexpr size_t no_page_limit = SIZE_MAX; + + public: + static BAN::ErrorOr<TmpFileSystem*> create(size_t max_pages, mode_t, uid_t, gid_t); + ~TmpFileSystem(); + + virtual BAN::RefPtr<Inode> root_inode() override { return m_root_inode; } + + BAN::ErrorOr<BAN::RefPtr<TmpInode>> open_inode(ino_t ino); + + void read_inode(ino_t ino, TmpInodeInfo& out); + void write_inode(ino_t ino, const TmpInodeInfo&); + void delete_inode(ino_t ino); + BAN::ErrorOr<ino_t> allocate_inode(const TmpInodeInfo&); + + void read_block(size_t index, BAN::ByteSpan buffer); + void write_block(size_t index, BAN::ConstByteSpan buffer); + void free_block(size_t index); + BAN::ErrorOr<size_t> allocate_block(); + + private: + struct PageInfo + { + enum Flags : paddr_t + { + Present = 1 << 0, + }; + + // 12 bottom bits of paddr can be used as flags, since + // paddr will always be page aligned. + static constexpr size_t flag_bits = 12; + static constexpr paddr_t flags_mask = (1 << flag_bits) - 1; + static constexpr paddr_t paddr_mask = ~flags_mask; + static_assert((1 << flag_bits) <= PAGE_SIZE); + + paddr_t paddr() const { return raw & paddr_mask; } + paddr_t flags() const { return raw & flags_mask; } + + void set_paddr(paddr_t paddr) { raw = (raw & flags_mask) | (paddr & paddr_mask); } + void set_flags(paddr_t flags) { raw = (raw & paddr_mask) | (flags & flags_mask); } + + paddr_t raw { 0 }; + }; + + struct InodeLocation + { + paddr_t paddr; + size_t index; + }; + + private: + TmpFileSystem(size_t max_pages); + BAN::ErrorOr<void> initialize(mode_t, uid_t, gid_t); + + InodeLocation find_inode(ino_t ino); + + paddr_t find_block(size_t index); + + template<for_each_indirect_paddr_allocating_callback F> + BAN::ErrorOr<void> for_each_indirect_paddr_allocating(PageInfo page_info, F callback, size_t depth); + template<for_each_indirect_paddr_allocating_callback F> + BAN::ErrorOr<BAN::Iteration> for_each_indirect_paddr_allocating_internal(PageInfo page_info, F callback, size_t depth); + + paddr_t find_indirect(PageInfo root, size_t index, size_t depth); + + private: + RecursiveSpinLock m_lock; + + BAN::HashMap<ino_t, BAN::RefPtr<TmpInode>> m_inode_cache; + BAN::RefPtr<TmpDirectoryInode> m_root_inode; + + // We store pages with triple indirection. + // With 64-bit pointers we can store 512^3 pages of data (512 GiB) + // which should be enough for now. + // In future this should be dynamically calculated based on maximum + // number of pages for this file system. + PageInfo m_data_pages {}; + static constexpr size_t first_data_page = 1; + static constexpr size_t max_data_pages = + (PAGE_SIZE / sizeof(PageInfo)) * + (PAGE_SIZE / sizeof(PageInfo)) * + (PAGE_SIZE / sizeof(PageInfo)); + + // We store inodes in pages with double indirection. + // With 64-bit pointers we can store 512^2 pages of inodes + // which should be enough for now. + // In future this should be dynamically calculated based on maximum + // number of pages for this file system. + PageInfo m_inode_pages; + static constexpr size_t first_inode = 1; + static constexpr size_t max_inodes = + (PAGE_SIZE / sizeof(PageInfo)) * + (PAGE_SIZE / sizeof(PageInfo)) * + (PAGE_SIZE / sizeof(TmpInodeInfo)); + + const size_t m_max_pages; + }; + +} \ No newline at end of file diff --git a/kernel/include/kernel/FS/TmpFS/Inode.h b/kernel/include/kernel/FS/TmpFS/Inode.h new file mode 100644 index 00000000..52c5774e --- /dev/null +++ b/kernel/include/kernel/FS/TmpFS/Inode.h @@ -0,0 +1,103 @@ +#pragma once + +#include <BAN/Iteration.h> +#include <kernel/FS/Inode.h> +#include <kernel/FS/TmpFS/Definitions.h> + +namespace Kernel +{ + + class TmpFileSystem; + + class TmpInode : public Inode + { + public: + virtual ino_t ino() const override final { return m_ino; } + virtual Mode mode() const override final { return Mode(m_inode_info.mode); } + virtual nlink_t nlink() const override final { return m_inode_info.nlink; } + virtual uid_t uid() const override final { return m_inode_info.uid; } + virtual gid_t gid() const override final { return m_inode_info.gid; } + virtual off_t size() const override final { return m_inode_info.size; } + virtual timespec atime() const override final { return m_inode_info.atime; } + virtual timespec mtime() const override final { return m_inode_info.mtime; } + virtual timespec ctime() const override final { return m_inode_info.ctime; } + virtual blksize_t blksize() const override final { return PAGE_SIZE; } + virtual blkcnt_t blocks() const override final { return m_inode_info.blocks; } + virtual dev_t dev() const override final { return 0; } // TODO + virtual dev_t rdev() const override final { return 0; } // TODO + + public: + static BAN::ErrorOr<BAN::RefPtr<TmpInode>> create_from_existing(TmpFileSystem&, ino_t, const TmpInodeInfo&); + + protected: + TmpInode(TmpFileSystem&, ino_t, const TmpInodeInfo&); + + void sync(); + void free_all_blocks(); + + size_t block_index(size_t data_block_index); + BAN::ErrorOr<size_t> block_index_with_allocation(size_t data_block_index); + + protected: + TmpFileSystem& m_fs; + TmpInodeInfo m_inode_info; + const ino_t m_ino; + + // has to be able to increase link count + friend class TmpDirectoryInode; + }; + + class TmpFileInode : public TmpInode + { + public: + static BAN::ErrorOr<BAN::RefPtr<TmpFileInode>> create(TmpFileSystem&, mode_t, uid_t, gid_t); + ~TmpFileInode(); + + private: + TmpFileInode(TmpFileSystem&, ino_t, const TmpInodeInfo&); + + friend class TmpInode; + }; + + class TmpSymlinkInode : public TmpInode + { + public: + ~TmpSymlinkInode(); + + private: + TmpSymlinkInode(TmpFileSystem&, ino_t, const TmpInodeInfo&, BAN::StringView target); + }; + + template<typename F> + concept for_each_entry_callback = requires(F func, const TmpDirectoryEntry& entry) + { + requires BAN::is_same_v<decltype(func(entry)), BAN::Iteration>; + }; + + class TmpDirectoryInode : public TmpInode + { + public: + static BAN::ErrorOr<BAN::RefPtr<TmpDirectoryInode>> create_root(TmpFileSystem&, mode_t, uid_t, gid_t); + static BAN::ErrorOr<BAN::RefPtr<TmpDirectoryInode>> create_new(TmpFileSystem&, mode_t, uid_t, gid_t, TmpInode& parent); + + ~TmpDirectoryInode(); + + protected: + virtual BAN::ErrorOr<BAN::RefPtr<Inode>> find_inode_impl(BAN::StringView) override final; + virtual BAN::ErrorOr<void> list_next_inodes_impl(off_t, DirectoryEntryList*, size_t) override final; + virtual BAN::ErrorOr<void> create_file_impl(BAN::StringView, mode_t, uid_t, gid_t) override final; + virtual BAN::ErrorOr<void> create_directory_impl(BAN::StringView, mode_t, uid_t, gid_t) override final; + virtual BAN::ErrorOr<void> unlink_impl(BAN::StringView) override final; + + private: + TmpDirectoryInode(TmpFileSystem&, ino_t, const TmpInodeInfo&); + + BAN::ErrorOr<void> link_inode(TmpInode&, BAN::StringView); + + template<for_each_entry_callback F> + void for_each_entry(F callback); + + friend class TmpInode; + }; + +} diff --git a/kernel/kernel/FS/TmpFS/FileSystem.cpp b/kernel/kernel/FS/TmpFS/FileSystem.cpp new file mode 100644 index 00000000..d5f90029 --- /dev/null +++ b/kernel/kernel/FS/TmpFS/FileSystem.cpp @@ -0,0 +1,268 @@ +#include <kernel/FS/TmpFS/FileSystem.h> +#include <kernel/Memory/Heap.h> +#include <kernel/Memory/PageTable.h> + +namespace Kernel +{ + + BAN::ErrorOr<TmpFileSystem*> TmpFileSystem::create(size_t max_pages, mode_t mode, uid_t uid, gid_t gid) + { + auto* result = new TmpFileSystem(max_pages); + if (result == nullptr) + return BAN::Error::from_errno(ENOMEM); + TRY(result->initialize(mode, uid, gid)); + return result; + } + + TmpFileSystem::TmpFileSystem(size_t max_pages) + : m_max_pages(max_pages) + { } + + BAN::ErrorOr<void> TmpFileSystem::initialize(mode_t mode, uid_t uid, gid_t gid) + { + paddr_t data_paddr = Heap::get().take_free_page(); + if (data_paddr == 0) + return BAN::Error::from_errno(ENOMEM); + m_data_pages.set_paddr(data_paddr); + m_data_pages.set_flags(PageInfo::Flags::Present); + PageTable::with_fast_page(data_paddr, [&] { + memset(PageTable::fast_page_as_ptr(), 0x00, PAGE_SIZE); + }); + + paddr_t inodes_paddr = Heap::get().take_free_page(); + if (inodes_paddr == 0) + return BAN::Error::from_errno(ENOMEM); + m_inode_pages.set_paddr(inodes_paddr); + m_inode_pages.set_flags(PageInfo::Flags::Present); + PageTable::with_fast_page(inodes_paddr, [&] { + memset(PageTable::fast_page_as_ptr(), 0x00, PAGE_SIZE); + }); + + m_root_inode = TRY(TmpDirectoryInode::create_root(*this, mode, uid, gid)); + TRY(m_inode_cache.insert(m_root_inode->ino(), m_root_inode)); + + return {}; + } + + TmpFileSystem::~TmpFileSystem() + { + ASSERT_NOT_REACHED(); + } + + BAN::ErrorOr<BAN::RefPtr<TmpInode>> TmpFileSystem::open_inode(ino_t ino) + { + if (m_inode_cache.contains(ino)) + return m_inode_cache[ino]; + + TmpInodeInfo inode_info; + + auto inode_location = find_inode(ino); + PageTable::with_fast_page(inode_location.paddr, [&] { + inode_info = PageTable::fast_page_as_sized<TmpInodeInfo>(inode_location.index); + }); + + auto inode = TRY(TmpInode::create_from_existing(*this, ino, inode_info)); + TRY(m_inode_cache.insert(ino, inode)); + return inode; + } + + void TmpFileSystem::read_inode(ino_t ino, TmpInodeInfo& out) + { + auto inode_location = find_inode(ino); + PageTable::with_fast_page(inode_location.paddr, [&] { + out = PageTable::fast_page_as_sized<TmpInodeInfo>(inode_location.index); + }); + } + + void TmpFileSystem::write_inode(ino_t ino, const TmpInodeInfo& info) + { + auto inode_location = find_inode(ino); + PageTable::with_fast_page(inode_location.paddr, [&] { + auto& inode_info = PageTable::fast_page_as_sized<TmpInodeInfo>(inode_location.index); + inode_info = info; + }); + } + + void TmpFileSystem::delete_inode(ino_t ino) + { + auto inode_location = find_inode(ino); + PageTable::with_fast_page(inode_location.paddr, [&] { + auto& inode_info = PageTable::fast_page_as_sized<TmpInodeInfo>(inode_location.index); + ASSERT_EQ(inode_info.nlink, 0); + for (auto paddr : inode_info.block) + ASSERT_EQ(paddr, 0); + inode_info = {}; + }); + } + + BAN::ErrorOr<ino_t> TmpFileSystem::allocate_inode(const TmpInodeInfo& info) + { + constexpr size_t inodes_per_page = PAGE_SIZE / sizeof(TmpInodeInfo); + + ino_t ino = first_inode; + TRY(for_each_indirect_paddr_allocating(m_inode_pages, [&](paddr_t paddr, bool) { + BAN::Iteration result = BAN::Iteration::Continue; + PageTable::with_fast_page(paddr, [&] { + for (size_t i = 0; i < inodes_per_page; i++, ino++) + { + auto& inode_info = PageTable::fast_page_as_sized<TmpInodeInfo>(i); + if (inode_info.mode != 0) + continue; + inode_info = info; + result = BAN::Iteration::Break; + return; + } + }); + return result; + }, 2)); + + return ino; + } + + TmpFileSystem::InodeLocation TmpFileSystem::find_inode(ino_t ino) + { + ASSERT_GTE(ino, first_inode); + ASSERT_LT(ino, max_inodes); + + constexpr size_t inodes_per_page = PAGE_SIZE / sizeof(TmpInodeInfo); + + size_t index_of_page = (ino - first_inode) / inodes_per_page; + size_t index_in_page = (ino - first_inode) % inodes_per_page; + + return { + .paddr = find_indirect(m_inode_pages, index_of_page, 2), + .index = index_in_page + }; + } + + void TmpFileSystem::read_block(size_t index, BAN::ByteSpan buffer) + { + ASSERT(buffer.size() >= PAGE_SIZE); + paddr_t block_paddr = find_block(index); + PageTable::with_fast_page(block_paddr, [&] { + memcpy(buffer.data(), PageTable::fast_page_as_ptr(), PAGE_SIZE); + }); + } + + void TmpFileSystem::write_block(size_t index, BAN::ConstByteSpan buffer) + { + ASSERT(buffer.size() >= PAGE_SIZE); + paddr_t block_paddr = find_block(index); + PageTable::with_fast_page(block_paddr, [&] { + memcpy(PageTable::fast_page_as_ptr(), buffer.data(), PAGE_SIZE); + }); + } + + void TmpFileSystem::free_block(size_t index) + { + ASSERT_NOT_REACHED(); + } + + BAN::ErrorOr<size_t> TmpFileSystem::allocate_block() + { + size_t result = first_data_page; + TRY(for_each_indirect_paddr_allocating(m_data_pages, [&] (paddr_t paddr, bool allocated) { + if (allocated) + return BAN::Iteration::Break; + result++; + return BAN::Iteration::Continue; + }, 3)); + return result; + } + + paddr_t TmpFileSystem::find_block(size_t index) + { + ASSERT_GT(index, 0); + return find_indirect(m_data_pages, index - first_data_page, 3); + } + + paddr_t TmpFileSystem::find_indirect(PageInfo root, size_t index, size_t depth) + { + ASSERT(root.flags() & PageInfo::Flags::Present); + if (depth == 0) + return root.paddr(); + + constexpr size_t addresses_per_page = PAGE_SIZE / sizeof(PageInfo); + + size_t divisor = 1; + for (size_t i = 0; i < depth; i++) + divisor *= addresses_per_page; + + size_t index_of_page = index / divisor; + size_t index_in_page = index % divisor; + + ASSERT(index_of_page < addresses_per_page); + + PageInfo next; + PageTable::with_fast_page(root.paddr(), [&] { + next = PageTable::fast_page_as_sized<PageInfo>(index_of_page); + }); + + return find_indirect(next, index_in_page, depth - 1); + } + + template<for_each_indirect_paddr_allocating_callback F> + BAN::ErrorOr<BAN::Iteration> TmpFileSystem::for_each_indirect_paddr_allocating_internal(PageInfo page_info, F callback, size_t depth) + { + ASSERT_GT(depth, 0); + ASSERT(page_info.flags() & PageInfo::Flags::Present); + + for (size_t i = 0; i < PAGE_SIZE / sizeof(PageInfo); i++) + { + PageInfo next_info; + PageTable::with_fast_page(page_info.paddr(), [&] { + next_info = PageTable::fast_page_as_sized<PageInfo>(i); + }); + + bool allocated = false; + + if (!(next_info.flags() & PageInfo::Flags::Present)) + { + paddr_t new_paddr = Heap::get().take_free_page(); + if (new_paddr == 0) + return BAN::Error::from_errno(ENOMEM); + + PageTable::with_fast_page(new_paddr, [&] { + memset(PageTable::fast_page_as_ptr(), 0x00, PAGE_SIZE); + }); + + next_info.set_paddr(new_paddr); + next_info.set_flags(PageInfo::Flags::Present); + + PageTable::with_fast_page(page_info.paddr(), [&] { + auto& to_update_info = PageTable::fast_page_as_sized<PageInfo>(i); + to_update_info = next_info; + }); + + allocated = true; + } + + BAN::Iteration result; + if (depth == 1) + result = callback(next_info.paddr(), allocated); + else + result = TRY(for_each_indirect_paddr_allocating_internal(next_info, callback, depth - 1)); + + switch (result) + { + case BAN::Iteration::Continue: + break; + case BAN::Iteration::Break: + return BAN::Iteration::Break; + default: + ASSERT_NOT_REACHED(); + } + } + + return BAN::Iteration::Continue; + } + + template<for_each_indirect_paddr_allocating_callback F> + BAN::ErrorOr<void> TmpFileSystem::for_each_indirect_paddr_allocating(PageInfo page_info, F callback, size_t depth) + { + BAN::Iteration result = TRY(for_each_indirect_paddr_allocating_internal(page_info, callback, depth)); + ASSERT(result == BAN::Iteration::Break); + return {}; + } + +} diff --git a/kernel/kernel/FS/TmpFS/Inode.cpp b/kernel/kernel/FS/TmpFS/Inode.cpp new file mode 100644 index 00000000..c7f293d9 --- /dev/null +++ b/kernel/kernel/FS/TmpFS/Inode.cpp @@ -0,0 +1,303 @@ +#include <kernel/FS/TmpFS/FileSystem.h> +#include <kernel/FS/TmpFS/Inode.h> +#include <kernel/Timer/Timer.h> + +namespace Kernel +{ + + static TmpInodeInfo create_inode_info(mode_t mode, uid_t uid, gid_t gid) + { + auto current_time = SystemTimer::get().real_time(); + + TmpInodeInfo info; + info.uid = uid; + info.gid = gid; + info.mode = mode; + info.atime = current_time; + info.mtime = current_time; + info.ctime = current_time; + + return info; + } + + static uint8_t inode_mode_to_dt_type(Inode::Mode mode) + { + if (mode.ifreg()) + return DT_REG; + if (mode.ifdir()) + return DT_DIR; + if (mode.ifchr()) + return DT_CHR; + if (mode.ifblk()) + return DT_BLK; + if (mode.ififo()) + return DT_FIFO; + if (mode.ifsock()) + return DT_SOCK; + if (mode.iflnk()) + return DT_LNK; + ASSERT_NOT_REACHED(); + } + + /* GENERAL INODE */ + + BAN::ErrorOr<BAN::RefPtr<TmpInode>> TmpInode::create_from_existing(TmpFileSystem& fs, ino_t ino, const TmpInodeInfo& info) + { + TmpInode* inode_ptr = nullptr; + switch (info.mode & Mode::TYPE_MASK) + { + case Mode::IFDIR: + inode_ptr = new TmpDirectoryInode(fs, ino, info); + break; + case Mode::IFREG: + inode_ptr = new TmpFileInode(fs, ino, info); + break; + default: + ASSERT_NOT_REACHED(); + } + if (inode_ptr == nullptr) + return BAN::Error::from_errno(ENOMEM); + return BAN::RefPtr<TmpInode>::adopt(inode_ptr); + } + + TmpInode::TmpInode(TmpFileSystem& fs, ino_t ino, const TmpInodeInfo& info) + : m_fs(fs) + , m_inode_info(info) + , m_ino(ino) + {} + + void TmpInode::sync() + { + m_fs.write_inode(m_ino, m_inode_info); + } + + void TmpInode::free_all_blocks() + { + for (auto block : m_inode_info.block) + ASSERT(block == 0); + } + + size_t TmpInode::block_index(size_t data_block_index) + { + ASSERT(data_block_index < TmpInodeInfo::direct_block_count); + ASSERT(m_inode_info.block[data_block_index]); + return m_inode_info.block[data_block_index]; + } + + BAN::ErrorOr<size_t> TmpInode::block_index_with_allocation(size_t data_block_index) + { + if (data_block_index >= TmpInodeInfo::direct_block_count) + { + dprintln("only {} blocks supported :D", TmpInodeInfo::direct_block_count); + return BAN::Error::from_errno(ENOSPC); + } + if (m_inode_info.block[data_block_index] == 0) + { + m_inode_info.block[data_block_index] = TRY(m_fs.allocate_block()); + m_inode_info.blocks++; + } + return m_inode_info.block[data_block_index]; + } + + /* FILE INODE */ + + BAN::ErrorOr<BAN::RefPtr<TmpFileInode>> TmpFileInode::create(TmpFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) + { + auto info = create_inode_info(Mode::IFREG | mode, uid, gid); + ino_t ino = TRY(fs.allocate_inode(info)); + + auto* inode_ptr = new TmpFileInode(fs, ino, info); + if (inode_ptr == nullptr) + return BAN::Error::from_errno(ENOMEM); + + return BAN::RefPtr<TmpFileInode>::adopt(inode_ptr); + } + + TmpFileInode::TmpFileInode(TmpFileSystem& fs, ino_t ino, const TmpInodeInfo& info) + : TmpInode(fs, ino, info) + { + ASSERT(mode().ifreg()); + } + + TmpFileInode::~TmpFileInode() + { + if (nlink() > 0) + { + sync(); + return; + } + free_all_blocks(); + m_fs.delete_inode(ino()); + } + + /* DIRECTORY INODE */ + + BAN::ErrorOr<BAN::RefPtr<TmpDirectoryInode>> TmpDirectoryInode::create_root(TmpFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) + { + auto info = create_inode_info(Mode::IFDIR | mode, uid, gid); + ino_t ino = TRY(fs.allocate_inode(info)); + + auto* inode_ptr = new TmpDirectoryInode(fs, ino, info); + if (inode_ptr == nullptr) + return BAN::Error::from_errno(ENOMEM); + + auto inode = BAN::RefPtr<TmpDirectoryInode>::adopt(inode_ptr); + TRY(inode->link_inode(*inode, "."sv)); + TRY(inode->link_inode(*inode, ".."sv)); + + return inode; + } + + BAN::ErrorOr<BAN::RefPtr<TmpDirectoryInode>> TmpDirectoryInode::create_new(TmpFileSystem& fs, mode_t mode, uid_t uid, gid_t gid, TmpInode& parent) + { + auto info = create_inode_info(Mode::IFDIR | mode, uid, gid); + ino_t ino = TRY(fs.allocate_inode(info)); + + auto* inode_ptr = new TmpDirectoryInode(fs, ino, info); + if (inode_ptr == nullptr) + return BAN::Error::from_errno(ENOMEM); + + auto inode = BAN::RefPtr<TmpDirectoryInode>::adopt(inode_ptr); + TRY(inode->link_inode(*inode, "."sv)); + TRY(inode->link_inode(parent, "."sv)); + + return inode; + } + + TmpDirectoryInode::TmpDirectoryInode(TmpFileSystem& fs, ino_t ino, const TmpInodeInfo& info) + : TmpInode(fs, ino, info) + { + ASSERT(mode().ifdir()); + } + + TmpDirectoryInode::~TmpDirectoryInode() + { + if (nlink() >= 2) + { + sync(); + return; + } + free_all_blocks(); + m_fs.delete_inode(ino()); + } + + BAN::ErrorOr<BAN::RefPtr<Inode>> TmpDirectoryInode::find_inode_impl(BAN::StringView name) + { + ino_t result = 0; + + for_each_entry([&](const TmpDirectoryEntry& entry) { + if (entry.type == DT_UNKNOWN) + return BAN::Iteration::Continue; + if (entry.name_sv() != name) + return BAN::Iteration::Continue; + result = entry.ino; + return BAN::Iteration::Break; + }); + + if (result == 0) + return BAN::Error::from_errno(ENOENT); + + auto inode = TRY(m_fs.open_inode(result)); + return BAN::RefPtr<Inode>(inode); + } + + BAN::ErrorOr<void> TmpDirectoryInode::list_next_inodes_impl(off_t, DirectoryEntryList*, size_t) + { + return BAN::Error::from_errno(ENOTSUP); + } + + BAN::ErrorOr<void> TmpDirectoryInode::create_file_impl(BAN::StringView name, mode_t mode, uid_t uid, gid_t gid) + { + auto new_inode = TRY(TmpFileInode::create(m_fs, mode, uid, gid)); + TRY(link_inode(*new_inode, name)); + return {}; + } + + BAN::ErrorOr<void> TmpDirectoryInode::create_directory_impl(BAN::StringView name, mode_t mode, uid_t uid, gid_t gid) + { + auto new_inode = TRY(TmpDirectoryInode::create_new(m_fs, mode, uid, gid, *this)); + TRY(link_inode(*new_inode, name)); + return {}; + } + + BAN::ErrorOr<void> TmpDirectoryInode::unlink_impl(BAN::StringView) + { + return BAN::Error::from_errno(ENOTSUP); + } + + BAN::ErrorOr<void> TmpDirectoryInode::link_inode(TmpInode& inode, BAN::StringView name) + { + static constexpr size_t directory_entry_alignment = 16; + + size_t current_size = size(); + + size_t new_entry_size = sizeof(TmpDirectoryEntry) + name.size(); + if (auto rem = new_entry_size % directory_entry_alignment) + new_entry_size += directory_entry_alignment - rem; + ASSERT(new_entry_size < (size_t)blksize()); + + size_t new_entry_offset = current_size % blksize(); + + // Target is the last block, or if it doesn't fit the new entry, the next one. + size_t target_data_block = current_size / blksize(); + if (blksize() - new_entry_offset < new_entry_size) + target_data_block++; + + size_t block_index = TRY(block_index_with_allocation(target_data_block)); + + BAN::Vector<uint8_t> buffer; + TRY(buffer.resize(blksize())); + + BAN::ByteSpan bytespan = buffer.span(); + + m_fs.read_block(block_index, bytespan); + + auto& new_entry = bytespan.slice(new_entry_offset).as<TmpDirectoryEntry>(); + new_entry.type = inode_mode_to_dt_type(inode.mode()); + new_entry.ino = inode.ino(); + new_entry.name_len = name.size(); + new_entry.rec_len = new_entry_size; + memcpy(new_entry.name, name.data(), name.size()); + + m_fs.write_block(block_index, bytespan); + + // increase current size + m_inode_info.size += new_entry_size; + + // add link to linked inode + inode.m_inode_info.nlink++; + + return {}; + } + + template<for_each_entry_callback F> + void TmpDirectoryInode::for_each_entry(F callback) + { + size_t full_offset = 0; + while (full_offset < (size_t)size()) + { + size_t data_block_index = full_offset / blksize(); + size_t block_index = this->block_index(data_block_index); + + // FIXME: implement fast heap pages? + BAN::Vector<uint8_t> buffer; + MUST(buffer.resize(blksize())); + + BAN::ByteSpan bytespan = buffer.span(); + m_fs.read_block(block_index, bytespan); + + size_t byte_count = BAN::Math::min<size_t>(blksize(), size() - full_offset); + + bytespan = bytespan.slice(0, byte_count); + while (bytespan.size() > 0) + { + auto& entry = bytespan.as<TmpDirectoryEntry>(); + callback(entry); + bytespan = bytespan.slice(entry.rec_len); + } + + full_offset += blksize(); + } + } + +} From 8164c15b6c0b42d0cd8146c54a7313f01df3ce10 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Sun, 5 Nov 2023 02:28:43 +0200 Subject: [PATCH 183/240] Kernel: Implement read/write/truncate for TmpFileInode --- kernel/include/kernel/FS/TmpFS/FileSystem.h | 3 + kernel/include/kernel/FS/TmpFS/Inode.h | 5 ++ kernel/kernel/FS/TmpFS/Inode.cpp | 73 +++++++++++++++++++++ 3 files changed, 81 insertions(+) diff --git a/kernel/include/kernel/FS/TmpFS/FileSystem.h b/kernel/include/kernel/FS/TmpFS/FileSystem.h index 3e87e369..0c311533 100644 --- a/kernel/include/kernel/FS/TmpFS/FileSystem.h +++ b/kernel/include/kernel/FS/TmpFS/FileSystem.h @@ -28,6 +28,9 @@ namespace Kernel BAN::ErrorOr<BAN::RefPtr<TmpInode>> open_inode(ino_t ino); + // FIXME: read_block and write_block should not require external buffer + // probably some wrapper like PageTable::with_fast_page could work? + void read_inode(ino_t ino, TmpInodeInfo& out); void write_inode(ino_t ino, const TmpInodeInfo&); void delete_inode(ino_t ino); diff --git a/kernel/include/kernel/FS/TmpFS/Inode.h b/kernel/include/kernel/FS/TmpFS/Inode.h index 52c5774e..b0fd593a 100644 --- a/kernel/include/kernel/FS/TmpFS/Inode.h +++ b/kernel/include/kernel/FS/TmpFS/Inode.h @@ -53,6 +53,11 @@ namespace Kernel static BAN::ErrorOr<BAN::RefPtr<TmpFileInode>> create(TmpFileSystem&, mode_t, uid_t, gid_t); ~TmpFileInode(); + protected: + virtual BAN::ErrorOr<size_t> read_impl(off_t, BAN::ByteSpan) override; + virtual BAN::ErrorOr<size_t> write_impl(off_t, BAN::ConstByteSpan) override; + virtual BAN::ErrorOr<void> truncate_impl(size_t) override; + private: TmpFileInode(TmpFileSystem&, ino_t, const TmpInodeInfo&); diff --git a/kernel/kernel/FS/TmpFS/Inode.cpp b/kernel/kernel/FS/TmpFS/Inode.cpp index c7f293d9..b0820d81 100644 --- a/kernel/kernel/FS/TmpFS/Inode.cpp +++ b/kernel/kernel/FS/TmpFS/Inode.cpp @@ -130,6 +130,79 @@ namespace Kernel m_fs.delete_inode(ino()); } + BAN::ErrorOr<size_t> TmpFileInode::read_impl(off_t offset, BAN::ByteSpan buffer) + { + if (offset >= size() || buffer.size() == 0) + return 0; + + BAN::Vector<uint8_t> block_buffer; + TRY(block_buffer.resize(blksize())); + + const size_t bytes_to_read = BAN::Math::min<size_t>(size() - offset, buffer.size()); + + size_t read_done = 0; + while (read_done < bytes_to_read) + { + const size_t data_block_index = (read_done + offset) / blksize(); + const size_t block_offset = (read_done + offset) % blksize(); + + const size_t block_index = this->block_index(data_block_index); + + const size_t bytes = BAN::Math::min<size_t>(bytes_to_read - read_done, blksize() - block_offset); + + m_fs.read_block(block_index, block_buffer.span()); + + memcpy(buffer.data() + read_done, block_buffer.data() + block_offset, bytes); + + read_done += bytes; + } + + return read_done; + } + + BAN::ErrorOr<size_t> TmpFileInode::write_impl(off_t offset, BAN::ConstByteSpan buffer) + { + // FIXME: handle overflow + + if (offset + buffer.size() > (size_t)size()) + TRY(truncate_impl(offset + buffer.size())); + + BAN::Vector<uint8_t> block_buffer; + TRY(block_buffer.resize(blksize())); + + const size_t bytes_to_write = buffer.size(); + + size_t write_done = 0; + while (write_done < bytes_to_write) + { + const size_t data_block_index = (write_done + offset) / blksize(); + const size_t block_offset = (write_done + offset) % blksize(); + + const size_t block_index = this->block_index(data_block_index); + + const size_t bytes = BAN::Math::min<size_t>(bytes_to_write - write_done, blksize() - block_offset); + + if (bytes < (size_t)blksize()) + m_fs.read_block(block_index, block_buffer.span()); + memcpy(block_buffer.data() + block_offset, buffer.data() + write_done, bytes); + + m_fs.write_block(block_index, block_buffer.span()); + + write_done += bytes; + } + + return write_done; + } + + BAN::ErrorOr<void> TmpFileInode::truncate_impl(size_t new_size) + { + size_t start_block = size() / blksize() * blksize(); + for (size_t off = start_block; off < new_size; off += blksize()) + TRY(block_index_with_allocation(off / blksize())); + m_inode_info.size = new_size; + return {}; + } + /* DIRECTORY INODE */ BAN::ErrorOr<BAN::RefPtr<TmpDirectoryInode>> TmpDirectoryInode::create_root(TmpFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) From 1ed08f62d34ac3d14d238c72bb7dea612a0c5d1a Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 6 Nov 2023 10:44:37 +0200 Subject: [PATCH 184/240] Kernel: TmpInode blocks are on demand allocated --- kernel/include/kernel/FS/TmpFS/Inode.h | 3 ++- kernel/kernel/FS/TmpFS/Inode.cpp | 23 ++++++++++++----------- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/kernel/include/kernel/FS/TmpFS/Inode.h b/kernel/include/kernel/FS/TmpFS/Inode.h index b0fd593a..4a4da99f 100644 --- a/kernel/include/kernel/FS/TmpFS/Inode.h +++ b/kernel/include/kernel/FS/TmpFS/Inode.h @@ -1,6 +1,7 @@ #pragma once #include <BAN/Iteration.h> +#include <BAN/Optional.h> #include <kernel/FS/Inode.h> #include <kernel/FS/TmpFS/Definitions.h> @@ -35,7 +36,7 @@ namespace Kernel void sync(); void free_all_blocks(); - size_t block_index(size_t data_block_index); + BAN::Optional<size_t> block_index(size_t data_block_index); BAN::ErrorOr<size_t> block_index_with_allocation(size_t data_block_index); protected: diff --git a/kernel/kernel/FS/TmpFS/Inode.cpp b/kernel/kernel/FS/TmpFS/Inode.cpp index b0820d81..a97dd1b3 100644 --- a/kernel/kernel/FS/TmpFS/Inode.cpp +++ b/kernel/kernel/FS/TmpFS/Inode.cpp @@ -77,11 +77,12 @@ namespace Kernel ASSERT(block == 0); } - size_t TmpInode::block_index(size_t data_block_index) + BAN::Optional<size_t> TmpInode::block_index(size_t data_block_index) { ASSERT(data_block_index < TmpInodeInfo::direct_block_count); - ASSERT(m_inode_info.block[data_block_index]); - return m_inode_info.block[data_block_index]; + if (m_inode_info.block[data_block_index]) + return m_inode_info.block[data_block_index]; + return {}; } BAN::ErrorOr<size_t> TmpInode::block_index_with_allocation(size_t data_block_index) @@ -146,11 +147,14 @@ namespace Kernel const size_t data_block_index = (read_done + offset) / blksize(); const size_t block_offset = (read_done + offset) % blksize(); - const size_t block_index = this->block_index(data_block_index); + const auto block_index = this->block_index(data_block_index); const size_t bytes = BAN::Math::min<size_t>(bytes_to_read - read_done, blksize() - block_offset); - m_fs.read_block(block_index, block_buffer.span()); + if (block_index.has_value()) + m_fs.read_block(block_index.value(), block_buffer.span()); + else + memset(block_buffer.data(), 0x00, block_buffer.size()); memcpy(buffer.data() + read_done, block_buffer.data() + block_offset, bytes); @@ -178,7 +182,7 @@ namespace Kernel const size_t data_block_index = (write_done + offset) / blksize(); const size_t block_offset = (write_done + offset) % blksize(); - const size_t block_index = this->block_index(data_block_index); + const size_t block_index = TRY(block_index_with_allocation(data_block_index)); const size_t bytes = BAN::Math::min<size_t>(bytes_to_write - write_done, blksize() - block_offset); @@ -196,9 +200,6 @@ namespace Kernel BAN::ErrorOr<void> TmpFileInode::truncate_impl(size_t new_size) { - size_t start_block = size() / blksize() * blksize(); - for (size_t off = start_block; off < new_size; off += blksize()) - TRY(block_index_with_allocation(off / blksize())); m_inode_info.size = new_size; return {}; } @@ -349,8 +350,8 @@ namespace Kernel size_t full_offset = 0; while (full_offset < (size_t)size()) { - size_t data_block_index = full_offset / blksize(); - size_t block_index = this->block_index(data_block_index); + const size_t data_block_index = full_offset / blksize(); + const size_t block_index = this->block_index(data_block_index).value(); // FIXME: implement fast heap pages? BAN::Vector<uint8_t> buffer; From ab4f03338553b8d636725f14e1e524a1160dd6e5 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 6 Nov 2023 20:07:09 +0200 Subject: [PATCH 185/240] Kernel: Cleanup TmpFS code and block access doesn't require allocs TmpFS blocks are now accessed with a simple wrapper --- kernel/include/kernel/FS/TmpFS/FileSystem.h | 43 +++++-- kernel/include/kernel/FS/TmpFS/Inode.h | 21 ++-- kernel/kernel/FS/TmpFS/FileSystem.cpp | 54 ++++---- kernel/kernel/FS/TmpFS/Inode.cpp | 131 ++++++++++---------- 4 files changed, 132 insertions(+), 117 deletions(-) diff --git a/kernel/include/kernel/FS/TmpFS/FileSystem.h b/kernel/include/kernel/FS/TmpFS/FileSystem.h index 0c311533..b90b85c1 100644 --- a/kernel/include/kernel/FS/TmpFS/FileSystem.h +++ b/kernel/include/kernel/FS/TmpFS/FileSystem.h @@ -4,16 +4,29 @@ #include <BAN/Iteration.h> #include <kernel/FS/FileSystem.h> #include <kernel/FS/TmpFS/Inode.h> +#include <kernel/Memory/PageTable.h> #include <kernel/SpinLock.h> namespace Kernel { - template<typename F> - concept for_each_indirect_paddr_allocating_callback = requires(F func, paddr_t paddr, bool was_allocated) + namespace TmpFuncs { - requires BAN::is_same_v<decltype(func(paddr, was_allocated)), BAN::Iteration>; - }; + + template<typename F> + concept for_each_indirect_paddr_allocating_callback = requires(F func, paddr_t paddr, bool was_allocated) + { + requires BAN::is_same_v<decltype(func(paddr, was_allocated)), BAN::Iteration>; + }; + + template<typename F> + concept with_block_buffer_callback = requires(F func, BAN::ByteSpan buffer) + { + requires BAN::is_same_v<decltype(func(buffer)), void>; + }; + + } + class TmpFileSystem : public FileSystem { @@ -27,6 +40,7 @@ namespace Kernel virtual BAN::RefPtr<Inode> root_inode() override { return m_root_inode; } BAN::ErrorOr<BAN::RefPtr<TmpInode>> open_inode(ino_t ino); + BAN::ErrorOr<void> add_to_cache(BAN::RefPtr<TmpInode>); // FIXME: read_block and write_block should not require external buffer // probably some wrapper like PageTable::with_fast_page could work? @@ -36,8 +50,8 @@ namespace Kernel void delete_inode(ino_t ino); BAN::ErrorOr<ino_t> allocate_inode(const TmpInodeInfo&); - void read_block(size_t index, BAN::ByteSpan buffer); - void write_block(size_t index, BAN::ConstByteSpan buffer); + template<TmpFuncs::with_block_buffer_callback F> + void with_block_buffer(size_t index, F callback); void free_block(size_t index); BAN::ErrorOr<size_t> allocate_block(); @@ -46,7 +60,8 @@ namespace Kernel { enum Flags : paddr_t { - Present = 1 << 0, + Present = 1 << 0, + Internal = 1 << 1, }; // 12 bottom bits of paddr can be used as flags, since @@ -79,9 +94,9 @@ namespace Kernel paddr_t find_block(size_t index); - template<for_each_indirect_paddr_allocating_callback F> + template<TmpFuncs::for_each_indirect_paddr_allocating_callback F> BAN::ErrorOr<void> for_each_indirect_paddr_allocating(PageInfo page_info, F callback, size_t depth); - template<for_each_indirect_paddr_allocating_callback F> + template<TmpFuncs::for_each_indirect_paddr_allocating_callback F> BAN::ErrorOr<BAN::Iteration> for_each_indirect_paddr_allocating_internal(PageInfo page_info, F callback, size_t depth); paddr_t find_indirect(PageInfo root, size_t index, size_t depth); @@ -119,4 +134,14 @@ namespace Kernel const size_t m_max_pages; }; + template<TmpFuncs::with_block_buffer_callback F> + void TmpFileSystem::with_block_buffer(size_t index, F callback) + { + paddr_t block_paddr = find_block(index); + PageTable::with_fast_page(block_paddr, [&] { + BAN::ByteSpan buffer(reinterpret_cast<uint8_t*>(PageTable::fast_page()), PAGE_SIZE); + callback(buffer); + }); + } + } \ No newline at end of file diff --git a/kernel/include/kernel/FS/TmpFS/Inode.h b/kernel/include/kernel/FS/TmpFS/Inode.h index 4a4da99f..f80dd74b 100644 --- a/kernel/include/kernel/FS/TmpFS/Inode.h +++ b/kernel/include/kernel/FS/TmpFS/Inode.h @@ -8,6 +8,17 @@ namespace Kernel { + namespace TmpFuncs + { + + template<typename F> + concept for_each_entry_callback = requires(F func, const TmpDirectoryEntry& entry) + { + requires BAN::is_same_v<decltype(func(entry)), BAN::Iteration>; + }; + + } + class TmpFileSystem; class TmpInode : public Inode @@ -51,7 +62,7 @@ namespace Kernel class TmpFileInode : public TmpInode { public: - static BAN::ErrorOr<BAN::RefPtr<TmpFileInode>> create(TmpFileSystem&, mode_t, uid_t, gid_t); + static BAN::ErrorOr<BAN::RefPtr<TmpFileInode>> create_new(TmpFileSystem&, mode_t, uid_t, gid_t); ~TmpFileInode(); protected: @@ -74,12 +85,6 @@ namespace Kernel TmpSymlinkInode(TmpFileSystem&, ino_t, const TmpInodeInfo&, BAN::StringView target); }; - template<typename F> - concept for_each_entry_callback = requires(F func, const TmpDirectoryEntry& entry) - { - requires BAN::is_same_v<decltype(func(entry)), BAN::Iteration>; - }; - class TmpDirectoryInode : public TmpInode { public: @@ -100,7 +105,7 @@ namespace Kernel BAN::ErrorOr<void> link_inode(TmpInode&, BAN::StringView); - template<for_each_entry_callback F> + template<TmpFuncs::for_each_entry_callback F> void for_each_entry(F callback); friend class TmpInode; diff --git a/kernel/kernel/FS/TmpFS/FileSystem.cpp b/kernel/kernel/FS/TmpFS/FileSystem.cpp index d5f90029..97e30855 100644 --- a/kernel/kernel/FS/TmpFS/FileSystem.cpp +++ b/kernel/kernel/FS/TmpFS/FileSystem.cpp @@ -1,6 +1,5 @@ #include <kernel/FS/TmpFS/FileSystem.h> #include <kernel/Memory/Heap.h> -#include <kernel/Memory/PageTable.h> namespace Kernel { @@ -39,7 +38,6 @@ namespace Kernel }); m_root_inode = TRY(TmpDirectoryInode::create_root(*this, mode, uid, gid)); - TRY(m_inode_cache.insert(m_root_inode->ino(), m_root_inode)); return {}; } @@ -66,6 +64,13 @@ namespace Kernel return inode; } + BAN::ErrorOr<void> TmpFileSystem::add_to_cache(BAN::RefPtr<TmpInode> inode) + { + if (!m_inode_cache.contains(inode->ino())) + TRY(m_inode_cache.insert(inode->ino(), inode)); + return {}; + } + void TmpFileSystem::read_inode(ino_t ino, TmpInodeInfo& out) { auto inode_location = find_inode(ino); @@ -135,24 +140,6 @@ namespace Kernel }; } - void TmpFileSystem::read_block(size_t index, BAN::ByteSpan buffer) - { - ASSERT(buffer.size() >= PAGE_SIZE); - paddr_t block_paddr = find_block(index); - PageTable::with_fast_page(block_paddr, [&] { - memcpy(buffer.data(), PageTable::fast_page_as_ptr(), PAGE_SIZE); - }); - } - - void TmpFileSystem::write_block(size_t index, BAN::ConstByteSpan buffer) - { - ASSERT(buffer.size() >= PAGE_SIZE); - paddr_t block_paddr = find_block(index); - PageTable::with_fast_page(block_paddr, [&] { - memcpy(PageTable::fast_page_as_ptr(), buffer.data(), PAGE_SIZE); - }); - } - void TmpFileSystem::free_block(size_t index) { ASSERT_NOT_REACHED(); @@ -180,12 +167,15 @@ namespace Kernel { ASSERT(root.flags() & PageInfo::Flags::Present); if (depth == 0) + { + ASSERT(index == 0); return root.paddr(); + } constexpr size_t addresses_per_page = PAGE_SIZE / sizeof(PageInfo); size_t divisor = 1; - for (size_t i = 0; i < depth; i++) + for (size_t i = 1; i < depth; i++) divisor *= addresses_per_page; size_t index_of_page = index / divisor; @@ -201,11 +191,15 @@ namespace Kernel return find_indirect(next, index_in_page, depth - 1); } - template<for_each_indirect_paddr_allocating_callback F> + template<TmpFuncs::for_each_indirect_paddr_allocating_callback F> BAN::ErrorOr<BAN::Iteration> TmpFileSystem::for_each_indirect_paddr_allocating_internal(PageInfo page_info, F callback, size_t depth) { - ASSERT_GT(depth, 0); ASSERT(page_info.flags() & PageInfo::Flags::Present); + if (depth == 0) + { + bool is_new_block = page_info.flags() & PageInfo::Flags::Internal; + return callback(page_info.paddr(), is_new_block); + } for (size_t i = 0; i < PAGE_SIZE / sizeof(PageInfo); i++) { @@ -214,8 +208,6 @@ namespace Kernel next_info = PageTable::fast_page_as_sized<PageInfo>(i); }); - bool allocated = false; - if (!(next_info.flags() & PageInfo::Flags::Present)) { paddr_t new_paddr = Heap::get().take_free_page(); @@ -234,15 +226,11 @@ namespace Kernel to_update_info = next_info; }); - allocated = true; + // Don't sync the internal bit to actual memory + next_info.set_flags(PageInfo::Flags::Internal | PageInfo::Flags::Present); } - BAN::Iteration result; - if (depth == 1) - result = callback(next_info.paddr(), allocated); - else - result = TRY(for_each_indirect_paddr_allocating_internal(next_info, callback, depth - 1)); - + auto result = TRY(for_each_indirect_paddr_allocating_internal(next_info, callback, depth - 1)); switch (result) { case BAN::Iteration::Continue: @@ -257,7 +245,7 @@ namespace Kernel return BAN::Iteration::Continue; } - template<for_each_indirect_paddr_allocating_callback F> + template<TmpFuncs::for_each_indirect_paddr_allocating_callback F> BAN::ErrorOr<void> TmpFileSystem::for_each_indirect_paddr_allocating(PageInfo page_info, F callback, size_t depth) { BAN::Iteration result = TRY(for_each_indirect_paddr_allocating_internal(page_info, callback, depth)); diff --git a/kernel/kernel/FS/TmpFS/Inode.cpp b/kernel/kernel/FS/TmpFS/Inode.cpp index a97dd1b3..4d01b1a1 100644 --- a/kernel/kernel/FS/TmpFS/Inode.cpp +++ b/kernel/kernel/FS/TmpFS/Inode.cpp @@ -64,7 +64,10 @@ namespace Kernel : m_fs(fs) , m_inode_info(info) , m_ino(ino) - {} + { + // FIXME: this should be able to fail + MUST(fs.add_to_cache(this)); + } void TmpInode::sync() { @@ -102,7 +105,7 @@ namespace Kernel /* FILE INODE */ - BAN::ErrorOr<BAN::RefPtr<TmpFileInode>> TmpFileInode::create(TmpFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) + BAN::ErrorOr<BAN::RefPtr<TmpFileInode>> TmpFileInode::create_new(TmpFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) { auto info = create_inode_info(Mode::IFREG | mode, uid, gid); ino_t ino = TRY(fs.allocate_inode(info)); @@ -131,15 +134,12 @@ namespace Kernel m_fs.delete_inode(ino()); } - BAN::ErrorOr<size_t> TmpFileInode::read_impl(off_t offset, BAN::ByteSpan buffer) + BAN::ErrorOr<size_t> TmpFileInode::read_impl(off_t offset, BAN::ByteSpan out_buffer) { - if (offset >= size() || buffer.size() == 0) + if (offset >= size() || out_buffer.size() == 0) return 0; - BAN::Vector<uint8_t> block_buffer; - TRY(block_buffer.resize(blksize())); - - const size_t bytes_to_read = BAN::Math::min<size_t>(size() - offset, buffer.size()); + const size_t bytes_to_read = BAN::Math::min<size_t>(size() - offset, out_buffer.size()); size_t read_done = 0; while (read_done < bytes_to_read) @@ -152,11 +152,11 @@ namespace Kernel const size_t bytes = BAN::Math::min<size_t>(bytes_to_read - read_done, blksize() - block_offset); if (block_index.has_value()) - m_fs.read_block(block_index.value(), block_buffer.span()); + m_fs.with_block_buffer(block_index.value(), [&](BAN::ByteSpan block_buffer) { + memcpy(out_buffer.data() + read_done, block_buffer.data() + block_offset, bytes); + }); else - memset(block_buffer.data(), 0x00, block_buffer.size()); - - memcpy(buffer.data() + read_done, block_buffer.data() + block_offset, bytes); + memset(out_buffer.data() + read_done, 0x00, bytes); read_done += bytes; } @@ -164,17 +164,14 @@ namespace Kernel return read_done; } - BAN::ErrorOr<size_t> TmpFileInode::write_impl(off_t offset, BAN::ConstByteSpan buffer) + BAN::ErrorOr<size_t> TmpFileInode::write_impl(off_t offset, BAN::ConstByteSpan in_buffer) { // FIXME: handle overflow - if (offset + buffer.size() > (size_t)size()) - TRY(truncate_impl(offset + buffer.size())); + if (offset + in_buffer.size() > (size_t)size()) + TRY(truncate_impl(offset + in_buffer.size())); - BAN::Vector<uint8_t> block_buffer; - TRY(block_buffer.resize(blksize())); - - const size_t bytes_to_write = buffer.size(); + const size_t bytes_to_write = in_buffer.size(); size_t write_done = 0; while (write_done < bytes_to_write) @@ -186,11 +183,9 @@ namespace Kernel const size_t bytes = BAN::Math::min<size_t>(bytes_to_write - write_done, blksize() - block_offset); - if (bytes < (size_t)blksize()) - m_fs.read_block(block_index, block_buffer.span()); - memcpy(block_buffer.data() + block_offset, buffer.data() + write_done, bytes); - - m_fs.write_block(block_index, block_buffer.span()); + m_fs.with_block_buffer(block_index, [&](BAN::ByteSpan block_buffer) { + memcpy(block_buffer.data() + block_offset, in_buffer.data() + write_done, bytes); + }); write_done += bytes; } @@ -233,7 +228,7 @@ namespace Kernel auto inode = BAN::RefPtr<TmpDirectoryInode>::adopt(inode_ptr); TRY(inode->link_inode(*inode, "."sv)); - TRY(inode->link_inode(parent, "."sv)); + TRY(inode->link_inode(parent, ".."sv)); return inode; } @@ -282,7 +277,7 @@ namespace Kernel BAN::ErrorOr<void> TmpDirectoryInode::create_file_impl(BAN::StringView name, mode_t mode, uid_t uid, gid_t gid) { - auto new_inode = TRY(TmpFileInode::create(m_fs, mode, uid, gid)); + auto new_inode = TRY(TmpFileInode::create_new(m_fs, mode, uid, gid)); TRY(link_inode(*new_inode, name)); return {}; } @@ -303,37 +298,41 @@ namespace Kernel { static constexpr size_t directory_entry_alignment = 16; - size_t current_size = size(); - size_t new_entry_size = sizeof(TmpDirectoryEntry) + name.size(); if (auto rem = new_entry_size % directory_entry_alignment) new_entry_size += directory_entry_alignment - rem; ASSERT(new_entry_size < (size_t)blksize()); - size_t new_entry_offset = current_size % blksize(); + size_t new_entry_offset = size() % blksize(); // Target is the last block, or if it doesn't fit the new entry, the next one. - size_t target_data_block = current_size / blksize(); + size_t target_data_block = size() / blksize(); if (blksize() - new_entry_offset < new_entry_size) + { + // insert an empty entry at the end of current block + m_fs.with_block_buffer(block_index(target_data_block).value(), [&](BAN::ByteSpan bytespan) { + auto& empty_entry = bytespan.slice(new_entry_offset).as<TmpDirectoryEntry>(); + empty_entry.type = DT_UNKNOWN; + empty_entry.ino = 0; + empty_entry.rec_len = blksize() - new_entry_offset; + }); + m_inode_info.size += blksize() - new_entry_offset; + target_data_block++; + new_entry_offset = 0; + } size_t block_index = TRY(block_index_with_allocation(target_data_block)); - - BAN::Vector<uint8_t> buffer; - TRY(buffer.resize(blksize())); - BAN::ByteSpan bytespan = buffer.span(); - - m_fs.read_block(block_index, bytespan); - - auto& new_entry = bytespan.slice(new_entry_offset).as<TmpDirectoryEntry>(); - new_entry.type = inode_mode_to_dt_type(inode.mode()); - new_entry.ino = inode.ino(); - new_entry.name_len = name.size(); - new_entry.rec_len = new_entry_size; - memcpy(new_entry.name, name.data(), name.size()); - - m_fs.write_block(block_index, bytespan); + m_fs.with_block_buffer(block_index, [&](BAN::ByteSpan bytespan) { + auto& new_entry = bytespan.slice(new_entry_offset).as<TmpDirectoryEntry>(); + ASSERT(new_entry.type == DT_UNKNOWN); + new_entry.type = inode_mode_to_dt_type(inode.mode()); + new_entry.ino = inode.ino(); + new_entry.name_len = name.size(); + new_entry.rec_len = new_entry_size; + memcpy(new_entry.name, name.data(), name.size()); + }); // increase current size m_inode_info.size += new_entry_size; @@ -344,33 +343,31 @@ namespace Kernel return {}; } - template<for_each_entry_callback F> + template<TmpFuncs::for_each_entry_callback F> void TmpDirectoryInode::for_each_entry(F callback) { - size_t full_offset = 0; - while (full_offset < (size_t)size()) + for (size_t data_block_index = 0; data_block_index * blksize() < (size_t)size(); data_block_index++) { - const size_t data_block_index = full_offset / blksize(); const size_t block_index = this->block_index(data_block_index).value(); + const size_t byte_count = BAN::Math::min<size_t>(size() - data_block_index * blksize(), blksize()); - // FIXME: implement fast heap pages? - BAN::Vector<uint8_t> buffer; - MUST(buffer.resize(blksize())); - - BAN::ByteSpan bytespan = buffer.span(); - m_fs.read_block(block_index, bytespan); - - size_t byte_count = BAN::Math::min<size_t>(blksize(), size() - full_offset); - - bytespan = bytespan.slice(0, byte_count); - while (bytespan.size() > 0) - { - auto& entry = bytespan.as<TmpDirectoryEntry>(); - callback(entry); - bytespan = bytespan.slice(entry.rec_len); - } - - full_offset += blksize(); + m_fs.with_block_buffer(block_index, [&](BAN::ByteSpan bytespan) { + bytespan = bytespan.slice(0, byte_count); + while (bytespan.size() > 0) + { + const auto& entry = bytespan.as<TmpDirectoryEntry>(); + switch (callback(entry)) + { + case BAN::Iteration::Continue: + break; + case BAN::Iteration::Break: + return; + default: + ASSERT_NOT_REACHED(); + } + bytespan = bytespan.slice(entry.rec_len); + } + }); } } From cbb2c37e001a1b4992e39a8cfade0bd7d61dfca7 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 6 Nov 2023 20:11:34 +0200 Subject: [PATCH 186/240] Kernel: Implement TmpFS inode chmod --- kernel/include/kernel/FS/TmpFS/Inode.h | 2 ++ kernel/kernel/FS/TmpFS/Inode.cpp | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/kernel/include/kernel/FS/TmpFS/Inode.h b/kernel/include/kernel/FS/TmpFS/Inode.h index f80dd74b..4bce88b2 100644 --- a/kernel/include/kernel/FS/TmpFS/Inode.h +++ b/kernel/include/kernel/FS/TmpFS/Inode.h @@ -69,6 +69,8 @@ namespace Kernel virtual BAN::ErrorOr<size_t> read_impl(off_t, BAN::ByteSpan) override; virtual BAN::ErrorOr<size_t> write_impl(off_t, BAN::ConstByteSpan) override; virtual BAN::ErrorOr<void> truncate_impl(size_t) override; + virtual BAN::ErrorOr<void> chmod_impl(mode_t) override; + virtual bool has_data_impl() const override { return true; } private: TmpFileInode(TmpFileSystem&, ino_t, const TmpInodeInfo&); diff --git a/kernel/kernel/FS/TmpFS/Inode.cpp b/kernel/kernel/FS/TmpFS/Inode.cpp index 4d01b1a1..c0a14bc5 100644 --- a/kernel/kernel/FS/TmpFS/Inode.cpp +++ b/kernel/kernel/FS/TmpFS/Inode.cpp @@ -199,6 +199,12 @@ namespace Kernel return {}; } + BAN::ErrorOr<void> TmpFileInode::chmod_impl(mode_t new_mode) + { + m_inode_info.mode = new_mode; + return {}; + } + /* DIRECTORY INODE */ BAN::ErrorOr<BAN::RefPtr<TmpDirectoryInode>> TmpDirectoryInode::create_root(TmpFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) From 639fd8804c6b93ed417a17454e7d61ae613a4bfe Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 6 Nov 2023 20:42:40 +0200 Subject: [PATCH 187/240] Kernel: Implement TmpFS directory listing --- kernel/kernel/FS/TmpFS/Inode.cpp | 46 ++++++++++++++++++++++++++++++-- 1 file changed, 44 insertions(+), 2 deletions(-) diff --git a/kernel/kernel/FS/TmpFS/Inode.cpp b/kernel/kernel/FS/TmpFS/Inode.cpp index c0a14bc5..13e7e8f0 100644 --- a/kernel/kernel/FS/TmpFS/Inode.cpp +++ b/kernel/kernel/FS/TmpFS/Inode.cpp @@ -276,9 +276,51 @@ namespace Kernel return BAN::RefPtr<Inode>(inode); } - BAN::ErrorOr<void> TmpDirectoryInode::list_next_inodes_impl(off_t, DirectoryEntryList*, size_t) + BAN::ErrorOr<void> TmpDirectoryInode::list_next_inodes_impl(off_t data_block_index, DirectoryEntryList* list, size_t list_len) { - return BAN::Error::from_errno(ENOTSUP); + if (list_len < (size_t)blksize()) + { + dprintln("buffer is too small"); + return BAN::Error::from_errno(ENOBUFS); + } + + auto block_index = this->block_index(data_block_index); + + list->entry_count = 0; + + // if we reach a non-allocated block, it marks the end + if (!block_index.has_value()) + return {}; + + auto* dirp = list->array; + + const size_t byte_count = BAN::Math::min<size_t>(size() - data_block_index * blksize(), blksize()); + m_fs.with_block_buffer(block_index.value(), [&](BAN::ByteSpan bytespan) { + bytespan = bytespan.slice(0, byte_count); + + while (bytespan.size() > 0) + { + const auto& entry = bytespan.as<TmpDirectoryEntry>(); + + if (entry.type != DT_UNKNOWN) + { + // TODO: dirents should be aligned + + dirp->dirent.d_ino = entry.ino; + dirp->dirent.d_type = entry.type; + strncpy(dirp->dirent.d_name, entry.name, entry.name_len); + dirp->dirent.d_name[entry.name_len] = '\0'; + dirp->rec_len = sizeof(DirectoryEntry) + entry.name_len + 1; + dirp = dirp->next(); + + list->entry_count++; + } + + bytespan = bytespan.slice(entry.rec_len); + } + }); + + return {}; } BAN::ErrorOr<void> TmpDirectoryInode::create_file_impl(BAN::StringView name, mode_t mode, uid_t uid, gid_t gid) From 181d139c7daf12be3f6ef5f09d52e7d67f726e41 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 6 Nov 2023 20:43:58 +0200 Subject: [PATCH 188/240] Kernel: Fix ext2 directory listing for big directories --- kernel/kernel/FS/Ext2/Inode.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kernel/kernel/FS/Ext2/Inode.cpp b/kernel/kernel/FS/Ext2/Inode.cpp index 0103a6e9..54a82ea6 100644 --- a/kernel/kernel/FS/Ext2/Inode.cpp +++ b/kernel/kernel/FS/Ext2/Inode.cpp @@ -306,8 +306,7 @@ done: ASSERT(mode().ifdir()); ASSERT(offset >= 0); - const uint32_t data_block_count = blocks(); - if (offset >= data_block_count) + if (offset >= max_used_data_block_count()) { list->entry_count = 0; return {}; From e33b3bcdff5fd76d25b7db337d2a402fef72f858 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 6 Nov 2023 21:06:10 +0200 Subject: [PATCH 189/240] Kernel: Fix TmpFS directory entry enumeration early return --- kernel/kernel/FS/TmpFS/Inode.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/kernel/kernel/FS/TmpFS/Inode.cpp b/kernel/kernel/FS/TmpFS/Inode.cpp index 13e7e8f0..8db6d538 100644 --- a/kernel/kernel/FS/TmpFS/Inode.cpp +++ b/kernel/kernel/FS/TmpFS/Inode.cpp @@ -394,7 +394,8 @@ namespace Kernel template<TmpFuncs::for_each_entry_callback F> void TmpDirectoryInode::for_each_entry(F callback) { - for (size_t data_block_index = 0; data_block_index * blksize() < (size_t)size(); data_block_index++) + bool done = false; + for (size_t data_block_index = 0; !done && data_block_index * blksize() < (size_t)size(); data_block_index++) { const size_t block_index = this->block_index(data_block_index).value(); const size_t byte_count = BAN::Math::min<size_t>(size() - data_block_index * blksize(), blksize()); @@ -403,12 +404,13 @@ namespace Kernel bytespan = bytespan.slice(0, byte_count); while (bytespan.size() > 0) { - const auto& entry = bytespan.as<TmpDirectoryEntry>(); + auto& entry = bytespan.as<TmpDirectoryEntry>(); switch (callback(entry)) { case BAN::Iteration::Continue: break; case BAN::Iteration::Break: + done = true; return; default: ASSERT_NOT_REACHED(); From af330f7b8e3c439c8e3a063ee5f1bef049f7990d Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 6 Nov 2023 21:26:24 +0200 Subject: [PATCH 190/240] Kernel: TmpFS directory inodes now iterate over only valid entries --- kernel/include/kernel/FS/TmpFS/Inode.h | 6 +-- kernel/kernel/FS/TmpFS/Inode.cpp | 57 +++++++++++++++++++------- 2 files changed, 46 insertions(+), 17 deletions(-) diff --git a/kernel/include/kernel/FS/TmpFS/Inode.h b/kernel/include/kernel/FS/TmpFS/Inode.h index 4bce88b2..287f4264 100644 --- a/kernel/include/kernel/FS/TmpFS/Inode.h +++ b/kernel/include/kernel/FS/TmpFS/Inode.h @@ -12,7 +12,7 @@ namespace Kernel { template<typename F> - concept for_each_entry_callback = requires(F func, const TmpDirectoryEntry& entry) + concept for_each_valid_entry_callback = requires(F func, TmpDirectoryEntry& entry) { requires BAN::is_same_v<decltype(func(entry)), BAN::Iteration>; }; @@ -107,8 +107,8 @@ namespace Kernel BAN::ErrorOr<void> link_inode(TmpInode&, BAN::StringView); - template<TmpFuncs::for_each_entry_callback F> - void for_each_entry(F callback); + template<TmpFuncs::for_each_valid_entry_callback F> + void for_each_valid_entry(F callback); friend class TmpInode; }; diff --git a/kernel/kernel/FS/TmpFS/Inode.cpp b/kernel/kernel/FS/TmpFS/Inode.cpp index 8db6d538..9569b6cf 100644 --- a/kernel/kernel/FS/TmpFS/Inode.cpp +++ b/kernel/kernel/FS/TmpFS/Inode.cpp @@ -260,9 +260,7 @@ namespace Kernel { ino_t result = 0; - for_each_entry([&](const TmpDirectoryEntry& entry) { - if (entry.type == DT_UNKNOWN) - return BAN::Iteration::Continue; + for_each_valid_entry([&](TmpDirectoryEntry& entry) { if (entry.name_sv() != name) return BAN::Iteration::Continue; result = entry.ino; @@ -339,7 +337,35 @@ namespace Kernel BAN::ErrorOr<void> TmpDirectoryInode::unlink_impl(BAN::StringView) { - return BAN::Error::from_errno(ENOTSUP); + ino_t entry_ino = 0; + + for_each_valid_entry([&](TmpDirectoryEntry& entry) { + if (entry.name_sv() != name) + return BAN::Iteration::Continue; + + // get ino of entry + entry_ino = entry.ino; + + // invalidate the entry + entry.ino = 0; + entry.type = DT_UNKNOWN; + + return BAN::Iteration::Break; + }); + + if (entry_ino == 0) + return BAN::Error::from_errno(ENOENT); + + // FIXME: this should be able to fail + auto inode = MUST(m_fs.open_inode(entry_ino)); + + ASSERT(inode->nlink() > 0); + inode->m_inode_info.nlink--; + + if (inode->nlink() == 0 || (inode->mode().ifdir() && inode->nlink() <= 2)) + m_fs.remove_from_cache(inode); + + return {}; } BAN::ErrorOr<void> TmpDirectoryInode::link_inode(TmpInode& inode, BAN::StringView name) @@ -391,8 +417,8 @@ namespace Kernel return {}; } - template<TmpFuncs::for_each_entry_callback F> - void TmpDirectoryInode::for_each_entry(F callback) + template<TmpFuncs::for_each_valid_entry_callback F> + void TmpDirectoryInode::for_each_valid_entry(F callback) { bool done = false; for (size_t data_block_index = 0; !done && data_block_index * blksize() < (size_t)size(); data_block_index++) @@ -405,15 +431,18 @@ namespace Kernel while (bytespan.size() > 0) { auto& entry = bytespan.as<TmpDirectoryEntry>(); - switch (callback(entry)) + if (entry.type != DT_UNKNOWN) { - case BAN::Iteration::Continue: - break; - case BAN::Iteration::Break: - done = true; - return; - default: - ASSERT_NOT_REACHED(); + switch (callback(entry)) + { + case BAN::Iteration::Continue: + break; + case BAN::Iteration::Break: + done = true; + return; + default: + ASSERT_NOT_REACHED(); + } } bytespan = bytespan.slice(entry.rec_len); } From a20f8607de825a0237eab73b4530e411e66132ed Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 6 Nov 2023 21:14:39 +0200 Subject: [PATCH 191/240] Kernel: Implement TmpFS Inode unlinking and deletion --- kernel/include/kernel/FS/TmpFS/FileSystem.h | 2 + kernel/include/kernel/FS/TmpFS/Inode.h | 5 ++ kernel/kernel/FS/TmpFS/FileSystem.cpp | 22 ++++- kernel/kernel/FS/TmpFS/Inode.cpp | 97 ++++++++++++++++----- 4 files changed, 102 insertions(+), 24 deletions(-) diff --git a/kernel/include/kernel/FS/TmpFS/FileSystem.h b/kernel/include/kernel/FS/TmpFS/FileSystem.h index b90b85c1..775b4959 100644 --- a/kernel/include/kernel/FS/TmpFS/FileSystem.h +++ b/kernel/include/kernel/FS/TmpFS/FileSystem.h @@ -40,7 +40,9 @@ namespace Kernel virtual BAN::RefPtr<Inode> root_inode() override { return m_root_inode; } BAN::ErrorOr<BAN::RefPtr<TmpInode>> open_inode(ino_t ino); + BAN::ErrorOr<void> add_to_cache(BAN::RefPtr<TmpInode>); + void remove_from_cache(BAN::RefPtr<TmpInode>); // FIXME: read_block and write_block should not require external buffer // probably some wrapper like PageTable::with_fast_page could work? diff --git a/kernel/include/kernel/FS/TmpFS/Inode.h b/kernel/include/kernel/FS/TmpFS/Inode.h index 287f4264..fa385185 100644 --- a/kernel/include/kernel/FS/TmpFS/Inode.h +++ b/kernel/include/kernel/FS/TmpFS/Inode.h @@ -40,12 +40,14 @@ namespace Kernel public: static BAN::ErrorOr<BAN::RefPtr<TmpInode>> create_from_existing(TmpFileSystem&, ino_t, const TmpInodeInfo&); + ~TmpInode(); protected: TmpInode(TmpFileSystem&, ino_t, const TmpInodeInfo&); void sync(); void free_all_blocks(); + virtual BAN::ErrorOr<void> prepare_unlink() { return {}; }; BAN::Optional<size_t> block_index(size_t data_block_index); BAN::ErrorOr<size_t> block_index_with_allocation(size_t data_block_index); @@ -95,6 +97,9 @@ namespace Kernel ~TmpDirectoryInode(); + protected: + virtual BAN::ErrorOr<void> prepare_unlink() override; + protected: virtual BAN::ErrorOr<BAN::RefPtr<Inode>> find_inode_impl(BAN::StringView) override final; virtual BAN::ErrorOr<void> list_next_inodes_impl(off_t, DirectoryEntryList*, size_t) override final; diff --git a/kernel/kernel/FS/TmpFS/FileSystem.cpp b/kernel/kernel/FS/TmpFS/FileSystem.cpp index 97e30855..6e2cfd81 100644 --- a/kernel/kernel/FS/TmpFS/FileSystem.cpp +++ b/kernel/kernel/FS/TmpFS/FileSystem.cpp @@ -71,6 +71,12 @@ namespace Kernel return {}; } + void TmpFileSystem::remove_from_cache(BAN::RefPtr<TmpInode> inode) + { + ASSERT(m_inode_cache.contains(inode->ino())); + m_inode_cache.remove(inode->ino()); + } + void TmpFileSystem::read_inode(ino_t ino, TmpInodeInfo& out) { auto inode_location = find_inode(ino); @@ -98,6 +104,7 @@ namespace Kernel ASSERT_EQ(paddr, 0); inode_info = {}; }); + ASSERT(!m_inode_cache.contains(ino)); } BAN::ErrorOr<ino_t> TmpFileSystem::allocate_inode(const TmpInodeInfo& info) @@ -142,7 +149,20 @@ namespace Kernel void TmpFileSystem::free_block(size_t index) { - ASSERT_NOT_REACHED(); + constexpr size_t addresses_per_page = PAGE_SIZE / sizeof(PageInfo); + + const size_t index_of_page = (index - first_data_page) / addresses_per_page; + const size_t index_in_page = (index - first_data_page) % addresses_per_page; + + paddr_t page_containing = find_indirect(m_data_pages, index_of_page, 2); + + PageTable::with_fast_page(page_containing, [&] { + auto& page_info = PageTable::fast_page_as_sized<PageInfo>(index_in_page); + ASSERT(page_info.flags() & PageInfo::Flags::Present); + Heap::get().release_page(page_info.paddr()); + page_info.set_paddr(0); + page_info.set_flags(0); + }); } BAN::ErrorOr<size_t> TmpFileSystem::allocate_block() diff --git a/kernel/kernel/FS/TmpFS/Inode.cpp b/kernel/kernel/FS/TmpFS/Inode.cpp index 9569b6cf..7bfed1ae 100644 --- a/kernel/kernel/FS/TmpFS/Inode.cpp +++ b/kernel/kernel/FS/TmpFS/Inode.cpp @@ -69,6 +69,17 @@ namespace Kernel MUST(fs.add_to_cache(this)); } + TmpInode::~TmpInode() + { + if (nlink() > 0) + { + sync(); + return; + } + free_all_blocks(); + m_fs.delete_inode(ino()); + } + void TmpInode::sync() { m_fs.write_inode(m_ino, m_inode_info); @@ -76,6 +87,12 @@ namespace Kernel void TmpInode::free_all_blocks() { + for (size_t i = 0; i < TmpInodeInfo::direct_block_count; i++) + { + if (m_inode_info.block[i]) + m_fs.free_block(m_inode_info.block[i]); + m_inode_info.block[i] = 0; + } for (auto block : m_inode_info.block) ASSERT(block == 0); } @@ -125,13 +142,6 @@ namespace Kernel TmpFileInode::~TmpFileInode() { - if (nlink() > 0) - { - sync(); - return; - } - free_all_blocks(); - m_fs.delete_inode(ino()); } BAN::ErrorOr<size_t> TmpFileInode::read_impl(off_t offset, BAN::ByteSpan out_buffer) @@ -247,13 +257,46 @@ namespace Kernel TmpDirectoryInode::~TmpDirectoryInode() { - if (nlink() >= 2) + } + + BAN::ErrorOr<void> TmpDirectoryInode::prepare_unlink() + { + ino_t dot_ino = 0; + ino_t dotdot_ino = 0; + + bool is_empty = true; + for_each_valid_entry([&](TmpDirectoryEntry& entry) { + if (entry.name_sv() == "."sv) + dot_ino = entry.ino; + else if (entry.name_sv() == ".."sv) + dotdot_ino = entry.ino; + else + { + is_empty = false; + return BAN::Iteration::Break; + } + return BAN::Iteration::Continue; + }); + if (!is_empty) + return BAN::Error::from_errno(ENOTEMPTY); + + // FIXME: can these leak inodes? + + if (dot_ino) { - sync(); - return; + auto inode = TRY(m_fs.open_inode(dot_ino)); + ASSERT(inode->nlink() > 0); + inode->m_inode_info.nlink--; } - free_all_blocks(); - m_fs.delete_inode(ino()); + + if (dotdot_ino) + { + auto inode = TRY(m_fs.open_inode(dotdot_ino)); + ASSERT(inode->nlink() > 0); + inode->m_inode_info.nlink--; + } + + return {}; } BAN::ErrorOr<BAN::RefPtr<Inode>> TmpDirectoryInode::find_inode_impl(BAN::StringView name) @@ -335,36 +378,38 @@ namespace Kernel return {}; } - BAN::ErrorOr<void> TmpDirectoryInode::unlink_impl(BAN::StringView) + BAN::ErrorOr<void> TmpDirectoryInode::unlink_impl(BAN::StringView name) { ino_t entry_ino = 0; for_each_valid_entry([&](TmpDirectoryEntry& entry) { if (entry.name_sv() != name) return BAN::Iteration::Continue; - - // get ino of entry entry_ino = entry.ino; - - // invalidate the entry - entry.ino = 0; - entry.type = DT_UNKNOWN; - return BAN::Iteration::Break; }); if (entry_ino == 0) return BAN::Error::from_errno(ENOENT); - // FIXME: this should be able to fail - auto inode = MUST(m_fs.open_inode(entry_ino)); + auto inode = TRY(m_fs.open_inode(entry_ino)); ASSERT(inode->nlink() > 0); + + TRY(inode->prepare_unlink()); inode->m_inode_info.nlink--; - if (inode->nlink() == 0 || (inode->mode().ifdir() && inode->nlink() <= 2)) + if (inode->nlink() == 0) m_fs.remove_from_cache(inode); + for_each_valid_entry([&](TmpDirectoryEntry& entry) { + if (entry.name_sv() != name) + return BAN::Iteration::Continue; + entry.ino = 0; + entry.type = DT_UNKNOWN; + return BAN::Iteration::Break; + }); + return {}; } @@ -372,6 +417,12 @@ namespace Kernel { static constexpr size_t directory_entry_alignment = 16; + auto find_result = find_inode_impl(name); + if (!find_result.is_error()) + return BAN::Error::from_errno(EEXIST); + if (find_result.error().get_error_code() != ENOENT) + return find_result.release_error(); + size_t new_entry_size = sizeof(TmpDirectoryEntry) + name.size(); if (auto rem = new_entry_size % directory_entry_alignment) new_entry_size += directory_entry_alignment - rem; From a46b2f43d9d502e8d4045fb8aff6777c1fb81c89 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Tue, 7 Nov 2023 02:35:44 +0200 Subject: [PATCH 192/240] Kernel: Make ProcFS use the new TmpFS internally --- kernel/include/kernel/FS/ProcFS/FileSystem.h | 11 +++----- kernel/include/kernel/FS/ProcFS/Inode.h | 20 ++++++++------ kernel/include/kernel/FS/TmpFS/FileSystem.h | 3 +- kernel/include/kernel/FS/TmpFS/Inode.h | 10 ++++--- kernel/include/kernel/Process.h | 2 ++ kernel/kernel/FS/ProcFS/FileSystem.cpp | 21 ++++++++------ kernel/kernel/FS/ProcFS/Inode.cpp | 29 ++++++++++++-------- kernel/kernel/FS/TmpFS/Inode.cpp | 2 +- 8 files changed, 56 insertions(+), 42 deletions(-) diff --git a/kernel/include/kernel/FS/ProcFS/FileSystem.h b/kernel/include/kernel/FS/ProcFS/FileSystem.h index becef480..159cdfd3 100644 --- a/kernel/include/kernel/FS/ProcFS/FileSystem.h +++ b/kernel/include/kernel/FS/ProcFS/FileSystem.h @@ -1,13 +1,13 @@ #pragma once -#include <kernel/FS/RamFS/FileSystem.h> -#include <kernel/FS/RamFS/Inode.h> +#include <kernel/FS/TmpFS/FileSystem.h> +#include <kernel/FS/TmpFS/Inode.h> #include <kernel/Process.h> namespace Kernel { - class ProcFileSystem final : public RamFileSystem + class ProcFileSystem final : public TmpFileSystem { public: static void initialize(); @@ -17,10 +17,7 @@ namespace Kernel void on_process_delete(Process&); private: - ProcFileSystem(size_t size); - - private: - BAN::RefPtr<RamDirectoryInode> m_root_inode; + ProcFileSystem(); }; } \ No newline at end of file diff --git a/kernel/include/kernel/FS/ProcFS/Inode.h b/kernel/include/kernel/FS/ProcFS/Inode.h index 628b9c71..189bdc14 100644 --- a/kernel/include/kernel/FS/ProcFS/Inode.h +++ b/kernel/include/kernel/FS/ProcFS/Inode.h @@ -1,41 +1,43 @@ #pragma once -#include <kernel/FS/RamFS/FileSystem.h> -#include <kernel/FS/RamFS/Inode.h> +#include <kernel/FS/TmpFS/FileSystem.h> +#include <kernel/FS/TmpFS/Inode.h> #include <kernel/Process.h> namespace Kernel { - class ProcPidInode final : public RamDirectoryInode + class ProcPidInode final : public TmpDirectoryInode { public: - static BAN::ErrorOr<BAN::RefPtr<ProcPidInode>> create(Process&, RamFileSystem&, mode_t, uid_t, gid_t); + static BAN::ErrorOr<BAN::RefPtr<ProcPidInode>> create_new(Process&, TmpFileSystem&, mode_t, uid_t, gid_t); ~ProcPidInode() = default; + void cleanup(); + private: - ProcPidInode(Process&, RamFileSystem&, const FullInodeInfo&); + ProcPidInode(Process&, TmpFileSystem&, const TmpInodeInfo&); private: Process& m_process; }; - class ProcROInode final : public RamInode + class ProcROInode final : public TmpInode { public: - static BAN::ErrorOr<BAN::RefPtr<ProcROInode>> create(Process&, size_t (Process::*callback)(off_t, BAN::ByteSpan) const, RamFileSystem&, mode_t, uid_t, gid_t); + static BAN::ErrorOr<BAN::RefPtr<ProcROInode>> create_new(Process&, size_t (Process::*callback)(off_t, BAN::ByteSpan) const, TmpFileSystem&, mode_t, uid_t, gid_t); ~ProcROInode() = default; protected: virtual BAN::ErrorOr<size_t> read_impl(off_t, BAN::ByteSpan) override; // You may not write here and this is always non blocking - virtual BAN::ErrorOr<size_t> write_impl(off_t, BAN::ConstByteSpan) override { return BAN::Error::from_errno(EINVAL); } + virtual BAN::ErrorOr<size_t> write_impl(off_t, BAN::ConstByteSpan) override { return BAN::Error::from_errno(EINVAL); } virtual BAN::ErrorOr<void> truncate_impl(size_t) override { return BAN::Error::from_errno(EINVAL); } virtual bool has_data_impl() const override { return true; } private: - ProcROInode(Process&, size_t (Process::*)(off_t, BAN::ByteSpan) const, RamFileSystem&, const FullInodeInfo&); + ProcROInode(Process&, size_t (Process::*)(off_t, BAN::ByteSpan) const, TmpFileSystem&, const TmpInodeInfo&); private: Process& m_process; diff --git a/kernel/include/kernel/FS/TmpFS/FileSystem.h b/kernel/include/kernel/FS/TmpFS/FileSystem.h index 775b4959..5205ff17 100644 --- a/kernel/include/kernel/FS/TmpFS/FileSystem.h +++ b/kernel/include/kernel/FS/TmpFS/FileSystem.h @@ -88,10 +88,11 @@ namespace Kernel size_t index; }; - private: + protected: TmpFileSystem(size_t max_pages); BAN::ErrorOr<void> initialize(mode_t, uid_t, gid_t); + private: InodeLocation find_inode(ino_t ino); paddr_t find_block(size_t index); diff --git a/kernel/include/kernel/FS/TmpFS/Inode.h b/kernel/include/kernel/FS/TmpFS/Inode.h index fa385185..2738aee9 100644 --- a/kernel/include/kernel/FS/TmpFS/Inode.h +++ b/kernel/include/kernel/FS/TmpFS/Inode.h @@ -97,7 +97,11 @@ namespace Kernel ~TmpDirectoryInode(); + BAN::ErrorOr<void> link_inode(TmpInode&, BAN::StringView); + protected: + TmpDirectoryInode(TmpFileSystem&, ino_t, const TmpInodeInfo&); + virtual BAN::ErrorOr<void> prepare_unlink() override; protected: @@ -108,14 +112,12 @@ namespace Kernel virtual BAN::ErrorOr<void> unlink_impl(BAN::StringView) override final; private: - TmpDirectoryInode(TmpFileSystem&, ino_t, const TmpInodeInfo&); - - BAN::ErrorOr<void> link_inode(TmpInode&, BAN::StringView); - template<TmpFuncs::for_each_valid_entry_callback F> void for_each_valid_entry(F callback); friend class TmpInode; }; + TmpInodeInfo create_inode_info(mode_t mode, uid_t uid, gid_t gid); + } diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index 95139aee..033fcd15 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -60,6 +60,8 @@ namespace Kernel bool is_session_leader() const { return pid() == sid(); } + const Credentials& credentials() const { return m_credentials; } + BAN::ErrorOr<long> sys_exit(int status); BAN::ErrorOr<long> sys_gettermios(::termios*); diff --git a/kernel/kernel/FS/ProcFS/FileSystem.cpp b/kernel/kernel/FS/ProcFS/FileSystem.cpp index 451862f7..b7fe645e 100644 --- a/kernel/kernel/FS/ProcFS/FileSystem.cpp +++ b/kernel/kernel/FS/ProcFS/FileSystem.cpp @@ -1,6 +1,5 @@ #include <kernel/FS/ProcFS/FileSystem.h> #include <kernel/FS/ProcFS/Inode.h> -#include <kernel/FS/RamFS/Inode.h> #include <kernel/LockGuard.h> namespace Kernel @@ -11,11 +10,10 @@ namespace Kernel void ProcFileSystem::initialize() { ASSERT(s_instance == nullptr); - s_instance = new ProcFileSystem(1024 * 1024); + s_instance = new ProcFileSystem(); ASSERT(s_instance); - s_instance->m_root_inode = MUST(RamDirectoryInode::create(*s_instance, 0, 0555, 0, 0)); - MUST(s_instance->set_root_inode(s_instance->m_root_inode)); + MUST(s_instance->TmpFileSystem::initialize(0555, 0, 0)); } ProcFileSystem& ProcFileSystem::get() @@ -24,23 +22,28 @@ namespace Kernel return *s_instance; } - ProcFileSystem::ProcFileSystem(size_t size) - : RamFileSystem(size) + ProcFileSystem::ProcFileSystem() + : TmpFileSystem(-1) { } BAN::ErrorOr<void> ProcFileSystem::on_process_create(Process& process) { auto path = BAN::String::formatted("{}", process.pid()); - auto inode = TRY(ProcPidInode::create(process, *this, 0555, 0, 0)); - TRY(m_root_inode->add_inode(path, inode)); + auto inode = TRY(ProcPidInode::create_new(process, *this, 0555, process.credentials().ruid(), process.credentials().rgid())); + TRY(reinterpret_cast<TmpDirectoryInode*>(root_inode().ptr())->link_inode(*inode, path)); return {}; } void ProcFileSystem::on_process_delete(Process& process) { auto path = BAN::String::formatted("{}", process.pid()); - MUST(m_root_inode->unlink(path)); + + auto inode = MUST(root_inode()->find_inode(path)); + reinterpret_cast<ProcPidInode*>(inode.ptr())->cleanup(); + + if (auto ret = root_inode()->unlink(path); ret.is_error()) + dwarnln("{}", ret.error()); } } diff --git a/kernel/kernel/FS/ProcFS/Inode.cpp b/kernel/kernel/FS/ProcFS/Inode.cpp index e74e6237..c8813419 100644 --- a/kernel/kernel/FS/ProcFS/Inode.cpp +++ b/kernel/kernel/FS/ProcFS/Inode.cpp @@ -3,31 +3,38 @@ namespace Kernel { - BAN::ErrorOr<BAN::RefPtr<ProcPidInode>> ProcPidInode::create(Process& process, RamFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) + BAN::ErrorOr<BAN::RefPtr<ProcPidInode>> ProcPidInode::create_new(Process& process, TmpFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) { - FullInodeInfo inode_info(fs, mode, uid, gid); + auto inode_info = create_inode_info(Mode::IFDIR | mode, uid, gid); auto* inode_ptr = new ProcPidInode(process, fs, inode_info); if (inode_ptr == nullptr) return BAN::Error::from_errno(ENOMEM); auto inode = BAN::RefPtr<ProcPidInode>::adopt(inode_ptr); - TRY(inode->add_inode("meminfo"sv, MUST(ProcROInode::create(process, &Process::proc_meminfo, fs, 0755, 0, 0)))); - TRY(inode->add_inode("cmdline"sv, MUST(ProcROInode::create(process, &Process::proc_cmdline, fs, 0755, 0, 0)))); - TRY(inode->add_inode("environ"sv, MUST(ProcROInode::create(process, &Process::proc_environ, fs, 0755, 0, 0)))); + TRY(inode->link_inode(*MUST(ProcROInode::create_new(process, &Process::proc_meminfo, fs, 0400, uid, gid)), "meminfo"sv)); + TRY(inode->link_inode(*MUST(ProcROInode::create_new(process, &Process::proc_cmdline, fs, 0400, uid, gid)), "cmdline"sv)); + TRY(inode->link_inode(*MUST(ProcROInode::create_new(process, &Process::proc_environ, fs, 0400, uid, gid)), "environ"sv)); return inode; } - ProcPidInode::ProcPidInode(Process& process, RamFileSystem& fs, const FullInodeInfo& inode_info) - : RamDirectoryInode(fs, inode_info, fs.root_inode()->ino()) + ProcPidInode::ProcPidInode(Process& process, TmpFileSystem& fs, const TmpInodeInfo& inode_info) + : TmpDirectoryInode(fs, MUST(fs.allocate_inode(inode_info)), inode_info) , m_process(process) { } - BAN::ErrorOr<BAN::RefPtr<ProcROInode>> ProcROInode::create(Process& process, size_t (Process::*callback)(off_t, BAN::ByteSpan) const, RamFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) + void ProcPidInode::cleanup() { - FullInodeInfo inode_info(fs, mode, uid, gid); + (void)TmpDirectoryInode::unlink_impl("meminfo"sv); + (void)TmpDirectoryInode::unlink_impl("cmdline"sv); + (void)TmpDirectoryInode::unlink_impl("environ"sv); + } + + BAN::ErrorOr<BAN::RefPtr<ProcROInode>> ProcROInode::create_new(Process& process, size_t (Process::*callback)(off_t, BAN::ByteSpan) const, TmpFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) + { + auto inode_info = create_inode_info(Mode::IFREG | mode, uid, gid); auto* inode_ptr = new ProcROInode(process, callback, fs, inode_info); if (inode_ptr == nullptr) @@ -35,8 +42,8 @@ namespace Kernel return BAN::RefPtr<ProcROInode>::adopt(inode_ptr); } - ProcROInode::ProcROInode(Process& process, size_t (Process::*callback)(off_t, BAN::ByteSpan) const, RamFileSystem& fs, const FullInodeInfo& inode_info) - : RamInode(fs, inode_info) + ProcROInode::ProcROInode(Process& process, size_t (Process::*callback)(off_t, BAN::ByteSpan) const, TmpFileSystem& fs, const TmpInodeInfo& inode_info) + : TmpInode(fs, MUST(fs.allocate_inode(inode_info)), inode_info) , m_process(process) , m_callback(callback) { diff --git a/kernel/kernel/FS/TmpFS/Inode.cpp b/kernel/kernel/FS/TmpFS/Inode.cpp index 7bfed1ae..0c2afc61 100644 --- a/kernel/kernel/FS/TmpFS/Inode.cpp +++ b/kernel/kernel/FS/TmpFS/Inode.cpp @@ -5,7 +5,7 @@ namespace Kernel { - static TmpInodeInfo create_inode_info(mode_t mode, uid_t uid, gid_t gid) + TmpInodeInfo create_inode_info(mode_t mode, uid_t uid, gid_t gid) { auto current_time = SystemTimer::get().real_time(); From c20f773c5da757943099a15e61ed9553f4e12893 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Tue, 7 Nov 2023 02:36:22 +0200 Subject: [PATCH 193/240] Kernel: /tmp is now TmpFS instead of RamFS --- kernel/kernel/FS/VirtualFileSystem.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/kernel/kernel/FS/VirtualFileSystem.cpp b/kernel/kernel/FS/VirtualFileSystem.cpp index a023afd5..7fae11b6 100644 --- a/kernel/kernel/FS/VirtualFileSystem.cpp +++ b/kernel/kernel/FS/VirtualFileSystem.cpp @@ -3,8 +3,7 @@ #include <kernel/FS/DevFS/FileSystem.h> #include <kernel/FS/Ext2/FileSystem.h> #include <kernel/FS/ProcFS/FileSystem.h> -#include <kernel/FS/RamFS/FileSystem.h> -#include <kernel/FS/RamFS/Inode.h> +#include <kernel/FS/TmpFS/FileSystem.h> #include <kernel/FS/VirtualFileSystem.h> #include <kernel/LockGuard.h> #include <fcntl.h> @@ -31,7 +30,7 @@ namespace Kernel MUST(s_instance->mount(root_creds, &ProcFileSystem::get(), "/proc"sv)); - auto* tmpfs = MUST(RamFileSystem::create(1024 * 1024, 0777, 0, 0)); + auto* tmpfs = MUST(TmpFileSystem::create(1024, 0777, 0, 0)); MUST(s_instance->mount(root_creds, tmpfs, "/tmp"sv)); } From 1acc0abf2e343c06e427260630bd74235c77ec86 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Tue, 7 Nov 2023 02:40:27 +0200 Subject: [PATCH 194/240] Kernel: Make unlinking from /proc always fail with EPERM --- kernel/include/kernel/FS/ProcFS/Inode.h | 3 +++ kernel/include/kernel/FS/TmpFS/Inode.h | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/kernel/include/kernel/FS/ProcFS/Inode.h b/kernel/include/kernel/FS/ProcFS/Inode.h index 189bdc14..79f4a309 100644 --- a/kernel/include/kernel/FS/ProcFS/Inode.h +++ b/kernel/include/kernel/FS/ProcFS/Inode.h @@ -15,6 +15,9 @@ namespace Kernel void cleanup(); + protected: + virtual BAN::ErrorOr<void> unlink_impl(BAN::StringView) override { return BAN::Error::from_errno(EPERM); } + private: ProcPidInode(Process&, TmpFileSystem&, const TmpInodeInfo&); diff --git a/kernel/include/kernel/FS/TmpFS/Inode.h b/kernel/include/kernel/FS/TmpFS/Inode.h index 2738aee9..d8e25f6d 100644 --- a/kernel/include/kernel/FS/TmpFS/Inode.h +++ b/kernel/include/kernel/FS/TmpFS/Inode.h @@ -109,7 +109,7 @@ namespace Kernel virtual BAN::ErrorOr<void> list_next_inodes_impl(off_t, DirectoryEntryList*, size_t) override final; virtual BAN::ErrorOr<void> create_file_impl(BAN::StringView, mode_t, uid_t, gid_t) override final; virtual BAN::ErrorOr<void> create_directory_impl(BAN::StringView, mode_t, uid_t, gid_t) override final; - virtual BAN::ErrorOr<void> unlink_impl(BAN::StringView) override final; + virtual BAN::ErrorOr<void> unlink_impl(BAN::StringView) override; private: template<TmpFuncs::for_each_valid_entry_callback F> From a0fbf18d3b69923c9d88606ccb7d8df0e8bb1d00 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Tue, 7 Nov 2023 02:41:01 +0200 Subject: [PATCH 195/240] meminfo: better format for files without permissions --- userspace/meminfo/main.cpp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/userspace/meminfo/main.cpp b/userspace/meminfo/main.cpp index 539daadb..0c7001cb 100644 --- a/userspace/meminfo/main.cpp +++ b/userspace/meminfo/main.cpp @@ -1,5 +1,6 @@ #include <ctype.h> #include <dirent.h> +#include <errno.h> #include <fcntl.h> #include <stdio.h> #include <string.h> @@ -30,8 +31,6 @@ int main() if (!is_only_digits(proc_ent->d_name)) continue; - printf("process: "); - { strcpy(path_buffer, proc_ent->d_name); strcat(path_buffer, "/cmdline"); @@ -39,10 +38,13 @@ int main() int fd = openat(dirfd(proc), path_buffer, O_RDONLY); if (fd == -1) { - perror("openat"); + if (errno != EACCES) + perror("openat"); continue; } + printf("process: "); + while (ssize_t nread = read(fd, path_buffer, sizeof(path_buffer) - 1)) { if (nread < 0) @@ -61,10 +63,12 @@ int main() written += printf("%s ", path_buffer + written); } + printf("\n"); + close(fd); } - printf("\n pid: %s\n", proc_ent->d_name); + printf(" pid: %s\n", proc_ent->d_name); { strcpy(path_buffer, proc_ent->d_name); From 670c787af302e64d10e61c2223a60ef91f964e80 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Tue, 7 Nov 2023 14:01:42 +0200 Subject: [PATCH 196/240] BuildSystem: Fix temporary sysroot creation in toolchain compilation --- toolchain/build.sh | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/toolchain/build.sh b/toolchain/build.sh index fc54a714..d905ff63 100755 --- a/toolchain/build.sh +++ b/toolchain/build.sh @@ -74,7 +74,7 @@ build_binutils () { --disable-nls \ --disable-werror - make -j $(nproc) + make make install } @@ -100,8 +100,8 @@ build_gcc () { --disable-nls \ --enable-languages=c,c++ - make -j $(nproc) all-gcc - make -j $(nproc) all-target-libgcc CFLAGS_FOR_TARGET='-g -O2 -mcmodel=large -mno-red-zone' + make all-gcc + make all-target-libgcc CFLAGS_FOR_TARGET='-g -O2 -mcmodel=large -mno-red-zone' make install-gcc install-target-libgcc } @@ -127,7 +127,7 @@ build_grub () { --with-platform="efi" \ --disable-werror - make -j $(nproc) + make make install } @@ -138,7 +138,7 @@ build_libstdcpp () { fi cd $BANAN_BUILD_DIR/toolchain/$GCC_VERSION/build - make -j $(nproc) all-target-libstdc++-v3 + make all-target-libstdc++-v3 make install-target-libstdc++-v3 } @@ -154,16 +154,22 @@ fi # NOTE: we have to manually create initial sysroot with libc headers # since cmake cannot be invoked yet -echo "Syncing sysroot headers" -mkdir -p $BANAN_SYSROOT -sudo mkdir -p $BANAN_SYSROOT/usr/include -sudo rsync -a $BANAN_ROOT_DIR/libc/include/ $BANAN_SYSROOT/usr/include/ +echo "Creating dummy sysroot" +rm -rf $BANAN_SYSROOT +mkdir -p $BANAN_SYSROOT/usr +cp -r $BANAN_ROOT_DIR/libc/include $BANAN_SYSROOT/usr/include -mkdir -p $BANAN_BUILD_DIR/toolchain # Cleanup all old files from toolchain prefix rm -rf $BANAN_TOOLCHAIN_PREFIX +if [[ -z ${MAKEFLAGS:x} ]]; then + export MAKEFLAGS="-j$(proc)" +fi + +mkdir -p $BANAN_BUILD_DIR/toolchain build_binutils build_gcc build_grub + +rm -rf $BANAN_SYSROOT From 6d4b6842191f3294f5f8f3dbd770d3d67c8854f7 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Tue, 7 Nov 2023 15:58:27 +0200 Subject: [PATCH 197/240] Kernel: Make PS/2 keyboard wait until interrupts are enabled --- kernel/include/kernel/Input/PS2Controller.h | 2 ++ kernel/include/kernel/Input/PS2Keyboard.h | 2 +- kernel/kernel/Input/PS2Controller.cpp | 12 +++++++++--- kernel/kernel/Input/PS2Keyboard.cpp | 6 +----- 4 files changed, 13 insertions(+), 9 deletions(-) diff --git a/kernel/include/kernel/Input/PS2Controller.h b/kernel/include/kernel/Input/PS2Controller.h index 0c75cf9a..e451313d 100644 --- a/kernel/include/kernel/Input/PS2Controller.h +++ b/kernel/include/kernel/Input/PS2Controller.h @@ -12,6 +12,8 @@ namespace Kernel::Input PS2Device(); virtual ~PS2Device() {} + virtual void send_initialize() = 0; + virtual BAN::StringView name() const override { return m_name; } private: diff --git a/kernel/include/kernel/Input/PS2Keyboard.h b/kernel/include/kernel/Input/PS2Keyboard.h index 4ee18922..e31ea716 100644 --- a/kernel/include/kernel/Input/PS2Keyboard.h +++ b/kernel/include/kernel/Input/PS2Keyboard.h @@ -28,13 +28,13 @@ namespace Kernel::Input public: static BAN::ErrorOr<PS2Keyboard*> create(PS2Controller&); + virtual void send_initialize() override; virtual void handle_irq() override; virtual void update() override; private: PS2Keyboard(PS2Controller& controller); - BAN::ErrorOr<void> initialize(); void append_command_queue(uint8_t); void append_command_queue(uint8_t, uint8_t); diff --git a/kernel/kernel/Input/PS2Controller.cpp b/kernel/kernel/Input/PS2Controller.cpp index 8c6c9d05..cf8eaae4 100644 --- a/kernel/kernel/Input/PS2Controller.cpp +++ b/kernel/kernel/Input/PS2Controller.cpp @@ -180,18 +180,24 @@ namespace Kernel::Input m_devices[0]->set_irq(PS2::IRQ::DEVICE0); m_devices[0]->enable_interrupt(); config |= PS2::Config::INTERRUPT_FIRST_PORT; - DevFileSystem::get().add_device(m_devices[0]); } if (m_devices[1]) { m_devices[1]->set_irq(PS2::IRQ::DEVICE1); m_devices[1]->enable_interrupt(); config |= PS2::Config::INTERRUPT_SECOND_PORT; - DevFileSystem::get().add_device(m_devices[1]); } controller_send_command(PS2::Command::WRITE_CONFIG, config); - + + for (uint8_t device = 0; device < 2; device++) + { + if (m_devices[device] == nullptr) + continue; + m_devices[device]->send_initialize(); + DevFileSystem::get().add_device(m_devices[device]); + } + return {}; } diff --git a/kernel/kernel/Input/PS2Keyboard.cpp b/kernel/kernel/Input/PS2Keyboard.cpp index e4f7a3d5..c2efe5bf 100644 --- a/kernel/kernel/Input/PS2Keyboard.cpp +++ b/kernel/kernel/Input/PS2Keyboard.cpp @@ -19,9 +19,6 @@ namespace Kernel::Input PS2Keyboard* keyboard = new PS2Keyboard(controller); if (keyboard == nullptr) return BAN::Error::from_errno(ENOMEM); - BAN::ScopeGuard guard([keyboard] { delete keyboard; }); - TRY(keyboard->initialize()); - guard.disable(); return keyboard; } @@ -69,12 +66,11 @@ namespace Kernel::Input } } - BAN::ErrorOr<void> PS2Keyboard::initialize() + void PS2Keyboard::send_initialize() { append_command_queue(Command::SET_LEDS, 0x00); append_command_queue(Command::SCANCODE, PS2::KBScancode::SET_SCANCODE_SET2); append_command_queue(Command::ENABLE_SCANNING); - return {}; } void PS2Keyboard::update() From 27963febc077cda2029a9b02644fe3dde6503909 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Tue, 7 Nov 2023 15:59:50 +0200 Subject: [PATCH 198/240] Kernel: Implement symlinks to TmpFS --- kernel/include/kernel/FS/TmpFS/Inode.h | 8 ++- kernel/kernel/FS/TmpFS/Inode.cpp | 80 ++++++++++++++++++++++++++ 2 files changed, 87 insertions(+), 1 deletion(-) diff --git a/kernel/include/kernel/FS/TmpFS/Inode.h b/kernel/include/kernel/FS/TmpFS/Inode.h index d8e25f6d..6bc8427d 100644 --- a/kernel/include/kernel/FS/TmpFS/Inode.h +++ b/kernel/include/kernel/FS/TmpFS/Inode.h @@ -83,10 +83,16 @@ namespace Kernel class TmpSymlinkInode : public TmpInode { public: + static BAN::ErrorOr<BAN::RefPtr<TmpSymlinkInode>> create_new(TmpFileSystem&, mode_t, uid_t, gid_t, BAN::StringView target); ~TmpSymlinkInode(); + BAN::ErrorOr<void> set_link_target(BAN::StringView); + + protected: + virtual BAN::ErrorOr<BAN::String> link_target_impl() override; + private: - TmpSymlinkInode(TmpFileSystem&, ino_t, const TmpInodeInfo&, BAN::StringView target); + TmpSymlinkInode(TmpFileSystem&, ino_t, const TmpInodeInfo&); }; class TmpDirectoryInode : public TmpInode diff --git a/kernel/kernel/FS/TmpFS/Inode.cpp b/kernel/kernel/FS/TmpFS/Inode.cpp index 0c2afc61..402dd4e4 100644 --- a/kernel/kernel/FS/TmpFS/Inode.cpp +++ b/kernel/kernel/FS/TmpFS/Inode.cpp @@ -215,6 +215,86 @@ namespace Kernel return {}; } + /* SYMLINK INODE */ + + BAN::ErrorOr<BAN::RefPtr<TmpSymlinkInode>> TmpSymlinkInode::create_new(TmpFileSystem& fs, mode_t mode, uid_t uid, gid_t gid, BAN::StringView target) + { + auto info = create_inode_info(Mode::IFLNK | mode, uid, gid); + ino_t ino = TRY(fs.allocate_inode(info)); + + auto* inode_ptr = new TmpSymlinkInode(fs, ino, info); + if (inode_ptr == nullptr) + return BAN::Error::from_errno(ENOMEM); + auto inode = BAN::RefPtr<TmpSymlinkInode>::adopt(inode_ptr); + + TRY(inode->set_link_target(target)); + + return inode; + } + + TmpSymlinkInode::TmpSymlinkInode(TmpFileSystem& fs, ino_t ino, const TmpInodeInfo& info) + : TmpInode(fs, ino, info) + { + ASSERT(mode().iflnk()); + } + + TmpSymlinkInode::~TmpSymlinkInode() + { + } + + BAN::ErrorOr<void> TmpSymlinkInode::set_link_target(BAN::StringView new_target) + { + free_all_blocks(); + m_inode_info.size = 0; + + if (new_target.size() <= sizeof(TmpInodeInfo::block)) + { + memcpy(m_inode_info.block.data(), new_target.data(), new_target.size()); + m_inode_info.size = new_target.size(); + return {}; + } + + const size_t blocks_needed = BAN::Math::div_round_up<size_t>(new_target.size(), blksize()); + for (size_t i = 0; i < blocks_needed; i++) + { + const size_t block_index = TRY(block_index_with_allocation(i)); + const size_t byte_count = BAN::Math::min<size_t>(new_target.size() - i * blksize(), blksize()); + + m_fs.with_block_buffer(block_index, [&](BAN::ByteSpan bytespan) { + memcpy(bytespan.data(), new_target.data() + i * blksize(), byte_count); + }); + + m_inode_info.size += byte_count; + } + + return {}; + } + + BAN::ErrorOr<BAN::String> TmpSymlinkInode::link_target_impl() + { + BAN::String result; + TRY(result.resize(size())); + + if ((size_t)size() <= sizeof(TmpInodeInfo::block)) + { + memcpy(result.data(), m_inode_info.block.data(), size()); + return result; + } + + const size_t data_block_count = BAN::Math::div_round_up<size_t>(size(), blksize()); + for (size_t i = 0; i < data_block_count; i++) + { + const size_t block_index = TRY(block_index_with_allocation(i)); + const size_t byte_count = BAN::Math::min<size_t>(size() - i * blksize(), blksize()); + + m_fs.with_block_buffer(block_index, [&](BAN::ByteSpan bytespan) { + memcpy(result.data() + i * blksize(), bytespan.data(), byte_count); + }); + } + + return result; + } + /* DIRECTORY INODE */ BAN::ErrorOr<BAN::RefPtr<TmpDirectoryInode>> TmpDirectoryInode::create_root(TmpFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) From 8b4f661acbc0f818f787e5e68c28a76b78cf2b37 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Tue, 7 Nov 2023 16:03:52 +0200 Subject: [PATCH 199/240] Kernel: Lock TmpFS in all its methods --- kernel/include/kernel/FS/TmpFS/FileSystem.h | 2 ++ kernel/kernel/FS/TmpFS/FileSystem.cpp | 28 +++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/kernel/include/kernel/FS/TmpFS/FileSystem.h b/kernel/include/kernel/FS/TmpFS/FileSystem.h index 5205ff17..e07008b1 100644 --- a/kernel/include/kernel/FS/TmpFS/FileSystem.h +++ b/kernel/include/kernel/FS/TmpFS/FileSystem.h @@ -4,6 +4,7 @@ #include <BAN/Iteration.h> #include <kernel/FS/FileSystem.h> #include <kernel/FS/TmpFS/Inode.h> +#include <kernel/LockGuard.h> #include <kernel/Memory/PageTable.h> #include <kernel/SpinLock.h> @@ -140,6 +141,7 @@ namespace Kernel template<TmpFuncs::with_block_buffer_callback F> void TmpFileSystem::with_block_buffer(size_t index, F callback) { + LockGuard _(m_lock); paddr_t block_paddr = find_block(index); PageTable::with_fast_page(block_paddr, [&] { BAN::ByteSpan buffer(reinterpret_cast<uint8_t*>(PageTable::fast_page()), PAGE_SIZE); diff --git a/kernel/kernel/FS/TmpFS/FileSystem.cpp b/kernel/kernel/FS/TmpFS/FileSystem.cpp index 6e2cfd81..7ab95e0d 100644 --- a/kernel/kernel/FS/TmpFS/FileSystem.cpp +++ b/kernel/kernel/FS/TmpFS/FileSystem.cpp @@ -49,6 +49,8 @@ namespace Kernel BAN::ErrorOr<BAN::RefPtr<TmpInode>> TmpFileSystem::open_inode(ino_t ino) { + LockGuard _(m_lock); + if (m_inode_cache.contains(ino)) return m_inode_cache[ino]; @@ -66,6 +68,8 @@ namespace Kernel BAN::ErrorOr<void> TmpFileSystem::add_to_cache(BAN::RefPtr<TmpInode> inode) { + LockGuard _(m_lock); + if (!m_inode_cache.contains(inode->ino())) TRY(m_inode_cache.insert(inode->ino(), inode)); return {}; @@ -73,12 +77,16 @@ namespace Kernel void TmpFileSystem::remove_from_cache(BAN::RefPtr<TmpInode> inode) { + LockGuard _(m_lock); + ASSERT(m_inode_cache.contains(inode->ino())); m_inode_cache.remove(inode->ino()); } void TmpFileSystem::read_inode(ino_t ino, TmpInodeInfo& out) { + LockGuard _(m_lock); + auto inode_location = find_inode(ino); PageTable::with_fast_page(inode_location.paddr, [&] { out = PageTable::fast_page_as_sized<TmpInodeInfo>(inode_location.index); @@ -87,6 +95,8 @@ namespace Kernel void TmpFileSystem::write_inode(ino_t ino, const TmpInodeInfo& info) { + LockGuard _(m_lock); + auto inode_location = find_inode(ino); PageTable::with_fast_page(inode_location.paddr, [&] { auto& inode_info = PageTable::fast_page_as_sized<TmpInodeInfo>(inode_location.index); @@ -96,6 +106,8 @@ namespace Kernel void TmpFileSystem::delete_inode(ino_t ino) { + LockGuard _(m_lock); + auto inode_location = find_inode(ino); PageTable::with_fast_page(inode_location.paddr, [&] { auto& inode_info = PageTable::fast_page_as_sized<TmpInodeInfo>(inode_location.index); @@ -109,6 +121,8 @@ namespace Kernel BAN::ErrorOr<ino_t> TmpFileSystem::allocate_inode(const TmpInodeInfo& info) { + LockGuard _(m_lock); + constexpr size_t inodes_per_page = PAGE_SIZE / sizeof(TmpInodeInfo); ino_t ino = first_inode; @@ -133,6 +147,8 @@ namespace Kernel TmpFileSystem::InodeLocation TmpFileSystem::find_inode(ino_t ino) { + LockGuard _(m_lock); + ASSERT_GTE(ino, first_inode); ASSERT_LT(ino, max_inodes); @@ -149,6 +165,8 @@ namespace Kernel void TmpFileSystem::free_block(size_t index) { + LockGuard _(m_lock); + constexpr size_t addresses_per_page = PAGE_SIZE / sizeof(PageInfo); const size_t index_of_page = (index - first_data_page) / addresses_per_page; @@ -167,6 +185,8 @@ namespace Kernel BAN::ErrorOr<size_t> TmpFileSystem::allocate_block() { + LockGuard _(m_lock); + size_t result = first_data_page; TRY(for_each_indirect_paddr_allocating(m_data_pages, [&] (paddr_t paddr, bool allocated) { if (allocated) @@ -179,12 +199,16 @@ namespace Kernel paddr_t TmpFileSystem::find_block(size_t index) { + LockGuard _(m_lock); + ASSERT_GT(index, 0); return find_indirect(m_data_pages, index - first_data_page, 3); } paddr_t TmpFileSystem::find_indirect(PageInfo root, size_t index, size_t depth) { + LockGuard _(m_lock); + ASSERT(root.flags() & PageInfo::Flags::Present); if (depth == 0) { @@ -214,6 +238,8 @@ namespace Kernel template<TmpFuncs::for_each_indirect_paddr_allocating_callback F> BAN::ErrorOr<BAN::Iteration> TmpFileSystem::for_each_indirect_paddr_allocating_internal(PageInfo page_info, F callback, size_t depth) { + LockGuard _(m_lock); + ASSERT(page_info.flags() & PageInfo::Flags::Present); if (depth == 0) { @@ -268,6 +294,8 @@ namespace Kernel template<TmpFuncs::for_each_indirect_paddr_allocating_callback F> BAN::ErrorOr<void> TmpFileSystem::for_each_indirect_paddr_allocating(PageInfo page_info, F callback, size_t depth) { + LockGuard _(m_lock); + BAN::Iteration result = TRY(for_each_indirect_paddr_allocating_internal(page_info, callback, depth)); ASSERT(result == BAN::Iteration::Break); return {}; From 464737fbe963254ea6e3d71e403cee3442936c98 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Tue, 7 Nov 2023 16:04:34 +0200 Subject: [PATCH 200/240] Kernel: Add method to TmpFS for looping over all (cached) inodes --- kernel/include/kernel/FS/TmpFS/FileSystem.h | 27 +++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/kernel/include/kernel/FS/TmpFS/FileSystem.h b/kernel/include/kernel/FS/TmpFS/FileSystem.h index e07008b1..36c423f8 100644 --- a/kernel/include/kernel/FS/TmpFS/FileSystem.h +++ b/kernel/include/kernel/FS/TmpFS/FileSystem.h @@ -26,6 +26,12 @@ namespace Kernel requires BAN::is_same_v<decltype(func(buffer)), void>; }; + template<typename F> + concept for_each_inode_callback = requires(F func, BAN::RefPtr<TmpInode> inode) + { + requires BAN::is_same_v<decltype(func(inode)), BAN::Iteration>; + }; + } @@ -58,6 +64,9 @@ namespace Kernel void free_block(size_t index); BAN::ErrorOr<size_t> allocate_block(); + template<TmpFuncs::for_each_inode_callback F> + void for_each_inode(F callback); + private: struct PageInfo { @@ -149,4 +158,22 @@ namespace Kernel }); } + template<TmpFuncs::for_each_inode_callback F> + void TmpFileSystem::for_each_inode(F callback) + { + LockGuard _(m_lock); + for (auto& [_, inode] : m_inode_cache) + { + switch (callback(inode)) + { + case BAN::Iteration::Continue: + break; + case BAN::Iteration::Break: + return; + default: + ASSERT_NOT_REACHED(); + } + } + } + } \ No newline at end of file From b87351f6d573f83dad23d7d1cc70655d3a0e1e91 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Tue, 7 Nov 2023 16:05:05 +0200 Subject: [PATCH 201/240] Kernel: Make DevFS use the new and better TmpFS instead of RamFS --- kernel/include/kernel/Device/Device.h | 4 +-- kernel/include/kernel/FS/DevFS/FileSystem.h | 10 +++---- kernel/include/kernel/FS/TmpFS/Inode.h | 4 +-- kernel/include/kernel/Storage/StorageDevice.h | 3 --- kernel/kernel/Device/Device.cpp | 7 ++++- kernel/kernel/FS/DevFS/FileSystem.cpp | 26 +++++++++---------- kernel/kernel/Terminal/TTY.cpp | 4 +-- 7 files changed, 29 insertions(+), 29 deletions(-) diff --git a/kernel/include/kernel/Device/Device.h b/kernel/include/kernel/Device/Device.h index 58f105b7..e5c3d64d 100644 --- a/kernel/include/kernel/Device/Device.h +++ b/kernel/include/kernel/Device/Device.h @@ -1,11 +1,11 @@ #pragma once -#include <kernel/FS/RamFS/Inode.h> +#include <kernel/FS/TmpFS/Inode.h> namespace Kernel { - class Device : public RamInode + class Device : public TmpInode { public: virtual ~Device() = default; diff --git a/kernel/include/kernel/FS/DevFS/FileSystem.h b/kernel/include/kernel/FS/DevFS/FileSystem.h index e8a56c51..2eac5aae 100644 --- a/kernel/include/kernel/FS/DevFS/FileSystem.h +++ b/kernel/include/kernel/FS/DevFS/FileSystem.h @@ -1,13 +1,13 @@ #pragma once #include <kernel/Device/Device.h> -#include <kernel/FS/RamFS/FileSystem.h> +#include <kernel/FS/TmpFS/FileSystem.h> #include <kernel/Semaphore.h> namespace Kernel { - class DevFileSystem final : public RamFileSystem + class DevFileSystem final : public TmpFileSystem { public: static void initialize(); @@ -16,7 +16,7 @@ namespace Kernel void initialize_device_updater(); void add_device(BAN::RefPtr<Device>); - void add_inode(BAN::StringView path, BAN::RefPtr<RamInode>); + void add_inode(BAN::StringView path, BAN::RefPtr<TmpInode>); void for_each_device(const BAN::Function<BAN::Iteration(Device*)>& callback); dev_t get_next_dev() const; @@ -25,8 +25,8 @@ namespace Kernel void initiate_sync(bool should_block); private: - DevFileSystem(size_t size) - : RamFileSystem(size) + DevFileSystem() + : TmpFileSystem(-1) { } private: diff --git a/kernel/include/kernel/FS/TmpFS/Inode.h b/kernel/include/kernel/FS/TmpFS/Inode.h index 6bc8427d..e567aa27 100644 --- a/kernel/include/kernel/FS/TmpFS/Inode.h +++ b/kernel/include/kernel/FS/TmpFS/Inode.h @@ -35,8 +35,8 @@ namespace Kernel virtual timespec ctime() const override final { return m_inode_info.ctime; } virtual blksize_t blksize() const override final { return PAGE_SIZE; } virtual blkcnt_t blocks() const override final { return m_inode_info.blocks; } - virtual dev_t dev() const override final { return 0; } // TODO - virtual dev_t rdev() const override final { return 0; } // TODO + virtual dev_t dev() const override { return 0; } // TODO + virtual dev_t rdev() const override { return 0; } // TODO public: static BAN::ErrorOr<BAN::RefPtr<TmpInode>> create_from_existing(TmpFileSystem&, ino_t, const TmpInodeInfo&); diff --git a/kernel/include/kernel/Storage/StorageDevice.h b/kernel/include/kernel/Storage/StorageDevice.h index 4f433fb0..49f6a8aa 100644 --- a/kernel/include/kernel/Storage/StorageDevice.h +++ b/kernel/include/kernel/Storage/StorageDevice.h @@ -51,9 +51,6 @@ namespace Kernel public: virtual bool is_partition() const override { return true; } - virtual Mode mode() const override { return { Mode::IFBLK | Mode::IRUSR | Mode::IRGRP }; } - virtual uid_t uid() const override { return 0; } - virtual gid_t gid() const override { return 0; } virtual dev_t rdev() const override { return m_rdev; } protected: diff --git a/kernel/kernel/Device/Device.cpp b/kernel/kernel/Device/Device.cpp index 1971a1de..e9a1835e 100644 --- a/kernel/kernel/Device/Device.cpp +++ b/kernel/kernel/Device/Device.cpp @@ -5,7 +5,12 @@ namespace Kernel { Device::Device(mode_t mode, uid_t uid, gid_t gid) - : RamInode(DevFileSystem::get(), FullInodeInfo(DevFileSystem::get(), mode, uid, gid)) + // FIXME: what the fuck is this + : TmpInode( + DevFileSystem::get(), + MUST(DevFileSystem::get().allocate_inode(create_inode_info(mode, uid, gid))), + create_inode_info(mode, uid, gid) + ) { } } \ No newline at end of file diff --git a/kernel/kernel/FS/DevFS/FileSystem.cpp b/kernel/kernel/FS/DevFS/FileSystem.cpp index 2aaa6ead..81ba3967 100644 --- a/kernel/kernel/FS/DevFS/FileSystem.cpp +++ b/kernel/kernel/FS/DevFS/FileSystem.cpp @@ -2,7 +2,7 @@ #include <kernel/Device/NullDevice.h> #include <kernel/Device/ZeroDevice.h> #include <kernel/FS/DevFS/FileSystem.h> -#include <kernel/FS/RamFS/Inode.h> +#include <kernel/FS/TmpFS/Inode.h> #include <kernel/LockGuard.h> #include <kernel/Process.h> #include <kernel/Storage/StorageDevice.h> @@ -16,12 +16,10 @@ namespace Kernel void DevFileSystem::initialize() { ASSERT(s_instance == nullptr); - s_instance = new DevFileSystem(1024 * 1024); + s_instance = new DevFileSystem(); ASSERT(s_instance); - auto root_inode = MUST(RamDirectoryInode::create(*s_instance, 0, 0755, 0, 0)); - MUST(s_instance->set_root_inode(root_inode)); - + MUST(s_instance->TmpFileSystem::initialize(0755, 0, 0)); s_instance->add_device(MUST(NullDevice::create(0666, 0, 0))); s_instance->add_device(MUST(ZeroDevice::create(0666, 0, 0))); } @@ -41,10 +39,10 @@ namespace Kernel { s_instance->m_device_lock.lock(); s_instance->for_each_inode( - [](BAN::RefPtr<RamInode> inode) + [](BAN::RefPtr<TmpInode> inode) { if (inode->is_device()) - ((Device*)inode.ptr())->update(); + reinterpret_cast<Device*>(inode.ptr())->update(); return BAN::Iteration::Continue; } ); @@ -74,11 +72,11 @@ namespace Kernel } s_instance->for_each_inode( - [](BAN::RefPtr<RamInode> inode) + [](BAN::RefPtr<TmpInode> inode) { if (inode->is_device()) if (((Device*)inode.ptr())->is_storage_device()) - if (auto ret = ((StorageDevice*)inode.ptr())->sync_disk_cache(); ret.is_error()) + if (auto ret = reinterpret_cast<StorageDevice*>(inode.ptr())->sync_disk_cache(); ret.is_error()) dwarnln("disk sync: {}", ret.error()); return BAN::Iteration::Continue; } @@ -120,24 +118,24 @@ namespace Kernel void DevFileSystem::add_device(BAN::RefPtr<Device> device) { ASSERT(!device->name().contains('/')); - MUST(reinterpret_cast<RamDirectoryInode*>(root_inode().ptr())->add_inode(device->name(), device)); + MUST(reinterpret_cast<TmpDirectoryInode*>(root_inode().ptr())->link_inode(*device, device->name())); } - void DevFileSystem::add_inode(BAN::StringView path, BAN::RefPtr<RamInode> inode) + void DevFileSystem::add_inode(BAN::StringView path, BAN::RefPtr<TmpInode> inode) { ASSERT(!path.contains('/')); - MUST(reinterpret_cast<RamDirectoryInode*>(root_inode().ptr())->add_inode(path, inode)); + MUST(reinterpret_cast<TmpDirectoryInode*>(root_inode().ptr())->link_inode(*inode, path)); } void DevFileSystem::for_each_device(const BAN::Function<BAN::Iteration(Device*)>& callback) { LockGuard _(m_device_lock); for_each_inode( - [&](BAN::RefPtr<Kernel::RamInode> inode) + [&](BAN::RefPtr<Kernel::TmpInode> inode) { if (!inode->is_device()) return BAN::Iteration::Continue; - return callback((Device*)inode.ptr()); + return callback(reinterpret_cast<Device*>(inode.ptr())); } ); } diff --git a/kernel/kernel/Terminal/TTY.cpp b/kernel/kernel/Terminal/TTY.cpp index 77024d24..90bbeebc 100644 --- a/kernel/kernel/Terminal/TTY.cpp +++ b/kernel/kernel/Terminal/TTY.cpp @@ -33,7 +33,7 @@ namespace Kernel if (inode_or_error.is_error()) { if (inode_or_error.error().get_error_code() == ENOENT) - DevFileSystem::get().add_inode("tty"sv, MUST(RamSymlinkInode::create(DevFileSystem::get(), s_tty->name(), 0666, 0, 0))); + DevFileSystem::get().add_inode("tty"sv, MUST(TmpSymlinkInode::create_new(DevFileSystem::get(), 0666, 0, 0, s_tty->name()))); else dwarnln("{}", inode_or_error.error()); return; @@ -41,7 +41,7 @@ namespace Kernel auto inode = inode_or_error.release_value(); if (inode->mode().iflnk()) - MUST(((RamSymlinkInode*)inode.ptr())->set_link_target(name())); + MUST(reinterpret_cast<TmpSymlinkInode*>(inode.ptr())->set_link_target(name())); } BAN::ErrorOr<void> TTY::tty_ctrl(int command, int flags) From cec04a2858fb079964a39c4cdb889d65d1edd06e Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Tue, 7 Nov 2023 16:07:11 +0200 Subject: [PATCH 202/240] Kernel: Remove now obsolete RamFS Everything is using now the better TmpFS which uses physical pages for page allocation instead of the static kmalloc memory. --- kernel/CMakeLists.txt | 2 - kernel/include/kernel/FS/RamFS/FileSystem.h | 47 --- kernel/include/kernel/FS/RamFS/Inode.h | 141 --------- kernel/kernel/FS/RamFS/FileSystem.cpp | 65 ---- kernel/kernel/FS/RamFS/Inode.cpp | 321 -------------------- 5 files changed, 576 deletions(-) delete mode 100644 kernel/include/kernel/FS/RamFS/FileSystem.h delete mode 100644 kernel/include/kernel/FS/RamFS/Inode.h delete mode 100644 kernel/kernel/FS/RamFS/FileSystem.cpp delete mode 100644 kernel/kernel/FS/RamFS/Inode.cpp diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index f1d65417..0dce633f 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -26,8 +26,6 @@ set(KERNEL_SOURCES kernel/FS/Pipe.cpp kernel/FS/ProcFS/FileSystem.cpp kernel/FS/ProcFS/Inode.cpp - kernel/FS/RamFS/FileSystem.cpp - kernel/FS/RamFS/Inode.cpp kernel/FS/TmpFS/FileSystem.cpp kernel/FS/TmpFS/Inode.cpp kernel/FS/VirtualFileSystem.cpp diff --git a/kernel/include/kernel/FS/RamFS/FileSystem.h b/kernel/include/kernel/FS/RamFS/FileSystem.h deleted file mode 100644 index cbc36fc1..00000000 --- a/kernel/include/kernel/FS/RamFS/FileSystem.h +++ /dev/null @@ -1,47 +0,0 @@ -#pragma once - -#include <BAN/HashMap.h> -#include <BAN/Iteration.h> -#include <kernel/FS/FileSystem.h> -#include <kernel/SpinLock.h> - -namespace Kernel -{ - - class RamInode; - class RamDirectoryInode; - - class RamFileSystem : public FileSystem - { - public: - static BAN::ErrorOr<RamFileSystem*> create(size_t size, mode_t, uid_t, gid_t); - virtual ~RamFileSystem() = default; - - BAN::ErrorOr<void> set_root_inode(BAN::RefPtr<RamDirectoryInode>); - virtual BAN::RefPtr<Inode> root_inode() override { return m_inodes[m_root_inode]; } - - BAN::ErrorOr<void> add_inode(BAN::RefPtr<RamInode>); - BAN::ErrorOr<BAN::RefPtr<RamInode>> get_inode(ino_t); - - blksize_t blksize() const { return m_blksize; } - ino_t next_ino() { return m_next_ino++; } - - void for_each_inode(const BAN::Function<BAN::Iteration(BAN::RefPtr<RamInode>)>& callback); - - protected: - RamFileSystem(size_t size) - : m_size(size) - { } - - private: - RecursiveSpinLock m_lock; - size_t m_size { 0 }; - - BAN::HashMap<ino_t, BAN::RefPtr<RamInode>> m_inodes; - ino_t m_root_inode { 0 }; - - const blksize_t m_blksize = PAGE_SIZE; - ino_t m_next_ino { 1 }; - }; - -} \ No newline at end of file diff --git a/kernel/include/kernel/FS/RamFS/Inode.h b/kernel/include/kernel/FS/RamFS/Inode.h deleted file mode 100644 index cc047ec1..00000000 --- a/kernel/include/kernel/FS/RamFS/Inode.h +++ /dev/null @@ -1,141 +0,0 @@ -#pragma once - -#include <kernel/FS/Inode.h> - -#include <limits.h> - -namespace Kernel -{ - - class RamFileSystem; - - class RamInode : public Inode - { - public: - virtual ~RamInode() = default; - - virtual ino_t ino() const override { return m_inode_info.ino; } - virtual Mode mode() const override { return { m_inode_info.mode }; } - virtual nlink_t nlink() const override { return m_inode_info.nlink; } - virtual uid_t uid() const override { return m_inode_info.uid; } - virtual gid_t gid() const override { return m_inode_info.gid; } - virtual off_t size() const override { return m_inode_info.size; } - virtual timespec atime() const override { return m_inode_info.atime; } - virtual timespec mtime() const override { return m_inode_info.mtime; } - virtual timespec ctime() const override { return m_inode_info.ctime; } - virtual blksize_t blksize() const override { return m_inode_info.blksize; } - virtual blkcnt_t blocks() const override { return m_inode_info.blocks; } - virtual dev_t dev() const override { return m_inode_info.dev; } - virtual dev_t rdev() const override { return m_inode_info.rdev; } - - void add_link() { m_inode_info.nlink++; } - - protected: - struct FullInodeInfo - { - FullInodeInfo(RamFileSystem&, mode_t, uid_t, gid_t); - ino_t ino; - mode_t mode; - nlink_t nlink; - uid_t uid; - gid_t gid; - off_t size; - timespec atime; - timespec mtime; - timespec ctime; - blksize_t blksize; - blkcnt_t blocks; - dev_t dev; - dev_t rdev; - }; - - RamInode(RamFileSystem& fs, const FullInodeInfo& inode_info) - : m_fs(fs) - , m_inode_info(inode_info) - { - ASSERT((inode_info.mode & Inode::Mode::TYPE_MASK) == 0); - } - - virtual BAN::ErrorOr<void> chmod_impl(mode_t) override; - - protected: - RamFileSystem& m_fs; - FullInodeInfo m_inode_info; - }; - - class RamFileInode : public RamInode - { - public: - static BAN::ErrorOr<BAN::RefPtr<RamFileInode>> create(RamFileSystem&, mode_t, uid_t, gid_t); - ~RamFileInode() = default; - - protected: - RamFileInode(RamFileSystem&, const FullInodeInfo&); - - virtual BAN::ErrorOr<size_t> read_impl(off_t, BAN::ByteSpan) override; - virtual BAN::ErrorOr<size_t> write_impl(off_t, BAN::ConstByteSpan) override; - virtual BAN::ErrorOr<void> truncate_impl(size_t) override; - - private: - BAN::Vector<uint8_t> m_data; - - friend class RamFileSystem; - }; - - class RamDirectoryInode : public RamInode - { - public: - static BAN::ErrorOr<BAN::RefPtr<RamDirectoryInode>> create(RamFileSystem&, ino_t parent, mode_t, uid_t, gid_t); - ~RamDirectoryInode() = default; - - BAN::ErrorOr<void> add_inode(BAN::StringView, BAN::RefPtr<RamInode>); - - protected: - RamDirectoryInode(RamFileSystem&, const FullInodeInfo&, ino_t parent); - - virtual BAN::ErrorOr<BAN::RefPtr<Inode>> find_inode_impl(BAN::StringView) override; - virtual BAN::ErrorOr<void> list_next_inodes_impl(off_t, DirectoryEntryList*, size_t) override; - virtual BAN::ErrorOr<void> create_file_impl(BAN::StringView, mode_t, uid_t, gid_t) override; - virtual BAN::ErrorOr<void> create_directory_impl(BAN::StringView, mode_t, uid_t, gid_t) override; - virtual BAN::ErrorOr<void> unlink_impl(BAN::StringView) override; - - private: - static constexpr size_t m_name_max = NAME_MAX; - struct Entry - { - char name[m_name_max + 1]; - size_t name_len = 0; - ino_t ino; - uint8_t type; - }; - - private: - BAN::Vector<Entry> m_entries; - const ino_t m_parent; - - friend class RamFileSystem; - }; - - class RamSymlinkInode final : public RamInode - { - public: - static BAN::ErrorOr<BAN::RefPtr<RamSymlinkInode>> create(RamFileSystem&, BAN::StringView target, mode_t, uid_t, gid_t); - ~RamSymlinkInode() = default; - - virtual off_t size() const override { return m_target.size(); } - - BAN::ErrorOr<void> set_link_target(BAN::StringView); - - protected: - virtual BAN::ErrorOr<BAN::String> link_target_impl() override; - - private: - RamSymlinkInode(RamFileSystem&, const FullInodeInfo&, BAN::String&&); - - private: - BAN::String m_target; - - friend class RamFileSystem; - }; - -} \ No newline at end of file diff --git a/kernel/kernel/FS/RamFS/FileSystem.cpp b/kernel/kernel/FS/RamFS/FileSystem.cpp deleted file mode 100644 index 4616a09b..00000000 --- a/kernel/kernel/FS/RamFS/FileSystem.cpp +++ /dev/null @@ -1,65 +0,0 @@ -#include <BAN/ScopeGuard.h> -#include <kernel/FS/RamFS/FileSystem.h> -#include <kernel/FS/RamFS/Inode.h> -#include <kernel/LockGuard.h> - -namespace Kernel -{ - - BAN::ErrorOr<RamFileSystem*> RamFileSystem::create(size_t size, mode_t mode, uid_t uid, gid_t gid) - { - auto* ramfs = new RamFileSystem(size); - if (ramfs == nullptr) - return BAN::Error::from_errno(ENOMEM); - - BAN::ScopeGuard deleter([ramfs] { delete ramfs; }); - - auto root_inode = TRY(RamDirectoryInode::create(*ramfs, 0, mode, uid, gid)); - TRY(ramfs->set_root_inode(root_inode));; - - deleter.disable(); - - return ramfs; - } - - BAN::ErrorOr<void> RamFileSystem::set_root_inode(BAN::RefPtr<RamDirectoryInode> root_inode) - { - LockGuard _(m_lock); - ASSERT(m_root_inode == 0); - TRY(add_inode(root_inode)); - m_root_inode = root_inode->ino(); - return {}; - } - - BAN::ErrorOr<void> RamFileSystem::add_inode(BAN::RefPtr<RamInode> inode) - { - LockGuard _(m_lock); - if (m_inodes.contains(inode->ino())) - return BAN::Error::from_errno(EEXIST); - TRY(m_inodes.insert(inode->ino(), inode)); - return {}; - } - - BAN::ErrorOr<BAN::RefPtr<RamInode>> RamFileSystem::get_inode(ino_t ino) - { - LockGuard _(m_lock); - if (!m_inodes.contains(ino)) - return BAN::Error::from_errno(ENOENT); - return m_inodes[ino]; - } - - void RamFileSystem::for_each_inode(const BAN::Function<BAN::Iteration(BAN::RefPtr<RamInode>)>& callback) - { - LockGuard _(m_lock); - for (auto& [_, inode] : m_inodes) - { - auto decision = callback(inode); - if (decision == BAN::Iteration::Break) - break; - if (decision == BAN::Iteration::Continue) - continue; - ASSERT_NOT_REACHED(); - } - } - -} \ No newline at end of file diff --git a/kernel/kernel/FS/RamFS/Inode.cpp b/kernel/kernel/FS/RamFS/Inode.cpp deleted file mode 100644 index 52ce1773..00000000 --- a/kernel/kernel/FS/RamFS/Inode.cpp +++ /dev/null @@ -1,321 +0,0 @@ -#include <kernel/FS/RamFS/FileSystem.h> -#include <kernel/FS/RamFS/Inode.h> -#include <kernel/Timer/Timer.h> - -namespace Kernel -{ - - RamInode::FullInodeInfo::FullInodeInfo(RamFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) - { - timespec current_time = SystemTimer::get().real_time(); - - this->ino = fs.next_ino(); - this->mode = mode; - this->nlink = 1; - this->uid = uid; - this->gid = gid; - this->size = 0; - this->atime = current_time; - this->mtime = current_time; - this->ctime = current_time; - this->blksize = fs.blksize(); - this->blocks = 0; - - // TODO - this->dev = 0; - this->rdev = 0; - } - - - BAN::ErrorOr<void> RamInode::chmod_impl(mode_t mode) - { - ASSERT((mode & Inode::Mode::TYPE_MASK) == 0); - m_inode_info.mode = (m_inode_info.mode & Inode::Mode::TYPE_MASK) | mode; - return {}; - } - - /* - - RAM FILE INODE - - */ - - BAN::ErrorOr<BAN::RefPtr<RamFileInode>> RamFileInode::create(RamFileSystem& fs, mode_t mode, uid_t uid, gid_t gid) - { - FullInodeInfo inode_info(fs, mode, uid, gid); - - auto* ram_inode = new RamFileInode(fs, inode_info); - if (ram_inode == nullptr) - return BAN::Error::from_errno(ENOMEM); - return BAN::RefPtr<RamFileInode>::adopt(ram_inode); - } - - RamFileInode::RamFileInode(RamFileSystem& fs, const FullInodeInfo& inode_info) - : RamInode(fs, inode_info) - { - m_inode_info.mode |= Inode::Mode::IFREG; - } - - BAN::ErrorOr<size_t> RamFileInode::read_impl(off_t offset, BAN::ByteSpan buffer) - { - ASSERT(offset >= 0); - if (offset >= size()) - return 0; - size_t to_copy = BAN::Math::min<size_t>(m_inode_info.size - offset, buffer.size()); - memcpy(buffer.data(), m_data.data() + offset, to_copy); - return to_copy; - } - - BAN::ErrorOr<size_t> RamFileInode::write_impl(off_t offset, BAN::ConstByteSpan buffer) - { - ASSERT(offset >= 0); - if (offset + buffer.size() > (size_t)size()) - TRY(truncate_impl(offset + buffer.size())); - memcpy(m_data.data() + offset, buffer.data(), buffer.size()); - return buffer.size(); - } - - BAN::ErrorOr<void> RamFileInode::truncate_impl(size_t new_size) - { - TRY(m_data.resize(new_size, 0)); - m_inode_info.size = m_data.size(); - m_inode_info.blocks = BAN::Math::div_round_up<size_t>(size(), blksize()); - return {}; - } - - /* - - RAM DIRECTORY INODE - - */ - - BAN::ErrorOr<BAN::RefPtr<RamDirectoryInode>> RamDirectoryInode::create(RamFileSystem& fs, ino_t parent, mode_t mode, uid_t uid, gid_t gid) - { - FullInodeInfo inode_info(fs, mode, uid, gid); - - // "." links to this - inode_info.nlink++; - - // ".." links to this or parent - if (parent) - TRY(fs.get_inode(parent))->add_link(); - else - { - inode_info.nlink++; - parent = inode_info.ino; - } - - auto* ram_inode = new RamDirectoryInode(fs, inode_info, parent); - if (ram_inode == nullptr) - return BAN::Error::from_errno(ENOMEM); - return BAN::RefPtr<RamDirectoryInode>::adopt(ram_inode); - } - - RamDirectoryInode::RamDirectoryInode(RamFileSystem& fs, const FullInodeInfo& inode_info, ino_t parent) - : RamInode(fs, inode_info) - , m_parent(parent) - { - m_inode_info.mode |= Inode::Mode::IFDIR; - } - - BAN::ErrorOr<BAN::RefPtr<Inode>> RamDirectoryInode::find_inode_impl(BAN::StringView name) - { - if (name == "."sv) - { - BAN::RefPtr<Inode> inode = TRY(m_fs.get_inode(ino())); - return inode; - } - - if (name == ".."sv) - { - BAN::RefPtr<Inode> inode = TRY(m_fs.get_inode(m_parent)); - return inode; - } - - for (const auto& entry : m_entries) - { - if (name == entry.name) - { - BAN::RefPtr<Inode> inode = TRY(m_fs.get_inode(entry.ino)); - return inode; - } - } - - return BAN::Error::from_errno(ENOENT); - } - - BAN::ErrorOr<void> RamDirectoryInode::list_next_inodes_impl(off_t offset, DirectoryEntryList* list, size_t list_size) - { - ASSERT(offset >= 0); - - // TODO: don't require memory for all entries on single call - if (offset != 0) - { - list->entry_count = 0; - return {}; - } - - size_t needed_size = sizeof(DirectoryEntryList); - needed_size += sizeof(DirectoryEntry) + 2; // "." - needed_size += sizeof(DirectoryEntry) + 3; // ".." - for (auto& entry : m_entries) - needed_size += sizeof(DirectoryEntry) + entry.name_len + 1; - if (needed_size > list_size) - return BAN::Error::from_errno(EINVAL); - - DirectoryEntry* ptr = list->array; - - // "." - { - ptr->dirent.d_ino = ino(); - ptr->dirent.d_type = DT_DIR; - ptr->rec_len = sizeof(DirectoryEntry) + 2; - strcpy(ptr->dirent.d_name, "."); - ptr = ptr->next(); - } - - // ".." - { - ptr->dirent.d_ino = m_parent; - ptr->dirent.d_type = DT_DIR; - ptr->rec_len = sizeof(DirectoryEntry) + 3; - strcpy(ptr->dirent.d_name, ".."); - ptr = ptr->next(); - } - - for (auto& entry : m_entries) - { - ptr->dirent.d_ino = entry.ino; - ptr->dirent.d_type = entry.type; - ptr->rec_len = sizeof(DirectoryEntry) + entry.name_len + 1; - strcpy(ptr->dirent.d_name, entry.name); - ptr = ptr->next(); - } - - list->entry_count = m_entries.size() + 2; - - return {}; - } - - BAN::ErrorOr<void> RamDirectoryInode::create_file_impl(BAN::StringView name, mode_t mode, uid_t uid, gid_t gid) - { - BAN::RefPtr<RamInode> inode; - if (Mode(mode).ifreg()) - inode = TRY(RamFileInode::create(m_fs, mode & ~Inode::Mode::TYPE_MASK, uid, gid)); - else - return BAN::Error::from_errno(ENOTSUP); - - TRY(add_inode(name, inode)); - - return {}; - } - - BAN::ErrorOr<void> RamDirectoryInode::create_directory_impl(BAN::StringView name, mode_t mode, uid_t uid, gid_t gid) - { - if (!Mode(mode).ifdir()) - return BAN::Error::from_errno(EINVAL); - auto inode = TRY(RamDirectoryInode::create(m_fs, ino(), mode & ~Inode::Mode::TYPE_MASK, uid, gid)); - TRY(add_inode(name, inode)); - return {}; - } - - static uint8_t get_type(Inode::Mode mode) - { - if (mode.ifreg()) - return DT_REG; - if (mode.ifdir()) - return DT_DIR; - if (mode.ifchr()) - return DT_CHR; - if (mode.ifblk()) - return DT_BLK; - if (mode.ififo()) - return DT_FIFO; - if (mode.ifsock()) - return DT_SOCK; - if (mode.iflnk()) - return DT_LNK; - return DT_UNKNOWN; - } - - BAN::ErrorOr<void> RamDirectoryInode::add_inode(BAN::StringView name, BAN::RefPtr<RamInode> inode) - { - if (name.size() > m_name_max) - return BAN::Error::from_errno(ENAMETOOLONG); - - for (auto& entry : m_entries) - if (name == entry.name) - return BAN::Error::from_errno(EEXIST); - - TRY(m_entries.push_back({ })); - Entry& entry = m_entries.back(); - strcpy(entry.name, name.data()); - entry.name_len = name.size(); - entry.ino = inode->ino(); - entry.type = get_type(inode->mode()); - - if (auto ret = m_fs.add_inode(inode); ret.is_error()) - { - m_entries.pop_back(); - return ret.release_error(); - } - - return {}; - } - - BAN::ErrorOr<void> RamDirectoryInode::unlink_impl(BAN::StringView name) - { - // FIXME: delete inodes contents only after they are closed - for (size_t i = 0; i < m_entries.size(); i++) - { - if (name == m_entries[i].name) - { - m_entries.remove(i); - return {}; - } - } - return BAN::Error::from_errno(ENOENT); - } - - /* - - RAM SYMLINK INODE - - */ - - BAN::ErrorOr<BAN::RefPtr<RamSymlinkInode>> RamSymlinkInode::create(RamFileSystem& fs, BAN::StringView target_sv, mode_t mode, uid_t uid, gid_t gid) - { - FullInodeInfo inode_info(fs, mode, uid, gid); - - BAN::String target_str; - TRY(target_str.append(target_sv)); - - auto* ram_inode = new RamSymlinkInode(fs, inode_info, BAN::move(target_str)); - if (ram_inode == nullptr) - return BAN::Error::from_errno(ENOMEM); - return BAN::RefPtr<RamSymlinkInode>::adopt(ram_inode); - } - - RamSymlinkInode::RamSymlinkInode(RamFileSystem& fs, const FullInodeInfo& inode_info, BAN::String&& target) - : RamInode(fs, inode_info) - , m_target(BAN::move(target)) - { - m_inode_info.mode |= Inode::Mode::IFLNK; - } - - BAN::ErrorOr<BAN::String> RamSymlinkInode::link_target_impl() - { - BAN::String result; - TRY(result.append(m_target)); - return result; - } - - BAN::ErrorOr<void> RamSymlinkInode::set_link_target(BAN::StringView target) - { - BAN::String temp; - TRY(temp.append(target)); - m_target = BAN::move(temp); - return {}; - } - -} \ No newline at end of file From 2191ca46bb211063fc0f424ba5e101d28bd29ef0 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Tue, 7 Nov 2023 16:13:21 +0200 Subject: [PATCH 203/240] Kernel: Make TmpFS enforce max page count. --- kernel/include/kernel/FS/TmpFS/FileSystem.h | 1 + kernel/kernel/FS/TmpFS/FileSystem.cpp | 12 ++++++++++++ 2 files changed, 13 insertions(+) diff --git a/kernel/include/kernel/FS/TmpFS/FileSystem.h b/kernel/include/kernel/FS/TmpFS/FileSystem.h index 36c423f8..1cca2d65 100644 --- a/kernel/include/kernel/FS/TmpFS/FileSystem.h +++ b/kernel/include/kernel/FS/TmpFS/FileSystem.h @@ -145,6 +145,7 @@ namespace Kernel (PAGE_SIZE / sizeof(TmpInodeInfo)); const size_t m_max_pages; + size_t m_used_pages { 0 }; }; template<TmpFuncs::with_block_buffer_callback F> diff --git a/kernel/kernel/FS/TmpFS/FileSystem.cpp b/kernel/kernel/FS/TmpFS/FileSystem.cpp index 7ab95e0d..4bc9d177 100644 --- a/kernel/kernel/FS/TmpFS/FileSystem.cpp +++ b/kernel/kernel/FS/TmpFS/FileSystem.cpp @@ -6,6 +6,9 @@ namespace Kernel BAN::ErrorOr<TmpFileSystem*> TmpFileSystem::create(size_t max_pages, mode_t mode, uid_t uid, gid_t gid) { + if (max_pages < 2) + return BAN::Error::from_errno(ENOSPC); + auto* result = new TmpFileSystem(max_pages); if (result == nullptr) return BAN::Error::from_errno(ENOMEM); @@ -22,6 +25,8 @@ namespace Kernel paddr_t data_paddr = Heap::get().take_free_page(); if (data_paddr == 0) return BAN::Error::from_errno(ENOMEM); + m_used_pages++; + m_data_pages.set_paddr(data_paddr); m_data_pages.set_flags(PageInfo::Flags::Present); PageTable::with_fast_page(data_paddr, [&] { @@ -31,6 +36,8 @@ namespace Kernel paddr_t inodes_paddr = Heap::get().take_free_page(); if (inodes_paddr == 0) return BAN::Error::from_errno(ENOMEM); + m_used_pages++; + m_inode_pages.set_paddr(inodes_paddr); m_inode_pages.set_flags(PageInfo::Flags::Present); PageTable::with_fast_page(inodes_paddr, [&] { @@ -178,6 +185,8 @@ namespace Kernel auto& page_info = PageTable::fast_page_as_sized<PageInfo>(index_in_page); ASSERT(page_info.flags() & PageInfo::Flags::Present); Heap::get().release_page(page_info.paddr()); + m_used_pages--; + page_info.set_paddr(0); page_info.set_flags(0); }); @@ -256,9 +265,12 @@ namespace Kernel if (!(next_info.flags() & PageInfo::Flags::Present)) { + if (m_used_pages >= m_max_pages) + return BAN::Error::from_errno(ENOSPC); paddr_t new_paddr = Heap::get().take_free_page(); if (new_paddr == 0) return BAN::Error::from_errno(ENOMEM); + m_used_pages++; PageTable::with_fast_page(new_paddr, [&] { memset(PageTable::fast_page_as_ptr(), 0x00, PAGE_SIZE); From 845ed66e5e681658c774425f1c1edae85b554c76 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Thu, 9 Nov 2023 21:43:13 +0200 Subject: [PATCH 204/240] Toolchain: add em=gnu to gas. This allows using / in expressions --- toolchain/binutils-2.39.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchain/binutils-2.39.patch b/toolchain/binutils-2.39.patch index 39b6b48a..befb128c 100644 --- a/toolchain/binutils-2.39.patch +++ b/toolchain/binutils-2.39.patch @@ -59,7 +59,7 @@ index 62f806bdfe..e05db38382 100644 h8300-*-elf) fmt=elf ;; h8300-*-linux*) fmt=elf em=linux ;; -+ i386-*-banan_os*) fmt=elf ;; ++ i386-*-banan_os*) fmt=elf em=gnu ;; i386-*-beospe*) fmt=coff em=pe ;; i386-*-beos*) fmt=elf ;; i386-*-elfiamcu) fmt=elf arch=iamcu ;; From 430a006acf3b817cd70cef64b8d7297cde56d698 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Thu, 9 Nov 2023 21:57:45 +0200 Subject: [PATCH 205/240] Toolchain: Fix typo when setting make flags I defaultet MAKEFLAGS to -j which will launch processes in parallel without any limit. --- toolchain/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchain/build.sh b/toolchain/build.sh index d905ff63..307a3391 100755 --- a/toolchain/build.sh +++ b/toolchain/build.sh @@ -164,7 +164,7 @@ cp -r $BANAN_ROOT_DIR/libc/include $BANAN_SYSROOT/usr/include rm -rf $BANAN_TOOLCHAIN_PREFIX if [[ -z ${MAKEFLAGS:x} ]]; then - export MAKEFLAGS="-j$(proc)" + export MAKEFLAGS="-j$(nproc)" fi mkdir -p $BANAN_BUILD_DIR/toolchain From c47f6a78bc55a4d382bb2fe05a46d16836610bdf Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Thu, 9 Nov 2023 22:42:47 +0200 Subject: [PATCH 206/240] Bootloader: Start work on bootloader I wrote a fast first stage bootloader and a installer to put it into a disk image. --- bootloader/.gitignore | 3 + bootloader/arch/x86_64/boot.S | 287 ++++++++++++++++++++++++++++ bootloader/arch/x86_64/linker.ld | 11 ++ bootloader/build-and-run.sh | 45 +++++ bootloader/installer/CMakeLists.txt | 14 ++ bootloader/installer/ELF.cpp | 140 ++++++++++++++ bootloader/installer/ELF.h | 36 ++++ bootloader/installer/GPT.cpp | 171 +++++++++++++++++ bootloader/installer/GPT.h | 88 +++++++++ bootloader/installer/GUID.cpp | 26 +++ bootloader/installer/GUID.h | 33 ++++ bootloader/installer/build.sh | 3 + bootloader/installer/crc32.cpp | 80 ++++++++ bootloader/installer/crc32.h | 6 + bootloader/installer/main.cpp | 41 ++++ 15 files changed, 984 insertions(+) create mode 100644 bootloader/.gitignore create mode 100644 bootloader/arch/x86_64/boot.S create mode 100644 bootloader/arch/x86_64/linker.ld create mode 100755 bootloader/build-and-run.sh create mode 100644 bootloader/installer/CMakeLists.txt create mode 100644 bootloader/installer/ELF.cpp create mode 100644 bootloader/installer/ELF.h create mode 100644 bootloader/installer/GPT.cpp create mode 100644 bootloader/installer/GPT.h create mode 100644 bootloader/installer/GUID.cpp create mode 100644 bootloader/installer/GUID.h create mode 100755 bootloader/installer/build.sh create mode 100644 bootloader/installer/crc32.cpp create mode 100644 bootloader/installer/crc32.h create mode 100644 bootloader/installer/main.cpp diff --git a/bootloader/.gitignore b/bootloader/.gitignore new file mode 100644 index 00000000..1f20c0de --- /dev/null +++ b/bootloader/.gitignore @@ -0,0 +1,3 @@ +test.img +build/ +installer/build/ diff --git a/bootloader/arch/x86_64/boot.S b/bootloader/arch/x86_64/boot.S new file mode 100644 index 00000000..9ff1b220 --- /dev/null +++ b/bootloader/arch/x86_64/boot.S @@ -0,0 +1,287 @@ +# FIXME: don't assume 512 byte sectors +.set SECTOR_SIZE, 512 + +.set GPT_HEADER_ADDR, free_memory_start +.set GPT_ENTRY_ADDR, free_memory_start + SECTOR_SIZE + + + +.code16 + +######################################### +# +# STAGE 1 BOOTLOADER +# +# its sole purpose is to load stage2 from +# bios boot partition +# +######################################### + +.section .stage1 + +stage1_start: + jmp main + +# al: character to print +putc: + mov $0x0E, %ah + int $0x10 + ret + +# ds:si: null terminated string to print +puts: + push %si + push %ax + +1: + lodsb + + test %al, %al + jz 2f + + call putc + jmp 1b + +2: + mov $'\r', %al + call putc + mov $'\n', %al + call putc + + pop %ax + pop %si + ret + +# si: ptr1 +# di: ptr2 +# cx: count +# return: 1 if equal, 0 otherwise +memcmp: + pushw %si + pushw %di + + cld + repe cmpsb + setzb %al + + popw %di + popw %si + ret + + +# read sectors from disk +# +# bx:eax: lba start +# cx: lba count (has to less than 0x80) +# dl: drive number +# ds:di: physical address +# +# returns only on success +read_from_disk: + push %ax + push %si + + # prepare disk read packet + mov $disk_address_packet, %si + movb $0x10, 0x00(%si) # packet size + movb $0x00, 0x01(%si) # always 0 + movw %cx, 0x02(%si) # lba count + movw %di, 0x04(%si) # offset + movw %ds, 0x06(%si) # segment + movl %eax, 0x08(%si) # 32 bit lower lba + movw %bx, 0x0C(%si) # 16 bit upper lba + movw $0, 0x0E(%si) # zero + + # issue read command + clc + mov $0x42, %ah + int $0x13 + jc .read_failed + + pop %si + pop %ax + ret + + +main: + # setup segments + movw $0, %ax + movw %ax, %ds + movw %ax, %es + + # setup stack + movw %ax, %ss + movw $0x7C00, %sp + + # save boot disk number + movb %dl, (boot_disk_number) + + # confirm that int 13h extensions are available + clc + movb $0x41, %ah + movw $0x55AA, %bx + movb (boot_disk_number), %dl + int $0x13 + jc .no_int13h_ext + + # read gpt header + movl $1, %eax + movw $0, %bx + movw $1, %cx + movb (boot_disk_number), %dl + movw $GPT_HEADER_ADDR, %di + call read_from_disk + + # confirm header (starts with 'EFI PART') + cmpl $0x20494645, (GPT_HEADER_ADDR + 0) + jne .not_gpt_partition + cmpl $0x54524150, (GPT_HEADER_ADDR + 4) + jne .not_gpt_partition + + # eax := entry_count + movl (GPT_HEADER_ADDR + 80), %eax + test %eax, %eax + jz .no_bios_boot_partition + + # edx:eax := eax * entry_size + mull (GPT_HEADER_ADDR + 84) + test %edx, %edx + jnz .too_gpt_big_entries + + # sector count := (arr_size + SECTOR_SIZE - 1) / SECTOR_SIZE + pushl %eax + addl $(SECTOR_SIZE - 1), %eax + movl $SECTOR_SIZE, %ecx + divl %ecx + movl %eax, %ecx + popl %eax + + # start lba + movl (GPT_HEADER_ADDR + 72), %eax + movw (GPT_HEADER_ADDR + 76), %bx + + movb (boot_disk_number), %dl + movw $GPT_ENTRY_ADDR, %di + call read_from_disk + + # NOTE: 'only' 0xFFFF partitions supported + movw (GPT_HEADER_ADDR + 80), %cx + +.loop_entries: + push %cx + movw $16, %cx + movw $bios_boot_guid, %si + call memcmp + pop %cx + + testb %al, %al + jnz .bios_boot_found + + # add entry size to entry pointer + addw (GPT_HEADER_ADDR + 84), %di + + loop .loop_entries + jmp .no_bios_boot_partition + +.bios_boot_found: + # first lba + movl 32(%di), %eax + movw $0, %bx + + # count := last lba - first lba + 1 + movl 40(%di), %ecx + subl %eax, %ecx + addl $1, %ecx + + # calculate stage2 sector count + movw $((stage2_end - stage2_start + SECTOR_SIZE - 1) / SECTOR_SIZE), %cx + + movb (boot_disk_number), %dl + movw $stage2_start, %di + + call read_from_disk + jmp stage2_start + +print_and_halt: + call puts +halt: + hlt + jmp halt + +.no_int13h_ext: + mov $no_int13_ext_msg, %si + jmp print_and_halt + +.read_failed: + mov $read_failed_msg, %si + jmp print_and_halt + +.not_gpt_partition: + mov $not_gpt_partition_msg, %si + jmp print_and_halt + +.no_bios_boot_partition: + mov $no_bios_boot_partition_msg, %si + jmp print_and_halt + +.too_gpt_big_entries: + mov $too_gpt_big_entries_msg, %si + jmp print_and_halt + + + +# 21686148-6449-6E6F-744E-656564454649 +bios_boot_guid: + .long 0x21686148 # little endian + .word 0x6449 # little endian + .word 0x6E6F # little endian + .word 0x4E74 # big endian + .quad 0x494645646565 # big endian + +no_int13_ext_msg: + .asciz "no INT 13h ext" + +read_failed_msg: + .asciz "read error" + +not_gpt_partition_msg: + .asciz "not gpt" + +no_bios_boot_partition_msg: + .asciz "no bios boot partition" + +too_gpt_big_entries_msg: + .asciz "too big GPT array" + +boot_disk_number: + .skip 1 + +disk_address_packet: + .skip 16 + + + +######################################### +# +# STAGE 2 BOOTLOADER +# +######################################### + +.section .stage2 +stage2_start: + # clear screen and enter 80x25 text mode + movb $0x03, %al + movb $0x00, %ah + int $0x10 + + # print hello message + movw $hello_msg, %si + call puts + +1: + jmp 1b + +hello_msg: + .asciz "This is banan-os bootloader" + +stage2_end: diff --git a/bootloader/arch/x86_64/linker.ld b/bootloader/arch/x86_64/linker.ld new file mode 100644 index 00000000..b23bde4c --- /dev/null +++ b/bootloader/arch/x86_64/linker.ld @@ -0,0 +1,11 @@ +SECTIONS +{ + . = 0x7C00; + .stage1 : { *(.stage1*) } + + . = ALIGN(512); + .stage2 : { *(.stage2) } + + . = ALIGN(512); + free_memory_start = .; +} \ No newline at end of file diff --git a/bootloader/build-and-run.sh b/bootloader/build-and-run.sh new file mode 100755 index 00000000..0f2cce84 --- /dev/null +++ b/bootloader/build-and-run.sh @@ -0,0 +1,45 @@ +#!/bin/sh + +set -e + +CURRENT_DIR=$(dirname $(realpath $0)) + +INSTALLER_DIR=$CURRENT_DIR/installer +INSTALLER_BUILD_DIR=$INSTALLER_DIR/build + +BUILD_DIR=$CURRENT_DIR/build +DISK_IMAGE_PATH=$CURRENT_DIR/test.img + +if ! [ -d $INSTALLER_BUILD_DIR ]; then + mkdir -p $INSTALLER_BUILD_DIR + cd $INSTALLER_BUILD_DIR + cmake .. +fi + +cd $INSTALLER_BUILD_DIR +make + +cd $CURRENT_DIR + +echo creating clean disk image +truncate --size 0 $DISK_IMAGE_PATH +truncate --size 50M $DISK_IMAGE_PATH +echo -ne 'g\nn\n\n\n+1M\nt 1\n4\nw\n' | fdisk $DISK_IMAGE_PATH > /dev/null + +mkdir -p $BUILD_DIR + +echo compiling bootloader +x86_64-banan_os-as arch/x86_64/boot.S -o $BUILD_DIR/bootloader.o + +echo linking bootloader +x86_64-banan_os-ld -nostdlib -T arch/x86_64/linker.ld $BUILD_DIR/bootloader.o -o $BUILD_DIR/bootloader + +echo installing bootloader +$INSTALLER_BUILD_DIR/x86_64-banan_os-bootloader-installer $BUILD_DIR/bootloader $DISK_IMAGE_PATH + +if [ "$1" == "debug" ] ; then + QEMU_FLAGS="-s -S" +fi + +echo running qemu +qemu-system-x86_64 $QEMU_FLAGS --drive format=raw,file=test.img diff --git a/bootloader/installer/CMakeLists.txt b/bootloader/installer/CMakeLists.txt new file mode 100644 index 00000000..65e3dc35 --- /dev/null +++ b/bootloader/installer/CMakeLists.txt @@ -0,0 +1,14 @@ +cmake_minimum_required(VERSION 3.26) + +project(x86_64-banan_os-bootloader-installer CXX) + +set(SOURCES + crc32.cpp + ELF.cpp + GPT.cpp + GUID.cpp + main.cpp +) + +add_executable(x86_64-banan_os-bootloader-installer ${SOURCES}) +target_compile_options(x86_64-banan_os-bootloader-installer PUBLIC -O2 -std=c++20) diff --git a/bootloader/installer/ELF.cpp b/bootloader/installer/ELF.cpp new file mode 100644 index 00000000..e0a53815 --- /dev/null +++ b/bootloader/installer/ELF.cpp @@ -0,0 +1,140 @@ +#include "ELF.h" + +#include <cassert> +#include <cerrno> +#include <cstring> +#include <fcntl.h> +#include <iostream> +#include <sys/mman.h> +#include <unistd.h> + +ELFFile::ELFFile(std::string_view path) + : m_path(path) +{ + m_fd = open(m_path.c_str(), O_RDONLY); + if (m_fd == -1) + { + std::cerr << "Could not open '" << m_path << "': " << std::strerror(errno) << std::endl; + return; + } + + if (fstat(m_fd, &m_stat) == -1) + { + std::cerr << "Could not stat '" << m_path << "': " << std::strerror(errno) << std::endl; + return; + } + + void* mmap_addr = mmap(nullptr, m_stat.st_size, PROT_READ, MAP_PRIVATE, m_fd, 0); + if (mmap_addr == MAP_FAILED) + { + std::cerr << "Could not mmap '" << m_path << "': " << std::strerror(errno) << std::endl; + return; + } + m_mmap = reinterpret_cast<uint8_t*>(mmap_addr); + + if (!validate_elf_header()) + return; + + m_success = true; +} + +ELFFile::~ELFFile() +{ + if (m_mmap) + munmap(m_mmap, m_stat.st_size); + m_mmap = nullptr; + + if (m_fd != -1) + close(m_fd); + m_fd = -1; +} + +const Elf64_Ehdr& ELFFile::elf_header() const +{ + return *reinterpret_cast<Elf64_Ehdr*>(m_mmap); +} + +bool ELFFile::validate_elf_header() const +{ + if (m_stat.st_size < sizeof(Elf64_Ehdr)) + { + std::cerr << m_path << " is too small to be a ELF executable" << std::endl; + return false; + } + + const auto& elf_header = this->elf_header(); + + if ( + elf_header.e_ident[EI_MAG0] != ELFMAG0 || + elf_header.e_ident[EI_MAG1] != ELFMAG1 || + elf_header.e_ident[EI_MAG2] != ELFMAG2 || + elf_header.e_ident[EI_MAG3] != ELFMAG3 + ) + { + std::cerr << m_path << " doesn't have an ELF magic number" << std::endl; + return false; + } + + if (elf_header.e_ident[EI_CLASS] != ELFCLASS64) + { + std::cerr << m_path << " is not 64 bit ELF" << std::endl; + return false; + } + + if (elf_header.e_ident[EI_DATA] != ELFDATA2LSB) + { + std::cerr << m_path << " is not in little endian format" << std::endl; + return false; + } + + if (elf_header.e_ident[EI_VERSION] != EV_CURRENT) + { + std::cerr << m_path << " has unsupported version" << std::endl; + return false; + } + + if (elf_header.e_type != ET_EXEC) + { + std::cerr << m_path << " is not an executable ELF file" << std::endl; + return false; + } + + if (elf_header.e_machine != EM_X86_64) + { + std::cerr << m_path << " is not an x86_64 ELF file" << std::endl; + return false; + } + + return true; +} + +const Elf64_Shdr& ELFFile::section_header(std::size_t index) const +{ + const auto& elf_header = this->elf_header(); + assert(index < elf_header.e_shnum); + const uint8_t* section_array_start = m_mmap + elf_header.e_shoff; + return *reinterpret_cast<const Elf64_Shdr*>(section_array_start + index * elf_header.e_shentsize); +} + +std::string_view ELFFile::section_name(const Elf64_Shdr& section_header) const +{ + const auto& elf_header = this->elf_header(); + assert(elf_header.e_shstrndx != SHN_UNDEF); + const auto& section_string_table = this->section_header(elf_header.e_shstrndx); + const char* string_table_start = reinterpret_cast<const char*>(m_mmap + section_string_table.sh_offset); + return string_table_start + section_header.sh_name; +} + +std::optional<std::span<const uint8_t>> ELFFile::find_section(std::string_view name) const +{ + const auto& elf_header = this->elf_header(); + for (std::size_t i = 0; i < elf_header.e_shnum; i++) + { + const auto& section_header = this->section_header(i); + auto section_name = this->section_name(section_header); + if (section_name != name) + continue; + return std::span<const uint8_t>(m_mmap + section_header.sh_offset, section_header.sh_size); + } + return {}; +} diff --git a/bootloader/installer/ELF.h b/bootloader/installer/ELF.h new file mode 100644 index 00000000..d0481288 --- /dev/null +++ b/bootloader/installer/ELF.h @@ -0,0 +1,36 @@ +#pragma once + +#include <cstdint> +#include <optional> +#include <span> +#include <string_view> +#include <string> +#include <sys/stat.h> + +#include <elf.h> + +class ELFFile +{ +public: + ELFFile(std::string_view path); + ~ELFFile(); + + const Elf64_Ehdr& elf_header() const; + std::optional<std::span<const uint8_t>> find_section(std::string_view name) const; + + bool success() const { return m_success; } + + std::string_view path() const { return m_path; } + +private: + const Elf64_Shdr& section_header(std::size_t index) const; + std::string_view section_name(const Elf64_Shdr&) const; + bool validate_elf_header() const; + +private: + const std::string m_path; + bool m_success { false }; + int m_fd { -1 }; + struct stat m_stat { }; + uint8_t* m_mmap { nullptr }; +}; diff --git a/bootloader/installer/GPT.cpp b/bootloader/installer/GPT.cpp new file mode 100644 index 00000000..dcc70b62 --- /dev/null +++ b/bootloader/installer/GPT.cpp @@ -0,0 +1,171 @@ +#include "crc32.h" +#include "GPT.h" + +#include <cassert> +#include <cerrno> +#include <cstring> +#include <fcntl.h> +#include <iostream> +#include <sys/mman.h> +#include <unistd.h> + +// FIXME: don't assume 512 byte sectors +#define SECTOR_SIZE 512 + +GPTFile::GPTFile(std::string_view path) + : m_path(path) +{ + m_fd = open(m_path.c_str(), O_RDWR); + if (m_fd == -1) + { + std::cerr << "Could not open '" << m_path << "': " << std::strerror(errno) << std::endl; + return; + } + + if (fstat(m_fd, &m_stat) == -1) + { + std::cerr << "Could not stat '" << m_path << "': " << std::strerror(errno) << std::endl; + return; + } + + void* mmap_addr = mmap(nullptr, m_stat.st_size, PROT_READ | PROT_WRITE, MAP_SHARED, m_fd, 0); + if (mmap_addr == MAP_FAILED) + { + std::cerr << "Could not mmap '" << m_path << "': " << std::strerror(errno) << std::endl; + return; + } + m_mmap = reinterpret_cast<uint8_t*>(mmap_addr); + + if (!validate_gpt_header()) + return; + + m_success = true; +} + +GPTFile::~GPTFile() +{ + if (m_mmap) + munmap(m_mmap, m_stat.st_size); + m_mmap = nullptr; + + if (m_fd != -1) + close(m_fd); + m_fd = -1; +} + +MBR& GPTFile::mbr() +{ + return *reinterpret_cast<MBR*>(m_mmap); +} + +const GPTHeader& GPTFile::gpt_header() const +{ + return *reinterpret_cast<GPTHeader*>(m_mmap + SECTOR_SIZE); +} + +bool GPTFile::install_bootcode(std::span<const uint8_t> boot_code) +{ + auto& mbr = this->mbr(); + + if (boot_code.size() > sizeof(mbr.boot_code)) + { + std::cerr << m_path << ": can't fit " << boot_code.size() << " bytes of boot code in mbr (max is " << sizeof(mbr.boot_code) << ")" << std::endl; + return false; + } + + // copy boot code + memcpy(mbr.boot_code, boot_code.data(), boot_code.size()); + + // setup mbr + mbr.unique_mbr_disk_signature = 0xdeadbeef; + mbr.unknown = 0; + mbr.signature = 0xAA55; + + // setup mbr partition records + mbr.partition_records[0].boot_indicator = 0x00; + mbr.partition_records[0].starting_chs[0] = 0x00; + mbr.partition_records[0].starting_chs[1] = 0x02; + mbr.partition_records[0].starting_chs[2] = 0x00; + mbr.partition_records[0].os_type = 0xEE; + mbr.partition_records[0].ending_chs[0] = 0xFF; + mbr.partition_records[0].ending_chs[1] = 0xFF; + mbr.partition_records[0].ending_chs[2] = 0xFF; + mbr.partition_records[0].starting_lba = 1; + mbr.partition_records[0].size_in_lba = 0xFFFFFFFF; + memset(&mbr.partition_records[1], 0x00, sizeof(MBRPartitionRecord)); + memset(&mbr.partition_records[2], 0x00, sizeof(MBRPartitionRecord)); + memset(&mbr.partition_records[3], 0x00, sizeof(MBRPartitionRecord)); + + return true; +} + +bool GPTFile::write_partition(std::span<const uint8_t> data, GUID type_guid) +{ + auto partition = find_partition(type_guid); + if (!partition.has_value()) + { + std::cerr << m_path << ": could not find partition with type " << type_guid << std::endl; + return false; + } + + const std::size_t partition_size = (partition->ending_lba - partition->starting_lba + 1) * SECTOR_SIZE; + + if (data.size() > partition_size) + { + std::cerr << m_path << ": can't fit " << data.size() << " bytes of data to partition of size " << partition_size << std::endl; + return false; + } + + memcpy(m_mmap + partition->starting_lba * SECTOR_SIZE, data.data(), data.size()); + + return true; +} + +std::optional<GPTPartitionEntry> GPTFile::find_partition(const GUID& type_guid) const +{ + const auto& gpt_header = this->gpt_header(); + const uint8_t* partition_entry_array_start = m_mmap + gpt_header.partition_entry_lba * SECTOR_SIZE; + for (std::size_t i = 0; i < gpt_header.number_of_partition_entries; i++) + { + const auto& partition_entry = *reinterpret_cast<const GPTPartitionEntry*>(partition_entry_array_start + i * gpt_header.size_of_partition_entry); + if (partition_entry.type_guid != type_guid) + continue; + return partition_entry; + } + return {}; +} + +bool GPTFile::validate_gpt_header() const +{ + if (SECTOR_SIZE + m_stat.st_size < sizeof(GPTHeader)) + { + std::cerr << m_path << " is too small to have GPT header" << std::endl; + return false; + } + + auto gpt_header = this->gpt_header(); + + if (std::memcmp(gpt_header.signature, "EFI PART", 8) != 0) + { + std::cerr << m_path << " doesn't contain GPT partition header signature" << std::endl; + return false; + } + + const uint32_t header_crc32 = gpt_header.header_crc32; + + gpt_header.header_crc32 = 0; + if (header_crc32 != crc32_checksum(reinterpret_cast<uint8_t*>(&gpt_header), gpt_header.header_size)) + { + std::cerr << m_path << " has non-matching header crc32" << std::endl; + return false; + } + + const std::size_t partition_array_size = gpt_header.number_of_partition_entries * gpt_header.size_of_partition_entry; + if (gpt_header.partition_entry_array_crc32 != crc32_checksum(m_mmap + gpt_header.partition_entry_lba * SECTOR_SIZE, partition_array_size)) + { + std::cerr << m_path << " has non-matching partition entry crc32" << std::endl; + return false; + } + + return true; +} diff --git a/bootloader/installer/GPT.h b/bootloader/installer/GPT.h new file mode 100644 index 00000000..7e07f5f8 --- /dev/null +++ b/bootloader/installer/GPT.h @@ -0,0 +1,88 @@ +#pragma once + +#include "GUID.h" + +#include <cstdint> +#include <optional> +#include <span> +#include <string_view> +#include <string> +#include <sys/stat.h> + +struct MBRPartitionRecord +{ + uint8_t boot_indicator; + uint8_t starting_chs[3]; + uint8_t os_type; + uint8_t ending_chs[3]; + uint32_t starting_lba; + uint32_t size_in_lba; +} __attribute__((packed)); + +struct MBR +{ + uint8_t boot_code[440]; + uint32_t unique_mbr_disk_signature; + uint16_t unknown; + MBRPartitionRecord partition_records[4]; + uint16_t signature; +} __attribute__((packed)); +static_assert(sizeof(MBR) == 512); + +struct GPTPartitionEntry +{ + GUID type_guid; + GUID partition_guid; + uint64_t starting_lba; + uint64_t ending_lba; + uint64_t attributes; + uint16_t name[36]; +}; +static_assert(sizeof(GPTPartitionEntry) == 128); + +struct GPTHeader +{ + char signature[8]; + uint32_t revision; + uint32_t header_size; + uint32_t header_crc32; + uint32_t reserved; + uint64_t my_lba; + uint64_t alternate_lba; + uint64_t first_usable_lba; + uint64_t last_usable_lba; + GUID disk_guid; + uint64_t partition_entry_lba; + uint32_t number_of_partition_entries; + uint32_t size_of_partition_entry; + uint32_t partition_entry_array_crc32; +} __attribute__((packed)); +static_assert(sizeof(GPTHeader) == 92); + +class GPTFile +{ +public: + GPTFile(std::string_view path); + ~GPTFile(); + + bool install_bootcode(std::span<const uint8_t>); + bool write_partition(std::span<const uint8_t>, GUID type_guid); + + const GPTHeader& gpt_header() const; + + bool success() const { return m_success; } + + std::string_view path() const { return m_path; } + +private: + MBR& mbr(); + bool validate_gpt_header() const; + std::optional<GPTPartitionEntry> find_partition(const GUID& type_guid) const; + +private: + const std::string m_path; + bool m_success { false }; + int m_fd { -1 }; + struct stat m_stat { }; + uint8_t* m_mmap { nullptr }; +}; diff --git a/bootloader/installer/GUID.cpp b/bootloader/installer/GUID.cpp new file mode 100644 index 00000000..fab51262 --- /dev/null +++ b/bootloader/installer/GUID.cpp @@ -0,0 +1,26 @@ +#include "GUID.h" + +#include <iomanip> +#include <cstring> + +bool GUID::operator==(const GUID& other) const +{ + return std::memcmp(this, &other, sizeof(GUID)) == 0; +} + +std::ostream& operator<<(std::ostream& out, const GUID& guid) +{ + auto flags = out.flags(); + out << std::hex << std::setfill('0'); + out << std::setw(8) << guid.component1 << '-'; + out << std::setw(4) << guid.component2 << '-'; + out << std::setw(4) << guid.component3 << '-'; + + out << std::setw(2); + for (int i = 0; i < 2; i++) out << +guid.component45[i]; + out << '-'; + for (int i = 2; i < 6; i++) out << +guid.component45[i]; + + out.flags(flags); + return out; +} diff --git a/bootloader/installer/GUID.h b/bootloader/installer/GUID.h new file mode 100644 index 00000000..0f95a4bb --- /dev/null +++ b/bootloader/installer/GUID.h @@ -0,0 +1,33 @@ +#pragma once + +#include <cstdint> +#include <ostream> + +struct GUID +{ + uint32_t component1; + uint16_t component2; + uint16_t component3; + // last 2 components are combined so no packed needed + uint8_t component45[8]; + + bool operator==(const GUID& other) const; +}; + +std::ostream& operator<<(std::ostream& out, const GUID& guid); + +// unused 00000000-0000-0000-0000-000000000000 +static constexpr GUID unused_guid = { + 0x00000000, + 0x0000, + 0x0000, + { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 } +}; + +// bios boot 21686148-6449-6E6F-744E-656564454649 +static constexpr GUID bios_boot_guid = { + 0x21686148, + 0x6449, + 0x6E6F, + { 0x74, 0x4E, 0x65, 0x65, 0x64, 0x45, 0x46, 0x49 } +}; diff --git a/bootloader/installer/build.sh b/bootloader/installer/build.sh new file mode 100755 index 00000000..719fb30e --- /dev/null +++ b/bootloader/installer/build.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +g++ -O2 -std=c++20 main.cpp crc32.cpp ELF.cpp GPT.cpp GUID.cpp -o install-bootloader diff --git a/bootloader/installer/crc32.cpp b/bootloader/installer/crc32.cpp new file mode 100644 index 00000000..92c36046 --- /dev/null +++ b/bootloader/installer/crc32.cpp @@ -0,0 +1,80 @@ +#include "crc32.h" + +static constexpr uint32_t crc32_table[256] = +{ + 0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA, + 0x076DC419, 0x706AF48F, 0xE963A535, 0x9E6495A3, + 0x0EDB8832, 0x79DCB8A4, 0xE0D5E91E, 0x97D2D988, + 0x09B64C2B, 0x7EB17CBD, 0xE7B82D07, 0x90BF1D91, + 0x1DB71064, 0x6AB020F2, 0xF3B97148, 0x84BE41DE, + 0x1ADAD47D, 0x6DDDE4EB, 0xF4D4B551, 0x83D385C7, + 0x136C9856, 0x646BA8C0, 0xFD62F97A, 0x8A65C9EC, + 0x14015C4F, 0x63066CD9, 0xFA0F3D63, 0x8D080DF5, + 0x3B6E20C8, 0x4C69105E, 0xD56041E4, 0xA2677172, + 0x3C03E4D1, 0x4B04D447, 0xD20D85FD, 0xA50AB56B, + 0x35B5A8FA, 0x42B2986C, 0xDBBBC9D6, 0xACBCF940, + 0x32D86CE3, 0x45DF5C75, 0xDCD60DCF, 0xABD13D59, + 0x26D930AC, 0x51DE003A, 0xC8D75180, 0xBFD06116, + 0x21B4F4B5, 0x56B3C423, 0xCFBA9599, 0xB8BDA50F, + 0x2802B89E, 0x5F058808, 0xC60CD9B2, 0xB10BE924, + 0x2F6F7C87, 0x58684C11, 0xC1611DAB, 0xB6662D3D, + 0x76DC4190, 0x01DB7106, 0x98D220BC, 0xEFD5102A, + 0x71B18589, 0x06B6B51F, 0x9FBFE4A5, 0xE8B8D433, + 0x7807C9A2, 0x0F00F934, 0x9609A88E, 0xE10E9818, + 0x7F6A0DBB, 0x086D3D2D, 0x91646C97, 0xE6635C01, + 0x6B6B51F4, 0x1C6C6162, 0x856530D8, 0xF262004E, + 0x6C0695ED, 0x1B01A57B, 0x8208F4C1, 0xF50FC457, + 0x65B0D9C6, 0x12B7E950, 0x8BBEB8EA, 0xFCB9887C, + 0x62DD1DDF, 0x15DA2D49, 0x8CD37CF3, 0xFBD44C65, + 0x4DB26158, 0x3AB551CE, 0xA3BC0074, 0xD4BB30E2, + 0x4ADFA541, 0x3DD895D7, 0xA4D1C46D, 0xD3D6F4FB, + 0x4369E96A, 0x346ED9FC, 0xAD678846, 0xDA60B8D0, + 0x44042D73, 0x33031DE5, 0xAA0A4C5F, 0xDD0D7CC9, + 0x5005713C, 0x270241AA, 0xBE0B1010, 0xC90C2086, + 0x5768B525, 0x206F85B3, 0xB966D409, 0xCE61E49F, + 0x5EDEF90E, 0x29D9C998, 0xB0D09822, 0xC7D7A8B4, + 0x59B33D17, 0x2EB40D81, 0xB7BD5C3B, 0xC0BA6CAD, + 0xEDB88320, 0x9ABFB3B6, 0x03B6E20C, 0x74B1D29A, + 0xEAD54739, 0x9DD277AF, 0x04DB2615, 0x73DC1683, + 0xE3630B12, 0x94643B84, 0x0D6D6A3E, 0x7A6A5AA8, + 0xE40ECF0B, 0x9309FF9D, 0x0A00AE27, 0x7D079EB1, + 0xF00F9344, 0x8708A3D2, 0x1E01F268, 0x6906C2FE, + 0xF762575D, 0x806567CB, 0x196C3671, 0x6E6B06E7, + 0xFED41B76, 0x89D32BE0, 0x10DA7A5A, 0x67DD4ACC, + 0xF9B9DF6F, 0x8EBEEFF9, 0x17B7BE43, 0x60B08ED5, + 0xD6D6A3E8, 0xA1D1937E, 0x38D8C2C4, 0x4FDFF252, + 0xD1BB67F1, 0xA6BC5767, 0x3FB506DD, 0x48B2364B, + 0xD80D2BDA, 0xAF0A1B4C, 0x36034AF6, 0x41047A60, + 0xDF60EFC3, 0xA867DF55, 0x316E8EEF, 0x4669BE79, + 0xCB61B38C, 0xBC66831A, 0x256FD2A0, 0x5268E236, + 0xCC0C7795, 0xBB0B4703, 0x220216B9, 0x5505262F, + 0xC5BA3BBE, 0xB2BD0B28, 0x2BB45A92, 0x5CB36A04, + 0xC2D7FFA7, 0xB5D0CF31, 0x2CD99E8B, 0x5BDEAE1D, + 0x9B64C2B0, 0xEC63F226, 0x756AA39C, 0x026D930A, + 0x9C0906A9, 0xEB0E363F, 0x72076785, 0x05005713, + 0x95BF4A82, 0xE2B87A14, 0x7BB12BAE, 0x0CB61B38, + 0x92D28E9B, 0xE5D5BE0D, 0x7CDCEFB7, 0x0BDBDF21, + 0x86D3D2D4, 0xF1D4E242, 0x68DDB3F8, 0x1FDA836E, + 0x81BE16CD, 0xF6B9265B, 0x6FB077E1, 0x18B74777, + 0x88085AE6, 0xFF0F6A70, 0x66063BCA, 0x11010B5C, + 0x8F659EFF, 0xF862AE69, 0x616BFFD3, 0x166CCF45, + 0xA00AE278, 0xD70DD2EE, 0x4E048354, 0x3903B3C2, + 0xA7672661, 0xD06016F7, 0x4969474D, 0x3E6E77DB, + 0xAED16A4A, 0xD9D65ADC, 0x40DF0B66, 0x37D83BF0, + 0xA9BCAE53, 0xDEBB9EC5, 0x47B2CF7F, 0x30B5FFE9, + 0xBDBDF21C, 0xCABAC28A, 0x53B39330, 0x24B4A3A6, + 0xBAD03605, 0xCDD70693, 0x54DE5729, 0x23D967BF, + 0xB3667A2E, 0xC4614AB8, 0x5D681B02, 0x2A6F2B94, + 0xB40BBE37, 0xC30C8EA1, 0x5A05DF1B, 0x2D02EF8D, +}; + +uint32_t crc32_checksum(const uint8_t* data, std::size_t count) +{ + uint32_t crc32 = 0xFFFFFFFF; + for (size_t i = 0; i < count; i++) + { + uint8_t index = (crc32 ^ data[i]) & 0xFF; + crc32 = (crc32 >> 8) ^ crc32_table[index]; + } + return crc32 ^ 0xFFFFFFFF; +} diff --git a/bootloader/installer/crc32.h b/bootloader/installer/crc32.h new file mode 100644 index 00000000..4cc51c2d --- /dev/null +++ b/bootloader/installer/crc32.h @@ -0,0 +1,6 @@ +#pragma once + +#include <cstddef> +#include <cstdint> + +uint32_t crc32_checksum(const uint8_t* data, std::size_t count); diff --git a/bootloader/installer/main.cpp b/bootloader/installer/main.cpp new file mode 100644 index 00000000..696b338c --- /dev/null +++ b/bootloader/installer/main.cpp @@ -0,0 +1,41 @@ +#include "ELF.h" +#include "GPT.h" + +#include <iostream> + +int main(int argc, char** argv) +{ + using namespace std::string_view_literals; + + if (argc != 3) + { + std::fprintf(stderr, "usage: %s BOOTLOADER DISK_IMAGE}\n", argv[0]); + return 1; + } + + ELFFile bootloader(argv[1]); + if (!bootloader.success()) + return 1; + + auto stage1 = bootloader.find_section(".stage1"sv); + auto stage2 = bootloader.find_section(".stage2"sv); + if (!stage1.has_value() || !stage2.has_value()) + { + std::cerr << bootloader.path() << " doesn't contain .stage1 and .stage2 sections" << std::endl; + return 1; + } + + GPTFile disk_image(argv[2]); + if (!disk_image.success()) + return 1; + + if (!disk_image.install_bootcode(*stage1)) + return 1; + std::cout << "wrote stage1 bootloader" << std::endl; + + if (!disk_image.write_partition(*stage2, bios_boot_guid)) + return 1; + std::cout << "wrote stage2 bootloader" << std::endl; + + return 0; +} \ No newline at end of file From a3a287f5ca998e563a57108a176fc18667b12c76 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Sat, 11 Nov 2023 22:49:00 +0200 Subject: [PATCH 207/240] Bootloader: Continue work on bootloader Bootloader can now get the memory map and read cmdline from user. Now 'just' video mode query, ext2 and ELF parsing are needed :D --- bootloader/arch/x86_64/boot.S | 552 ++++++++++++++++++++++++++----- bootloader/arch/x86_64/linker.ld | 4 +- bootloader/build-and-run.sh | 2 +- 3 files changed, 469 insertions(+), 89 deletions(-) diff --git a/bootloader/arch/x86_64/boot.S b/bootloader/arch/x86_64/boot.S index 9ff1b220..86763eb2 100644 --- a/bootloader/arch/x86_64/boot.S +++ b/bootloader/arch/x86_64/boot.S @@ -1,10 +1,9 @@ # FIXME: don't assume 512 byte sectors -.set SECTOR_SIZE, 512 - -.set GPT_HEADER_ADDR, free_memory_start -.set GPT_ENTRY_ADDR, free_memory_start + SECTOR_SIZE - +.set SECTOR_SIZE_SHIFT, 9 +.set SECTOR_SIZE, 1 << SECTOR_SIZE_SHIFT +.set SCREEN_WIDTH, 80 +.set SCREEN_HEIGHT, 25 .code16 @@ -20,42 +19,49 @@ .section .stage1 stage1_start: - jmp main + jmp stage1_main -# al: character to print +# prints character to screen +# al: ascii character to print putc: - mov $0x0E, %ah + pusha + movb $0x0E, %ah + movb $0x00, %bh int $0x10 + popa ret -# ds:si: null terminated string to print +# prints null terminated string to screen +# ds:si: string address puts: - push %si - push %ax + pushw %si + pushw %bx + pushw %ax -1: + movb $0x0E, %ah + movb $0x00, %bh + +.puts_loop: lodsb test %al, %al - jz 2f + jz .puts_done - call putc - jmp 1b + int $0x10 + jmp .puts_loop -2: - mov $'\r', %al - call putc - mov $'\n', %al - call putc - - pop %ax - pop %si +.puts_done: + popw %ax + popw %bx + popw %si ret +# compares memory between addresses # si: ptr1 # di: ptr2 -# cx: count -# return: 1 if equal, 0 otherwise +# cx: bytes count +# return: +# al: 1 if equal, 0 otherwise memcmp: pushw %si pushw %di @@ -70,12 +76,10 @@ memcmp: # read sectors from disk -# # bx:eax: lba start # cx: lba count (has to less than 0x80) # dl: drive number # ds:di: physical address -# # returns only on success read_from_disk: push %ax @@ -103,7 +107,78 @@ read_from_disk: ret -main: +# Validates that GPT header is valid and usable +# doesn't return on invalid header +validate_gpt_header: + # confirm header (starts with 'EFI PART') + cmpl $0x20494645, (gpt_header + 0) + jne .not_gpt_partition + cmpl $0x54524150, (gpt_header + 4) + jne .not_gpt_partition + ret + + +# Find partition entry with type guid +# si: address of type guid +# dl: drive number +# returns: +# al: non-zero if found +# di: address of partition entry +find_gpt_partition_entry: + # eax := entry_count + movl (gpt_header + 80), %eax + test %eax, %eax + jz .no_gpt_partition_found + + # edx:eax := eax * entry_size + pushw %dx + mull (gpt_header + 84) + test %edx, %edx + jnz .too_gpt_big_entries + popw %dx + + # FIXME: read one entry array section at a time + + # sector count := (arr_size + SECTOR_SIZE - 1) / SECTOR_SIZE + movl %eax, %ecx + shrl $SECTOR_SIZE_SHIFT, %ecx + + # start lba + movl (gpt_header + 72), %eax + movw (gpt_header + 76), %bx + + movw $gpt_entry_data, %di + + call read_from_disk + + # NOTE: 'only' 0xFFFF partitions supported, + # although read will fail with more than 0x80 + movw (gpt_header + 80), %cx + +.loop_gpt_entries: + pushw %cx + movw $16, %cx + call memcmp + popw %cx + + testb %al, %al + jnz .gpt_partition_found + + # add entry size to entry pointer + addw (gpt_header + 84), %di + + loop .loop_gpt_entries + +.no_gpt_partition_found: + movb $0, %al + ret + +.gpt_partition_found: + movb $1, %al + ret + + +stage1_main: # setup segments movw $0, %ax movw %ax, %ds @@ -129,61 +204,19 @@ main: movw $0, %bx movw $1, %cx movb (boot_disk_number), %dl - movw $GPT_HEADER_ADDR, %di + movw $gpt_header, %di call read_from_disk - # confirm header (starts with 'EFI PART') - cmpl $0x20494645, (GPT_HEADER_ADDR + 0) - jne .not_gpt_partition - cmpl $0x54524150, (GPT_HEADER_ADDR + 4) - jne .not_gpt_partition + call validate_gpt_header - # eax := entry_count - movl (GPT_HEADER_ADDR + 80), %eax - test %eax, %eax + movw $bios_boot_guid, %si + movb boot_disk_number, %dl + call find_gpt_partition_entry + testb %al, %al jz .no_bios_boot_partition - # edx:eax := eax * entry_size - mull (GPT_HEADER_ADDR + 84) - test %edx, %edx - jnz .too_gpt_big_entries + # BIOS boot partiton found! - # sector count := (arr_size + SECTOR_SIZE - 1) / SECTOR_SIZE - pushl %eax - addl $(SECTOR_SIZE - 1), %eax - movl $SECTOR_SIZE, %ecx - divl %ecx - movl %eax, %ecx - popl %eax - - # start lba - movl (GPT_HEADER_ADDR + 72), %eax - movw (GPT_HEADER_ADDR + 76), %bx - - movb (boot_disk_number), %dl - movw $GPT_ENTRY_ADDR, %di - call read_from_disk - - # NOTE: 'only' 0xFFFF partitions supported - movw (GPT_HEADER_ADDR + 80), %cx - -.loop_entries: - push %cx - movw $16, %cx - movw $bios_boot_guid, %si - call memcmp - pop %cx - - testb %al, %al - jnz .bios_boot_found - - # add entry size to entry pointer - addw (GPT_HEADER_ADDR + 84), %di - - loop .loop_entries - jmp .no_bios_boot_partition - -.bios_boot_found: # first lba movl 32(%di), %eax movw $0, %bx @@ -200,7 +233,7 @@ main: movw $stage2_start, %di call read_from_disk - jmp stage2_start + jmp stage2_main print_and_halt: call puts @@ -229,7 +262,6 @@ halt: jmp print_and_halt - # 21686148-6449-6E6F-744E-656564454649 bios_boot_guid: .long 0x21686148 # little endian @@ -245,7 +277,7 @@ read_failed_msg: .asciz "read error" not_gpt_partition_msg: - .asciz "not gpt" + .asciz "not GPT" no_bios_boot_partition_msg: .asciz "no bios boot partition" @@ -256,10 +288,6 @@ too_gpt_big_entries_msg: boot_disk_number: .skip 1 -disk_address_packet: - .skip 16 - - ######################################### # @@ -268,7 +296,247 @@ disk_address_packet: ######################################### .section .stage2 + stage2_start: + +# read a character from keyboard +# return: +# al: ascii +# ah: bios scan code +getc: + movb $0x00, %ah + int $0x16 + ret + + +# prints newline to screen +print_newline: + pushw %ax + movb $'\r', %al + call putc + movb $'\n', %al + call putc + pop %ax + ret + + +# prints backspace to screen, can go back a line +print_backspace: + pusha + + # get cursor position + movb $0x03, %ah + movb $0x00, %bh + int $0x10 + + # don't do anyting if on first row + testb %dh, %dh + jz .print_backspace_done + + # go one line up if on first column + test %dl, %dl + jz .print_backspace_go_line_up + + # otherwise decrease column + decb %dl + jmp .print_backspace_do_print + +.print_backspace_go_line_up: + # decrease row and set column to the last one + decb %dh + movb $(SCREEN_WIDTH - 1), %dl + +.print_backspace_do_print: + # set cursor position + movb $0x02, %ah + int $0x10 + + # print 'empty' character (space) + mov $' ', %al + call putc + + # set cursor position + movb $0x02, %ah + int $0x10 + +.print_backspace_done: + popa + ret + + +# print number to screen +# ax: number to print +# bx: number base +# cx: min width (zero pads if shorter) +printnum: + pusha + pushw %cx + + movw $printnum_buffer, %si + xorw %cx, %cx + +.printnum_fill_loop: + # fill buffer with all remainders ax % bx + xorw %dx, %dx + divw %bx + movb %dl, (%si) + incw %si + incw %cx + testw %ax, %ax + jnz .printnum_fill_loop + + # check if zero pad is required + popw %dx + cmpw %cx, %dx + jbe .printnum_print_loop + + xchgw %dx, %cx + subw %dx, %cx + movb $'0', %al +.printnum_pad_zeroes: + call putc + loop .printnum_pad_zeroes + + movw %dx, %cx + +.printnum_print_loop: + decw %si + movb (%si), %al + cmpb $10, %al + jae 1f + addb $'0', %al + jmp 2f +1: addb $('a' - 10), %al +2: call putc + loop .printnum_print_loop + + popa + ret + + +# test if character is printable ascii +# al: character to test +# sets ZF if is printable +isprint: + cmpb $0x20, %al + jb .isprint_done + cmpb $0x7E, %al + ja .isprint_done + cmpb %al, %al +.isprint_done: + ret + + +# fills memory map data structure +# doesn't return on error +get_memory_map: + pusha + + movl $0, (memory_map_entry_count) + + movl $0x0000E820, %eax + movl $0x534D4150, %edx + xorl %ebx, %ebx + movl $20, %ecx + movw $memory_map_entries, %di + + clc + int $0x15 + # If first call returs with CF set, the call failed + jc .get_memory_map_error + +.get_memory_map_rest: + cmpl $0x534D4150, %eax + jne .get_memory_map_error + + # FIXME: don't assume BIOS to always return 20 bytes + cmpl $20, %ecx + jne .get_memory_map_error + + # increment entry count + incl (memory_map_entry_count) + + # increment entry pointer + addw %cx, %di + + # BIOS can indicate end of list by 0 in ebx + testl %ebx, %ebx + jz .get_memory_map_done + + movl $0x0000E820, %eax + movl $0x534D4150, %edx + + clc + int $0x15 + # BIOS can indicate end of list by setting CF + jnc .get_memory_map_rest + +.get_memory_map_done: + popa + ret + +.get_memory_map_error: + movw $memory_map_error_msg, %si + jmp print_and_halt + + +# fills command line buffer +get_command_line: + pusha + + movw $command_line_enter_msg, %si + call puts + + movw $command_line_buffer, %di + +.get_command_line_loop: + call getc + + cmpb $'\b', %al + je .get_command_line_backspace + + # Not sure if some BIOSes return '\n' as enter, but check it just in case + cmpb $'\r', %al + je .get_command_line_done + cmpb $'\n', %al + je .get_command_line_done + + call isprint + jnz .get_command_line_loop + + # put byte to buffer + movb %al, (%di) + incw %di + + # print byte + call putc + + jmp .get_command_line_loop + +.get_command_line_backspace: + # don't do anything if at the beginning + cmpw $command_line_buffer, %di + je .get_command_line_loop + + # decrement buffer pointer + decw %di + + # erase byte in display + call print_backspace + + jmp .get_command_line_loop + +.get_command_line_done: + # null terminate command line + movb $0, (%di) + + call print_newline + + popa + ret + + +stage2_main: # clear screen and enter 80x25 text mode movb $0x03, %al movb $0x00, %ah @@ -277,11 +545,123 @@ stage2_start: # print hello message movw $hello_msg, %si call puts + call print_newline + + call get_memory_map + call get_command_line + + call print_newline + + movw $start_kernel_load_msg, %si + call puts + call print_newline + + movw $command_line_msg, %si + call puts + movw $command_line_buffer, %si + call puts + call print_newline + + movw $memory_map_msg, %si + call puts + call print_newline + + movl (memory_map_entry_count), %edx + movw $memory_map_entries, %si + + movw $16, %bx + movw $4, %cx + +.loop_memory_map: + movb $' ', %al + call putc + call putc + call putc + call putc + + movw 0x06(%si), %ax + call printnum + movw 0x04(%si), %ax + call printnum + movw 0x02(%si), %ax + call printnum + movw 0x00(%si), %ax + call printnum + + movb $',', %al + call putc + movb $' ', %al + call putc + + movw 0x0E(%si), %ax + call printnum + movw 0x0C(%si), %ax + call printnum + movw 0x0A(%si), %ax + call printnum + movw 0x08(%si), %ax + call printnum + + movb $',', %al + call putc + movb $' ', %al + call putc + + movw 0x12(%si), %ax + call printnum + movw 0x10(%si), %ax + call printnum + + call print_newline + + addw $20, %si + + decl %edx + jnz .loop_memory_map + + + jmp halt -1: - jmp 1b hello_msg: .asciz "This is banan-os bootloader" +command_line_msg: +command_line_enter_msg: + .asciz "cmdline: " + +memory_map_msg: + .asciz "memmap:" + +memory_map_error_msg: + .asciz "Failed to get memory map" + +start_kernel_load_msg: + .asciz "Starting to load kernel" + stage2_end: + + +.section .bss + +.align SECTOR_SIZE +gpt_header: + .skip SECTOR_SIZE +gpt_entry_data: + .skip SECTOR_SIZE + +disk_address_packet: + .skip 16 + +printnum_buffer: + .skip 10 + +memory_map_entry_count: + .skip 4 +# 100 entries should be enough... +memory_map_entries: + .skip 20 * 100 + +# 100 character command line +command_line_buffer: + .skip 100 diff --git a/bootloader/arch/x86_64/linker.ld b/bootloader/arch/x86_64/linker.ld index b23bde4c..9351edd2 100644 --- a/bootloader/arch/x86_64/linker.ld +++ b/bootloader/arch/x86_64/linker.ld @@ -1,11 +1,11 @@ SECTIONS { . = 0x7C00; - .stage1 : { *(.stage1*) } + .stage1 : { *(.stage1) } . = ALIGN(512); .stage2 : { *(.stage2) } . = ALIGN(512); - free_memory_start = .; + .bss : { *(.bss) } } \ No newline at end of file diff --git a/bootloader/build-and-run.sh b/bootloader/build-and-run.sh index 0f2cce84..f21857aa 100755 --- a/bootloader/build-and-run.sh +++ b/bootloader/build-and-run.sh @@ -42,4 +42,4 @@ if [ "$1" == "debug" ] ; then fi echo running qemu -qemu-system-x86_64 $QEMU_FLAGS --drive format=raw,file=test.img +env BANAN_DISK_IMAGE_PATH=${DISK_IMAGE_PATH} BANAN_ARCH=x86_64 ../script/qemu.sh $QEMU_FLAGS From 447da99f0b8f0608981899127433c3d2c61a1dc8 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Sat, 11 Nov 2023 23:16:52 +0200 Subject: [PATCH 208/240] Kernel/LibC: Implement readlink and readlinkat --- kernel/include/kernel/Process.h | 3 +++ kernel/kernel/Process.cpp | 41 +++++++++++++++++++++++++++++++++ kernel/kernel/Syscall.cpp | 6 +++++ libc/include/sys/syscall.h | 2 ++ libc/unistd.cpp | 10 ++++++++ 5 files changed, 62 insertions(+) diff --git a/kernel/include/kernel/Process.h b/kernel/include/kernel/Process.h index 033fcd15..92cfc37f 100644 --- a/kernel/include/kernel/Process.h +++ b/kernel/include/kernel/Process.h @@ -101,6 +101,9 @@ namespace Kernel BAN::ErrorOr<long> sys_create(const char*, mode_t); BAN::ErrorOr<long> sys_create_dir(const char*, mode_t); BAN::ErrorOr<long> sys_unlink(const char*); + BAN::ErrorOr<long> readlink_impl(BAN::StringView absolute_path, char* buffer, size_t bufsize); + BAN::ErrorOr<long> sys_readlink(const char* path, char* buffer, size_t bufsize); + BAN::ErrorOr<long> sys_readlinkat(int fd, const char* path, char* buffer, size_t bufsize); BAN::ErrorOr<long> sys_chmod(const char*, mode_t); diff --git a/kernel/kernel/Process.cpp b/kernel/kernel/Process.cpp index e8bee629..c709741f 100644 --- a/kernel/kernel/Process.cpp +++ b/kernel/kernel/Process.cpp @@ -782,6 +782,47 @@ namespace Kernel return 0; } + BAN::ErrorOr<long> Process::readlink_impl(BAN::StringView absolute_path, char* buffer, size_t bufsize) + { + auto inode = TRY(VirtualFileSystem::get().file_from_absolute_path(m_credentials, absolute_path, O_NOFOLLOW | O_RDONLY)).inode; + + // FIXME: no allocation needed + auto link_target = TRY(inode->link_target()); + + size_t byte_count = BAN::Math::min<size_t>(link_target.size(), bufsize); + memcpy(buffer, link_target.data(), byte_count); + + return byte_count; + } + + BAN::ErrorOr<long> Process::sys_readlink(const char* path, char* buffer, size_t bufsize) + { + LockGuard _(m_lock); + validate_string_access(path); + validate_pointer_access(buffer, bufsize); + + auto absolute_path = TRY(absolute_path_of(path)); + + return readlink_impl(absolute_path.sv(), buffer, bufsize); + } + + BAN::ErrorOr<long> Process::sys_readlinkat(int fd, const char* path, char* buffer, size_t bufsize) + { + LockGuard _(m_lock); + validate_string_access(path); + validate_pointer_access(buffer, bufsize); + + // FIXME: handle O_SEARCH in fd + auto parent_path = TRY(m_open_file_descriptors.path_of(fd)); + + BAN::String absolute_path; + TRY(absolute_path.append(parent_path)); + TRY(absolute_path.push_back('/')); + TRY(absolute_path.append(path)); + + return readlink_impl(absolute_path.sv(), buffer, bufsize); + } + BAN::ErrorOr<long> Process::sys_chmod(const char* path, mode_t mode) { if (mode & S_IFMASK) diff --git a/kernel/kernel/Syscall.cpp b/kernel/kernel/Syscall.cpp index ab7c3ce8..b3c574cd 100644 --- a/kernel/kernel/Syscall.cpp +++ b/kernel/kernel/Syscall.cpp @@ -211,6 +211,12 @@ namespace Kernel case SYS_UNLINK: ret = Process::current().sys_unlink((const char*)arg1); break; + case SYS_READLINK: + ret = Process::current().sys_readlink((const char*)arg1, (char*)arg2, (size_t)arg3); + break; + case SYS_READLINKAT: + ret = Process::current().sys_readlinkat((int)arg1, (const char*)arg2, (char*)arg3, (size_t)arg4); + break; default: dwarnln("Unknown syscall {}", syscall); break; diff --git a/libc/include/sys/syscall.h b/libc/include/sys/syscall.h index b6eacdf8..b07079a4 100644 --- a/libc/include/sys/syscall.h +++ b/libc/include/sys/syscall.h @@ -59,6 +59,8 @@ __BEGIN_DECLS #define SYS_CREATE 56 // creat, mkfifo #define SYS_CREATE_DIR 57 // mkdir #define SYS_UNLINK 58 +#define SYS_READLINK 59 +#define SYS_READLINKAT 60 __END_DECLS diff --git a/libc/unistd.cpp b/libc/unistd.cpp index b118da95..0e35d625 100644 --- a/libc/unistd.cpp +++ b/libc/unistd.cpp @@ -78,6 +78,16 @@ ssize_t write(int fildes, const void* buf, size_t nbyte) return syscall(SYS_WRITE, fildes, buf, nbyte); } +ssize_t readlink(const char* __restrict path, char* __restrict buf, size_t bufsize) +{ + return syscall(SYS_READLINK, path, buf, bufsize); +} + +ssize_t readlinkat(int fd, const char* __restrict path, char* __restrict buf, size_t bufsize) +{ + return syscall(SYS_READLINKAT, fd, path, buf, bufsize); +} + int dup(int fildes) { return syscall(SYS_DUP, fildes); From 6e3f176457ef90d6a5f869a6d8eaac4980cd11a1 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Sat, 11 Nov 2023 23:17:18 +0200 Subject: [PATCH 209/240] ls: print link targets when listing files --- userspace/ls/main.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/userspace/ls/main.cpp b/userspace/ls/main.cpp index b962f852..b18a0c5e 100644 --- a/userspace/ls/main.cpp +++ b/userspace/ls/main.cpp @@ -74,7 +74,18 @@ void list_directory(const char* path) } if (list) + { printf("%s %4d %4d %6d %s%s\e[m", mode_string(st.st_mode), st.st_uid, st.st_gid, st.st_size, color_string(st.st_mode), dirent->d_name); + if (S_ISLNK(st.st_mode)) + { + char link_buffer[128]; + ssize_t ret = readlinkat(dirfd(dirp), dirent->d_name, link_buffer, sizeof(link_buffer)); + if (ret >= 0) + printf(" -> %.*s", ret, link_buffer); + else + perror("readlink"); + } + } else printf("%s%s\e[m", color_string(st.st_mode), dirent->d_name); From 39801e51dace86d36d4f82a95bb2127b9163fb96 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Sun, 12 Nov 2023 01:09:31 +0200 Subject: [PATCH 210/240] BuildSystem: add proper clean target --- script/build.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/script/build.sh b/script/build.sh index 3bfedc21..52642add 100755 --- a/script/build.sh +++ b/script/build.sh @@ -92,6 +92,11 @@ case $1 in check-fs) $BANAN_SCRIPT_DIR/check-fs.sh ;; + clean) + build_target clean + rm -f $FAKEROOT_FILE + rm -rf $BANAN_SYSROOT + ;; *) build_target $1 ;; From 1a75262b048b824d70d2f440c8d0fe518dd57f93 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Sun, 12 Nov 2023 01:17:30 +0200 Subject: [PATCH 211/240] BuildSystem: add bootloader target Use this target to run banan-os with custom bootloader --- bootloader/build-and-run.sh | 45 ------------------------------------- bootloader/install.sh | 35 +++++++++++++++++++++++++++++ script/build.sh | 6 ++++- 3 files changed, 40 insertions(+), 46 deletions(-) delete mode 100755 bootloader/build-and-run.sh create mode 100755 bootloader/install.sh diff --git a/bootloader/build-and-run.sh b/bootloader/build-and-run.sh deleted file mode 100755 index f21857aa..00000000 --- a/bootloader/build-and-run.sh +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh - -set -e - -CURRENT_DIR=$(dirname $(realpath $0)) - -INSTALLER_DIR=$CURRENT_DIR/installer -INSTALLER_BUILD_DIR=$INSTALLER_DIR/build - -BUILD_DIR=$CURRENT_DIR/build -DISK_IMAGE_PATH=$CURRENT_DIR/test.img - -if ! [ -d $INSTALLER_BUILD_DIR ]; then - mkdir -p $INSTALLER_BUILD_DIR - cd $INSTALLER_BUILD_DIR - cmake .. -fi - -cd $INSTALLER_BUILD_DIR -make - -cd $CURRENT_DIR - -echo creating clean disk image -truncate --size 0 $DISK_IMAGE_PATH -truncate --size 50M $DISK_IMAGE_PATH -echo -ne 'g\nn\n\n\n+1M\nt 1\n4\nw\n' | fdisk $DISK_IMAGE_PATH > /dev/null - -mkdir -p $BUILD_DIR - -echo compiling bootloader -x86_64-banan_os-as arch/x86_64/boot.S -o $BUILD_DIR/bootloader.o - -echo linking bootloader -x86_64-banan_os-ld -nostdlib -T arch/x86_64/linker.ld $BUILD_DIR/bootloader.o -o $BUILD_DIR/bootloader - -echo installing bootloader -$INSTALLER_BUILD_DIR/x86_64-banan_os-bootloader-installer $BUILD_DIR/bootloader $DISK_IMAGE_PATH - -if [ "$1" == "debug" ] ; then - QEMU_FLAGS="-s -S" -fi - -echo running qemu -env BANAN_DISK_IMAGE_PATH=${DISK_IMAGE_PATH} BANAN_ARCH=x86_64 ../script/qemu.sh $QEMU_FLAGS diff --git a/bootloader/install.sh b/bootloader/install.sh new file mode 100755 index 00000000..037d4aa2 --- /dev/null +++ b/bootloader/install.sh @@ -0,0 +1,35 @@ +#!/bin/sh + +set -e + +if [[ -z $BANAN_DISK_IMAGE_PATH ]]; then + echo "You must set the BANAN_DISK_IMAGE_PATH environment variable" >&2 + exit 1 +fi + +CURRENT_DIR=$(dirname $(realpath $0)) + +INSTALLER_DIR=$CURRENT_DIR/installer +INSTALLER_BUILD_DIR=$INSTALLER_DIR/build + +BUILD_DIR=$CURRENT_DIR/build + +if ! [ -d $INSTALLER_BUILD_DIR ]; then + mkdir -p $INSTALLER_BUILD_DIR + cd $INSTALLER_BUILD_DIR + cmake .. +fi + +cd $INSTALLER_BUILD_DIR +make + +mkdir -p $BUILD_DIR + +echo compiling bootloader +x86_64-banan_os-as $CURRENT_DIR/arch/x86_64/boot.S -o $BUILD_DIR/bootloader.o + +echo linking bootloader +x86_64-banan_os-ld -nostdlib -T $CURRENT_DIR/arch/x86_64/linker.ld $BUILD_DIR/bootloader.o -o $BUILD_DIR/bootloader + +echo installing bootloader +$INSTALLER_BUILD_DIR/x86_64-banan_os-bootloader-installer $BUILD_DIR/bootloader $BANAN_DISK_IMAGE_PATH diff --git a/script/build.sh b/script/build.sh index 52642add..d51bc084 100755 --- a/script/build.sh +++ b/script/build.sh @@ -97,8 +97,12 @@ case $1 in rm -f $FAKEROOT_FILE rm -rf $BANAN_SYSROOT ;; + bootloader) + create_image + $BANAN_ROOT_DIR/bootloader/install.sh + $BANAN_SCRIPT_DIR/qemu.sh -serial stdio $QEMU_ACCEL + ;; *) build_target $1 ;; esac - From 8a5753b0fedc12041e2a09a7840abfc6bb5b15f7 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 13 Nov 2023 18:52:41 +0200 Subject: [PATCH 212/240] Bootloader: Add API to create GUID from string --- bootloader/installer/GUID.cpp | 50 ++++++++++++++++++++++++++++++++++- bootloader/installer/GUID.h | 4 +++ 2 files changed, 53 insertions(+), 1 deletion(-) diff --git a/bootloader/installer/GUID.cpp b/bootloader/installer/GUID.cpp index fab51262..14bd1f4f 100644 --- a/bootloader/installer/GUID.cpp +++ b/bootloader/installer/GUID.cpp @@ -3,6 +3,54 @@ #include <iomanip> #include <cstring> +std::optional<uint64_t> parse_hex(std::string_view hex_string) +{ + uint64_t result = 0; + for (char c : hex_string) + { + if (!isxdigit(c)) + return {}; + + uint8_t nibble = 0; + if ('0' <= c && c <= '9') + nibble = c - '0'; + else if ('a' <= c && c <= 'f') + nibble = c - 'a' + 10; + else + nibble = c - 'A' + 10; + result = (result << 4) | nibble; + } + return result; +} + +std::optional<GUID> GUID::from_string(std::string_view guid_string) +{ + if (guid_string.size() != 36) + return {}; + + if (guid_string[8] != '-' || guid_string[13] != '-' || guid_string[18] != '-' || guid_string[23] != '-') + return {}; + + auto comp1 = parse_hex(guid_string.substr(0, 8)); + auto comp2 = parse_hex(guid_string.substr(9, 4)); + auto comp3 = parse_hex(guid_string.substr(14, 4)); + auto comp4 = parse_hex(guid_string.substr(19, 4)); + auto comp5 = parse_hex(guid_string.substr(24, 12)); + + if (!comp1.has_value() || !comp2.has_value() || !comp3.has_value() || !comp4.has_value() || !comp5.has_value()) + return {}; + + GUID result; + result.component1 = *comp1; + result.component2 = *comp2; + result.component3 = *comp3; + for (int i = 0; i < 2; i++) + result.component45[i + 0] = *comp4 >> ((2-1) * 8 - i * 8); + for (int i = 0; i < 6; i++) + result.component45[i + 2] = *comp5 >> ((6-1) * 8 - i * 8); + return result; +} + bool GUID::operator==(const GUID& other) const { return std::memcmp(this, &other, sizeof(GUID)) == 0; @@ -19,7 +67,7 @@ std::ostream& operator<<(std::ostream& out, const GUID& guid) out << std::setw(2); for (int i = 0; i < 2; i++) out << +guid.component45[i]; out << '-'; - for (int i = 2; i < 6; i++) out << +guid.component45[i]; + for (int i = 2; i < 8; i++) out << +guid.component45[i]; out.flags(flags); return out; diff --git a/bootloader/installer/GUID.h b/bootloader/installer/GUID.h index 0f95a4bb..abdf526f 100644 --- a/bootloader/installer/GUID.h +++ b/bootloader/installer/GUID.h @@ -1,10 +1,14 @@ #pragma once #include <cstdint> +#include <optional> #include <ostream> +#include <string_view> struct GUID { + static std::optional<GUID> from_string(std::string_view); + uint32_t component1; uint16_t component2; uint16_t component3; From b4775fbe75d014a992813df9159fe5bf49bc23b0 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 13 Nov 2023 18:53:38 +0200 Subject: [PATCH 213/240] Bootloader: installer now patches GPT GUID's --- bootloader/install.sh | 8 ++- bootloader/installer/GPT.cpp | 97 +++++++++++++++++++++++++++++++---- bootloader/installer/GPT.h | 9 ++-- bootloader/installer/main.cpp | 19 ++++--- 4 files changed, 109 insertions(+), 24 deletions(-) diff --git a/bootloader/install.sh b/bootloader/install.sh index 037d4aa2..12d7d168 100755 --- a/bootloader/install.sh +++ b/bootloader/install.sh @@ -7,6 +7,10 @@ if [[ -z $BANAN_DISK_IMAGE_PATH ]]; then exit 1 fi +ROOT_PARTITION_INDEX=2 +ROOT_PARTITION_INFO=$(fdisk -x $BANAN_DISK_IMAGE_PATH | grep "^$BANAN_DISK_IMAGE_PATH" | head -$ROOT_PARTITION_INDEX | tail -1) +ROOT_PARTITION_GUID=$(echo $ROOT_PARTITION_INFO | cut -d' ' -f6) + CURRENT_DIR=$(dirname $(realpath $0)) INSTALLER_DIR=$CURRENT_DIR/installer @@ -31,5 +35,5 @@ x86_64-banan_os-as $CURRENT_DIR/arch/x86_64/boot.S -o $BUILD_DIR/bootloader.o echo linking bootloader x86_64-banan_os-ld -nostdlib -T $CURRENT_DIR/arch/x86_64/linker.ld $BUILD_DIR/bootloader.o -o $BUILD_DIR/bootloader -echo installing bootloader -$INSTALLER_BUILD_DIR/x86_64-banan_os-bootloader-installer $BUILD_DIR/bootloader $BANAN_DISK_IMAGE_PATH +echo installing bootloader to +$INSTALLER_BUILD_DIR/x86_64-banan_os-bootloader-installer $BUILD_DIR/bootloader $BANAN_DISK_IMAGE_PATH $ROOT_PARTITION_GUID diff --git a/bootloader/installer/GPT.cpp b/bootloader/installer/GPT.cpp index dcc70b62..d864b301 100644 --- a/bootloader/installer/GPT.cpp +++ b/bootloader/installer/GPT.cpp @@ -63,18 +63,18 @@ const GPTHeader& GPTFile::gpt_header() const return *reinterpret_cast<GPTHeader*>(m_mmap + SECTOR_SIZE); } -bool GPTFile::install_bootcode(std::span<const uint8_t> boot_code) +bool GPTFile::install_stage1(std::span<const uint8_t> stage1) { auto& mbr = this->mbr(); - if (boot_code.size() > sizeof(mbr.boot_code)) + if (stage1.size() > sizeof(mbr.boot_code)) { - std::cerr << m_path << ": can't fit " << boot_code.size() << " bytes of boot code in mbr (max is " << sizeof(mbr.boot_code) << ")" << std::endl; + std::cerr << m_path << ": can't fit " << stage1.size() << " bytes of boot code in mbr (max is " << sizeof(mbr.boot_code) << ")" << std::endl; return false; } // copy boot code - memcpy(mbr.boot_code, boot_code.data(), boot_code.size()); + memcpy(mbr.boot_code, stage1.data(), stage1.size()); // setup mbr mbr.unique_mbr_disk_signature = 0xdeadbeef; @@ -99,29 +99,104 @@ bool GPTFile::install_bootcode(std::span<const uint8_t> boot_code) return true; } -bool GPTFile::write_partition(std::span<const uint8_t> data, GUID type_guid) +bool GPTFile::install_stage2(std::span<const uint8_t> stage2, const GUID& root_partition_guid) { - auto partition = find_partition(type_guid); + if (stage2.size() < 16) + { + std::cerr << m_path << ": contains invalid .stage2 section, too small for patches" << std::endl; + return false; + } + + // find GUID patch offsets + std::size_t disk_guid_offset(-1); + std::size_t part_guid_offset(-1); + for (std::size_t i = 0; i < stage2.size() - 16; i++) + { + if (memcmp(stage2.data() + i, "root disk guid ", 16) == 0) + { + if (disk_guid_offset != std::size_t(-1)) + { + std::cerr << m_path << ": contains invalid .stage2 section, multiple patchable disk guids" << std::endl; + return false; + } + disk_guid_offset = i; + } + if (memcmp(stage2.data() + i, "root part guid ", 16) == 0) + { + if (part_guid_offset != std::size_t(-1)) + { + std::cerr << m_path << ": contains invalid .stage2 section, multiple patchable partition guids" << std::endl; + return false; + } + part_guid_offset = i; + } + } + if (disk_guid_offset == std::size_t(-1)) + { + std::cerr << m_path << ": contains invalid .stage2 section, no patchable disk guid" << std::endl; + return false; + } + if (part_guid_offset == std::size_t(-1)) + { + std::cerr << m_path << ": contains invalid .stage2 section, no patchable partition guid" << std::endl; + return false; + } + + + auto partition = find_partition_with_type(bios_boot_guid); if (!partition.has_value()) { - std::cerr << m_path << ": could not find partition with type " << type_guid << std::endl; + std::cerr << m_path << ": could not find partition with type " << bios_boot_guid << std::endl; return false; } const std::size_t partition_size = (partition->ending_lba - partition->starting_lba + 1) * SECTOR_SIZE; - if (data.size() > partition_size) + if (stage2.size() > partition_size) { - std::cerr << m_path << ": can't fit " << data.size() << " bytes of data to partition of size " << partition_size << std::endl; + std::cerr << m_path << ": can't fit " << stage2.size() << " bytes of data to partition of size " << partition_size << std::endl; return false; } - memcpy(m_mmap + partition->starting_lba * SECTOR_SIZE, data.data(), data.size()); + uint8_t* partition_start = m_mmap + partition->starting_lba * SECTOR_SIZE; + memcpy(partition_start, stage2.data(), stage2.size()); + + // patch GUIDs + *reinterpret_cast<GUID*>(partition_start + disk_guid_offset) = gpt_header().disk_guid; + *reinterpret_cast<GUID*>(partition_start + part_guid_offset) = root_partition_guid; return true; } -std::optional<GPTPartitionEntry> GPTFile::find_partition(const GUID& type_guid) const +bool GPTFile::install_bootloader(std::span<const uint8_t> stage1, std::span<const uint8_t> stage2, const GUID& root_partition_guid) +{ + if (!find_partition_with_guid(root_partition_guid).has_value()) + { + std::cerr << m_path << ": no partition with GUID " << root_partition_guid << std::endl; + return false; + } + if (!install_stage1(stage1)) + return false; + if (!install_stage2(stage2, root_partition_guid)) + return false; + return true; +} + +std::optional<GPTPartitionEntry> GPTFile::find_partition_with_guid(const GUID& guid) const +{ + const auto& gpt_header = this->gpt_header(); + const uint8_t* partition_entry_array_start = m_mmap + gpt_header.partition_entry_lba * SECTOR_SIZE; + for (std::size_t i = 0; i < gpt_header.number_of_partition_entries; i++) + { + const auto& partition_entry = *reinterpret_cast<const GPTPartitionEntry*>(partition_entry_array_start + i * gpt_header.size_of_partition_entry); + if (partition_entry.partition_guid != guid) + continue; + return partition_entry; + } + return {}; +} + +std::optional<GPTPartitionEntry> GPTFile::find_partition_with_type(const GUID& type_guid) const { const auto& gpt_header = this->gpt_header(); const uint8_t* partition_entry_array_start = m_mmap + gpt_header.partition_entry_lba * SECTOR_SIZE; diff --git a/bootloader/installer/GPT.h b/bootloader/installer/GPT.h index 7e07f5f8..3cfe8ed1 100644 --- a/bootloader/installer/GPT.h +++ b/bootloader/installer/GPT.h @@ -65,8 +65,7 @@ public: GPTFile(std::string_view path); ~GPTFile(); - bool install_bootcode(std::span<const uint8_t>); - bool write_partition(std::span<const uint8_t>, GUID type_guid); + bool install_bootloader(std::span<const uint8_t> stage1, std::span<const uint8_t> stage2, const GUID& root_partition_guid); const GPTHeader& gpt_header() const; @@ -77,7 +76,11 @@ public: private: MBR& mbr(); bool validate_gpt_header() const; - std::optional<GPTPartitionEntry> find_partition(const GUID& type_guid) const; + std::optional<GPTPartitionEntry> find_partition_with_guid(const GUID& guid) const; + std::optional<GPTPartitionEntry> find_partition_with_type(const GUID& type_guid) const; + + bool install_stage1(std::span<const uint8_t> stage1); + bool install_stage2(std::span<const uint8_t> stage2, const GUID& root_partition_guid); private: const std::string m_path; diff --git a/bootloader/installer/main.cpp b/bootloader/installer/main.cpp index 696b338c..3103256c 100644 --- a/bootloader/installer/main.cpp +++ b/bootloader/installer/main.cpp @@ -7,9 +7,16 @@ int main(int argc, char** argv) { using namespace std::string_view_literals; - if (argc != 3) + if (argc != 4) { - std::fprintf(stderr, "usage: %s BOOTLOADER DISK_IMAGE}\n", argv[0]); + std::fprintf(stderr, "usage: %s BOOTLOADER DISK_IMAGE ROOT_PARTITION_GUID\n", argv[0]); + return 1; + } + + auto root_partition_guid = GUID::from_string(argv[3]); + if (!root_partition_guid.has_value()) + { + std::cerr << "invalid guid '" << argv[3] << '\'' << std::endl; return 1; } @@ -29,13 +36,9 @@ int main(int argc, char** argv) if (!disk_image.success()) return 1; - if (!disk_image.install_bootcode(*stage1)) + if (!disk_image.install_bootloader(*stage1, *stage2, *root_partition_guid)) return 1; - std::cout << "wrote stage1 bootloader" << std::endl; - - if (!disk_image.write_partition(*stage2, bios_boot_guid)) - return 1; - std::cout << "wrote stage2 bootloader" << std::endl; + std::cout << "bootloader installed" << std::endl; return 0; } \ No newline at end of file From aa4f3046ff893243d1ec44ec347bdedba8d11771 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 13 Nov 2023 18:55:48 +0200 Subject: [PATCH 214/240] Bootloader: Find root partition from GPT header --- bootloader/arch/x86_64/boot.S | 342 ++++++++++++++++++++++++++++------ 1 file changed, 283 insertions(+), 59 deletions(-) diff --git a/bootloader/arch/x86_64/boot.S b/bootloader/arch/x86_64/boot.S index 86763eb2..689a909f 100644 --- a/bootloader/arch/x86_64/boot.S +++ b/bootloader/arch/x86_64/boot.S @@ -41,7 +41,7 @@ puts: movb $0x0E, %ah movb $0x00, %bh -.puts_loop: + .puts_loop: lodsb test %al, %al @@ -50,7 +50,7 @@ puts: int $0x10 jmp .puts_loop -.puts_done: + .puts_done: popw %ax popw %bx popw %si @@ -155,7 +155,7 @@ find_gpt_partition_entry: # although read will fail with more than 0x80 movw (gpt_header + 80), %cx -.loop_gpt_entries: + .loop_gpt_entries: pushw %cx movw $16, %cx call memcmp @@ -169,11 +169,11 @@ find_gpt_partition_entry: loop .loop_gpt_entries -.no_gpt_partition_found: + .no_gpt_partition_found: movb $0, %al ret -.gpt_partition_found: + .gpt_partition_found: movb $1, %al ret @@ -186,11 +186,13 @@ stage1_main: # setup stack movw %ax, %ss - movw $0x7C00, %sp + movl $0x7C00, %esp # save boot disk number movb %dl, (boot_disk_number) + # FIXME: validate boot disk (needs size optizations) + # confirm that int 13h extensions are available clc movb $0x41, %ah @@ -241,23 +243,23 @@ halt: hlt jmp halt -.no_int13h_ext: + .no_int13h_ext: mov $no_int13_ext_msg, %si jmp print_and_halt -.read_failed: + .read_failed: mov $read_failed_msg, %si jmp print_and_halt -.not_gpt_partition: + .not_gpt_partition: mov $not_gpt_partition_msg, %si jmp print_and_halt -.no_bios_boot_partition: + .no_bios_boot_partition: mov $no_bios_boot_partition_msg, %si jmp print_and_halt -.too_gpt_big_entries: + .too_gpt_big_entries: mov $too_gpt_big_entries_msg, %si jmp print_and_halt @@ -341,12 +343,12 @@ print_backspace: decb %dl jmp .print_backspace_do_print -.print_backspace_go_line_up: + .print_backspace_go_line_up: # decrease row and set column to the last one decb %dh movb $(SCREEN_WIDTH - 1), %dl -.print_backspace_do_print: + .print_backspace_do_print: # set cursor position movb $0x02, %ah int $0x10 @@ -359,7 +361,7 @@ print_backspace: movb $0x02, %ah int $0x10 -.print_backspace_done: + .print_backspace_done: popa ret @@ -375,7 +377,7 @@ printnum: movw $printnum_buffer, %si xorw %cx, %cx -.printnum_fill_loop: + .printnum_fill_loop: # fill buffer with all remainders ax % bx xorw %dx, %dx divw %bx @@ -393,21 +395,21 @@ printnum: xchgw %dx, %cx subw %dx, %cx movb $'0', %al -.printnum_pad_zeroes: + .printnum_pad_zeroes: call putc loop .printnum_pad_zeroes movw %dx, %cx -.printnum_print_loop: + .printnum_print_loop: decw %si movb (%si), %al cmpb $10, %al jae 1f addb $'0', %al jmp 2f -1: addb $('a' - 10), %al -2: call putc + 1: addb $('a' - 10), %al + 2: call putc loop .printnum_print_loop popa @@ -423,15 +425,39 @@ isprint: cmpb $0x7E, %al ja .isprint_done cmpb %al, %al -.isprint_done: + .isprint_done: + ret + + +# check if drive exists +# dl: drive number +# return: +# al: 1 if disk is usable, 0 otherwise +drive_exists: + pusha + + movb $0x48, %ah + movw $disk_drive_parameters, %si + movw $0x1A, (disk_drive_parameters) # set buffer size + + clc + int $0x13 + jc .drive_exists_nope + + popa + movb $1, %al + ret + + .drive_exists_nope: + popa + movb $0, %al ret # fills memory map data structure # doesn't return on error +# NO REGISTERS SAVED get_memory_map: - pusha - movl $0, (memory_map_entry_count) movl $0x0000E820, %eax @@ -445,7 +471,7 @@ get_memory_map: # If first call returs with CF set, the call failed jc .get_memory_map_error -.get_memory_map_rest: + .get_memory_map_rest: cmpl $0x534D4150, %eax jne .get_memory_map_error @@ -471,25 +497,23 @@ get_memory_map: # BIOS can indicate end of list by setting CF jnc .get_memory_map_rest -.get_memory_map_done: - popa + .get_memory_map_done: ret -.get_memory_map_error: + .get_memory_map_error: movw $memory_map_error_msg, %si jmp print_and_halt # fills command line buffer +# NO REGISTERS SAVED get_command_line: - pusha - movw $command_line_enter_msg, %si call puts movw $command_line_buffer, %di -.get_command_line_loop: + .get_command_line_loop: call getc cmpb $'\b', %al @@ -513,7 +537,7 @@ get_command_line: jmp .get_command_line_loop -.get_command_line_backspace: + .get_command_line_backspace: # don't do anything if at the beginning cmpw $command_line_buffer, %di je .get_command_line_loop @@ -526,42 +550,18 @@ get_command_line: jmp .get_command_line_loop -.get_command_line_done: + .get_command_line_done: # null terminate command line movb $0, (%di) call print_newline - popa ret -stage2_main: - # clear screen and enter 80x25 text mode - movb $0x03, %al - movb $0x00, %ah - int $0x10 - - # print hello message - movw $hello_msg, %si - call puts - call print_newline - - call get_memory_map - call get_command_line - - call print_newline - - movw $start_kernel_load_msg, %si - call puts - call print_newline - - movw $command_line_msg, %si - call puts - movw $command_line_buffer, %si - call puts - call print_newline - +# print memory map from memory_map_entries +# NO REGISTERS SAVED +print_memory_map: movw $memory_map_msg, %si call puts call print_newline @@ -572,7 +572,7 @@ stage2_main: movw $16, %bx movw $4, %cx -.loop_memory_map: + .loop_memory_map: movb $' ', %al call putc call putc @@ -619,10 +619,212 @@ stage2_main: decl %edx jnz .loop_memory_map + ret + + +# find root disk and populate root_disk_drive_number field +# NO REGISTERS SAVED +find_root_disk: + movb $0x80, %dl + + .find_root_disk_loop: + call drive_exists + testb %al, %al + jz .find_root_disk_not_found + + # read GPT header + xorw %bx, %bx + movl $1, %eax + movw $1, %cx + movw $gpt_header, %di + call read_from_disk + + # confirm header (starts with 'EFI PART') + cmpl $0x20494645, (gpt_header + 0) + jne .find_root_disk_next_disk + cmpl $0x54524150, (gpt_header + 4) + jne .find_root_disk_next_disk + + # compare disk GUID + movw $root_disk_guid, %si + movw $(gpt_header + 56), %di + movw $16, %cx + call memcmp + testb %al, %al + jz .find_root_disk_next_disk + + movb %dl, (root_disk_drive_number) + ret + + .find_root_disk_next_disk: + incb %dl + jmp .find_root_disk_loop + + .find_root_disk_not_found: + movw $no_root_disk_msg, %si + jmp print_and_halt + + +# finds root partition from root disk +# fills root_partition_entry data structure +# NOTE: assumes GPT header is in `gpt_header` +# NO REGISTERS SAVED +find_root_partition: + pushl %ebp + movl %esp, %ebp + subl $16, %esp + + # esp + 0: 8 byte entry array lba + movl (gpt_header + 72), %eax + movl %eax, 0(%esp) + movl (gpt_header + 76), %eax + movl %eax, 4(%esp) + # FIXME: check that bits 48-63 are zero + + # esp + 8: 4 byte entries per sector + xorl %edx, %edx + movl $SECTOR_SIZE, %eax + divl (gpt_header + 84) + movl %eax, 8(%esp) + + # esp + 12: 4 byte entries remaining + movl (gpt_header + 80), %eax + testl %eax, %eax + jz .find_root_partition_not_found + movl %eax, 12(%esp) + + .find_root_partition_read_entry_section: + movl 0(%esp), %eax + movl 4(%esp), %ebx + movw $1, %cx + movb (root_disk_drive_number), %dl + movw $sector_buffer, %di + call read_from_disk + + # ecx: min(entries per section, entries remaining) + movl 8(%esp), %ecx + cmpl 12(%esp), %ecx + jae .find_root_partition_got_entry_count + movl 12(%esp), %ecx + + .find_root_partition_got_entry_count: + # update entries remaining + subl %ecx, 12(%esp) + + # si: entry pointer + movw $sector_buffer, %si + + .find_root_partition_loop_entries: + # temporarily save cx in dx + movw %cx, %dx + + # check that entry is used + movw $16, %cx + movw $zero_guid, %di + call memcmp + test %al, %al + jnz .find_root_partition_next_entry + + # compare entry guid to root guid + movw $16, %cx + addw $16, %si + movw $root_partition_guid, %di + call memcmp + subw $16, %si + + testb %al, %al + jnz .find_root_partition_found + + .find_root_partition_next_entry: + + # restore cx + movw %dx, %cx + + # entry pointer += entry size + addw (gpt_header + 84), %si + loop .find_root_partition_loop_entries + + # entry not found in this sector + + # increment 8 byte entry array lba + incl 0(%esp) + jno .find_root_partition_no_overflow + incl 4(%esp) + + .find_root_partition_no_overflow: + # loop to read next section if entries remaining + cmpl $0, 12(%esp) + jnz .find_root_partition_read_entry_section + + .find_root_partition_not_found: + movw $no_root_partition_msg, %si + jmp print_and_halt + + .find_root_partition_found: + # copy entry to buffer + movw $root_partition_entry, %di + movw $128, %cx + rep movsb + + leavel + ret + + +stage2_main: + # clear screen and enter 80x25 text mode + movb $0x03, %al + movb $0x00, %ah + int $0x10 + + # print hello message + movw $hello_msg, %si + call puts; call print_newline + + call get_memory_map + call get_command_line + + call print_newline + + movw $start_kernel_load_msg, %si + call puts; call print_newline + + call print_memory_map + + call find_root_disk + movw $root_disk_found_msg, %si + call puts; call print_newline + + call find_root_partition + movw $root_partition_found_msg, %si + call puts; call print_newline + + movw $16, %bx + movw $2, %cx + movw (root_partition_entry + 38), %ax; call printnum + movw (root_partition_entry + 36), %ax; call printnum + movw (root_partition_entry + 34), %ax; call printnum + movw (root_partition_entry + 32), %ax; call printnum + + movb $'-', %al; call putc + movb $'>', %al; call putc + + movw (root_partition_entry + 46), %ax; call printnum + movw (root_partition_entry + 44), %ax; call printnum + movw (root_partition_entry + 42), %ax; call printnum + movw (root_partition_entry + 40), %ax; call printnum jmp halt +# These will be patched during bootloader installation +root_disk_guid: + .ascii "root disk guid " +root_partition_guid: + .ascii "root part guid " +zero_guid: + .quad 0 + .quad 0 + hello_msg: .asciz "This is banan-os bootloader" @@ -639,6 +841,16 @@ memory_map_error_msg: start_kernel_load_msg: .asciz "Starting to load kernel" +root_disk_found_msg: + .asciz "Root disk found!" +no_root_disk_msg: + .asciz "Root disk not found" + +root_partition_found_msg: + .asciz "Root partition found!" +no_root_partition_msg: + .asciz "Root partition not found" + stage2_end: @@ -650,12 +862,24 @@ gpt_header: gpt_entry_data: .skip SECTOR_SIZE +sector_buffer: + .skip SECTOR_SIZE + +disk_drive_parameters: + .skip 0x1A + disk_address_packet: .skip 16 printnum_buffer: .skip 10 +root_disk_drive_number: + .skip 1 + +root_partition_entry: + .skip 128 + memory_map_entry_count: .skip 4 # 100 entries should be enough... From 8faad478430b8e96475f2487f89ed23ca40b6daa Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 13 Nov 2023 21:29:41 +0200 Subject: [PATCH 215/240] LibELF: Remove 2 32 bit types that don't exist --- LibELF/include/LibELF/Types.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/LibELF/include/LibELF/Types.h b/LibELF/include/LibELF/Types.h index cc0351d0..43ccc340 100644 --- a/LibELF/include/LibELF/Types.h +++ b/LibELF/include/LibELF/Types.h @@ -1,6 +1,8 @@ #pragma once +#ifdef __banan_os__ #include <kernel/Arch.h> +#endif #include <stdint.h> @@ -155,15 +157,12 @@ namespace LibELF Elf64Xword p_align; }; - #if ARCH(i386) using ElfNativeAddr = Elf32Addr; using ElfNativeOff = Elf32Off; using ElfNativeHalf = Elf32Half; using ElfNativeWord = Elf32Word; using ElfNativeSword = Elf32Sword; - using ElfNativeXword = Elf32Xword; - using ElfNativeSxword = Elf32Sxword; using ElfNativeFileHeader = Elf32FileHeader; using ElfNativeSectionHeader = Elf32SectionHeader; using ElfNativeSymbol = Elf32Symbol; From 732eb9da41cad96aa7a75624052a87578fc27d25 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 13 Nov 2023 21:39:22 +0200 Subject: [PATCH 216/240] fixup --- LibELF/include/LibELF/Types.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/LibELF/include/LibELF/Types.h b/LibELF/include/LibELF/Types.h index 43ccc340..2fab8e3e 100644 --- a/LibELF/include/LibELF/Types.h +++ b/LibELF/include/LibELF/Types.h @@ -1,8 +1,6 @@ #pragma once -#ifdef __banan_os__ #include <kernel/Arch.h> -#endif #include <stdint.h> From d99ef11e4884282730a7326478dd9776f03cfb46 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 13 Nov 2023 21:30:53 +0200 Subject: [PATCH 217/240] Bootloader: installer now uses banan os elf headers intead of Linux's --- bootloader/installer/CMakeLists.txt | 5 ++++- bootloader/installer/ELF.cpp | 28 +++++++++++++++------------- bootloader/installer/ELF.h | 10 +++++----- 3 files changed, 24 insertions(+), 19 deletions(-) diff --git a/bootloader/installer/CMakeLists.txt b/bootloader/installer/CMakeLists.txt index 65e3dc35..f2abc69a 100644 --- a/bootloader/installer/CMakeLists.txt +++ b/bootloader/installer/CMakeLists.txt @@ -11,4 +11,7 @@ set(SOURCES ) add_executable(x86_64-banan_os-bootloader-installer ${SOURCES}) -target_compile_options(x86_64-banan_os-bootloader-installer PUBLIC -O2 -std=c++20) +target_compile_options(x86_64-banan_os-bootloader-installer PRIVATE -O2 -std=c++20) +target_compile_definitions(x86_64-banan_os-bootloader-installer PRIVATE __arch=x86_64) +target_include_directories(x86_64-banan_os-bootloader-installer PRIVATE ${CMAKE_SOURCE_DIR}/../../LibELF/include) +target_include_directories(x86_64-banan_os-bootloader-installer PRIVATE ${CMAKE_SOURCE_DIR}/../../kernel/include) diff --git a/bootloader/installer/ELF.cpp b/bootloader/installer/ELF.cpp index e0a53815..bc2d0845 100644 --- a/bootloader/installer/ELF.cpp +++ b/bootloader/installer/ELF.cpp @@ -1,5 +1,7 @@ #include "ELF.h" +#include <LibELF/Values.h> + #include <cassert> #include <cerrno> #include <cstring> @@ -8,6 +10,8 @@ #include <sys/mman.h> #include <unistd.h> +using namespace LibELF; + ELFFile::ELFFile(std::string_view path) : m_path(path) { @@ -49,14 +53,14 @@ ELFFile::~ELFFile() m_fd = -1; } -const Elf64_Ehdr& ELFFile::elf_header() const +const ElfNativeFileHeader& ELFFile::elf_header() const { - return *reinterpret_cast<Elf64_Ehdr*>(m_mmap); + return *reinterpret_cast<LibELF::ElfNativeFileHeader*>(m_mmap); } bool ELFFile::validate_elf_header() const { - if (m_stat.st_size < sizeof(Elf64_Ehdr)) + if (m_stat.st_size < sizeof(ElfNativeFileHeader)) { std::cerr << m_path << " is too small to be a ELF executable" << std::endl; return false; @@ -75,9 +79,13 @@ bool ELFFile::validate_elf_header() const return false; } +#if ARCH(x86_64) if (elf_header.e_ident[EI_CLASS] != ELFCLASS64) +#elif ARCH(i386) + if (elf_header.e_ident[EI_CLASS] != ELFCLASS32) +#endif { - std::cerr << m_path << " is not 64 bit ELF" << std::endl; + std::cerr << m_path << " architecture doesn't match" << std::endl; return false; } @@ -99,24 +107,18 @@ bool ELFFile::validate_elf_header() const return false; } - if (elf_header.e_machine != EM_X86_64) - { - std::cerr << m_path << " is not an x86_64 ELF file" << std::endl; - return false; - } - return true; } -const Elf64_Shdr& ELFFile::section_header(std::size_t index) const +const ElfNativeSectionHeader& ELFFile::section_header(std::size_t index) const { const auto& elf_header = this->elf_header(); assert(index < elf_header.e_shnum); const uint8_t* section_array_start = m_mmap + elf_header.e_shoff; - return *reinterpret_cast<const Elf64_Shdr*>(section_array_start + index * elf_header.e_shentsize); + return *reinterpret_cast<const ElfNativeSectionHeader*>(section_array_start + index * elf_header.e_shentsize); } -std::string_view ELFFile::section_name(const Elf64_Shdr& section_header) const +std::string_view ELFFile::section_name(const ElfNativeSectionHeader& section_header) const { const auto& elf_header = this->elf_header(); assert(elf_header.e_shstrndx != SHN_UNDEF); diff --git a/bootloader/installer/ELF.h b/bootloader/installer/ELF.h index d0481288..a127be18 100644 --- a/bootloader/installer/ELF.h +++ b/bootloader/installer/ELF.h @@ -1,5 +1,7 @@ #pragma once +#include <LibELF/Types.h> + #include <cstdint> #include <optional> #include <span> @@ -7,15 +9,13 @@ #include <string> #include <sys/stat.h> -#include <elf.h> - class ELFFile { public: ELFFile(std::string_view path); ~ELFFile(); - const Elf64_Ehdr& elf_header() const; + const LibELF::ElfNativeFileHeader& elf_header() const; std::optional<std::span<const uint8_t>> find_section(std::string_view name) const; bool success() const { return m_success; } @@ -23,8 +23,8 @@ public: std::string_view path() const { return m_path; } private: - const Elf64_Shdr& section_header(std::size_t index) const; - std::string_view section_name(const Elf64_Shdr&) const; + const LibELF::ElfNativeSectionHeader& section_header(std::size_t index) const; + std::string_view section_name(const LibELF::ElfNativeSectionHeader&) const; bool validate_elf_header() const; private: From 055b1a2a1a7a4847c60d6805ebac133fe44d7916 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 13 Nov 2023 21:42:58 +0200 Subject: [PATCH 218/240] Bootloader move bootloader code from arch directory The os itself only supports x86 so this won't matter. x86_64 and i386 use the same bootloader assembly. --- bootloader/{arch/x86_64 => }/boot.S | 0 bootloader/install.sh | 4 ++-- bootloader/{arch/x86_64 => }/linker.ld | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename bootloader/{arch/x86_64 => }/boot.S (100%) rename bootloader/{arch/x86_64 => }/linker.ld (100%) diff --git a/bootloader/arch/x86_64/boot.S b/bootloader/boot.S similarity index 100% rename from bootloader/arch/x86_64/boot.S rename to bootloader/boot.S diff --git a/bootloader/install.sh b/bootloader/install.sh index 12d7d168..b098764a 100755 --- a/bootloader/install.sh +++ b/bootloader/install.sh @@ -30,10 +30,10 @@ make mkdir -p $BUILD_DIR echo compiling bootloader -x86_64-banan_os-as $CURRENT_DIR/arch/x86_64/boot.S -o $BUILD_DIR/bootloader.o +x86_64-banan_os-as $CURRENT_DIR/boot.S -o $BUILD_DIR/bootloader.o echo linking bootloader -x86_64-banan_os-ld -nostdlib -T $CURRENT_DIR/arch/x86_64/linker.ld $BUILD_DIR/bootloader.o -o $BUILD_DIR/bootloader +x86_64-banan_os-ld -nostdlib -T $CURRENT_DIR/linker.ld $BUILD_DIR/bootloader.o -o $BUILD_DIR/bootloader echo installing bootloader to $INSTALLER_BUILD_DIR/x86_64-banan_os-bootloader-installer $BUILD_DIR/bootloader $BANAN_DISK_IMAGE_PATH $ROOT_PARTITION_GUID diff --git a/bootloader/arch/x86_64/linker.ld b/bootloader/linker.ld similarity index 100% rename from bootloader/arch/x86_64/linker.ld rename to bootloader/linker.ld From b0b39c56ba68f1e473719a0f93cb1c8088d64052 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Tue, 14 Nov 2023 03:26:03 +0200 Subject: [PATCH 219/240] Bootloader: Split bootloader into multiple files This cleans up the code since bootloader is starting to near 1k lines --- bootloader/boot.S | 824 +------------------------------------- bootloader/command_line.S | 69 ++++ bootloader/disk.S | 491 +++++++++++++++++++++++ bootloader/install.sh | 8 +- bootloader/linker.ld | 4 + bootloader/memory_map.S | 129 ++++++ bootloader/utils.S | 218 ++++++++++ 7 files changed, 922 insertions(+), 821 deletions(-) create mode 100644 bootloader/command_line.S create mode 100644 bootloader/disk.S create mode 100644 bootloader/memory_map.S create mode 100644 bootloader/utils.S diff --git a/bootloader/boot.S b/bootloader/boot.S index 689a909f..51e7e19a 100644 --- a/bootloader/boot.S +++ b/bootloader/boot.S @@ -1,10 +1,3 @@ -# FIXME: don't assume 512 byte sectors -.set SECTOR_SIZE_SHIFT, 9 -.set SECTOR_SIZE, 1 << SECTOR_SIZE_SHIFT - -.set SCREEN_WIDTH, 80 -.set SCREEN_HEIGHT, 25 - .code16 ######################################### @@ -18,166 +11,7 @@ .section .stage1 -stage1_start: - jmp stage1_main - -# prints character to screen -# al: ascii character to print -putc: - pusha - movb $0x0E, %ah - movb $0x00, %bh - int $0x10 - popa - ret - -# prints null terminated string to screen -# ds:si: string address -puts: - pushw %si - pushw %bx - pushw %ax - - movb $0x0E, %ah - movb $0x00, %bh - - .puts_loop: - lodsb - - test %al, %al - jz .puts_done - - int $0x10 - jmp .puts_loop - - .puts_done: - popw %ax - popw %bx - popw %si - ret - -# compares memory between addresses -# si: ptr1 -# di: ptr2 -# cx: bytes count -# return: -# al: 1 if equal, 0 otherwise -memcmp: - pushw %si - pushw %di - - cld - repe cmpsb - setzb %al - - popw %di - popw %si - ret - - -# read sectors from disk -# bx:eax: lba start -# cx: lba count (has to less than 0x80) -# dl: drive number -# ds:di: physical address -# returns only on success -read_from_disk: - push %ax - push %si - - # prepare disk read packet - mov $disk_address_packet, %si - movb $0x10, 0x00(%si) # packet size - movb $0x00, 0x01(%si) # always 0 - movw %cx, 0x02(%si) # lba count - movw %di, 0x04(%si) # offset - movw %ds, 0x06(%si) # segment - movl %eax, 0x08(%si) # 32 bit lower lba - movw %bx, 0x0C(%si) # 16 bit upper lba - movw $0, 0x0E(%si) # zero - - # issue read command - clc - mov $0x42, %ah - int $0x13 - jc .read_failed - - pop %si - pop %ax - ret - - -# Validates that GPT header is valid and usable -# doesn't return on invalid header -validate_gpt_header: - # confirm header (starts with 'EFI PART') - cmpl $0x20494645, (gpt_header + 0) - jne .not_gpt_partition - cmpl $0x54524150, (gpt_header + 4) - jne .not_gpt_partition - ret - - -# Find partition entry with type guid -# si: address of type guid -# dl: drive number -# returns: -# al: non-zero if found -# di: address of partition entry -find_gpt_partition_entry: - # eax := entry_count - movl (gpt_header + 80), %eax - test %eax, %eax - jz .no_gpt_partition_found - - # edx:eax := eax * entry_size - pushw %dx - mull (gpt_header + 84) - test %edx, %edx - jnz .too_gpt_big_entries - popw %dx - - # FIXME: read one entry array section at a time - - # sector count := (arr_size + SECTOR_SIZE - 1) / SECTOR_SIZE - movl %eax, %ecx - shrl $SECTOR_SIZE_SHIFT, %ecx - - # start lba - movl (gpt_header + 72), %eax - movw (gpt_header + 76), %bx - - movw $gpt_entry_data, %di - - call read_from_disk - - # NOTE: 'only' 0xFFFF partitions supported, - # although read will fail with more than 0x80 - movw (gpt_header + 80), %cx - - .loop_gpt_entries: - pushw %cx - movw $16, %cx - call memcmp - popw %cx - - testb %al, %al - jnz .gpt_partition_found - - # add entry size to entry pointer - addw (gpt_header + 84), %di - - loop .loop_gpt_entries - - .no_gpt_partition_found: - movb $0, %al - ret - - .gpt_partition_found: - movb $1, %al - ret - - +.global stage1_main stage1_main: # setup segments movw $0, %ax @@ -189,107 +23,17 @@ stage1_main: movl $0x7C00, %esp # save boot disk number - movb %dl, (boot_disk_number) + call read_stage2_into_memory - # FIXME: validate boot disk (needs size optizations) - - # confirm that int 13h extensions are available - clc - movb $0x41, %ah - movw $0x55AA, %bx - movb (boot_disk_number), %dl - int $0x13 - jc .no_int13h_ext - - # read gpt header - movl $1, %eax - movw $0, %bx - movw $1, %cx - movb (boot_disk_number), %dl - movw $gpt_header, %di - call read_from_disk - - call validate_gpt_header - - movw $bios_boot_guid, %si - movb boot_disk_number, %dl - call find_gpt_partition_entry - testb %al, %al - jz .no_bios_boot_partition - - # BIOS boot partiton found! - - # first lba - movl 32(%di), %eax - movw $0, %bx - - # count := last lba - first lba + 1 - movl 40(%di), %ecx - subl %eax, %ecx - addl $1, %ecx - - # calculate stage2 sector count - movw $((stage2_end - stage2_start + SECTOR_SIZE - 1) / SECTOR_SIZE), %cx - - movb (boot_disk_number), %dl - movw $stage2_start, %di - - call read_from_disk jmp stage2_main +.global print_and_halt print_and_halt: call puts halt: hlt jmp halt - .no_int13h_ext: - mov $no_int13_ext_msg, %si - jmp print_and_halt - - .read_failed: - mov $read_failed_msg, %si - jmp print_and_halt - - .not_gpt_partition: - mov $not_gpt_partition_msg, %si - jmp print_and_halt - - .no_bios_boot_partition: - mov $no_bios_boot_partition_msg, %si - jmp print_and_halt - - .too_gpt_big_entries: - mov $too_gpt_big_entries_msg, %si - jmp print_and_halt - - -# 21686148-6449-6E6F-744E-656564454649 -bios_boot_guid: - .long 0x21686148 # little endian - .word 0x6449 # little endian - .word 0x6E6F # little endian - .word 0x4E74 # big endian - .quad 0x494645646565 # big endian - -no_int13_ext_msg: - .asciz "no INT 13h ext" - -read_failed_msg: - .asciz "read error" - -not_gpt_partition_msg: - .asciz "not GPT" - -no_bios_boot_partition_msg: - .asciz "no bios boot partition" - -too_gpt_big_entries_msg: - .asciz "too big GPT array" - -boot_disk_number: - .skip 1 - ######################################### # @@ -299,477 +43,6 @@ boot_disk_number: .section .stage2 -stage2_start: - -# read a character from keyboard -# return: -# al: ascii -# ah: bios scan code -getc: - movb $0x00, %ah - int $0x16 - ret - - -# prints newline to screen -print_newline: - pushw %ax - movb $'\r', %al - call putc - movb $'\n', %al - call putc - pop %ax - ret - - -# prints backspace to screen, can go back a line -print_backspace: - pusha - - # get cursor position - movb $0x03, %ah - movb $0x00, %bh - int $0x10 - - # don't do anyting if on first row - testb %dh, %dh - jz .print_backspace_done - - # go one line up if on first column - test %dl, %dl - jz .print_backspace_go_line_up - - # otherwise decrease column - decb %dl - jmp .print_backspace_do_print - - .print_backspace_go_line_up: - # decrease row and set column to the last one - decb %dh - movb $(SCREEN_WIDTH - 1), %dl - - .print_backspace_do_print: - # set cursor position - movb $0x02, %ah - int $0x10 - - # print 'empty' character (space) - mov $' ', %al - call putc - - # set cursor position - movb $0x02, %ah - int $0x10 - - .print_backspace_done: - popa - ret - - -# print number to screen -# ax: number to print -# bx: number base -# cx: min width (zero pads if shorter) -printnum: - pusha - pushw %cx - - movw $printnum_buffer, %si - xorw %cx, %cx - - .printnum_fill_loop: - # fill buffer with all remainders ax % bx - xorw %dx, %dx - divw %bx - movb %dl, (%si) - incw %si - incw %cx - testw %ax, %ax - jnz .printnum_fill_loop - - # check if zero pad is required - popw %dx - cmpw %cx, %dx - jbe .printnum_print_loop - - xchgw %dx, %cx - subw %dx, %cx - movb $'0', %al - .printnum_pad_zeroes: - call putc - loop .printnum_pad_zeroes - - movw %dx, %cx - - .printnum_print_loop: - decw %si - movb (%si), %al - cmpb $10, %al - jae 1f - addb $'0', %al - jmp 2f - 1: addb $('a' - 10), %al - 2: call putc - loop .printnum_print_loop - - popa - ret - - -# test if character is printable ascii -# al: character to test -# sets ZF if is printable -isprint: - cmpb $0x20, %al - jb .isprint_done - cmpb $0x7E, %al - ja .isprint_done - cmpb %al, %al - .isprint_done: - ret - - -# check if drive exists -# dl: drive number -# return: -# al: 1 if disk is usable, 0 otherwise -drive_exists: - pusha - - movb $0x48, %ah - movw $disk_drive_parameters, %si - movw $0x1A, (disk_drive_parameters) # set buffer size - - clc - int $0x13 - jc .drive_exists_nope - - popa - movb $1, %al - ret - - .drive_exists_nope: - popa - movb $0, %al - ret - - -# fills memory map data structure -# doesn't return on error -# NO REGISTERS SAVED -get_memory_map: - movl $0, (memory_map_entry_count) - - movl $0x0000E820, %eax - movl $0x534D4150, %edx - xorl %ebx, %ebx - movl $20, %ecx - movw $memory_map_entries, %di - - clc - int $0x15 - # If first call returs with CF set, the call failed - jc .get_memory_map_error - - .get_memory_map_rest: - cmpl $0x534D4150, %eax - jne .get_memory_map_error - - # FIXME: don't assume BIOS to always return 20 bytes - cmpl $20, %ecx - jne .get_memory_map_error - - # increment entry count - incl (memory_map_entry_count) - - # increment entry pointer - addw %cx, %di - - # BIOS can indicate end of list by 0 in ebx - testl %ebx, %ebx - jz .get_memory_map_done - - movl $0x0000E820, %eax - movl $0x534D4150, %edx - - clc - int $0x15 - # BIOS can indicate end of list by setting CF - jnc .get_memory_map_rest - - .get_memory_map_done: - ret - - .get_memory_map_error: - movw $memory_map_error_msg, %si - jmp print_and_halt - - -# fills command line buffer -# NO REGISTERS SAVED -get_command_line: - movw $command_line_enter_msg, %si - call puts - - movw $command_line_buffer, %di - - .get_command_line_loop: - call getc - - cmpb $'\b', %al - je .get_command_line_backspace - - # Not sure if some BIOSes return '\n' as enter, but check it just in case - cmpb $'\r', %al - je .get_command_line_done - cmpb $'\n', %al - je .get_command_line_done - - call isprint - jnz .get_command_line_loop - - # put byte to buffer - movb %al, (%di) - incw %di - - # print byte - call putc - - jmp .get_command_line_loop - - .get_command_line_backspace: - # don't do anything if at the beginning - cmpw $command_line_buffer, %di - je .get_command_line_loop - - # decrement buffer pointer - decw %di - - # erase byte in display - call print_backspace - - jmp .get_command_line_loop - - .get_command_line_done: - # null terminate command line - movb $0, (%di) - - call print_newline - - ret - - -# print memory map from memory_map_entries -# NO REGISTERS SAVED -print_memory_map: - movw $memory_map_msg, %si - call puts - call print_newline - - movl (memory_map_entry_count), %edx - movw $memory_map_entries, %si - - movw $16, %bx - movw $4, %cx - - .loop_memory_map: - movb $' ', %al - call putc - call putc - call putc - call putc - - movw 0x06(%si), %ax - call printnum - movw 0x04(%si), %ax - call printnum - movw 0x02(%si), %ax - call printnum - movw 0x00(%si), %ax - call printnum - - movb $',', %al - call putc - movb $' ', %al - call putc - - movw 0x0E(%si), %ax - call printnum - movw 0x0C(%si), %ax - call printnum - movw 0x0A(%si), %ax - call printnum - movw 0x08(%si), %ax - call printnum - - movb $',', %al - call putc - movb $' ', %al - call putc - - movw 0x12(%si), %ax - call printnum - movw 0x10(%si), %ax - call printnum - - call print_newline - - addw $20, %si - - decl %edx - jnz .loop_memory_map - - ret - - -# find root disk and populate root_disk_drive_number field -# NO REGISTERS SAVED -find_root_disk: - movb $0x80, %dl - - .find_root_disk_loop: - call drive_exists - testb %al, %al - jz .find_root_disk_not_found - - # read GPT header - xorw %bx, %bx - movl $1, %eax - movw $1, %cx - movw $gpt_header, %di - call read_from_disk - - # confirm header (starts with 'EFI PART') - cmpl $0x20494645, (gpt_header + 0) - jne .find_root_disk_next_disk - cmpl $0x54524150, (gpt_header + 4) - jne .find_root_disk_next_disk - - # compare disk GUID - movw $root_disk_guid, %si - movw $(gpt_header + 56), %di - movw $16, %cx - call memcmp - testb %al, %al - jz .find_root_disk_next_disk - - movb %dl, (root_disk_drive_number) - ret - - .find_root_disk_next_disk: - incb %dl - jmp .find_root_disk_loop - - .find_root_disk_not_found: - movw $no_root_disk_msg, %si - jmp print_and_halt - - -# finds root partition from root disk -# fills root_partition_entry data structure -# NOTE: assumes GPT header is in `gpt_header` -# NO REGISTERS SAVED -find_root_partition: - pushl %ebp - movl %esp, %ebp - subl $16, %esp - - # esp + 0: 8 byte entry array lba - movl (gpt_header + 72), %eax - movl %eax, 0(%esp) - movl (gpt_header + 76), %eax - movl %eax, 4(%esp) - # FIXME: check that bits 48-63 are zero - - # esp + 8: 4 byte entries per sector - xorl %edx, %edx - movl $SECTOR_SIZE, %eax - divl (gpt_header + 84) - movl %eax, 8(%esp) - - # esp + 12: 4 byte entries remaining - movl (gpt_header + 80), %eax - testl %eax, %eax - jz .find_root_partition_not_found - movl %eax, 12(%esp) - - .find_root_partition_read_entry_section: - movl 0(%esp), %eax - movl 4(%esp), %ebx - movw $1, %cx - movb (root_disk_drive_number), %dl - movw $sector_buffer, %di - call read_from_disk - - # ecx: min(entries per section, entries remaining) - movl 8(%esp), %ecx - cmpl 12(%esp), %ecx - jae .find_root_partition_got_entry_count - movl 12(%esp), %ecx - - .find_root_partition_got_entry_count: - # update entries remaining - subl %ecx, 12(%esp) - - # si: entry pointer - movw $sector_buffer, %si - - .find_root_partition_loop_entries: - # temporarily save cx in dx - movw %cx, %dx - - # check that entry is used - movw $16, %cx - movw $zero_guid, %di - call memcmp - test %al, %al - jnz .find_root_partition_next_entry - - # compare entry guid to root guid - movw $16, %cx - addw $16, %si - movw $root_partition_guid, %di - call memcmp - subw $16, %si - - testb %al, %al - jnz .find_root_partition_found - - .find_root_partition_next_entry: - - # restore cx - movw %dx, %cx - - # entry pointer += entry size - addw (gpt_header + 84), %si - loop .find_root_partition_loop_entries - - # entry not found in this sector - - # increment 8 byte entry array lba - incl 0(%esp) - jno .find_root_partition_no_overflow - incl 4(%esp) - - .find_root_partition_no_overflow: - # loop to read next section if entries remaining - cmpl $0, 12(%esp) - jnz .find_root_partition_read_entry_section - - .find_root_partition_not_found: - movw $no_root_partition_msg, %si - jmp print_and_halt - - .find_root_partition_found: - # copy entry to buffer - movw $root_partition_entry, %di - movw $128, %cx - rep movsb - - leavel - ret - - stage2_main: # clear screen and enter 80x25 text mode movb $0x03, %al @@ -781,7 +54,7 @@ stage2_main: call puts; call print_newline call get_memory_map - call get_command_line + call read_user_command_line call print_newline @@ -791,101 +64,14 @@ stage2_main: call print_memory_map call find_root_disk - movw $root_disk_found_msg, %si - call puts; call print_newline - call find_root_partition - movw $root_partition_found_msg, %si - call puts; call print_newline - movw $16, %bx - movw $2, %cx - movw (root_partition_entry + 38), %ax; call printnum - movw (root_partition_entry + 36), %ax; call printnum - movw (root_partition_entry + 34), %ax; call printnum - movw (root_partition_entry + 32), %ax; call printnum - - movb $'-', %al; call putc - movb $'>', %al; call putc - - movw (root_partition_entry + 46), %ax; call printnum - movw (root_partition_entry + 44), %ax; call printnum - movw (root_partition_entry + 42), %ax; call printnum - movw (root_partition_entry + 40), %ax; call printnum + call print_root_partition_info jmp halt - -# These will be patched during bootloader installation -root_disk_guid: - .ascii "root disk guid " -root_partition_guid: - .ascii "root part guid " -zero_guid: - .quad 0 - .quad 0 - hello_msg: .asciz "This is banan-os bootloader" -command_line_msg: -command_line_enter_msg: - .asciz "cmdline: " - -memory_map_msg: - .asciz "memmap:" - -memory_map_error_msg: - .asciz "Failed to get memory map" - start_kernel_load_msg: .asciz "Starting to load kernel" - -root_disk_found_msg: - .asciz "Root disk found!" -no_root_disk_msg: - .asciz "Root disk not found" - -root_partition_found_msg: - .asciz "Root partition found!" -no_root_partition_msg: - .asciz "Root partition not found" - -stage2_end: - - -.section .bss - -.align SECTOR_SIZE -gpt_header: - .skip SECTOR_SIZE -gpt_entry_data: - .skip SECTOR_SIZE - -sector_buffer: - .skip SECTOR_SIZE - -disk_drive_parameters: - .skip 0x1A - -disk_address_packet: - .skip 16 - -printnum_buffer: - .skip 10 - -root_disk_drive_number: - .skip 1 - -root_partition_entry: - .skip 128 - -memory_map_entry_count: - .skip 4 -# 100 entries should be enough... -memory_map_entries: - .skip 20 * 100 - -# 100 character command line -command_line_buffer: - .skip 100 diff --git a/bootloader/command_line.S b/bootloader/command_line.S new file mode 100644 index 00000000..cec0a5a7 --- /dev/null +++ b/bootloader/command_line.S @@ -0,0 +1,69 @@ +.code16 + +.section .stage2 + +# fills command line buffer +# NO REGISTERS SAVED +.global read_user_command_line +read_user_command_line: + movw $command_line_enter_msg, %si + call puts + + movw $command_line_buffer, %di + + .read_user_command_line_loop: + call getc + + cmpb $'\b', %al + je .read_user_command_line_backspace + + # Not sure if some BIOSes return '\n' as enter, but check it just in case + cmpb $'\r', %al + je .read_user_command_line_done + cmpb $'\n', %al + je .read_user_command_line_done + + call isprint + testb %al, %al + jnz .read_user_command_line_loop + + # put byte to buffer + movb %al, (%di) + incw %di + + # print byte + call putc + + jmp .read_user_command_line_loop + + .read_user_command_line_backspace: + # don't do anything if at the beginning + cmpw $command_line_buffer, %di + je .read_user_command_line_loop + + # decrement buffer pointer + decw %di + + # erase byte in display + call print_backspace + + jmp .read_user_command_line_loop + + .read_user_command_line_done: + # null terminate command line + movb $0, (%di) + + call print_newline + + ret + + +command_line_enter_msg: + .asciz "cmdline: " + + +.section .bss + +# 100 character command line +command_line_buffer: + .skip 100 diff --git a/bootloader/disk.S b/bootloader/disk.S new file mode 100644 index 00000000..c22f62bd --- /dev/null +++ b/bootloader/disk.S @@ -0,0 +1,491 @@ +# FIXME: don't assume 512 byte sectors +.set SECTOR_SIZE_SHIFT, 9 +.set SECTOR_SIZE, 1 << SECTOR_SIZE_SHIFT + +.code16 + +.section .stage1 + +.global stage2_start +.global stage2_end + +# check that drive has int13 ext +# dl: drive number +# returns only if drive does have the extension +drive_has_int13_ext: + pusha + + movb $0x41, %ah + movw $0x55AA, %bx + int $0x13 + jc .drive_has_int13_ext_no_int13_ext + + popa + ret + + .drive_has_int13_ext_no_int13_ext: + mov $no_int13_ext_msg, %si + jmp print_and_halt + + +# read sectors from disk +# bx:eax: lba start +# cx: lba count (has to less than 0x80) +# dl: drive number +# ds:di: physical address +# returns only on success +.global read_from_disk +read_from_disk: + pusha + + call drive_has_int13_ext + + # prepare disk read packet + mov $disk_address_packet, %si + movb $0x10, 0x00(%si) # packet size + movb $0x00, 0x01(%si) # always 0 + movw %cx, 0x02(%si) # lba count + movw %di, 0x04(%si) # offset + movw %ds, 0x06(%si) # segment + movl %eax, 0x08(%si) # 32 bit lower lba + movw %bx, 0x0C(%si) # 16 bit upper lba + movw $0, 0x0E(%si) # zero + + # issue read command + mov $0x42, %ah + int $0x13 + jc .read_from_disk_failed + + popa + ret + + .read_from_disk_failed: + mov $read_from_disk_msg, %si + jmp print_and_halt + + +# Reads GPT header into gpt_header buffer +# dl: drive number +# return: +# ax: 1 if has GPT header, 0 otherwise +.global read_gpt_header +read_gpt_header: + pushw %bx + pushw %cx + pushw %di + + xorw %bx, %bx + movl $1, %eax + movw $1, %cx + movw $gpt_header, %di + call read_from_disk + + xorw %bx, %bx + movw $1, %ax + + # check if header starts with 'EFI PART' + cmpl $0x20494645, (gpt_header + 0) + cmovnew %bx, %ax + cmpl $0x54524150, (gpt_header + 4) + cmovnew %bx, %ax + + popw %di + popw %cx + popw %bx + ret + + +# Find bios boot partition from boot drive +# returns: +# bx:eax: first lba +# cx: sector count +find_stage2_partition: + # read boot disk GPT header + movb (boot_disk_number), %dl + call read_gpt_header + + testb %al, %al + jz .find_stage2_partition_not_gpt + + # eax := entry_count + movl (gpt_header + 80), %eax + test %eax, %eax + jz .find_stage2_partition_not_found + + # edx:eax := eax * entry_size + mull (gpt_header + 84) + test %edx, %edx + jnz .find_stage2_partition_too_big_entries + + # FIXME: read one entry array section at a time + + # sector count := (arr_size + SECTOR_SIZE - 1) / SECTOR_SIZE + movl %eax, %ecx + shrl $SECTOR_SIZE_SHIFT, %ecx + + # start lba + movl (gpt_header + 72), %eax + movw (gpt_header + 76), %bx + + movw $gpt_entry_data, %di + movw $bios_boot_guid, %si + movb (boot_disk_number), %dl + + call read_from_disk + + # NOTE: 'only' 0xFFFF partitions supported, + # although read will fail with more than 0x80 + movw (gpt_header + 80), %cx + + .find_stage2_partition_loop_gpt_entries: + pushw %cx + movw $16, %cx + call memcmp + popw %cx + + testb %al, %al + jnz .find_stage2_partition_found + + # add entry size to entry pointer + addw (gpt_header + 84), %di + + loop .find_stage2_partition_loop_gpt_entries + + # fall through to not found case + .find_stage2_partition_not_found: + movw $no_bios_boot_partition_msg, %si + jmp print_and_halt + + .find_stage2_partition_not_gpt: + movw $not_gpt_partition_msg, %si + jmp print_and_halt + + .find_stage2_partition_too_big_entries: + movw $too_gpt_big_entries_msg, %si + jmp print_and_halt + + .find_stage2_partition_found: + # first lba + movl 32(%di), %eax + movw 36(%di), %bx + + # count := last lba - first lba + 1 + movl 40(%di), %ecx + subl %eax, %ecx + incl %ecx + + ret + +# reads stage2 into memory +# dl: boot drive number +# returns only on success +.global read_stage2_into_memory +read_stage2_into_memory: + movb %dl, (boot_disk_number) + + # push stage2 sector count + movl $stage2_end, %eax + subl $stage2_start, %eax + addl $(SECTOR_SIZE - 1), %eax + movl $SECTOR_SIZE, %ecx + xorl %edx, %edx + divl %ecx + pushl %eax + + call find_stage2_partition + + movb (boot_disk_number), %dl + popl %ecx # FIXME: validate that partition has enough sectors + movw $stage2_start, %di + call read_from_disk + + ret + +# 21686148-6449-6E6F-744E-656564454649 +.align 4 +bios_boot_guid: + .long 0x21686148 # little endian + .word 0x6449 # little endian + .word 0x6E6F # little endian + .word 0x4E74 # big endian + .quad 0x494645646565 # big endian + +boot_disk_number: + .skip 1 + +read_from_disk_msg: + .asciz "read error" + +no_int13_ext_msg: + .asciz "no INT13 ext" + +no_bios_boot_partition_msg: + .asciz "no bios boot" + +too_gpt_big_entries_msg: + .asciz "too big GPT array" + +not_gpt_partition_msg: + .asciz "not GPT" + + +.section .stage2 + +# check if drive exists +# dl: drive number +# return: +# al: 1 if disk is usable, 0 otherwise +drive_exists: + pusha + + movb $0x48, %ah + movw $disk_drive_parameters, %si + movw $0x1A, (disk_drive_parameters) # set buffer size + + int $0x13 + jc .drive_exists_nope + + popa + movb $1, %al + ret + + .drive_exists_nope: + popa + movb $0, %al + ret + +# find root disk and populate root_disk_drive_number field +# NO REGISTERS SAVED +.global find_root_disk +find_root_disk: + movb $0x80, %dl + + .find_root_disk_loop: + call drive_exists + testb %al, %al + jz .find_root_disk_not_found + + # read GPT header + xorw %bx, %bx + movl $1, %eax + movw $1, %cx + movw $gpt_header, %di + call read_from_disk + + # confirm header (starts with 'EFI PART') + cmpl $0x20494645, (gpt_header + 0) + jne .find_root_disk_next_disk + cmpl $0x54524150, (gpt_header + 4) + jne .find_root_disk_next_disk + + # compare disk GUID + movw $root_disk_guid, %si + movw $(gpt_header + 56), %di + movw $16, %cx + call memcmp + testb %al, %al + jz .find_root_disk_next_disk + + movw $root_disk_found_msg, %si + call puts; call print_newline + + movb %dl, (root_disk_drive_number) + ret + + .find_root_disk_next_disk: + incb %dl + jmp .find_root_disk_loop + + .find_root_disk_not_found: + movw $root_disk_not_found_msg, %si + jmp print_and_halt + + +# finds root partition from root disk +# fills root_partition_entry data structure +# NOTE: assumes GPT header is in `gpt_header` +# NO REGISTERS SAVED +.global find_root_partition +find_root_partition: + pushl %ebp + movl %esp, %ebp + subl $16, %esp + + # esp + 0: 8 byte entry array lba + movl (gpt_header + 72), %eax + movl %eax, 0(%esp) + movl (gpt_header + 76), %eax + movl %eax, 4(%esp) + # FIXME: check that bits 48-63 are zero + + # esp + 8: 4 byte entries per sector + xorl %edx, %edx + movl $SECTOR_SIZE, %eax + divl (gpt_header + 84) + movl %eax, 8(%esp) + + # esp + 12: 4 byte entries remaining + movl (gpt_header + 80), %eax + testl %eax, %eax + jz .find_root_partition_not_found + movl %eax, 12(%esp) + + .find_root_partition_read_entry_section: + movl 0(%esp), %eax + movl 4(%esp), %ebx + movw $1, %cx + movb (root_disk_drive_number), %dl + movw $sector_buffer, %di + call read_from_disk + + # ecx: min(entries per section, entries remaining) + movl 8(%esp), %ecx + cmpl 12(%esp), %ecx + jae .find_root_partition_got_entry_count + movl 12(%esp), %ecx + + .find_root_partition_got_entry_count: + # update entries remaining + subl %ecx, 12(%esp) + + # si: entry pointer + movw $sector_buffer, %si + + .find_root_partition_loop_entries: + # temporarily save cx in dx + movw %cx, %dx + + # check that entry is used + movw $16, %cx + movw $zero_guid, %di + call memcmp + test %al, %al + jnz .find_root_partition_next_entry + + # compare entry guid to root guid + movw $16, %cx + addw $16, %si + movw $root_partition_guid, %di + call memcmp + subw $16, %si + + testb %al, %al + jnz .find_root_partition_found + + .find_root_partition_next_entry: + + # restore cx + movw %dx, %cx + + # entry pointer += entry size + addw (gpt_header + 84), %si + loop .find_root_partition_loop_entries + + # entry not found in this sector + + # increment 8 byte entry array lba + incl 0(%esp) + jno .find_root_partition_no_overflow + incl 4(%esp) + + .find_root_partition_no_overflow: + # loop to read next section if entries remaining + cmpl $0, 12(%esp) + jnz .find_root_partition_read_entry_section + + .find_root_partition_not_found: + movw $root_partition_not_found_msg, %si + jmp print_and_halt + + .find_root_partition_found: + # copy entry to buffer + movw $root_partition_entry, %di + movw $128, %cx + rep movsb + + movw $root_partition_found_msg, %si + call puts; call print_newline + + leavel + ret + + +# print information about root partition +.global print_root_partition_info +print_root_partition_info: + pushw %ax + pushw %bx + pushw %cx + pushw %si + + movw $root_partition_info_start_msg, %si + call puts; + + movw $16, %bx + movw $2, %cx + movw (root_partition_entry + 38), %ax; call print_number + movw (root_partition_entry + 36), %ax; call print_number + movw (root_partition_entry + 34), %ax; call print_number + movw (root_partition_entry + 32), %ax; call print_number + + movb $'-', %al; call putc + movb $'>', %al; call putc + + movw (root_partition_entry + 46), %ax; call print_number + movw (root_partition_entry + 44), %ax; call print_number + movw (root_partition_entry + 42), %ax; call print_number + movw (root_partition_entry + 40), %ax; call print_number + + call print_newline + + popw %si + popw %cx + popw %bx + popw %ax + ret + + +# These will be patched during bootloader installation +root_disk_guid: + .ascii "root disk guid " +root_partition_guid: + .ascii "root part guid " +zero_guid: + .skip 16, 0 + +root_disk_found_msg: + .asciz "Root disk found!" +root_disk_not_found_msg: + .asciz "Root disk not found" + +root_partition_found_msg: + .asciz "Root partition found!" +root_partition_not_found_msg: + .asciz "Root partition not found" + +root_partition_info_start_msg: + .asciz "Root partition: " + +.section .bss + +.align SECTOR_SIZE +gpt_header: + .skip SECTOR_SIZE +gpt_entry_data: + .skip SECTOR_SIZE +sector_buffer: + .skip SECTOR_SIZE + +disk_address_packet: + .skip 16 + +disk_drive_parameters: + .skip 0x1A + .skip 2 # padding + +root_disk_drive_number: + .skip 1 + .skip 3 # padding + +root_partition_entry: + .skip 128 diff --git a/bootloader/install.sh b/bootloader/install.sh index b098764a..a5436b0d 100755 --- a/bootloader/install.sh +++ b/bootloader/install.sh @@ -30,10 +30,14 @@ make mkdir -p $BUILD_DIR echo compiling bootloader -x86_64-banan_os-as $CURRENT_DIR/boot.S -o $BUILD_DIR/bootloader.o +x86_64-banan_os-as $CURRENT_DIR/boot.S -o $BUILD_DIR/boot.o +x86_64-banan_os-as $CURRENT_DIR/command_line.S -o $BUILD_DIR/command_line.o +x86_64-banan_os-as $CURRENT_DIR/disk.S -o $BUILD_DIR/disk.o +x86_64-banan_os-as $CURRENT_DIR/memory_map.S -o $BUILD_DIR/memory_map.o +x86_64-banan_os-as $CURRENT_DIR/utils.S -o $BUILD_DIR/utils.o echo linking bootloader -x86_64-banan_os-ld -nostdlib -T $CURRENT_DIR/linker.ld $BUILD_DIR/bootloader.o -o $BUILD_DIR/bootloader +x86_64-banan_os-ld -nostdlib -T $CURRENT_DIR/linker.ld $BUILD_DIR/boot.o $BUILD_DIR/command_line.o $BUILD_DIR/disk.o $BUILD_DIR/memory_map.o $BUILD_DIR/utils.o -o $BUILD_DIR/bootloader echo installing bootloader to $INSTALLER_BUILD_DIR/x86_64-banan_os-bootloader-installer $BUILD_DIR/bootloader $BANAN_DISK_IMAGE_PATH $ROOT_PARTITION_GUID diff --git a/bootloader/linker.ld b/bootloader/linker.ld index 9351edd2..eecbf531 100644 --- a/bootloader/linker.ld +++ b/bootloader/linker.ld @@ -1,10 +1,14 @@ +ENTRY(stage1_main) + SECTIONS { . = 0x7C00; .stage1 : { *(.stage1) } . = ALIGN(512); + stage2_start = .; .stage2 : { *(.stage2) } + stage2_end = .; . = ALIGN(512); .bss : { *(.bss) } diff --git a/bootloader/memory_map.S b/bootloader/memory_map.S new file mode 100644 index 00000000..ca1908c5 --- /dev/null +++ b/bootloader/memory_map.S @@ -0,0 +1,129 @@ +.code16 + +.section .stage2 + +# fills memory map data structure +# doesn't return on error +# NO REGISTERS SAVED +.global get_memory_map +get_memory_map: + movl $0, (memory_map_entry_count) + + movl $0x0000E820, %eax + movl $0x534D4150, %edx + xorl %ebx, %ebx + movl $20, %ecx + movw $memory_map_entries, %di + + clc + int $0x15 + # If first call returs with CF set, the call failed + jc .get_memory_map_error + + .get_memory_map_rest: + cmpl $0x534D4150, %eax + jne .get_memory_map_error + + # FIXME: don't assume BIOS to always return 20 bytes + cmpl $20, %ecx + jne .get_memory_map_error + + # increment entry count + incl (memory_map_entry_count) + + # increment entry pointer + addw %cx, %di + + # BIOS can indicate end of list by 0 in ebx + testl %ebx, %ebx + jz .get_memory_map_done + + movl $0x0000E820, %eax + movl $0x534D4150, %edx + + clc + int $0x15 + # BIOS can indicate end of list by setting CF + jnc .get_memory_map_rest + + .get_memory_map_done: + ret + + .get_memory_map_error: + movw $memory_map_error_msg, %si + jmp print_and_halt + + +# print memory map from memory_map_entries +# NO REGISTERS SAVED +.global print_memory_map +print_memory_map: + movw $memory_map_msg, %si + call puts + call print_newline + + movl (memory_map_entry_count), %edx + movw $memory_map_entries, %si + + movw $16, %bx + movw $4, %cx + + .loop_memory_map: + movb $' ', %al + call putc; call putc; call putc; call putc + + movw 0x06(%si), %ax + call print_number + movw 0x04(%si), %ax + call print_number + movw 0x02(%si), %ax + call print_number + movw 0x00(%si), %ax + call print_number + + movb $',', %al + call putc + movb $' ', %al + call putc + + movw 0x0E(%si), %ax + call print_number + movw 0x0C(%si), %ax + call print_number + movw 0x0A(%si), %ax + call print_number + movw 0x08(%si), %ax + call print_number + + movb $',', %al + call putc + movb $' ', %al + call putc + + movw 0x12(%si), %ax + call print_number + movw 0x10(%si), %ax + call print_number + + call print_newline + + addw $20, %si + + decl %edx + jnz .loop_memory_map + + ret + + +memory_map_msg: + .asciz "memmap:" +memory_map_error_msg: + .asciz "Failed to get memory map" + +.section .bss + +memory_map_entry_count: + .skip 4 +# 100 entries should be enough... +memory_map_entries: + .skip 20 * 100 diff --git a/bootloader/utils.S b/bootloader/utils.S new file mode 100644 index 00000000..5938fbad --- /dev/null +++ b/bootloader/utils.S @@ -0,0 +1,218 @@ +.set SCREEN_WIDTH, 80 +.set SCREEN_HEIGHT, 25 + +.code16 + +.section .stage1 + +# prints character to screen +# al: ascii character to print +.global putc +putc: + pushw %ax + pushw %bx + movb $0x0E, %ah + xorb %bh, %bh + int $0x10 + popw %bx + popw %ax + ret + +# prints null terminated string to screen +# ds:si: string address +.global puts +puts: + pushw %si + pushw %bx + pushw %ax + + movb $0x0E, %ah + xorb %bh, %bh + + .puts_loop: + lodsb + + test %al, %al + jz .puts_done + + int $0x10 + jmp .puts_loop + + .puts_done: + popw %ax + popw %bx + popw %si + ret + +# compares memory between addresses +# si: ptr1 +# di: ptr2 +# cx: bytes count +# return: +# al: 1 if equal, 0 otherwise +.global memcmp +memcmp: + # NOTE: using pusha + popa to save space + pusha + cld + repe cmpsb + popa + setzb %al + ret + + +.section .stage2 + +# read a character from keyboard +# return: +# al: ascii +# ah: bios scan code +.global getc +getc: + movb $0x00, %ah + int $0x16 + ret + +# prints newline to screen +.global print_newline +print_newline: + pushw %ax + movb $'\r', %al + call putc + movb $'\n', %al + call putc + pop %ax + ret + +# prints backspace to screen, can go back a line +.global print_backspace +print_backspace: + pushw %ax + pushw %bx + pushw %cx + pushw %dx + + # get cursor position + movb $0x03, %ah + movb $0x00, %bh + int $0x10 + + # don't do anyting if on first row + testb %dh, %dh + jz .print_backspace_done + + # go one line up if on first column + test %dl, %dl + jz .print_backspace_go_line_up + + # otherwise decrease column + decb %dl + jmp .print_backspace_do_print + + .print_backspace_go_line_up: + # decrease row and set column to the last one + decb %dh + movb $(SCREEN_WIDTH - 1), %dl + + .print_backspace_do_print: + # set cursor position + movb $0x02, %ah + int $0x10 + + # print 'empty' character (space) + mov $' ', %al + call putc + + # set cursor position + movb $0x02, %ah + int $0x10 + + .print_backspace_done: + popw %dx + popw %cx + popw %bx + popw %ax + ret + +# print number to screen +# ax: number to print +# bx: number base +# cx: min width (zero pads if shorter) +.global print_number +print_number: + pusha + pushl %ebp + movl %esp, %ebp + + # save min width + subl $4, %esp + movw %cx, (%esp) + + movw $print_number_buffer, %si + xorw %cx, %cx + + .print_number_fill_loop: + # fill buffer with all remainders ax % bx + xorw %dx, %dx + divw %bx + movb %dl, (%si) + incw %si + incw %cx + testw %ax, %ax + jnz .print_number_fill_loop + + # check if zero pad is required + cmpw (%esp), %cx + jae .print_number_print_loop + + # dx: saved number count + # cx: zero pad count + movw %cx, %dx + movw (%esp), %cx + subw %dx, %cx + movb $'0', %al + + .print_number_pad_zeroes: + call putc + loop .print_number_pad_zeroes + + # restore number count + movw %dx, %cx + + .print_number_print_loop: + decw %si + movb (%si), %al + cmpb $10, %al + jae .print_number_hex + addb $'0', %al + jmp .print_number_do_print + .print_number_hex: + addb $('a' - 10), %al + .print_number_do_print: + call putc + loop .print_number_print_loop + + leavel + popa + ret + +# test if character is printable ascii +# al: character to test +# return: +# al: 1 if is printable, 0 otherwise +.global isprint +isprint: + subb $0x20, %al + cmpb $(0x7E - 0x20), %al + ja .isprint_not_printable + movb $1, %al + ret + .isprint_not_printable: + movb $0, %al + ret + +.section .bss + +# enough for base 2 printing +print_number_buffer: + .skip 16 From 8aab3a62cca0504e6381075e4d8e0be8144de286 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Tue, 14 Nov 2023 03:44:47 +0200 Subject: [PATCH 220/240] Bootloader: Build with cmake instead of custom script --- CMakeLists.txt | 1 + bootloader/CMakeLists.txt | 15 +++++++++++++++ bootloader/install.sh | 32 +++++++++++++------------------- script/build.sh | 1 + 4 files changed, 30 insertions(+), 19 deletions(-) create mode 100644 bootloader/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index ad304de9..e0e1dd2f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,6 +16,7 @@ set(BANAN_BIN ${BANAN_SYSROOT}/usr/bin) set(BANAN_BOOT ${BANAN_SYSROOT}/boot) add_subdirectory(kernel) +add_subdirectory(bootloader) add_subdirectory(BAN) add_subdirectory(libc) add_subdirectory(LibELF) diff --git a/bootloader/CMakeLists.txt b/bootloader/CMakeLists.txt new file mode 100644 index 00000000..d57c93f4 --- /dev/null +++ b/bootloader/CMakeLists.txt @@ -0,0 +1,15 @@ +cmake_minimum_required(VERSION 3.26) + +project(bootloader ASM) + +set(BOOTLOADER_SOURCES + boot.S + command_line.S + disk.S + memory_map.S + utils.S +) + +add_executable(bootloader ${BOOTLOADER_SOURCES}) +target_link_options(bootloader PUBLIC LINKER:-T,${CMAKE_CURRENT_SOURCE_DIR}/linker.ld) +target_link_options(bootloader PUBLIC -nostdlib) diff --git a/bootloader/install.sh b/bootloader/install.sh index a5436b0d..a0c6aeff 100755 --- a/bootloader/install.sh +++ b/bootloader/install.sh @@ -7,16 +7,22 @@ if [[ -z $BANAN_DISK_IMAGE_PATH ]]; then exit 1 fi +if [[ -z $BANAN_BUILD_DIR ]]; then + echo "You must set the BANAN_BUILD_DIR environment variable" >&2 + exit 1 +fi + ROOT_PARTITION_INDEX=2 ROOT_PARTITION_INFO=$(fdisk -x $BANAN_DISK_IMAGE_PATH | grep "^$BANAN_DISK_IMAGE_PATH" | head -$ROOT_PARTITION_INDEX | tail -1) ROOT_PARTITION_GUID=$(echo $ROOT_PARTITION_INFO | cut -d' ' -f6) -CURRENT_DIR=$(dirname $(realpath $0)) +INSTALLER_BUILD_DIR=$(dirname $(realpath $0))/installer/build +BOOTLOADER_ELF=$BANAN_BUILD_DIR/bootloader/bootloader -INSTALLER_DIR=$CURRENT_DIR/installer -INSTALLER_BUILD_DIR=$INSTALLER_DIR/build - -BUILD_DIR=$CURRENT_DIR/build +if ! [ -f $BOOTLOADER_ELF ]; then + echo "You must build the bootloader first" >&2 + exit 1 +fi if ! [ -d $INSTALLER_BUILD_DIR ]; then mkdir -p $INSTALLER_BUILD_DIR @@ -27,17 +33,5 @@ fi cd $INSTALLER_BUILD_DIR make -mkdir -p $BUILD_DIR - -echo compiling bootloader -x86_64-banan_os-as $CURRENT_DIR/boot.S -o $BUILD_DIR/boot.o -x86_64-banan_os-as $CURRENT_DIR/command_line.S -o $BUILD_DIR/command_line.o -x86_64-banan_os-as $CURRENT_DIR/disk.S -o $BUILD_DIR/disk.o -x86_64-banan_os-as $CURRENT_DIR/memory_map.S -o $BUILD_DIR/memory_map.o -x86_64-banan_os-as $CURRENT_DIR/utils.S -o $BUILD_DIR/utils.o - -echo linking bootloader -x86_64-banan_os-ld -nostdlib -T $CURRENT_DIR/linker.ld $BUILD_DIR/boot.o $BUILD_DIR/command_line.o $BUILD_DIR/disk.o $BUILD_DIR/memory_map.o $BUILD_DIR/utils.o -o $BUILD_DIR/bootloader - -echo installing bootloader to -$INSTALLER_BUILD_DIR/x86_64-banan_os-bootloader-installer $BUILD_DIR/bootloader $BANAN_DISK_IMAGE_PATH $ROOT_PARTITION_GUID +echo installing bootloader +$INSTALLER_BUILD_DIR/x86_64-banan_os-bootloader-installer $BOOTLOADER_ELF $BANAN_DISK_IMAGE_PATH $ROOT_PARTITION_GUID diff --git a/script/build.sh b/script/build.sh index d51bc084..4e8c98fe 100755 --- a/script/build.sh +++ b/script/build.sh @@ -99,6 +99,7 @@ case $1 in ;; bootloader) create_image + build_target bootloader $BANAN_ROOT_DIR/bootloader/install.sh $BANAN_SCRIPT_DIR/qemu.sh -serial stdio $QEMU_ACCEL ;; From a9412aa741ba03ef8b2792f50f47a4a484acd4cd Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Wed, 15 Nov 2023 16:36:53 +0200 Subject: [PATCH 221/240] Bootloader: Implement basic ext2 filesystem This can search for files in an ext2 filesystem. Only 12 blocks are currently supported. Now only ELF loading is missing for loading the actual kernel! --- bootloader/CMakeLists.txt | 1 + bootloader/boot.S | 7 + bootloader/disk.S | 32 ++- bootloader/ext2.S | 522 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 561 insertions(+), 1 deletion(-) create mode 100644 bootloader/ext2.S diff --git a/bootloader/CMakeLists.txt b/bootloader/CMakeLists.txt index d57c93f4..f2fbbaca 100644 --- a/bootloader/CMakeLists.txt +++ b/bootloader/CMakeLists.txt @@ -6,6 +6,7 @@ set(BOOTLOADER_SOURCES boot.S command_line.S disk.S + ext2.S memory_map.S utils.S ) diff --git a/bootloader/boot.S b/bootloader/boot.S index 51e7e19a..f99ede3b 100644 --- a/bootloader/boot.S +++ b/bootloader/boot.S @@ -67,6 +67,13 @@ stage2_main: call find_root_partition call print_root_partition_info + call print_newline + + call has_ext2_filesystem + testb %al, %al + jz print_and_halt + + call ext2_find_kernel jmp halt diff --git a/bootloader/disk.S b/bootloader/disk.S index c22f62bd..9ab1f60e 100644 --- a/bootloader/disk.S +++ b/bootloader/disk.S @@ -305,6 +305,10 @@ find_root_disk: # fills root_partition_entry data structure # NOTE: assumes GPT header is in `gpt_header` # NO REGISTERS SAVED +# return: +# dl: drive number +# ecx: sector count (capped at 0xFFFFFFFF) +# bx:eax: first sector .global find_root_partition find_root_partition: pushl %ebp @@ -385,7 +389,7 @@ find_root_partition: # increment 8 byte entry array lba incl 0(%esp) - jno .find_root_partition_no_overflow + jnc .find_root_partition_no_overflow incl 4(%esp) .find_root_partition_no_overflow: @@ -406,6 +410,32 @@ find_root_partition: movw $root_partition_found_msg, %si call puts; call print_newline + # ebx:eax := last lba + movl (root_partition_entry + 44), %ebx + movl (root_partition_entry + 40), %eax + + # ebx:eax -= first lba - 1 + subl (root_partition_entry + 36), %ebx + movl (root_partition_entry + 32), %ecx; + decl %ecx + subl %ecx, %eax + jnc .find_root_partition_count_sub_no_carry + decl %ebx + .find_root_partition_count_sub_no_carry: + + # ecx: min(partition count, 0xFFFFFFFF) + movl $0xFFFFFFFF, %edx + movl %eax, %ecx + testl %ebx, %ebx + cmovnzl %edx, %ecx + + # ebx:eax := first lba + # FIXME: confirm ebx bits 16:31 are zero + movl (root_partition_entry + 36), %ebx + movl (root_partition_entry + 32), %eax + + movb (root_disk_drive_number), %dl + leavel ret diff --git a/bootloader/ext2.S b/bootloader/ext2.S new file mode 100644 index 00000000..eaecac28 --- /dev/null +++ b/bootloader/ext2.S @@ -0,0 +1,522 @@ +# FIXME: don't assume 512 byte sectors +.set SECTOR_SHIFT, 9 +.set SECTOR_SIZE, 1 << SECTOR_SHIFT + +# FIXME: don't assume 1024 byte blocks +.set EXT2_BLOCK_SHIFT, 10 +.set EXT2_BLOCK_SIZE, 1 << EXT2_BLOCK_SHIFT +.set EXT2_SUPERBLOCK_SIZE, 264 +.set EXT2_BGD_SHIFT, 5 +.set EXT2_BGD_SIZE, 1 << EXT2_BGD_SHIFT +.set EXT2_INODE_SIZE_MAX, 256 +.set EXT2_ROOT_INO, 2 +.set EXT2_GOOD_OLD_REV, 0 + +# inode types +.set EXT2_S_IMASK, 0xF000 +.set EXT2_S_IFDIR, 0x4000 +.set EXT2_S_IFREG, 0x8000 + +# superblock offsets +.set s_log_block_size, 24 +.set s_inodes_per_group, 40 +.set s_magic, 56 +.set s_rev_level, 76 +.set s_inode_size, 88 + +# block group descriptor offsets +.set bg_inode_table, 8 + +# inode offsets +.set i_mode, 0 +.set i_size, 4 +.set i_block, 40 + + +.code16 +.section .stage2 + +# checks whether partition contains ext2 filesystem. +# fills ext2_superblock_buffer +# dl: drive number +# ecx: sector count +# bx:eax: first sector +# return: +# al: 1 if is ext2, 0 otherwise +# si: error message on error +.global has_ext2_filesystem +has_ext2_filesystem: + pushl %ecx + pushw %bx + pushw %di + + # fill ext2_partition_first_sector + movw $0, (ext2_partition_first_sector + 6) + movw %bx, (ext2_partition_first_sector + 4) + movl %eax, (ext2_partition_first_sector + 0) + + # fill ext2_drive_number + movb %dl, (ext2_drive_number) + + cmpl $3, %ecx + jb .has_ext2_filesystem_does_not_fit + + # one sector + movw $1, %cx + + # from byte offset 1024 + addl $(1024 / SECTOR_SIZE), %eax + jnc .has_ext2_filesystem_no_overflow + incw %bx + .has_ext2_filesystem_no_overflow: + + # into sector buffer + movw $ext2_block_buffer, %di + + call read_from_disk + + # copy superblock to its buffer + movw $ext2_block_buffer, %si + movw $ext2_superblock_buffer, %di + movw $EXT2_SUPERBLOCK_SIZE, %cx + rep movsb + + # verify magic + cmpw $0xEF53, (ext2_superblock_buffer + s_magic) + jne .has_ext2_filesystem_invalid_magic + + # verify block size + # verify shift fits in one byte + movl (ext2_superblock_buffer + s_log_block_size), %ecx + testl $0xFFFFFF00, %ecx + jnz .has_ext2_filesystem_unsupported_block_size + # verify 1024 << s_log_block_size == EXT2_BLOCK_SIZE + movl $1024, %eax + shll %cl, %eax + cmpl $EXT2_BLOCK_SIZE, %eax + jne .has_ext2_filesystem_unsupported_block_size + + # fill inode size + movl $128, %eax + cmpl $EXT2_GOOD_OLD_REV, (ext2_superblock_buffer + s_rev_level) + cmovnel (ext2_superblock_buffer + s_inode_size), %eax + movl %eax, (ext2_inode_size) + + movb $1, %al + jmp .has_ext2_filesystem_done + + .has_ext2_filesystem_does_not_fit: + movw $root_partition_does_not_fit_ext2_filesystem_msg, %si + movb $0, %al + jmp .has_ext2_filesystem_done + + .has_ext2_filesystem_invalid_magic: + movw $root_partition_has_invalid_ext2_magic_msg, %si + movb $0, %al + jmp .has_ext2_filesystem_done + + .has_ext2_filesystem_unsupported_block_size: + movw $root_partition_has_unsupported_ext2_block_size_msg, %si + movb $0, %al + jmp .has_ext2_filesystem_done + + .has_ext2_filesystem_done: + popw %di + popw %bx + popl %ecx + ret + + +# reads block in to ext2_block_buffer +# eax: block number +ext2_read_block: + pushl %eax + pushl %ebx + pushw %cx + pushl %edx + pushw %di + + # NOTE: this assumes 1024 block size + # eax := (block * block_size) / sector_size := (eax << EXT2_BLOCK_SHIFT) >> SECTOR_SHIFT + xorl %edx, %edx + shll $EXT2_BLOCK_SHIFT, %eax + shrl $SECTOR_SHIFT, %eax + + # ebx:eax := eax + (ext2_partition_first_sector) + movl (ext2_partition_first_sector + 4), %ebx + addl (ext2_partition_first_sector + 0), %eax + jnc .ext2_read_block_no_carry + incl %ebx + .ext2_read_block_no_carry: + + # sectors per block + movw $(EXT2_BLOCK_SIZE / SECTOR_SIZE), %cx + + movw $ext2_block_buffer, %di + + movb (ext2_drive_number), %dl + call read_from_disk + + popw %di + popl %edx + popw %cx + popl %ebx + popl %eax + ret + + +# reads block group descrtiptor into ext2_block_group_descriptor +# eax: block group +ext2_read_block_group_descriptor: + pushal + + # eax := bgd_byte_offset := 2048 + EXT2_BGD_SIZE * eax := (eax << EXT2_BGD_SHIFT) + 2048 + shll $EXT2_BGD_SHIFT, %eax + addl $2048, %eax + + # eax: bgd_block := bgd_byte_offset / EXT2_BLOCK_SIZE + # ebx: bgd_offset := bgd_byte_offset % EXT2_BLOCK_SIZE + xorl %edx, %edx + movl $EXT2_BLOCK_SIZE, %ebx + divl %ebx + movl %edx, %ebx + + call ext2_read_block + + # esi := &ext2_block_buffer + bgd_offset := ebx + &ext2_block_buffer + # edi := &ext2_block_group_descriptor_buffer + movl %ebx, %esi + addl $ext2_block_buffer, %esi + movl $ext2_block_group_descriptor_buffer, %edi + movw $EXT2_BGD_SIZE, %cx + rep movsb + + popal + ret + + +# reads inode into ext2_inode_buffer +# eax: ino +ext2_read_inode: + pushal + + # eax := block_group = (ino - 1) / s_inodes_per_group + # ebx := inode_index = (ino - 1) % s_inodes_per_group + xorl %edx, %edx + decl %eax + movl (ext2_superblock_buffer + s_inodes_per_group), %ebx + divl %ebx + movl %edx, %ebx + + call ext2_read_block_group_descriptor + + # eax := inode_table_block := (inode_index * inode_size) / EXT2_BLOCK_SIZE + # ebx := inode_table_offset := (inode_index * inode_size) % EXT2_BLOCK_SIZE + xorl %edx, %edx + movl %ebx, %eax + movl (ext2_inode_size), %ebx + mull %ebx + movl $EXT2_BLOCK_SIZE, %ebx + divl %ebx + movl %edx, %ebx + + # eax := file system block := eax + bg_inode_table + addl (ext2_block_group_descriptor_buffer + bg_inode_table), %eax + + movb (ext2_drive_number), %dl + call ext2_read_block + + # copy inode memory + # esi := inode_table_offset + ext2_block_buffer := edx + ext2_block_buffer + movl %ebx, %esi + addl $ext2_block_buffer, %esi + # edi := ext2_inode_buffer + movl $ext2_inode_buffer, %edi + # cx := inode_size + movw (ext2_inode_size), %cx + rep movsb + + popal + ret + + +# gets block index from n'th data block in inode stored in ext2_inode_buffer +# eax: data block index +# return: +# eax: block index +ext2_data_block_index: + pushl %ecx + + # calculate max data blocks + movl (ext2_inode_buffer + i_size), %ecx + addl (ext2_inode_size), %ecx + decl %ecx + shll $EXT2_BLOCK_SHIFT, %ecx + + # verify data block is within bounds + cmpl %ecx, %eax + jae .ext2_data_block_index_out_of_bounds + + # check if this is direct block access + cmpl $12, %eax + jb .ext2_data_block_index_direct + + jmp .ext2_data_block_index_unsupported + + .ext2_data_block_index_direct: + movl $(ext2_inode_buffer + i_block), %ecx + addl %eax, %ecx + movl (%ecx), %eax + jmp .ext2_data_block_index_done + + .ext2_data_block_index_out_of_bounds: + movw $ext2_data_block_index_out_of_bounds_msg, %si + call puts; call print_newline + movl $0, %eax + jmp .ext2_data_block_index_done + + .ext2_data_block_index_unsupported: + movw $ext2_data_block_index_unsupported_msg, %si + call puts; call print_newline + movl $0, %eax + jmp .ext2_data_block_index_done + + .ext2_data_block_index_done: + popl %ecx + ret + + +# find inode in inside directory inode stored in ext2_inode_buffer +# store the found inode in ext2_inode_buffer +# si: name string +# cx: name length +# return: +# eax: ino if inode was found, 0 otherwise +ext2_directory_find_inode: + pushl %ebx + pushw %cx + pushw %dx + pushw %si + pushw %di + + pushl %ebp + movl %esp, %ebp + subl $8, %esp + + # 0(%esp) := name length + movw %cx, 0(%esp) + + # 2(%esp) := name string + movw %si, 2(%esp) + + # verify that the name is <= 0xFF bytes + cmpw $0xFF, %cx + ja .ext2_directory_find_inode_not_found + + # ebx := max data blocks: ceil(i_size / EXT2_BLOCK_SIZE) + movl (ext2_inode_buffer + i_size), %ebx + addl $EXT2_BLOCK_SHIFT, %ebx + decl %ebx + shrl $EXT2_BLOCK_SHIFT, %ebx + jz .ext2_directory_find_inode_not_found + + # 4(%esp) := current block + movl $0, 4(%esp) + + .ext2_directory_find_inode_block_read_loop: + # get next block index + movl 4(%esp), %eax + call ext2_data_block_index + test %eax, %eax + jz .ext2_directory_find_inode_next_block + + # read current block + call ext2_read_block + + # dx := current entry pointer + movw $ext2_block_buffer, %si + + .ext2_directory_find_inode_loop_entries: + # temporarily store entry pointer in dx + movw %si, %dx + + # check if name length matches + # cx := name length + movw 0(%esp), %cx + cmpb 6(%si), %cl + jne .ext2_directory_find_inode_next_entry + + # si := entry name + addw $8, %si + + # di := asked name + movw 2(%esp), %di + + # check if name matches + call memcmp + test %al, %al + # NOTE: dx contains entry pointer + jnz .ext2_directory_find_inode_found + + .ext2_directory_find_inode_next_entry: + # restore si + movw %dx, %si + + # go to next entry if this block contains one + addw 4(%si), %si + cmpw $(ext2_block_buffer + EXT2_BLOCK_SIZE), %si + jb .ext2_directory_find_inode_loop_entries + + .ext2_directory_find_inode_next_block: + incl 4(%esp) + cmpl %ebx, 4(%esp) + jb .ext2_directory_find_inode_block_read_loop + + .ext2_directory_find_inode_not_found: + movb $0, %al + jmp .ext2_directory_find_inode_done + + .ext2_directory_find_inode_found: + # extract ino and read it to ext2_inode_buffer + movw %dx, %si + movl 0(%si), %eax + call ext2_read_inode + + .ext2_directory_find_inode_done: + leavel + popw %di + popw %si + popw %dx + popw %cx + popl %ebx + ret + + +# search for kernel file from filesystem +.global ext2_find_kernel +ext2_find_kernel: + movl $EXT2_ROOT_INO, %eax + call ext2_read_inode + + movw $kernel_path, %di + .ext2_find_kernel_loop: + movw (%di), %si + + # check if this list is done + testw %si, %si + jz .ext2_find_kernel_loop_done + + # check that current part is directory + movw (ext2_inode_buffer + i_mode), %ax + andw $EXT2_S_IMASK, %ax + cmpw $EXT2_S_IFDIR, %ax + jne .ext2_find_kernel_part_not_dir + + # prepare registers for directory finding + movw 0(%si), %cx + addw $2, %si + + # print search path + pushw %si + movw $ext2_looking_for_msg, %si + call puts + popw %si + call puts; call print_newline + + # search current directory for this file + call ext2_directory_find_inode + testl %eax, %eax + jz .ext2_find_kernel_part_not_found + + # loop to next part + addw $2, %di + jmp .ext2_find_kernel_loop + + .ext2_find_kernel_loop_done: + + # check that kernel is a regular file + movw (ext2_inode_buffer + i_mode), %ax + andw $EXT2_S_IMASK, %ax + cmpw $EXT2_S_IFREG, %ax + jne .ext2_find_kernel_not_reg + + movw $ext2_kernel_found_msg, %si + call puts; call print_newline + + 1: jmp 1b + + ret + + .ext2_find_kernel_part_not_dir: + movw $ext2_part_not_dir_msg, %si + jmp print_and_halt + + .ext2_find_kernel_part_not_found: + movw $ext2_part_not_found_msg, %si + jmp print_and_halt + + .ext2_find_kernel_not_reg: + movw $ext2_kernel_not_reg_msg, %si + jmp print_and_halt + + +kernel_path: + .short kernel_path1 + .short kernel_path2 + .short 0 +kernel_path1: + .short 4 + .asciz "boot" +kernel_path2: + .short 15 + .asciz "banan-os.kernel" + + +root_partition_does_not_fit_ext2_filesystem_msg: + .asciz "Root partition is too small to contain ext2 filesystem" +root_partition_has_invalid_ext2_magic_msg: + .asciz "Root partition doesn't contain ext2 magic number" +root_partition_has_unsupported_ext2_block_size_msg: + .asciz "Root partition has unsupported ext2 block size (only 1024 supported)" + +ext2_part_not_dir_msg: + .asciz "inode in root path is not directory" +ext2_part_not_found_msg: + .asciz " not found" +ext2_kernel_not_reg_msg: + .asciz "kernel is not a regular file" +ext2_kernel_found_msg: + .asciz "kernel found!" + +ext2_data_block_index_out_of_bounds_msg: + .asciz "data block index out of bounds" +ext2_data_block_index_unsupported_msg: + .asciz "unsupported data block index" + +ext2_looking_for_msg: + .asciz "looking for " + +.section .bss + +ext2_block_buffer: + .skip EXT2_BLOCK_SIZE + +ext2_partition_first_sector: + .skip 8 + +ext2_drive_number: + .skip 1 + .skip 3 # padding + +# NOTE: fits in 2 bytes +ext2_inode_size: + .skip 4 + +ext2_superblock_buffer: + .skip EXT2_SUPERBLOCK_SIZE + +ext2_block_group_descriptor_buffer: + .skip EXT2_BGD_SIZE + +ext2_inode_buffer: + .skip EXT2_INODE_SIZE_MAX From aa7a8124ce485ce1ec82a77c2a29af27803b2289 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Thu, 16 Nov 2023 13:30:01 +0200 Subject: [PATCH 222/240] Bootloader: Add helpers for printing n bit hexadecimal numbers --- bootloader/utils.S | 62 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/bootloader/utils.S b/bootloader/utils.S index 5938fbad..95f30249 100644 --- a/bootloader/utils.S +++ b/bootloader/utils.S @@ -196,6 +196,68 @@ print_number: popa ret +# prints 8 bit hexadecimal number to screen +# al: number to print +.global print_hex8 +print_hex8: + pushw %ax + pushw %bx + pushw %cx + + movw $16, %bx + movw $2, %cx + andw $0xFF, %ax + call print_number + + popw %cx + popw %bx + popw %ax + ret + +# prints 16 bit hexadecimal number to screen +# ax: number to print +.global print_hex16 +print_hex16: + pushw %bx + pushw %cx + + movw $16, %bx + movw $4, %cx + call print_number + + popw %cx + popw %bx + ret + +# prints 32 bit hexadecimal number to screen +# eax: number to print +.global print_hex32 +print_hex32: + pushl %eax + pushw %dx + + movw %ax, %dx + + shrl $16, %eax; + call print_hex16 + + movw %dx, %ax + call print_hex16 + + popw %dx + popl %eax + ret + +# prints 64 bit hexadecimal number to screen +# edx:eax: number to print +.global print_hex64 +print_hex64: + xchgl %eax, %edx + call print_hex32 + xchgl %eax, %edx + call print_hex32 + ret + # test if character is printable ascii # al: character to test # return: From 6f9b3ab5decfeb96b8daa62bedd5c649f5f7b61e Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Thu, 16 Nov 2023 13:32:21 +0200 Subject: [PATCH 223/240] Bootloader: add support for indirect inode blocks --- bootloader/ext2.S | 100 +++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 90 insertions(+), 10 deletions(-) diff --git a/bootloader/ext2.S b/bootloader/ext2.S index eaecac28..9d10deca 100644 --- a/bootloader/ext2.S +++ b/bootloader/ext2.S @@ -245,7 +245,10 @@ ext2_read_inode: # return: # eax: block index ext2_data_block_index: + pushl %ebx pushl %ecx + pushl %edx + pushl %esi # calculate max data blocks movl (ext2_inode_buffer + i_size), %ecx @@ -260,13 +263,87 @@ ext2_data_block_index: # check if this is direct block access cmpl $12, %eax jb .ext2_data_block_index_direct + subl $12, %eax - jmp .ext2_data_block_index_unsupported + # check if this is singly indirect block access + cmpl $(EXT2_BLOCK_SIZE / 4), %eax + jb .ext2_data_block_index_singly_indirect + subl $(EXT2_BLOCK_SIZE / 4), %eax + + # check if this is doubly indirect block access + cmpl $((EXT2_BLOCK_SIZE / 4) * (EXT2_BLOCK_SIZE / 4)), %eax + jb .ext2_data_block_index_doubly_indirect + subl $((EXT2_BLOCK_SIZE / 4) * (EXT2_BLOCK_SIZE / 4)), %eax + + # check if this is triply indirect block access + cmpl $((EXT2_BLOCK_SIZE / 4) * (EXT2_BLOCK_SIZE / 4) * (EXT2_BLOCK_SIZE / 4)), %eax + jb .ext2_data_block_index_triply_indirect + + # otherwise this is invalid access + jmp .ext2_data_block_index_invalid .ext2_data_block_index_direct: - movl $(ext2_inode_buffer + i_block), %ecx - addl %eax, %ecx - movl (%ecx), %eax + movl $(ext2_inode_buffer + i_block), %esi + movl (%esi, %eax, 4), %eax + jmp .ext2_data_block_index_done + + .ext2_data_block_index_singly_indirect: + movl %eax, %ebx + movl (ext2_inode_buffer + i_block + 12 * 4), %eax + movw $1, %cx + jmp .ext2_data_block_index_indirect + + .ext2_data_block_index_doubly_indirect: + movl %eax, %ebx + movl (ext2_inode_buffer + i_block + 13 * 4), %eax + movw $2, %cx + jmp .ext2_data_block_index_indirect + + .ext2_data_block_index_triply_indirect: + movl %eax, %ebx + movl (ext2_inode_buffer + i_block + 14 * 4), %eax + movw $3, %cx + jmp .ext2_data_block_index_indirect + + # eax := current block + # ebx := index + # cx := depth + .ext2_data_block_index_indirect: + call ext2_read_block + + # store depth and index + pushw %cx + pushl %ebx + + cmpw $1, %cx + jbe .ext2_data_block_index_no_shift + + # cl := shift + movb $(EXT2_BLOCK_SHIFT - 2), %al + decb %cl + mulb %cl + movb %al, %cl + + # ebx := ebx >> cl + shrl %cl, %ebx + + .ext2_data_block_index_no_shift: + # edx := index of next block + movl %ebx, %eax + xorl %edx, %edx + movl $(EXT2_BLOCK_SIZE / 4), %ebx + divl %ebx + + # eax := next block + movl $ext2_block_buffer, %esi + movl (%esi, %edx, 4), %eax + + # restore depth and index + popl %ebx + popw %cx + + loop .ext2_data_block_index_indirect + jmp .ext2_data_block_index_done .ext2_data_block_index_out_of_bounds: @@ -275,14 +352,17 @@ ext2_data_block_index: movl $0, %eax jmp .ext2_data_block_index_done - .ext2_data_block_index_unsupported: - movw $ext2_data_block_index_unsupported_msg, %si + .ext2_data_block_index_invalid: + movw $ext2_data_block_index_invalid_msg, %si call puts; call print_newline movl $0, %eax jmp .ext2_data_block_index_done .ext2_data_block_index_done: + popl %esi + popl %edx popl %ecx + popl %ebx ret @@ -332,7 +412,7 @@ ext2_directory_find_inode: # read current block call ext2_read_block - + # dx := current entry pointer movw $ext2_block_buffer, %si @@ -422,7 +502,7 @@ ext2_find_kernel: call puts popw %si call puts; call print_newline - + # search current directory for this file call ext2_directory_find_inode testl %eax, %eax @@ -490,8 +570,8 @@ ext2_kernel_found_msg: ext2_data_block_index_out_of_bounds_msg: .asciz "data block index out of bounds" -ext2_data_block_index_unsupported_msg: - .asciz "unsupported data block index" +ext2_data_block_index_invalid_msg: + .asciz "data block index is invalid" ext2_looking_for_msg: .asciz "looking for " From 8b4f169d0f662da3e5c19a1f35451205e569347a Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Thu, 16 Nov 2023 20:35:12 +0200 Subject: [PATCH 224/240] Bootloader: implement reading from inode --- bootloader/ext2.S | 97 +++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 93 insertions(+), 4 deletions(-) diff --git a/bootloader/ext2.S b/bootloader/ext2.S index 9d10deca..365726d4 100644 --- a/bootloader/ext2.S +++ b/bootloader/ext2.S @@ -232,8 +232,8 @@ ext2_read_inode: addl $ext2_block_buffer, %esi # edi := ext2_inode_buffer movl $ext2_inode_buffer, %edi - # cx := inode_size - movw (ext2_inode_size), %cx + # ecx := inode_size + movl (ext2_inode_size), %ecx rep movsb popal @@ -366,6 +366,87 @@ ext2_data_block_index: ret +# read bytes from inode (implements read callback) +# eax: first byte +# ecx: byte count +# edi: buffer +# returns only on success +.global ext2_inode_read_bytes +ext2_inode_read_bytes: + pushal + pushl %ebp + movl %esp, %ebp + subl $8, %esp + + # save read info + movl %eax, 0(%esp) + movl %ecx, 4(%esp) + + # check if eax % EXT2_BLOCK_SIZE != 0, + # then we need to read a partial block starting from an offset + xorl %edx, %edx + movl $EXT2_BLOCK_SIZE, %ebx + divl %ebx + testl %edx, %edx + jz .ext2_inode_read_bytes_no_partial_start + + # get data block index and read block + call ext2_data_block_index + call ext2_read_block + + # ecx := byte count (min(block_size - edx, remaining_bytes)) + movl $EXT2_BLOCK_SIZE, %ecx + subl %edx, %ecx + cmpl %ecx, 4(%esp) + cmovbl 4(%esp), %ecx + + # update remaining read info + addl %ecx, 0(%esp) + subl %ecx, 4(%esp) + + # esi := start sector data (block_buffer + index * SECTOR_SIZE) + movl $ext2_block_buffer, %esi + addl %edx, %esi + + # copy partial block to destination buffer + rep movsb # not sure if this uses (si or esi) and (di or edi) + + # check if all sectors are read + cmpl $0, 4(%esp) + je .ext2_inode_read_bytes_done + + .ext2_inode_read_bytes_no_partial_start: + # eax := data block index (byte_start / block_size) + movl 0(%esp), %eax + shrl $(EXT2_BLOCK_SHIFT), %eax + + # get data block index and read block + call ext2_data_block_index + call ext2_read_block + + # calculate bytes to copy (min(block_size, remaining_bytes)) + movl $EXT2_BLOCK_SIZE, %ecx + cmpl %ecx, 4(%esp) + cmovbl 4(%esp), %ecx + + # update remaining read info + addl %ecx, 0(%esp) + subl %ecx, 4(%esp) + + # copy bytes from block into destination + movl $ext2_block_buffer, %esi + rep movsb # not sure if this uses (si or esi) and (di or edi) + + # read next block if more sectors remaining + cmpl $0, 4(%esp) + jnz .ext2_inode_read_bytes_no_partial_start + + .ext2_inode_read_bytes_done: + leavel + popal + ret + + # find inode in inside directory inode stored in ext2_inode_buffer # store the found inode in ext2_inode_buffer # si: name string @@ -473,8 +554,14 @@ ext2_directory_find_inode: # search for kernel file from filesystem +# returns only on success .global ext2_find_kernel ext2_find_kernel: + pushl %eax + pushw %cx + pushw %di + pushw %si + movl $EXT2_ROOT_INO, %eax call ext2_read_inode @@ -523,8 +610,10 @@ ext2_find_kernel: movw $ext2_kernel_found_msg, %si call puts; call print_newline - 1: jmp 1b - + popw %si + popw %di + popw %cx + popl %eax ret .ext2_find_kernel_part_not_dir: From 407a7b80c5624edd3baf87b285094dfc656c2494 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Fri, 17 Nov 2023 12:12:37 +0200 Subject: [PATCH 225/240] Bootloader: Fix getting command line --- bootloader/command_line.S | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bootloader/command_line.S b/bootloader/command_line.S index cec0a5a7..964790c8 100644 --- a/bootloader/command_line.S +++ b/bootloader/command_line.S @@ -23,9 +23,13 @@ read_user_command_line: cmpb $'\n', %al je .read_user_command_line_done + pushw %ax + call isprint testb %al, %al - jnz .read_user_command_line_loop + jz .read_user_command_line_loop + + popw %ax # put byte to buffer movb %al, (%di) From 03b80ed1134eac4a2cdb803b96492a857197f394 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Fri, 17 Nov 2023 14:22:21 +0200 Subject: [PATCH 226/240] Bootloader enter unreal mode at the start of stage2 --- bootloader/boot.S | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/bootloader/boot.S b/bootloader/boot.S index f99ede3b..524687d4 100644 --- a/bootloader/boot.S +++ b/bootloader/boot.S @@ -53,6 +53,10 @@ stage2_main: movw $hello_msg, %si call puts; call print_newline + call enter_unreal_mode + movw $unreal_enter_msg, %si + call puts; call print_newline + call get_memory_map call read_user_command_line @@ -77,8 +81,45 @@ stage2_main: jmp halt + +enter_unreal_mode: + cli + pushw %ds + + lgdt gdtr + + movl %cr0, %eax + orb $1, %al + movl %eax, %cr0 + ljmpl $0x8, $.enter_unreal_mode_pmode + + .enter_unreal_mode_pmode: + movw $0x10, %bx + movw %bx, %ds + + andb 0xFE, %al + movl %eax, %cr0 + ljmpl $0x0, $.enter_unreal_mode_unreal + + .enter_unreal_mode_unreal: + popw %ds + sti + + ret + hello_msg: .asciz "This is banan-os bootloader" +unreal_enter_msg: + .asciz "Entered unreal mode" + start_kernel_load_msg: .asciz "Starting to load kernel" + +gdt: + .quad 0x0000000000000000 + .quad 0x00009A000000FFFF + .quad 0x00CF92000000FFFF +gdtr: + .short . - gdt - 1 + .quad gdt From 07ae1bbf34e3c1c85a3df36eafbe011a1d6868c1 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Fri, 17 Nov 2023 16:36:29 +0200 Subject: [PATCH 227/240] Bootloader: Load kernel to memory and jump to it! --- bootloader/CMakeLists.txt | 1 + bootloader/boot.S | 28 ++++- bootloader/elf.S | 221 ++++++++++++++++++++++++++++++++++++++ bootloader/ext2.S | 20 +++- 4 files changed, 265 insertions(+), 5 deletions(-) create mode 100644 bootloader/elf.S diff --git a/bootloader/CMakeLists.txt b/bootloader/CMakeLists.txt index f2fbbaca..fb83c945 100644 --- a/bootloader/CMakeLists.txt +++ b/bootloader/CMakeLists.txt @@ -6,6 +6,7 @@ set(BOOTLOADER_SOURCES boot.S command_line.S disk.S + elf.S ext2.S memory_map.S utils.S diff --git a/bootloader/boot.S b/bootloader/boot.S index 524687d4..4e12bbde 100644 --- a/bootloader/boot.S +++ b/bootloader/boot.S @@ -78,10 +78,35 @@ stage2_main: jz print_and_halt call ext2_find_kernel + movl $ext2_inode_read_bytes, %esi - jmp halt + call elf_read_kernel_to_memory + + cli + # setup protected mode + movl %cr0, %ebx + orb $1, %bl + movl %ebx, %cr0 + + + # jump to kernel in protected mode + ljmpl $0x18, $protected_mode + + +.code32 +protected_mode: + movw $0x10, %bx + movw %bx, %ds + movw %bx, %es + movw %bx, %fs + movw %bx, %gs + movw %bx, %ss + jmp *%eax + + +.code16 enter_unreal_mode: cli pushw %ds @@ -120,6 +145,7 @@ gdt: .quad 0x0000000000000000 .quad 0x00009A000000FFFF .quad 0x00CF92000000FFFF + .quad 0x00CF9A000000FFFF gdtr: .short . - gdt - 1 .quad gdt diff --git a/bootloader/elf.S b/bootloader/elf.S new file mode 100644 index 00000000..059c4581 --- /dev/null +++ b/bootloader/elf.S @@ -0,0 +1,221 @@ +.set SECTOR_SIZE, 512 + +# file header field offsets +.set e_type, 16 +.set e_machine, 18 +.set e_version, 20 +.set e_entry, 24 +.set e_phoff, 32 +.set e_shoff, 40 +.set e_flags, 48 +.set e_ehsize, 52 +.set e_phentsize, 54 +.set e_phnum, 56 +.set e_shentsize, 58 +.set e_shnum, 60 +.set e_shstrndx, 62 + +# e_ident offsets +.set EI_CLASS, 4 +.set EI_DATA, 5 +.set EI_VERSION, 6 + +# e_ident constants +.set ELFMAGIC, 0x464C457F +.set ELFCLASS64, 2 +.set ELFDATA2LSB, 1 +.set EV_CURRENT, 1 + +# e_type constants +.set ET_EXEC, 2 + +# program header field offsets +.set p_type, 0 +.set p_flags, 4 +.set p_offset, 8 +.set p_vaddr, 16 +.set p_paddr, 24 +.set p_filesz, 32 +.set p_memsz, 40 +.set p_align, 48 + +# p_type constants +.set PT_NULL, 0 +.set PT_LOAD, 1 + +.code16 +.section .stage2 + +# Validate file header stored in elf_file_header +# returns only on success +elf_validate_file_header: + cmpl $ELFMAGIC, (elf_file_header) + jne .elf_validate_file_header_invalid_magic + + cmpb $ELFCLASS64, (elf_file_header + EI_CLASS) + jne .elf_validate_file_header_only_64bit_supported + + cmpb $ELFDATA2LSB, (elf_file_header + EI_DATA) + jne .elf_validate_file_header_only_little_endian_supported + + cmpb $EV_CURRENT, (elf_file_header + EI_VERSION) + jne .elf_validate_file_header_not_current_version + + cmpl $EV_CURRENT, (elf_file_header + e_version) + jne .elf_validate_file_header_not_current_version + + cmpw $ET_EXEC, (elf_file_header + e_type) + jne .elf_validate_file_header_not_executable + + ret + + .elf_validate_file_header_invalid_magic: + movw $elf_validate_file_header_invalid_magic_msg, %si + jmp print_and_halt + .elf_validate_file_header_only_64bit_supported: + movw $elf_validate_file_header_only_64bit_supported_msg, %si + jmp print_and_halt + .elf_validate_file_header_only_little_endian_supported: + movw $elf_validate_file_header_only_little_endian_supported_msg, %si + jmp print_and_halt + .elf_validate_file_header_not_current_version: + movw $elf_validate_file_header_not_current_version_msg, %si + jmp print_and_halt + .elf_validate_file_header_not_executable: + movw $elf_validate_file_header_not_executable_msg, %si + jmp print_and_halt + + +# read callback format +# eax: first byte +# ecx: byte count +# edi: buffer +# returns only on success + + +# reads kernel to memory +# esi: callback for reading from kernel image +# return: +# eax: kernel entry address +.global elf_read_kernel_to_memory +elf_read_kernel_to_memory: + pushal + pushl %ebp + movl %esp, %ebp + subl $2, %esp + + # read file header + movl $0, %eax + movl $64, %ecx + movl $elf_file_header, %edi + call *%esi + + call elf_validate_file_header + + cmpl $0, (elf_file_header + e_phoff + 4) + jnz .elf_read_kernel_to_memory_unsupported_offset + + # current program header + movw $0, -2(%ebp) + + .elf_read_kernel_to_memory_loop_program_headers: + movw -2(%ebp), %cx + cmpw (elf_file_header + e_phnum), %cx + jae .elf_read_kernel_to_memory_done + + # eax := program_header_index * e_phentsize + e_phoff + xorl %eax, %eax + movw %cx, %ax + xorl %ebx, %ebx + movw (elf_file_header + e_phentsize), %bx + mull %ebx + addl (elf_file_header + e_phoff), %eax + jc .elf_read_kernel_to_memory_unsupported_offset + + # setup program header size and address + movl $56, %ecx + movl $elf_program_header, %edi + + # read the program header + call *%esi + + # test if program header is empty + cmpl $PT_NULL, (elf_program_header + p_type) + je .elf_read_kernel_to_memory_null_program_header + + # confirm that the program header is loadable + cmpl $PT_LOAD, (elf_program_header + p_type) + jne .elf_read_kernel_to_memory_not_loadable_header + + # memset p_filesz -> p_memsz to 0 + movl (elf_program_header + p_filesz), %ebx + + movl (elf_program_header + p_vaddr), %edi + andl $0x7FFFFFFF, %edi + addl %ebx, %edi + + movl (elf_program_header + p_memsz), %ecx + subl %ebx, %ecx + jz .elf_read_kernel_to_memory_no_memset + + .elf_read_kernel_to_memory_memset: + movb $0, (%edi) + decl %ecx + jnz .elf_read_kernel_to_memory_memset + .elf_read_kernel_to_memory_no_memset: + + # read file specified in program header to memory + movl (elf_program_header + p_offset), %eax + movl (elf_program_header + p_vaddr), %edi + andl $0x7FFFFFFF, %edi + movl (elf_program_header + p_filesz), %ecx + + call print_hex32; call print_newline + + call *%esi + + .elf_read_kernel_to_memory_null_program_header: + incw -2(%ebp) + jmp .elf_read_kernel_to_memory_loop_program_headers + + .elf_read_kernel_to_memory_done: + leavel + popal + + # set kernel entry address + movl (elf_file_header + e_entry), %eax + andl $0x7FFFFF, %eax + + ret + + .elf_read_kernel_to_memory_unsupported_offset: + movw $elf_read_kernel_to_memory_unsupported_offset_msg, %si + jmp print_and_halt + .elf_read_kernel_to_memory_not_loadable_header: + movw $elf_read_kernel_to_memory_not_loadable_header_msg, %si + jmp print_and_halt + + +elf_validate_file_header_invalid_magic_msg: + .asciz "ELF: file has invalid ELF magic" +elf_validate_file_header_only_64bit_supported_msg: + .asciz "ELF: file is not targettint 64 bit" +elf_validate_file_header_only_little_endian_supported_msg: + .asciz "ELF: file is not in little endian format" +elf_validate_file_header_not_current_version_msg: + .asciz "ELF: file is not in current ELF version" +elf_validate_file_header_not_executable_msg: + .asciz "ELF: file is not an executable" + +elf_read_kernel_to_memory_unsupported_offset_msg: + .asciz "ELF: unsupported offset (only 32 bit offsets supported)" +elf_read_kernel_to_memory_not_loadable_header_msg: + .asciz "ELF: kernel contains non-loadable program header" + +.section .bss + +elf_file_header: + .skip 64 + +elf_program_header: + .skip 56 diff --git a/bootloader/ext2.S b/bootloader/ext2.S index 365726d4..6937f266 100644 --- a/bootloader/ext2.S +++ b/bootloader/ext2.S @@ -408,8 +408,14 @@ ext2_inode_read_bytes: movl $ext2_block_buffer, %esi addl %edx, %esi - # copy partial block to destination buffer - rep movsb # not sure if this uses (si or esi) and (di or edi) + # very dumb memcpy with 32 bit addresses + .ext2_inode_read_bytes_memcpy_partial: + movb (%esi), %al + movb %al, (%edi) + incl %esi + incl %edi + decl %ecx + jnz .ext2_inode_read_bytes_memcpy_partial # check if all sectors are read cmpl $0, 4(%esp) @@ -433,9 +439,15 @@ ext2_inode_read_bytes: addl %ecx, 0(%esp) subl %ecx, 4(%esp) - # copy bytes from block into destination + # very dumb memcpy with 32 bit addresses movl $ext2_block_buffer, %esi - rep movsb # not sure if this uses (si or esi) and (di or edi) + .ext2_inode_read_bytes_memcpy: + movb (%esi), %al + movb %al, (%edi) + incl %esi + incl %edi + decl %ecx + jnz .ext2_inode_read_bytes_memcpy # read next block if more sectors remaining cmpl $0, 4(%esp) From ec56e9c6f1a5c9436633a5c824408ab048e6b766 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Fri, 17 Nov 2023 18:54:59 +0200 Subject: [PATCH 228/240] Kernel: Don't use multiboot2 explicitly. Parse it to common structure This allows support of multiple different bootloaders --- kernel/CMakeLists.txt | 1 + kernel/arch/x86_64/PageTable.cpp | 27 ++---- kernel/arch/x86_64/boot.S | 19 ++-- kernel/include/kernel/BootInfo.h | 47 ++++++++++ kernel/include/kernel/multiboot2.h | 20 ++-- kernel/kernel/ACPI.cpp | 4 +- kernel/kernel/BootInfo.cpp | 94 +++++++++++++++++++ kernel/kernel/Memory/Heap.cpp | 41 ++++---- kernel/kernel/Terminal/VesaTerminalDriver.cpp | 33 ++++--- kernel/kernel/kernel.cpp | 37 ++++---- 10 files changed, 226 insertions(+), 97 deletions(-) create mode 100644 kernel/include/kernel/BootInfo.h create mode 100644 kernel/kernel/BootInfo.cpp diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt index 0dce633f..450bdddf 100644 --- a/kernel/CMakeLists.txt +++ b/kernel/CMakeLists.txt @@ -12,6 +12,7 @@ set(KERNEL_SOURCES font/prefs.psf.o kernel/ACPI.cpp kernel/APIC.cpp + kernel/BootInfo.cpp kernel/CPUID.cpp kernel/Debug.cpp kernel/Device/Device.cpp diff --git a/kernel/arch/x86_64/PageTable.cpp b/kernel/arch/x86_64/PageTable.cpp index 2abd768a..4913f212 100644 --- a/kernel/arch/x86_64/PageTable.cpp +++ b/kernel/arch/x86_64/PageTable.cpp @@ -4,7 +4,6 @@ #include <kernel/LockGuard.h> #include <kernel/Memory/kmalloc.h> #include <kernel/Memory/PageTable.h> -#include <kernel/multiboot2.h> extern uint8_t g_kernel_start[]; extern uint8_t g_kernel_end[]; @@ -145,6 +144,14 @@ namespace Kernel prepare_fast_page(); + // Map main bios area below 1 MiB + map_range_at( + 0x000E0000, + P2V(0x000E0000), + 0x00100000 - 0x000E0000, + PageTable::Flags::Present + ); + // Map (phys_kernel_start -> phys_kernel_end) to (virt_kernel_start -> virt_kernel_end) ASSERT((vaddr_t)g_kernel_start % PAGE_SIZE == 0); map_range_at( @@ -169,22 +176,6 @@ namespace Kernel g_userspace_end - g_userspace_start, Flags::Execute | Flags::UserSupervisor | Flags::Present ); - - // Map multiboot memory - paddr_t multiboot2_data_start = (vaddr_t)g_multiboot2_info & PAGE_ADDR_MASK; - paddr_t multiboot2_data_end = (vaddr_t)g_multiboot2_info + g_multiboot2_info->total_size; - - size_t multiboot2_needed_pages = BAN::Math::div_round_up<size_t>(multiboot2_data_end - multiboot2_data_start, PAGE_SIZE); - vaddr_t multiboot2_vaddr = reserve_free_contiguous_pages(multiboot2_needed_pages, KERNEL_OFFSET); - - map_range_at( - multiboot2_data_start, - multiboot2_vaddr, - multiboot2_needed_pages * PAGE_SIZE, - Flags::ReadWrite | Flags::Present - ); - - g_multiboot2_info = (multiboot2_info_t*)(multiboot2_vaddr + ((vaddr_t)g_multiboot2_info % PAGE_SIZE)); } void PageTable::prepare_fast_page() @@ -371,7 +362,7 @@ namespace Kernel { ASSERT(vaddr); ASSERT(vaddr != fast_page()); - if (vaddr >= KERNEL_OFFSET) + if (vaddr >= KERNEL_OFFSET && s_current) ASSERT_GTE(vaddr, (vaddr_t)g_kernel_start); if ((vaddr >= KERNEL_OFFSET) != (this == s_kernel)) Kernel::panic("mapping {8H} to {8H}, kernel: {}", paddr, vaddr, this == s_kernel); diff --git a/kernel/arch/x86_64/boot.S b/kernel/arch/x86_64/boot.S index ab4d54bf..f2dd6ad4 100644 --- a/kernel/arch/x86_64/boot.S +++ b/kernel/arch/x86_64/boot.S @@ -21,8 +21,8 @@ multiboot2_start: .short 5 .short 0 .long 20 - .long 1920 - .long 1080 + .long 800 + .long 600 .long 32 # legacy start @@ -50,11 +50,9 @@ multiboot2_end: g_kernel_cmdline: .skip 4096 - .global g_multiboot2_info - g_multiboot2_info: + bootloader_magic: .skip 8 - .global g_multiboot2_magic - g_multiboot2_magic: + bootloader_info: .skip 8 .section .data @@ -167,8 +165,8 @@ initialize_paging: _start: # Initialize stack and multiboot info movl $V2P(g_boot_stack_top), %esp - movl %eax, V2P(g_multiboot2_magic) - movl %ebx, V2P(g_multiboot2_info) + movl %eax, V2P(bootloader_magic) + movl %ebx, V2P(bootloader_info) call check_requirements call enable_sse @@ -200,8 +198,11 @@ higher_half: # call global constuctors call _init - # call to the kernel itself (clear ebp for stacktrace) + # call to the kernel itself (clear rbp for stacktrace) xorq %rbp, %rbp + + movl V2P(bootloader_magic), %edi + movl V2P(bootloader_info), %esi call kernel_main # call global destructors diff --git a/kernel/include/kernel/BootInfo.h b/kernel/include/kernel/BootInfo.h new file mode 100644 index 00000000..1f52b5a1 --- /dev/null +++ b/kernel/include/kernel/BootInfo.h @@ -0,0 +1,47 @@ +#pragma once + +#include <BAN/String.h> +#include <BAN/StringView.h> +#include <BAN/Vector.h> + +namespace Kernel +{ + + enum class FramebufferType + { + NONE, + UNKNOWN, + RGB + }; + + struct FramebufferInfo + { + paddr_t address; + uint32_t pitch; + uint32_t width; + uint32_t height; + uint8_t bpp; + FramebufferType type = FramebufferType::NONE; + }; + + struct MemoryMapEntry + { + uint32_t type; + paddr_t address; + uint64_t length; + }; + + struct BootInfo + { + BAN::String command_line; + FramebufferInfo framebuffer; + BAN::Vector<MemoryMapEntry> memory_map_entries; + }; + + bool validate_boot_magic(uint32_t magic); + void parse_boot_info(uint32_t magic, uint32_t info); + BAN::StringView get_early_boot_command_line(uint32_t magic, uint32_t info); + + extern BootInfo g_boot_info; + +} diff --git a/kernel/include/kernel/multiboot2.h b/kernel/include/kernel/multiboot2.h index fed08a8d..6723a8de 100644 --- a/kernel/include/kernel/multiboot2.h +++ b/kernel/include/kernel/multiboot2.h @@ -13,11 +13,18 @@ #define MULTIBOOT2_FRAMEBUFFER_TYPE_RGB 1 +#define MULTIBOOT2_MAGIC 0x36d76289 + struct multiboot2_tag_t { uint32_t type; uint32_t size; - multiboot2_tag_t* next() { return (multiboot2_tag_t*)((uintptr_t)this + ((size + 7) & ~7)); } + const multiboot2_tag_t* next() const + { + return reinterpret_cast<const multiboot2_tag_t*>( + reinterpret_cast<uintptr_t>(this) + ((size + 7) & ~7) + ); + } } __attribute__((packed)); struct multiboot2_cmdline_tag_t : public multiboot2_tag_t @@ -62,14 +69,3 @@ struct multiboot2_info_t uint32_t reserved; multiboot2_tag_t tags[]; } __attribute__((packed)); - -extern "C" multiboot2_info_t* g_multiboot2_info; -extern "C" uint32_t g_multiboot2_magic; - -inline multiboot2_tag_t* multiboot2_find_tag(uint32_t type) -{ - for (auto* tag = g_multiboot2_info->tags; tag->type != MULTIBOOT2_TAG_END; tag = tag->next()) - if (tag->type == type) - return tag; - return nullptr; -} diff --git a/kernel/kernel/ACPI.cpp b/kernel/kernel/ACPI.cpp index d5de89cb..3983eb8b 100644 --- a/kernel/kernel/ACPI.cpp +++ b/kernel/kernel/ACPI.cpp @@ -2,7 +2,6 @@ #include <BAN/StringView.h> #include <kernel/ACPI.h> #include <kernel/Memory/PageTable.h> -#include <kernel/multiboot2.h> #include <lai/core.h> @@ -85,11 +84,14 @@ namespace Kernel static const RSDP* locate_rsdp() { + // FIXME: add this back +#if 0 // Check the multiboot headers if (auto* rsdp_new = (multiboot2_rsdp_tag_t*)multiboot2_find_tag(MULTIBOOT2_TAG_NEW_RSDP)) return (const RSDP*)rsdp_new->data; if (auto* rsdp_old = (multiboot2_rsdp_tag_t*)multiboot2_find_tag(MULTIBOOT2_TAG_OLD_RSDP)) return (const RSDP*)rsdp_old->data; +#endif // Look in main BIOS area below 1 MB for (uintptr_t addr = P2V(0x000E0000); addr < P2V(0x000FFFFF); addr += 16) diff --git a/kernel/kernel/BootInfo.cpp b/kernel/kernel/BootInfo.cpp new file mode 100644 index 00000000..cf6420df --- /dev/null +++ b/kernel/kernel/BootInfo.cpp @@ -0,0 +1,94 @@ +#include <kernel/BootInfo.h> + +#include <kernel/multiboot2.h> + +namespace Kernel +{ + + BootInfo g_boot_info; + + void parse_boot_info_multiboot2(uint32_t info) + { + const auto& multiboot2_info = *reinterpret_cast<const multiboot2_info_t*>(info); + + for (const auto* tag = multiboot2_info.tags; tag->type != MULTIBOOT2_TAG_END; tag = tag->next()) + { + if (tag->type == MULTIBOOT2_TAG_CMDLINE) + { + const auto& command_line_tag = *reinterpret_cast<const multiboot2_cmdline_tag_t*>(tag); + MUST(g_boot_info.command_line.append(command_line_tag.cmdline)); + } + else if (tag->type == MULTIBOOT2_TAG_FRAMEBUFFER) + { + const auto& framebuffer_tag = *reinterpret_cast<const multiboot2_framebuffer_tag_t*>(tag); + g_boot_info.framebuffer.address = framebuffer_tag.framebuffer_addr; + g_boot_info.framebuffer.pitch = framebuffer_tag.framebuffer_pitch; + g_boot_info.framebuffer.width = framebuffer_tag.framebuffer_width; + g_boot_info.framebuffer.height = framebuffer_tag.framebuffer_height; + g_boot_info.framebuffer.bpp = framebuffer_tag.framebuffer_bpp; + if (framebuffer_tag.framebuffer_type == MULTIBOOT2_FRAMEBUFFER_TYPE_RGB) + g_boot_info.framebuffer.type = FramebufferType::RGB; + else + g_boot_info.framebuffer.type = FramebufferType::UNKNOWN; + } + else if (tag->type == MULTIBOOT2_TAG_MMAP) + { + const auto& mmap_tag = *reinterpret_cast<const multiboot2_mmap_tag_t*>(tag); + + const size_t entry_count = (mmap_tag.size - sizeof(multiboot2_mmap_tag_t)) / mmap_tag.entry_size; + + MUST(g_boot_info.memory_map_entries.resize(entry_count)); + + for (size_t i = 0; i < entry_count; i++) + { + const auto& mmap_entry = *reinterpret_cast<const multiboot2_mmap_entry_t*>(reinterpret_cast<uintptr_t>(tag) + sizeof(multiboot2_mmap_tag_t) + i * mmap_tag.entry_size); + dprintln("entry {16H} {16H} {8H}", + (uint64_t)mmap_entry.base_addr, + (uint64_t)mmap_entry.length, + (uint64_t)mmap_entry.type + ); + g_boot_info.memory_map_entries[i].address = mmap_entry.base_addr; + g_boot_info.memory_map_entries[i].length = mmap_entry.length; + g_boot_info.memory_map_entries[i].type = mmap_entry.type; + } + } + } + } + + BAN::StringView get_early_boot_command_line_multiboot2(uint32_t info) + { + const auto& multiboot2_info = *reinterpret_cast<const multiboot2_info_t*>(info); + for (const auto* tag = multiboot2_info.tags; tag->type != MULTIBOOT2_TAG_END; tag = tag->next()) + if (tag->type == MULTIBOOT2_TAG_CMDLINE) + return reinterpret_cast<const multiboot2_cmdline_tag_t*>(tag)->cmdline; + return {}; + } + + bool validate_boot_magic(uint32_t magic) + { + if (magic == MULTIBOOT2_MAGIC) + return true; + return false; + } + + void parse_boot_info(uint32_t magic, uint32_t info) + { + switch (magic) + { + case MULTIBOOT2_MAGIC: + return parse_boot_info_multiboot2(info); + } + ASSERT_NOT_REACHED(); + } + + BAN::StringView get_early_boot_command_line(uint32_t magic, uint32_t info) + { + switch (magic) + { + case MULTIBOOT2_MAGIC: + return get_early_boot_command_line_multiboot2(info); + } + ASSERT_NOT_REACHED(); + } + +} diff --git a/kernel/kernel/Memory/Heap.cpp b/kernel/kernel/Memory/Heap.cpp index 7be6a631..4f607204 100644 --- a/kernel/kernel/Memory/Heap.cpp +++ b/kernel/kernel/Memory/Heap.cpp @@ -1,7 +1,7 @@ +#include <kernel/BootInfo.h> #include <kernel/LockGuard.h> #include <kernel/Memory/Heap.h> #include <kernel/Memory/PageTable.h> -#include <kernel/multiboot2.h> extern uint8_t g_kernel_end[]; @@ -26,30 +26,33 @@ namespace Kernel void Heap::initialize_impl() { - auto* mmap_tag = (multiboot2_mmap_tag_t*)multiboot2_find_tag(MULTIBOOT2_TAG_MMAP); - if (mmap_tag == nullptr) + if (g_boot_info.memory_map_entries.empty()) Kernel::panic("Bootloader did not provide a memory map"); - for (size_t offset = sizeof(*mmap_tag); offset < mmap_tag->size; offset += mmap_tag->entry_size) + for (const auto& entry : g_boot_info.memory_map_entries) { - auto* mmap_entry = (multiboot2_mmap_entry_t*)((uintptr_t)mmap_tag + offset); + dprintln("{16H}, {16H}, {8H}", + entry.address, + entry.length, + entry.type + ); - if (mmap_entry->type == 1) - { - paddr_t start = mmap_entry->base_addr; - if (start < V2P(g_kernel_end)) - start = V2P(g_kernel_end); - if (auto rem = start % PAGE_SIZE) - start += PAGE_SIZE - rem; + if (entry.type != 1) + continue; + + paddr_t start = entry.address; + if (start < V2P(g_kernel_end)) + start = V2P(g_kernel_end); + if (auto rem = start % PAGE_SIZE) + start += PAGE_SIZE - rem; - paddr_t end = mmap_entry->base_addr + mmap_entry->length; - if (auto rem = end % PAGE_SIZE) - end -= rem; + paddr_t end = entry.address + entry.length; + if (auto rem = end % PAGE_SIZE) + end -= rem; - // Physical pages needs atleast 2 pages - if (end > start + PAGE_SIZE) - MUST(m_physical_ranges.emplace_back(start, end - start)); - } + // Physical pages needs atleast 2 pages + if (end > start + PAGE_SIZE) + MUST(m_physical_ranges.emplace_back(start, end - start)); } size_t total = 0; diff --git a/kernel/kernel/Terminal/VesaTerminalDriver.cpp b/kernel/kernel/Terminal/VesaTerminalDriver.cpp index f53c678e..f0197d15 100644 --- a/kernel/kernel/Terminal/VesaTerminalDriver.cpp +++ b/kernel/kernel/Terminal/VesaTerminalDriver.cpp @@ -1,42 +1,41 @@ #include <BAN/Errors.h> +#include <kernel/BootInfo.h> #include <kernel/Debug.h> #include <kernel/Memory/PageTable.h> -#include <kernel/multiboot2.h> #include <kernel/Terminal/VesaTerminalDriver.h> using namespace Kernel; VesaTerminalDriver* VesaTerminalDriver::create() { - auto* framebuffer_tag = (multiboot2_framebuffer_tag_t*)multiboot2_find_tag(MULTIBOOT2_TAG_FRAMEBUFFER); - if (framebuffer_tag == nullptr) + if (g_boot_info.framebuffer.type == FramebufferType::NONE) { dprintln("Bootloader did not provide framebuffer"); return nullptr; } - if (framebuffer_tag->framebuffer_type != MULTIBOOT2_FRAMEBUFFER_TYPE_RGB) + if (g_boot_info.framebuffer.type != FramebufferType::RGB) { - dprintln("unsupported framebuffer type {}", framebuffer_tag->framebuffer_type); + dprintln("unsupported framebuffer type"); return nullptr; } - if (framebuffer_tag->framebuffer_bpp != 24 && framebuffer_tag->framebuffer_bpp != 32) + if (g_boot_info.framebuffer.bpp != 24 && g_boot_info.framebuffer.bpp != 32) { - dprintln("Unsupported bpp {}", framebuffer_tag->framebuffer_bpp); + dprintln("Unsupported bpp {}", g_boot_info.framebuffer.bpp); return nullptr; } dprintln("Graphics Mode {}x{} ({} bpp)", - (uint32_t)framebuffer_tag->framebuffer_width, - (uint32_t)framebuffer_tag->framebuffer_height, - (uint8_t)framebuffer_tag->framebuffer_bpp + g_boot_info.framebuffer.width, + g_boot_info.framebuffer.height, + g_boot_info.framebuffer.bpp ); - paddr_t paddr = framebuffer_tag->framebuffer_addr & PAGE_ADDR_MASK; + paddr_t paddr = g_boot_info.framebuffer.address & PAGE_ADDR_MASK; size_t needed_pages = range_page_count( - framebuffer_tag->framebuffer_addr, - framebuffer_tag->framebuffer_pitch * framebuffer_tag->framebuffer_height + g_boot_info.framebuffer.address, + g_boot_info.framebuffer.pitch * g_boot_info.framebuffer.height ); vaddr_t vaddr = PageTable::kernel().reserve_free_contiguous_pages(needed_pages, KERNEL_OFFSET); @@ -45,10 +44,10 @@ VesaTerminalDriver* VesaTerminalDriver::create() PageTable::kernel().map_range_at(paddr, vaddr, needed_pages * PAGE_SIZE, PageTable::Flags::UserSupervisor | PageTable::Flags::ReadWrite | PageTable::Flags::Present); auto* driver = new VesaTerminalDriver( - framebuffer_tag->framebuffer_width, - framebuffer_tag->framebuffer_height, - framebuffer_tag->framebuffer_pitch, - framebuffer_tag->framebuffer_bpp, + g_boot_info.framebuffer.width, + g_boot_info.framebuffer.height, + g_boot_info.framebuffer.pitch, + g_boot_info.framebuffer.bpp, vaddr ); driver->set_cursor_position(0, 0); diff --git a/kernel/kernel/kernel.cpp b/kernel/kernel/kernel.cpp index 5c5e1382..047712de 100644 --- a/kernel/kernel/kernel.cpp +++ b/kernel/kernel/kernel.cpp @@ -1,5 +1,6 @@ #include <kernel/ACPI.h> #include <kernel/Arch.h> +#include <kernel/BootInfo.h> #include <kernel/Debug.h> #include <kernel/FS/DevFS/FileSystem.h> #include <kernel/FS/ProcFS/FileSystem.h> @@ -12,7 +13,6 @@ #include <kernel/Memory/Heap.h> #include <kernel/Memory/kmalloc.h> #include <kernel/Memory/PageTable.h> -#include <kernel/multiboot2.h> #include <kernel/PCI.h> #include <kernel/PIC.h> #include <kernel/Process.h> @@ -31,13 +31,9 @@ struct ParsedCommandLine BAN::StringView root; }; -static bool should_disable_serial() +static bool should_disable_serial(BAN::StringView full_command_line) { - auto* cmdline_tag = (multiboot2_cmdline_tag_t*)multiboot2_find_tag(MULTIBOOT2_TAG_CMDLINE); - if (cmdline_tag == nullptr) - return false; - - const char* start = cmdline_tag->cmdline; + const char* start = full_command_line.data(); const char* current = start; while (true) { @@ -59,13 +55,8 @@ static ParsedCommandLine cmdline; static void parse_command_line() { - auto* cmdline_tag = (multiboot2_cmdline_tag_t*)multiboot2_find_tag(MULTIBOOT2_TAG_CMDLINE); - if (cmdline_tag == nullptr) - return; - - BAN::StringView full_command_line(cmdline_tag->cmdline); + auto full_command_line = Kernel::g_boot_info.command_line.sv(); auto arguments = MUST(full_command_line.split(' ')); - for (auto argument : arguments) { if (argument == "noapic") @@ -83,27 +74,31 @@ TerminalDriver* g_terminal_driver = nullptr; static void init2(void*); -extern "C" void kernel_main() +extern "C" void kernel_main(uint32_t boot_magic, uint32_t boot_info) { using namespace Kernel; DISABLE_INTERRUPTS(); - if (!should_disable_serial()) + if (!validate_boot_magic(boot_magic)) + { + Serial::initialize(); + dprintln("Unrecognized boot magic {8H}", boot_magic); + return; + } + + if (!should_disable_serial(get_early_boot_command_line(boot_magic, boot_info))) { Serial::initialize(); dprintln("Serial output initialized"); } - if (g_multiboot2_magic != 0x36d76289) - { - dprintln("Invalid multiboot magic number"); - return; - } - kmalloc_initialize(); dprintln("kmalloc initialized"); + parse_boot_info(boot_magic, boot_info); + dprintln("boot info parsed"); + GDT::initialize(); dprintln("GDT initialized"); From 3daf3d53a3564ba33c6043fc50e7a95b75cabef5 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Fri, 17 Nov 2023 18:56:02 +0200 Subject: [PATCH 229/240] Kernel: Serial now uses random size for some serial ports If the serial port doesn't repond with a size, just use a random one. There is no reason to ditch the whole output if you cannot determine its size. --- kernel/kernel/Terminal/Serial.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/kernel/kernel/Terminal/Serial.cpp b/kernel/kernel/Terminal/Serial.cpp index 042bf4c9..877c90c6 100644 --- a/kernel/kernel/Terminal/Serial.cpp +++ b/kernel/kernel/Terminal/Serial.cpp @@ -57,7 +57,11 @@ namespace Kernel auto& driver = s_serial_drivers[i]; driver.m_port = s_serial_ports[i]; if (!driver.initialize_size()) - continue; + { + // if size detection fails, just use some random size + driver.m_width = 999; + driver.m_height = 999; + } count++; } } From 41065d2f9a701c51c14d2e0e34f68083c2e14a80 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Fri, 17 Nov 2023 19:02:01 +0200 Subject: [PATCH 230/240] Kernel: Don't calculate divisor in a for loop in ext2 inodes --- kernel/kernel/FS/Ext2/Inode.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/kernel/kernel/FS/Ext2/Inode.cpp b/kernel/kernel/FS/Ext2/Inode.cpp index 54a82ea6..c9104d0e 100644 --- a/kernel/kernel/FS/Ext2/Inode.cpp +++ b/kernel/kernel/FS/Ext2/Inode.cpp @@ -56,9 +56,7 @@ namespace Kernel const uint32_t indices_per_block = blksize() / sizeof(uint32_t); - uint32_t divisor = 1; - for (uint32_t i = 1; i < depth; i++) - divisor *= indices_per_block; + const uint32_t divisor = (depth > 1) ? indices_per_block * (depth - 1) : 1; const uint32_t next_block = block_buffer.span().as_span<uint32_t>()[(index / divisor) % indices_per_block]; if (next_block == 0) From 5f4d81a5020b6f85df3caed2f9c7e2375aa07447 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Fri, 17 Nov 2023 20:31:42 +0200 Subject: [PATCH 231/240] Bootloader: Clear screen, better memcpy Clear screen before jumping to kernel. Memcpy now uses ebx as offset register, so only one register has to updated every loop --- bootloader/boot.S | 9 +++++++-- bootloader/elf.S | 2 +- bootloader/ext2.S | 18 ++++++++++-------- 3 files changed, 18 insertions(+), 11 deletions(-) diff --git a/bootloader/boot.S b/bootloader/boot.S index 4e12bbde..e5ae1f18 100644 --- a/bootloader/boot.S +++ b/bootloader/boot.S @@ -82,15 +82,20 @@ stage2_main: call elf_read_kernel_to_memory - cli + # re-enter 80x25 text mode to clear screen + pushw %ax + movb $0x03, %al + movb $0x00, %ah + int $0x10 + popw %ax + cli # setup protected mode movl %cr0, %ebx orb $1, %bl movl %ebx, %cr0 - # jump to kernel in protected mode ljmpl $0x18, $protected_mode diff --git a/bootloader/elf.S b/bootloader/elf.S index 059c4581..14d9ea4c 100644 --- a/bootloader/elf.S +++ b/bootloader/elf.S @@ -170,7 +170,7 @@ elf_read_kernel_to_memory: andl $0x7FFFFFFF, %edi movl (elf_program_header + p_filesz), %ecx - call print_hex32; call print_newline + #call print_hex32; call print_newline call *%esi diff --git a/bootloader/ext2.S b/bootloader/ext2.S index 6937f266..c42e587d 100644 --- a/bootloader/ext2.S +++ b/bootloader/ext2.S @@ -409,13 +409,14 @@ ext2_inode_read_bytes: addl %edx, %esi # very dumb memcpy with 32 bit addresses + movl $0, %ebx .ext2_inode_read_bytes_memcpy_partial: - movb (%esi), %al - movb %al, (%edi) - incl %esi - incl %edi + movb (%esi, %ebx), %al + movb %al, (%edi, %ebx) + incl %ebx decl %ecx jnz .ext2_inode_read_bytes_memcpy_partial + addl %ebx, %edi # check if all sectors are read cmpl $0, 4(%esp) @@ -441,13 +442,14 @@ ext2_inode_read_bytes: # very dumb memcpy with 32 bit addresses movl $ext2_block_buffer, %esi + movl $0, %ebx .ext2_inode_read_bytes_memcpy: - movb (%esi), %al - movb %al, (%edi) - incl %esi - incl %edi + movb (%esi, %ebx), %al + movb %al, (%edi, %ebx) + incl %ebx decl %ecx jnz .ext2_inode_read_bytes_memcpy + addl %ebx, %edi # read next block if more sectors remaining cmpl $0, 4(%esp) From 065eec430e1ca82f397c532776cf83626c68137b Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Fri, 17 Nov 2023 20:33:02 +0200 Subject: [PATCH 232/240] Kernel/Bootloader: banan-os can now be booted with my bootloader :D --- bootloader/boot.S | 17 ++++++++++++- bootloader/command_line.S | 2 ++ bootloader/memory_map.S | 2 ++ kernel/include/kernel/BananBootloader.h | 24 +++++++++++++++++++ kernel/kernel/BootInfo.cpp | 32 ++++++++++++++++++++++++- 5 files changed, 75 insertions(+), 2 deletions(-) create mode 100644 kernel/include/kernel/BananBootloader.h diff --git a/bootloader/boot.S b/bootloader/boot.S index e5ae1f18..1397c5b2 100644 --- a/bootloader/boot.S +++ b/bootloader/boot.S @@ -108,7 +108,16 @@ protected_mode: movw %bx, %fs movw %bx, %gs movw %bx, %ss - jmp *%eax + + movl %eax, %ecx + + movl $0xD3C60CFF, %eax + movl $banan_boot_info, %ebx + xorl %edx, %edx + xorl %esi, %esi + xorl %edi, %edi + + jmp *%ecx .code16 @@ -154,3 +163,9 @@ gdt: gdtr: .short . - gdt - 1 .quad gdt + +banan_boot_info: + boot_command_line: + .long command_line + boot_memory_map: + .long memory_map diff --git a/bootloader/command_line.S b/bootloader/command_line.S index 964790c8..8a041211 100644 --- a/bootloader/command_line.S +++ b/bootloader/command_line.S @@ -68,6 +68,8 @@ command_line_enter_msg: .section .bss +.global command_line +command_line: # 100 character command line command_line_buffer: .skip 100 diff --git a/bootloader/memory_map.S b/bootloader/memory_map.S index ca1908c5..55c7d710 100644 --- a/bootloader/memory_map.S +++ b/bootloader/memory_map.S @@ -122,6 +122,8 @@ memory_map_error_msg: .section .bss +.global memory_map +memory_map: memory_map_entry_count: .skip 4 # 100 entries should be enough... diff --git a/kernel/include/kernel/BananBootloader.h b/kernel/include/kernel/BananBootloader.h new file mode 100644 index 00000000..be595cc5 --- /dev/null +++ b/kernel/include/kernel/BananBootloader.h @@ -0,0 +1,24 @@ +#pragma once + +#include <stdint.h> + +#define BANAN_BOOTLOADER_MAGIC 0xD3C60CFF + +struct BananBootloaderMemoryMapEntry +{ + uint64_t address; + uint64_t length; + uint32_t type; +} __attribute__((packed)); + +struct BananBootloaderMemoryMapInfo +{ + uint32_t entry_count; + BananBootloaderMemoryMapEntry entries[]; +} __attribute__((packed)); + +struct BananBootloaderInfo +{ + uint32_t command_line_addr; + uint32_t memory_map_addr; +} __attribute__((packed)); diff --git a/kernel/kernel/BootInfo.cpp b/kernel/kernel/BootInfo.cpp index cf6420df..5193fa08 100644 --- a/kernel/kernel/BootInfo.cpp +++ b/kernel/kernel/BootInfo.cpp @@ -1,5 +1,5 @@ #include <kernel/BootInfo.h> - +#include <kernel/BananBootloader.h> #include <kernel/multiboot2.h> namespace Kernel @@ -64,10 +64,36 @@ namespace Kernel return {}; } + void parse_boot_info_banan_bootloader(uint32_t info) + { + const auto& banan_bootloader_info = *reinterpret_cast<const BananBootloaderInfo*>(info); + + const char* command_line = reinterpret_cast<const char*>(banan_bootloader_info.command_line_addr); + MUST(g_boot_info.command_line.append(command_line)); + + const auto& memory_map = *reinterpret_cast<BananBootloaderMemoryMapInfo*>(banan_bootloader_info.memory_map_addr); + MUST(g_boot_info.memory_map_entries.resize(memory_map.entry_count)); + for (size_t i = 0; i < memory_map.entry_count; i++) + { + const auto& mmap_entry = memory_map.entries[i]; + g_boot_info.memory_map_entries[i].address = mmap_entry.address; + g_boot_info.memory_map_entries[i].length = mmap_entry.length; + g_boot_info.memory_map_entries[i].type = mmap_entry.type; + } + } + + BAN::StringView get_early_boot_command_line_banan_bootloader(uint32_t info) + { + const auto& banan_bootloader_info = *reinterpret_cast<const BananBootloaderInfo*>(info); + return reinterpret_cast<const char*>(banan_bootloader_info.command_line_addr); + } + bool validate_boot_magic(uint32_t magic) { if (magic == MULTIBOOT2_MAGIC) return true; + if (magic == BANAN_BOOTLOADER_MAGIC) + return true; return false; } @@ -77,6 +103,8 @@ namespace Kernel { case MULTIBOOT2_MAGIC: return parse_boot_info_multiboot2(info); + case BANAN_BOOTLOADER_MAGIC: + return parse_boot_info_banan_bootloader(info); } ASSERT_NOT_REACHED(); } @@ -87,6 +115,8 @@ namespace Kernel { case MULTIBOOT2_MAGIC: return get_early_boot_command_line_multiboot2(info); + case BANAN_BOOTLOADER_MAGIC: + return get_early_boot_command_line_banan_bootloader(info); } ASSERT_NOT_REACHED(); } From f0d2a211ea16952f42869f418ada80651e3d86f8 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Fri, 17 Nov 2023 20:38:38 +0200 Subject: [PATCH 233/240] Bootloader add temporary initial command line This will probably be read from some config file at some point --- bootloader/command_line.S | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/bootloader/command_line.S b/bootloader/command_line.S index 8a041211..43582a06 100644 --- a/bootloader/command_line.S +++ b/bootloader/command_line.S @@ -6,10 +6,20 @@ # NO REGISTERS SAVED .global read_user_command_line read_user_command_line: + # print initial command line movw $command_line_enter_msg, %si call puts + movw $command_line_buffer, %si + call puts + # prepare registers for input + movw $command_line_enter_msg, %si movw $command_line_buffer, %di + .read_user_command_line_goto_end: + cmpb $0, (%di) + jz .read_user_command_line_loop + incw %di + jmp .read_user_command_line_goto_end .read_user_command_line_loop: call getc @@ -65,11 +75,9 @@ read_user_command_line: command_line_enter_msg: .asciz "cmdline: " - -.section .bss - .global command_line command_line: # 100 character command line command_line_buffer: - .skip 100 + .ascii "root=/dev/sda2 console=ttyS0" + .skip 100 - 28 From a554bd0fd884c7704ef1c25a2e0b96f3c3f5b7eb Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Fri, 17 Nov 2023 21:05:02 +0200 Subject: [PATCH 234/240] Bootloader: Fix kernel memset to zero --- bootloader/elf.S | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bootloader/elf.S b/bootloader/elf.S index 14d9ea4c..d4a9b8df 100644 --- a/bootloader/elf.S +++ b/bootloader/elf.S @@ -156,13 +156,14 @@ elf_read_kernel_to_memory: movl (elf_program_header + p_memsz), %ecx subl %ebx, %ecx - jz .elf_read_kernel_to_memory_no_memset + jz .elf_read_kernel_to_memory_memset_done .elf_read_kernel_to_memory_memset: movb $0, (%edi) + incl %edi decl %ecx jnz .elf_read_kernel_to_memory_memset - .elf_read_kernel_to_memory_no_memset: + .elf_read_kernel_to_memory_memset_done: # read file specified in program header to memory movl (elf_program_header + p_offset), %eax From a312d75bb260e381a724fe995f691bff31f10fdc Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Fri, 17 Nov 2023 22:45:35 +0200 Subject: [PATCH 235/240] Bootloader: Implement VESA video mode query and pass it to kernel Kernel now gets framebuffer from bootloader. Framebuffer dimensions and bpp are hardcoded in bootloader, but will probably be read from config file at some point. --- bootloader/CMakeLists.txt | 1 + bootloader/boot.S | 11 +- bootloader/command_line.S | 2 +- bootloader/framebuffer.S | 156 ++++++++++++++++++++++++ kernel/include/kernel/BananBootloader.h | 14 ++- kernel/kernel/BootInfo.cpp | 11 ++ 6 files changed, 187 insertions(+), 8 deletions(-) create mode 100644 bootloader/framebuffer.S diff --git a/bootloader/CMakeLists.txt b/bootloader/CMakeLists.txt index fb83c945..93724c12 100644 --- a/bootloader/CMakeLists.txt +++ b/bootloader/CMakeLists.txt @@ -8,6 +8,7 @@ set(BOOTLOADER_SOURCES disk.S elf.S ext2.S + framebuffer.S memory_map.S utils.S ) diff --git a/bootloader/boot.S b/bootloader/boot.S index 1397c5b2..ed831ef3 100644 --- a/bootloader/boot.S +++ b/bootloader/boot.S @@ -59,6 +59,8 @@ stage2_main: call get_memory_map call read_user_command_line + + call vesa_find_video_mode call print_newline @@ -82,12 +84,7 @@ stage2_main: call elf_read_kernel_to_memory - # re-enter 80x25 text mode to clear screen - pushw %ax - movb $0x03, %al - movb $0x00, %ah - int $0x10 - popw %ax + call vesa_set_target_mode cli @@ -167,5 +164,7 @@ gdtr: banan_boot_info: boot_command_line: .long command_line + boot_framebuffer: + .long framebuffer boot_memory_map: .long memory_map diff --git a/bootloader/command_line.S b/bootloader/command_line.S index 43582a06..ed021098 100644 --- a/bootloader/command_line.S +++ b/bootloader/command_line.S @@ -79,5 +79,5 @@ command_line_enter_msg: command_line: # 100 character command line command_line_buffer: - .ascii "root=/dev/sda2 console=ttyS0" + .ascii "root=/dev/sda2" .skip 100 - 28 diff --git a/bootloader/framebuffer.S b/bootloader/framebuffer.S new file mode 100644 index 00000000..9b0979ad --- /dev/null +++ b/bootloader/framebuffer.S @@ -0,0 +1,156 @@ +.set TARGET_WIDTH, 800 +.set TARGET_HEIGHT, 600 +.set TARGET_BPP, 32 + +.code16 +.section .stage2 + +# Find suitable video mode +# return: +# ax: video mode number if found, 0 otherwise +.global vesa_find_video_mode +vesa_find_video_mode: + pushw %ax + pushw %cx + pushw %di + pushl %esi + + # clear target mode and frame buffer + movw $0, (vesa_target_mode) + movl $0, (framebuffer + 0) + movl $0, (framebuffer + 4) + movl $0, (framebuffer + 8) + movl $0, (framebuffer + 12) + movw $0, (framebuffer + 16) + + # get vesa information + movw $0x4F00, %ax + movw $vesa_info_buffer, %di + int $0x10 + cmpb $0x4F, %al; jne .vesa_unsupported + cmpb $0x00, %ah; jne .vesa_error + + # confirm that response starts with 'VESA' + cmpl $0x41534556, (vesa_info_buffer) + jne .vesa_error + + # confirm that version is atleast 2.0 + cmpw $0x0200, (vesa_info_buffer + 0x04) + jb .vesa_unsupported_version + + movl $(vesa_info_buffer + 0x0E), %esi + movl (%esi), %esi + .vesa_find_video_mode_loop_modes: + cmpw $0xFFFF, (%esi) + je .vesa_find_video_mode_loop_modes_done + + # get info of next mode + movw $0x4F01, %ax + movw (%esi), %cx + movw $vesa_mode_info_buffer, %di + int $0x10 + cmpb $0x4F, %al; jne .vesa_unsupported + cmpb $0x00, %ah; jne .vesa_error + + # check whether in graphics mode + testb $0x10, (vesa_mode_info_buffer + 0) + jz .vesa_find_video_mode_next_mode + + # compare mode's dimensions + cmpw $TARGET_WIDTH, (vesa_mode_info_buffer + 0x12) + jne .vesa_find_video_mode_next_mode + cmpw $TARGET_HEIGHT, (vesa_mode_info_buffer + 0x14) + jne .vesa_find_video_mode_next_mode + cmpb $TARGET_BPP, (vesa_mode_info_buffer + 0x19) + jne .vesa_find_video_mode_next_mode + + movl (vesa_mode_info_buffer + 0x28), %esi + movl %esi, (framebuffer + 0) + movw (vesa_mode_info_buffer + 0x10), %ax + movw %ax, (framebuffer + 4) + movl $TARGET_WIDTH, (framebuffer + 8) + movl $TARGET_HEIGHT, (framebuffer + 12) + movb $TARGET_BPP, (framebuffer + 16) + movb $1, (framebuffer + 17) + + movw %cx, (vesa_target_mode) + jmp .vesa_find_video_mode_loop_modes_done + + .vesa_find_video_mode_next_mode: + addl $2, %esi + jmp .vesa_find_video_mode_loop_modes + + .vesa_find_video_mode_loop_modes_done: + popl %esi + popw %di + popw %cx + popw %ax + ret + + .vesa_unsupported: + movw $vesa_unsupported_msg, %si + jmp print_and_halt + .vesa_unsupported_version: + movw $vesa_unsupported_version_msg, %si + jmp print_and_halt + .vesa_error: + movw $vesa_error_msg, %si + jmp print_and_halt + + +# set mode found from vesa_find_video_mode. if no mode +# was found, set it to 80x25 text mode to clear the screen. +.global vesa_set_target_mode +vesa_set_target_mode: + pushw %ax + pushw %bx + + movw (vesa_target_mode), %bx + testw %bx, %bx + jz .vesa_set_target_mode_generic + + movw $0x4F02, %ax + orw $0x4000, %bx + int $0x10 + + jmp .set_video_done + + .vesa_set_target_mode_generic: + movb $0x03, %al + movb $0x00, %ah + int $0x10 + + .set_video_done: + popw %bx + popw %ax + ret + + +vesa_error_msg: + .asciz "VESA error" +vesa_unsupported_msg: + .asciz "VESA unsupported" +vesa_unsupported_version_msg: + .asciz "VESA unsupported version" +vesa_success_msg: + .asciz "VESA success" + +.section .bss + +vesa_info_buffer: + .skip 512 + +vesa_mode_info_buffer: + .skip 256 + +vesa_target_mode: + .skip 2 + +.global framebuffer +framebuffer: + .skip 4 # address + .skip 4 # pitch + .skip 4 # width + .skip 4 # height + .skip 1 # bpp + .skip 1 # type diff --git a/kernel/include/kernel/BananBootloader.h b/kernel/include/kernel/BananBootloader.h index be595cc5..0696a007 100644 --- a/kernel/include/kernel/BananBootloader.h +++ b/kernel/include/kernel/BananBootloader.h @@ -2,7 +2,18 @@ #include <stdint.h> -#define BANAN_BOOTLOADER_MAGIC 0xD3C60CFF +#define BANAN_BOOTLOADER_MAGIC 0xD3C60CFF +#define BANAN_BOOTLOADER_FB_RGB 1 + +struct BananBootFramebufferInfo +{ + uint32_t address; + uint32_t pitch; + uint32_t width; + uint32_t height; + uint8_t bpp; + uint8_t type; +}; struct BananBootloaderMemoryMapEntry { @@ -20,5 +31,6 @@ struct BananBootloaderMemoryMapInfo struct BananBootloaderInfo { uint32_t command_line_addr; + uint32_t framebuffer_addr; uint32_t memory_map_addr; } __attribute__((packed)); diff --git a/kernel/kernel/BootInfo.cpp b/kernel/kernel/BootInfo.cpp index 5193fa08..13fb0b07 100644 --- a/kernel/kernel/BootInfo.cpp +++ b/kernel/kernel/BootInfo.cpp @@ -71,6 +71,17 @@ namespace Kernel const char* command_line = reinterpret_cast<const char*>(banan_bootloader_info.command_line_addr); MUST(g_boot_info.command_line.append(command_line)); + const auto& framebuffer = *reinterpret_cast<BananBootFramebufferInfo*>(banan_bootloader_info.framebuffer_addr); + if (framebuffer.type == BANAN_BOOTLOADER_FB_RGB) + { + g_boot_info.framebuffer.address = framebuffer.address; + g_boot_info.framebuffer.width = framebuffer.width; + g_boot_info.framebuffer.height = framebuffer.height; + g_boot_info.framebuffer.pitch = framebuffer.pitch; + g_boot_info.framebuffer.bpp = framebuffer.bpp; + g_boot_info.framebuffer.type = FramebufferType::RGB; + } + const auto& memory_map = *reinterpret_cast<BananBootloaderMemoryMapInfo*>(banan_bootloader_info.memory_map_addr); MUST(g_boot_info.memory_map_entries.resize(memory_map.entry_count)); for (size_t i = 0; i < memory_map.entry_count; i++) From 6e2443ca7236b7c8446fffd2f2033b4c9436d48f Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Sat, 18 Nov 2023 13:59:45 +0200 Subject: [PATCH 236/240] Bootloader do some directory restructuring --- bootloader/.gitignore | 3 --- bootloader/CMakeLists.txt | 17 +---------------- bootloader/bios/CMakeLists.txt | 18 ++++++++++++++++++ bootloader/{ => bios}/boot.S | 0 bootloader/{ => bios}/command_line.S | 0 bootloader/{ => bios}/disk.S | 0 bootloader/{ => bios}/elf.S | 0 bootloader/{ => bios}/ext2.S | 0 bootloader/{ => bios}/framebuffer.S | 0 bootloader/{ => bios}/linker.ld | 0 bootloader/{ => bios}/memory_map.S | 0 bootloader/{ => bios}/utils.S | 0 bootloader/installer/.gitignore | 1 + 13 files changed, 20 insertions(+), 19 deletions(-) delete mode 100644 bootloader/.gitignore create mode 100644 bootloader/bios/CMakeLists.txt rename bootloader/{ => bios}/boot.S (100%) rename bootloader/{ => bios}/command_line.S (100%) rename bootloader/{ => bios}/disk.S (100%) rename bootloader/{ => bios}/elf.S (100%) rename bootloader/{ => bios}/ext2.S (100%) rename bootloader/{ => bios}/framebuffer.S (100%) rename bootloader/{ => bios}/linker.ld (100%) rename bootloader/{ => bios}/memory_map.S (100%) rename bootloader/{ => bios}/utils.S (100%) create mode 100644 bootloader/installer/.gitignore diff --git a/bootloader/.gitignore b/bootloader/.gitignore deleted file mode 100644 index 1f20c0de..00000000 --- a/bootloader/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -test.img -build/ -installer/build/ diff --git a/bootloader/CMakeLists.txt b/bootloader/CMakeLists.txt index 93724c12..0a2f30c6 100644 --- a/bootloader/CMakeLists.txt +++ b/bootloader/CMakeLists.txt @@ -1,18 +1,3 @@ cmake_minimum_required(VERSION 3.26) -project(bootloader ASM) - -set(BOOTLOADER_SOURCES - boot.S - command_line.S - disk.S - elf.S - ext2.S - framebuffer.S - memory_map.S - utils.S -) - -add_executable(bootloader ${BOOTLOADER_SOURCES}) -target_link_options(bootloader PUBLIC LINKER:-T,${CMAKE_CURRENT_SOURCE_DIR}/linker.ld) -target_link_options(bootloader PUBLIC -nostdlib) +add_subdirectory(bios) diff --git a/bootloader/bios/CMakeLists.txt b/bootloader/bios/CMakeLists.txt new file mode 100644 index 00000000..73151fcd --- /dev/null +++ b/bootloader/bios/CMakeLists.txt @@ -0,0 +1,18 @@ +cmake_minimum_required(VERSION 3.26) + +project(bootloader ASM) + +set(BOOTLOADER_SOURCES + boot.S + command_line.S + disk.S + elf.S + ext2.S + framebuffer.S + memory_map.S + utils.S +) + +add_executable(bootloader ${BOOTLOADER_SOURCES}) +target_link_options(bootloader PRIVATE LINKER:-T,${CMAKE_CURRENT_SOURCE_DIR}/linker.ld) +target_link_options(bootloader PRIVATE -nostdlib) diff --git a/bootloader/boot.S b/bootloader/bios/boot.S similarity index 100% rename from bootloader/boot.S rename to bootloader/bios/boot.S diff --git a/bootloader/command_line.S b/bootloader/bios/command_line.S similarity index 100% rename from bootloader/command_line.S rename to bootloader/bios/command_line.S diff --git a/bootloader/disk.S b/bootloader/bios/disk.S similarity index 100% rename from bootloader/disk.S rename to bootloader/bios/disk.S diff --git a/bootloader/elf.S b/bootloader/bios/elf.S similarity index 100% rename from bootloader/elf.S rename to bootloader/bios/elf.S diff --git a/bootloader/ext2.S b/bootloader/bios/ext2.S similarity index 100% rename from bootloader/ext2.S rename to bootloader/bios/ext2.S diff --git a/bootloader/framebuffer.S b/bootloader/bios/framebuffer.S similarity index 100% rename from bootloader/framebuffer.S rename to bootloader/bios/framebuffer.S diff --git a/bootloader/linker.ld b/bootloader/bios/linker.ld similarity index 100% rename from bootloader/linker.ld rename to bootloader/bios/linker.ld diff --git a/bootloader/memory_map.S b/bootloader/bios/memory_map.S similarity index 100% rename from bootloader/memory_map.S rename to bootloader/bios/memory_map.S diff --git a/bootloader/utils.S b/bootloader/bios/utils.S similarity index 100% rename from bootloader/utils.S rename to bootloader/bios/utils.S diff --git a/bootloader/installer/.gitignore b/bootloader/installer/.gitignore new file mode 100644 index 00000000..567609b1 --- /dev/null +++ b/bootloader/installer/.gitignore @@ -0,0 +1 @@ +build/ From 5293ae070d4aff0889470eb68ab08ad86ef906da Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Sat, 18 Nov 2023 14:26:44 +0200 Subject: [PATCH 237/240] Kernel: ProcFS inodes reflect processes ruid/rgid setgid/setuid did not change the permissions of procfs inodes. This made Shell launched by init not appear in meminfo. --- kernel/include/kernel/FS/ProcFS/Inode.h | 6 ++++++ kernel/include/kernel/FS/TmpFS/Inode.h | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/kernel/include/kernel/FS/ProcFS/Inode.h b/kernel/include/kernel/FS/ProcFS/Inode.h index 79f4a309..93b74116 100644 --- a/kernel/include/kernel/FS/ProcFS/Inode.h +++ b/kernel/include/kernel/FS/ProcFS/Inode.h @@ -13,6 +13,9 @@ namespace Kernel static BAN::ErrorOr<BAN::RefPtr<ProcPidInode>> create_new(Process&, TmpFileSystem&, mode_t, uid_t, gid_t); ~ProcPidInode() = default; + virtual uid_t uid() const override { return m_process.credentials().ruid(); } + virtual gid_t gid() const override { return m_process.credentials().rgid(); } + void cleanup(); protected: @@ -31,6 +34,9 @@ namespace Kernel static BAN::ErrorOr<BAN::RefPtr<ProcROInode>> create_new(Process&, size_t (Process::*callback)(off_t, BAN::ByteSpan) const, TmpFileSystem&, mode_t, uid_t, gid_t); ~ProcROInode() = default; + virtual uid_t uid() const override { return m_process.credentials().ruid(); } + virtual gid_t gid() const override { return m_process.credentials().rgid(); } + protected: virtual BAN::ErrorOr<size_t> read_impl(off_t, BAN::ByteSpan) override; diff --git a/kernel/include/kernel/FS/TmpFS/Inode.h b/kernel/include/kernel/FS/TmpFS/Inode.h index e567aa27..b9a202ef 100644 --- a/kernel/include/kernel/FS/TmpFS/Inode.h +++ b/kernel/include/kernel/FS/TmpFS/Inode.h @@ -27,8 +27,8 @@ namespace Kernel virtual ino_t ino() const override final { return m_ino; } virtual Mode mode() const override final { return Mode(m_inode_info.mode); } virtual nlink_t nlink() const override final { return m_inode_info.nlink; } - virtual uid_t uid() const override final { return m_inode_info.uid; } - virtual gid_t gid() const override final { return m_inode_info.gid; } + virtual uid_t uid() const override { return m_inode_info.uid; } + virtual gid_t gid() const override { return m_inode_info.gid; } virtual off_t size() const override final { return m_inode_info.size; } virtual timespec atime() const override final { return m_inode_info.atime; } virtual timespec mtime() const override final { return m_inode_info.mtime; } From e2515c1109071f5d9d068fcccf57a9f16d53bc91 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Sat, 18 Nov 2023 17:18:03 +0200 Subject: [PATCH 238/240] Buildsystem: default bootloader is not my custom one You can set BANAN_BOOTLOADER=GRUB to use grub instead. Image creation does not convert disk image now automatically between bootloaders and calling ./bos image-full is now required. --- bootloader/install.sh | 37 ----------------------------- script/config.sh | 4 ++++ script/image-create.sh | 53 +++++++++++++++++++++++++++++------------- script/image.sh | 8 ------- 4 files changed, 41 insertions(+), 61 deletions(-) delete mode 100755 bootloader/install.sh diff --git a/bootloader/install.sh b/bootloader/install.sh deleted file mode 100755 index a0c6aeff..00000000 --- a/bootloader/install.sh +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh - -set -e - -if [[ -z $BANAN_DISK_IMAGE_PATH ]]; then - echo "You must set the BANAN_DISK_IMAGE_PATH environment variable" >&2 - exit 1 -fi - -if [[ -z $BANAN_BUILD_DIR ]]; then - echo "You must set the BANAN_BUILD_DIR environment variable" >&2 - exit 1 -fi - -ROOT_PARTITION_INDEX=2 -ROOT_PARTITION_INFO=$(fdisk -x $BANAN_DISK_IMAGE_PATH | grep "^$BANAN_DISK_IMAGE_PATH" | head -$ROOT_PARTITION_INDEX | tail -1) -ROOT_PARTITION_GUID=$(echo $ROOT_PARTITION_INFO | cut -d' ' -f6) - -INSTALLER_BUILD_DIR=$(dirname $(realpath $0))/installer/build -BOOTLOADER_ELF=$BANAN_BUILD_DIR/bootloader/bootloader - -if ! [ -f $BOOTLOADER_ELF ]; then - echo "You must build the bootloader first" >&2 - exit 1 -fi - -if ! [ -d $INSTALLER_BUILD_DIR ]; then - mkdir -p $INSTALLER_BUILD_DIR - cd $INSTALLER_BUILD_DIR - cmake .. -fi - -cd $INSTALLER_BUILD_DIR -make - -echo installing bootloader -$INSTALLER_BUILD_DIR/x86_64-banan_os-bootloader-installer $BOOTLOADER_ELF $BANAN_DISK_IMAGE_PATH $ROOT_PARTITION_GUID diff --git a/script/config.sh b/script/config.sh index a42f8a51..2c4ee7e2 100644 --- a/script/config.sh +++ b/script/config.sh @@ -25,3 +25,7 @@ export BANAN_DISK_IMAGE_PATH=$BANAN_BUILD_DIR/banan-os.img if [[ -z $BANAN_UEFI_BOOT ]]; then export BANAN_UEFI_BOOT=0 fi + +if [[ -z $BANAN_BOOTLOADER ]]; then + export BANAN_BOOTLOADER="BANAN" +fi diff --git a/script/image-create.sh b/script/image-create.sh index bce3e001..246df4ca 100755 --- a/script/image-create.sh +++ b/script/image-create.sh @@ -15,6 +15,11 @@ if [[ -z $BANAN_TOOLCHAIN_PREFIX ]]; then exit 1 fi +if [[ -z $BANAN_BOOTLOADER ]]; then + echo "You must set the BANAN_BOOTLOADER environment variable" >&2 + exit 1 +fi + if [[ -z $BANAN_ARCH ]]; then echo "You must set the BANAN_ARCH environment variable" >&2 exit 1 @@ -74,23 +79,39 @@ PARTITION2=${LOOP_DEV}p2 sudo mkfs.ext2 -b 1024 -q $PARTITION2 -if [[ "$BANAN_UEFI_BOOT" == "1" ]]; then - sudo mkfs.fat $PARTITION1 > /dev/null - sudo mount $PARTITION1 "$MOUNT_DIR" - sudo mkdir -p "$MOUNT_DIR/EFI/BOOT" - sudo "$BANAN_TOOLCHAIN_PREFIX/bin/grub-mkstandalone" -O "$BANAN_ARCH-efi" -o "$MOUNT_DIR/EFI/BOOT/BOOTX64.EFI" "boot/grub/grub.cfg=$BANAN_TOOLCHAIN_DIR/grub-memdisk.cfg" - sudo umount "$MOUNT_DIR" +if [[ "$BANAN_BOOTLOADER" == "GRUB" ]]; then + if [[ "$BANAN_UEFI_BOOT" == "1" ]]; then + sudo mkfs.fat $PARTITION1 > /dev/null + sudo mount $PARTITION1 "$MOUNT_DIR" + sudo mkdir -p "$MOUNT_DIR/EFI/BOOT" + sudo "$BANAN_TOOLCHAIN_PREFIX/bin/grub-mkstandalone" -O "$BANAN_ARCH-efi" -o "$MOUNT_DIR/EFI/BOOT/BOOTX64.EFI" "boot/grub/grub.cfg=$BANAN_TOOLCHAIN_DIR/grub-memdisk.cfg" + sudo umount "$MOUNT_DIR" - sudo mount $PARTITION2 "$MOUNT_DIR" - sudo mkdir -p "$MOUNT_DIR/boot/grub" - sudo cp "$BANAN_TOOLCHAIN_DIR/grub-uefi.cfg" "$MOUNT_DIR/boot/grub/grub.cfg" - sudo umount "$MOUNT_DIR" -else - sudo mount $PARTITION2 "$MOUNT_DIR" - sudo grub-install --no-floppy --target=i386-pc --modules="normal ext2 multiboot" --boot-directory="$MOUNT_DIR/boot" $LOOP_DEV - sudo mkdir -p "$MOUNT_DIR/boot/grub" - sudo cp "$BANAN_TOOLCHAIN_DIR/grub-legacy-boot.cfg" "$MOUNT_DIR/boot/grub/grub.cfg" - sudo umount "$MOUNT_DIR" + sudo mount $PARTITION2 "$MOUNT_DIR" + sudo mkdir -p "$MOUNT_DIR/boot/grub" + sudo cp "$BANAN_TOOLCHAIN_DIR/grub-uefi.cfg" "$MOUNT_DIR/boot/grub/grub.cfg" + sudo umount "$MOUNT_DIR" + else + sudo mount $PARTITION2 "$MOUNT_DIR" + sudo grub-install --no-floppy --target=i386-pc --modules="normal ext2 multiboot" --boot-directory="$MOUNT_DIR/boot" $LOOP_DEV + sudo mkdir -p "$MOUNT_DIR/boot/grub" + sudo cp "$BANAN_TOOLCHAIN_DIR/grub-legacy-boot.cfg" "$MOUNT_DIR/boot/grub/grub.cfg" + sudo umount "$MOUNT_DIR" + fi fi sudo losetup -d $LOOP_DEV + +if [[ "$BANAN_BOOTLOADER" == "GRUB" ]]; then + echo > /dev/null +elif [[ "$BANAN_BOOTLOADER" == "BANAN" ]]; then + if [[ "$BANAN_UEFI_BOOT" == "1" ]]; then + echo "banan bootloader does not support UEFI" >&2 + exit 1 + fi + $BANAN_SCRIPT_DIR/install-bootloader.sh +else + echo "unrecognized bootloader $BANAN_BOOTLOADER" >&2 + exit 1 +fi + diff --git a/script/image.sh b/script/image.sh index ae39bdfb..9b7760ee 100755 --- a/script/image.sh +++ b/script/image.sh @@ -12,14 +12,6 @@ fi if [[ "$1" == "full" ]] || [[ ! -f $BANAN_DISK_IMAGE_PATH ]]; then $BANAN_SCRIPT_DIR/image-create.sh -else - fdisk -l $BANAN_DISK_IMAGE_PATH | grep -q 'EFI System'; IMAGE_IS_UEFI=$? - [[ $BANAN_UEFI_BOOT == 1 ]]; CREATE_IS_UEFI=$? - - if [[ $IMAGE_IS_UEFI -ne $CREATE_IS_UEFI ]]; then - echo Converting disk image to/from UEFI - $BANAN_SCRIPT_DIR/image-create.sh - fi fi LOOP_DEV=$(sudo losetup --show -f "$BANAN_DISK_IMAGE_PATH") From 8b81406b81efc482996f7b0c57f3207aa0b49a0e Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 20 Nov 2023 00:53:43 +0200 Subject: [PATCH 239/240] Toolchain: Build full toolchain with one call to toolchain/build.sh --- script/build.sh | 2 -- toolchain/build.sh | 45 +++++++++++++++++++++++---------------------- 2 files changed, 23 insertions(+), 24 deletions(-) diff --git a/script/build.sh b/script/build.sh index 4e8c98fe..7ba6808a 100755 --- a/script/build.sh +++ b/script/build.sh @@ -39,8 +39,6 @@ build_toolchain () { fi $BANAN_TOOLCHAIN_DIR/build.sh - build_target libc-install - $BANAN_TOOLCHAIN_DIR/build.sh libstdc++ } create_image () { diff --git a/toolchain/build.sh b/toolchain/build.sh index 307a3391..85a58f8d 100755 --- a/toolchain/build.sh +++ b/toolchain/build.sh @@ -26,6 +26,11 @@ if [[ -z $BANAN_BUILD_DIR ]]; then exit 1 fi +if [[ -z $BANAN_SCRIPT_DIR ]]; then + echo "You must set the BANAN_SCRIPT_DIR environment variable" >&2 + exit 1 +fi + if [[ -z $BANAN_TOOLCHAIN_DIR ]]; then echo "You must set the BANAN_TOOLCHAIN_DIR environment variable" >&2 exit 1 @@ -46,6 +51,10 @@ if [[ -z $BANAN_ARCH ]]; then exit 1 fi +if [[ -z ${MAKE_JOBS:x} ]]; then + MAKE_JOBS="-j$(nproc)" +fi + enter_clean_build () { rm -rf build mkdir build @@ -74,7 +83,7 @@ build_binutils () { --disable-nls \ --disable-werror - make + make $MAKE_JOBS make install } @@ -100,9 +109,10 @@ build_gcc () { --disable-nls \ --enable-languages=c,c++ - make all-gcc - make all-target-libgcc CFLAGS_FOR_TARGET='-g -O2 -mcmodel=large -mno-red-zone' - make install-gcc install-target-libgcc + make $MAKE_JOBS all-gcc + make $MAKE_JOBS all-target-libgcc CFLAGS_FOR_TARGET='-g -O2 -mcmodel=large -mno-red-zone' + make install-gcc + make install-target-libgcc } build_grub () { @@ -127,7 +137,7 @@ build_grub () { --with-platform="efi" \ --disable-werror - make + make $MAKE_JOBS make install } @@ -138,38 +148,29 @@ build_libstdcpp () { fi cd $BANAN_BUILD_DIR/toolchain/$GCC_VERSION/build - make all-target-libstdc++-v3 + make $MAKE_JOBS all-target-libstdc++-v3 CFLAGS_FOR_TARGET='-g -O2 -mcmodel=large -mno-red-zone' make install-target-libstdc++-v3 } -if [[ $# -ge 1 ]]; then - if [[ "$1" == "libstdc++" ]]; then - build_libstdcpp - exit 0 - fi - - echo "unrecognized arguments $@" - exit 1 -fi +# delete everything but toolchain +find $BANAN_BUILD_DIR -mindepth 1 -maxdepth 1 ! -name toolchain -exec rm -r {} + # NOTE: we have to manually create initial sysroot with libc headers # since cmake cannot be invoked yet echo "Creating dummy sysroot" -rm -rf $BANAN_SYSROOT mkdir -p $BANAN_SYSROOT/usr cp -r $BANAN_ROOT_DIR/libc/include $BANAN_SYSROOT/usr/include - # Cleanup all old files from toolchain prefix rm -rf $BANAN_TOOLCHAIN_PREFIX -if [[ -z ${MAKEFLAGS:x} ]]; then - export MAKEFLAGS="-j$(nproc)" -fi - mkdir -p $BANAN_BUILD_DIR/toolchain build_binutils build_gcc build_grub -rm -rf $BANAN_SYSROOT +# delete sysroot and install libc +rm -r $BANAN_SYSROOT +$BANAN_SCRIPT_DIR/build.sh libc-install + +build_libstdcpp From f2397b775c7d485f6eb6a076523cc9e05d5b3a98 Mon Sep 17 00:00:00 2001 From: Bananymous <oskari.alaranta@bananymous.com> Date: Mon, 20 Nov 2023 00:54:15 +0200 Subject: [PATCH 240/240] BuildSystem: Remove old bootloader target And creating image now builds the bootloader --- script/build.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/script/build.sh b/script/build.sh index 7ba6808a..38b0fae1 100755 --- a/script/build.sh +++ b/script/build.sh @@ -42,6 +42,7 @@ build_toolchain () { } create_image () { + build_target bootloader build_target install-sysroot $BANAN_SCRIPT_DIR/image.sh "$1" } @@ -95,12 +96,6 @@ case $1 in rm -f $FAKEROOT_FILE rm -rf $BANAN_SYSROOT ;; - bootloader) - create_image - build_target bootloader - $BANAN_ROOT_DIR/bootloader/install.sh - $BANAN_SCRIPT_DIR/qemu.sh -serial stdio $QEMU_ACCEL - ;; *) build_target $1 ;;